#define yy_create_buffer sming_create_buffer #define yy_delete_buffer sming_delete_buffer #define yy_scan_buffer sming_scan_buffer #define yy_scan_string sming_scan_string #define yy_scan_bytes sming_scan_bytes #define yy_flex_debug sming_flex_debug #define yy_init_buffer sming_init_buffer #define yy_flush_buffer sming_flush_buffer #define yy_load_buffer_state sming_load_buffer_state #define yy_switch_to_buffer sming_switch_to_buffer #define yyin smingin #define yyleng smingleng #define yylex sminglex #define yyout smingout #define yyrestart smingrestart #define yytext smingtext /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /cvs/root/flex/flex/skel.c,v 1.2 2004/05/07 00:28:17 jkh Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define 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 yyconst short yy_nxt[][55] = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 5, 6, 7, 8, 9, 7, 6, 10, 11, 11, 12, 13, 14, 15, 15, 15, 15, 15, 15, 15, 16, 17, 18, 19, 20, 17, 21, 22, 17, 23, 6, 24, 25, 26, 27, 28, 29, 30, 25, 31, 25, 25, 32, 33, 34, 25, 35, 36, 37, 38, 25, 39, 25, 25, 25 }, { 5, 6, 7, 8, 9, 7, 6, 10, 11, 11, 12, 13, 14, 15, 15, 15, 15, 15, 15, 15, 16, 17, 18, 19, 20, 17, 21, 22, 17, 23, 6, 24, 25, 26, 27, 28, 29, 30, 25, 31, 25, 25, 32, 33, 34, 25, 35, 36, 37, 38, 25, 39, 25, 25, 25 }, { 5, 40, 40, 41, 42, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40 }, { 5, 40, 40, 41, 42, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40 }, { -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5, -5 }, { 5, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6 }, { 5, -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 }, { 5, -8, -8, -8, 43, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8, -8 }, { 5, -9, -9, 43, -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 }, { 5, 44, 44, 44, 44, 44, 44, 45, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44 }, { 5, -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 }, { 5, -12, -12, -12, -12, -12, -12, -12, -12, -12, 46, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12, -12 }, { 5, -13, -13, -13, -13, -13, -13, -13, -13, -13, -13, 47, -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 }, { 5, 48, 48, 49, 48, 48, 48, 48, 48, 48, 48, 48, 50, 51, 51, 51, 51, 51, 51, 51, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 48, 48 }, { 5, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 53, 53, 53, 53, 53, 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 }, { 5, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, 54, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16, -16 }, { 5, -17, -17, -17, -17, -17, -17, -17, -17, 55, -17, -17, 56, 56, 56, 56, 56, 56, 56, 56, -17, 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 }, { 5, -18, -18, -18, -18, -18, -18, -18, -18, 55, -18, -18, 56, 56, 56, 56, 56, 56, 56, 56, -18, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -19, -19, -19, -19, -19, -19, -19, -19, 55, -19, -19, 56, 56, 56, 56, 56, 56, 56, 56, -19, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 58, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -20, -20, -20, -20, -20, -20, -20, -20, 55, -20, -20, 56, 56, 56, 56, 56, 56, 56, 56, -20, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 59, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -21, -21, -21, -21, -21, -21, -21, -21, 55, -21, -21, 56, 56, 56, 56, 56, 56, 56, 56, -21, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -22, -22, -22, -22, -22, -22, -22, -22, 55, -22, -22, 56, 56, 56, 56, 56, 56, 56, 56, -22, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 61, 62, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -23, -23, -23, -23, -23, -23, -23, -23, 55, -23, -23, 56, 56, 56, 56, 56, 56, 56, 56, -23, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 63, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -24, -24, -24, -24, -24, -24, -24, -24, 64, -24, -24, 65, 65, 65, 65, 65, 65, 65, 65, -24, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 66, 67, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 68, 65, 65, 65, 65, 65 }, { 5, -25, -25, -25, -25, -25, -25, -25, -25, 64, -25, -25, 65, 65, 65, 65, 65, 65, 65, 65, -25, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -26, -26, -26, -26, -26, -26, -26, -26, 64, -26, -26, 65, 65, 65, 65, 65, 65, 65, 65, -26, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 69, 65, 70, 65, 65, 71, 65, 65, 65, 65, 65 }, { 5, -27, -27, -27, -27, -27, -27, -27, -27, 64, -27, -27, 65, 65, 65, 65, 65, 65, 65, 65, -27, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 72, 65, 65, 65, 73, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -28, -28, -28, -28, -28, -28, -28, -28, 64, -28, -28, 65, 65, 65, 65, 65, 65, 65, 65, -28, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 74, 65, 65 }, { 5, -29, -29, -29, -29, -29, -29, -29, -29, 64, -29, -29, 65, 65, 65, 65, 65, 65, 65, 65, -29, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 75, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -30, -30, -30, -30, -30, -30, -30, -30, 64, -30, -30, 65, 65, 65, 65, 65, 65, 65, 65, -30, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 76, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -31, -31, -31, -31, -31, -31, -31, -31, 64, -31, -31, 65, 65, 65, 65, 65, 65, 65, 65, -31, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 77, 65, 65, 65, 65, 65, 65, 65, 78, 79, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -32, -32, -32, -32, -32, -32, -32, -32, 64, -32, -32, 65, 65, 65, 65, 65, 65, 65, 65, -32, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 80, 65, 65, 65, 81, 65, 65, 65, 65, 65, 65, 65, 65, 82, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -33, -33, -33, -33, -33, -33, -33, -33, 64, -33, -33, 65, 65, 65, 65, 65, 65, 65, 65, -33, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 83, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -34, -34, -34, -34, -34, -34, -34, -34, 64, -34, -34, 65, 65, 65, 65, 65, 65, 65, 65, -34, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 84, 65, 65, 65, 65, 65, 65, 85, 65, 65, 65, 65, 65, 86, 87, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -35, -35, -35, -35, -35, -35, -35, -35, 64, -35, -35, 65, 65, 65, 65, 65, 65, 65, 65, -35, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 88, 65, 65, 65, 65, 65, 65, 65, 65, 89, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -36, -36, -36, -36, -36, -36, -36, -36, 64, -36, -36, 65, 65, 65, 65, 65, 65, 65, 65, -36, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 90, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 91, 65, 65, 92, 65, 65, 65, 65, 65, 65 }, { 5, -37, -37, -37, -37, -37, -37, -37, -37, 64, -37, -37, 65, 65, 65, 65, 65, 65, 65, 65, -37, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 93, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 94, 65 }, { 5, -38, -38, -38, -38, -38, -38, -38, -38, 64, -38, -38, 65, 65, 65, 65, 65, 65, 65, 65, -38, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 95, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -39, -39, -39, -39, -39, -39, -39, -39, 64, -39, -39, 65, 65, 65, 65, 65, 65, 65, 65, -39, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 96, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 97, 97, 98, 99, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97 }, { 5, -41, -41, -41, 100, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, -41 }, { 5, 97, 97, 101, 99, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97 }, { 5, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, -43 }, { 5, 44, 44, 44, 44, 44, 44, 45, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44 }, { 5, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45, -45 }, { 5, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46, -46 }, { 5, -47, 102, 103, 104, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102 }, { 5, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, 105, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48, -48 }, { 5, -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 }, { 5, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, 106, 107, 107, 107, 107, 107, 107, 107, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50 }, { 5, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, 105, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51, -51 }, { 5, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, 108, 109, 109, 109, 109, 109, 109, 109, -52, 109, 109, 109, 109, -52, -52, -52, -52, -52, -52, 109, 109, 109, 109, 109, 109, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52, -52 }, { 5, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 53, 53, 53, 53, 53, 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 }, { 5, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54, -54 }, { 5, -55, -55, -55, -55, -55, -55, -55, -55, -55, -55, -55, 56, 56, 56, 56, 56, 56, 56, 56, -55, 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 }, { 5, -56, -56, -56, -56, -56, -56, -56, -56, 55, -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 }, { 5, -57, -57, -57, -57, -57, -57, -57, -57, 55, -57, -57, 56, 56, 56, 56, 56, 56, 56, 56, -57, 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, 110, 56, 56, 56, 56, 56, 56 }, { 5, -58, -58, -58, -58, -58, -58, -58, -58, 55, -58, -58, 56, 56, 56, 56, 56, 56, 56, 56, -58, 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, 111, 56, 56, 56, 56, 56 }, { 5, -59, -59, -59, -59, -59, -59, -59, -59, 55, -59, -59, 56, 56, 56, 56, 56, 56, 56, 56, -59, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 112, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -60, -60, -60, -60, -60, -60, -60, -60, 55, -60, -60, 56, 56, 56, 56, 56, 56, 56, 56, -60, 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, 113, 56, 56, 56, 56, 56, 56 }, { 5, -61, -61, -61, -61, -61, -61, -61, -61, 55, -61, -61, 56, 56, 56, 56, 56, 56, 56, 56, -61, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 114, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -62, -62, -62, -62, -62, -62, -62, -62, 55, -62, -62, 56, 56, 56, 56, 56, 56, 56, 56, -62, 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, 115, 56, 56, 56, 56, 56, 56 }, { 5, -63, -63, -63, -63, -63, -63, -63, -63, 55, -63, -63, 56, 56, 56, 56, 56, 56, 56, 56, -63, 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, 116, 56, 56, 56, 56, 56, 56, 56 }, { 5, -64, -64, -64, -64, -64, -64, -64, -64, -64, -64, -64, 65, 65, 65, 65, 65, 65, 65, 65, -64, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -65, -65, -65, -65, -65, -65, -65, -65, 64, -65, -65, 65, 65, 65, 65, 65, 65, 65, 65, -65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -66, -66, -66, -66, -66, -66, -66, -66, 64, -66, -66, 65, 65, 65, 65, 65, 65, 65, 65, -66, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 117, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -67, -67, -67, -67, -67, -67, -67, -67, 64, -67, -67, 65, 65, 65, 65, 65, 65, 65, 65, -67, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 118, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -68, -68, -68, -68, -68, -68, -68, -68, 64, -68, -68, 65, 65, 65, 65, 65, 65, 65, 65, -68, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 119, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -69, -69, -69, -69, -69, -69, -69, -69, 64, -69, -69, 65, 65, 65, 65, 65, 65, 65, 65, -69, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 120, 121, 122, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -70, -70, -70, -70, -70, -70, -70, -70, 64, -70, -70, 65, 65, 65, 65, 65, 65, 65, 65, -70, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 123, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -71, -71, -71, -71, -71, -71, -71, -71, 64, -71, -71, 65, 65, 65, 65, 65, 65, 65, 65, -71, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 124, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -72, -72, -72, -72, -72, -72, -72, -72, 64, -72, -72, 65, 65, 65, 65, 65, 65, 65, 65, -72, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 125, 65, 65, 65, 65, 65, 65 }, { 5, -73, -73, -73, -73, -73, -73, -73, -73, 64, -73, -73, 65, 65, 65, 65, 65, 65, 65, 65, -73, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 126, 65, 65, 65, 65, 65, 65, 65, 65, 127, 65, 128, 65, 65, 65, 65, 65, 65, 65 }, { 5, -74, -74, -74, -74, -74, -74, -74, -74, 64, -74, -74, 65, 65, 65, 65, 65, 65, 65, 65, -74, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 129, 65, 65, 130, 65, 65, 65, 65, 65, 65 }, { 5, -75, -75, -75, -75, -75, -75, -75, -75, 64, -75, -75, 65, 65, 65, 65, 65, 65, 65, 65, -75, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 131, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -76, -76, -76, -76, -76, -76, -76, -76, 64, -76, -76, 65, 65, 65, 65, 65, 65, 65, 65, -76, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 132, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -77, -77, -77, -77, -77, -77, -77, -77, 64, -77, -77, 65, 65, 65, 65, 65, 65, 65, 65, -77, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 133, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -78, -78, -78, -78, -78, -78, -78, -78, 64, -78, -78, 65, 65, 65, 65, 65, 65, 65, 65, -78, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 134, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -79, -79, -79, -79, -79, -79, -79, -79, 64, -79, -79, 65, 65, 65, 65, 65, 65, 65, 65, -79, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 135, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -80, -80, -80, -80, -80, -80, -80, -80, 64, -80, -80, 65, 65, 65, 65, 65, 65, 65, 65, -80, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 136, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -81, -81, -81, -81, -81, -81, -81, -81, 64, -81, -81, 65, 65, 65, 65, 65, 65, 65, 65, -81, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 137, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -82, -82, -82, -82, -82, -82, -82, -82, 64, -82, -82, 65, 65, 65, 65, 65, 65, 65, 65, -82, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 138, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -83, -83, -83, -83, -83, -83, -83, -83, 64, -83, -83, 65, 65, 65, 65, 65, 65, 65, 65, -83, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 139, 65, 65, 140, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 141, 65, 65, 65, 65, 65, 65 }, { 5, -84, -84, -84, -84, -84, -84, -84, -84, 64, -84, -84, 65, 65, 65, 65, 65, 65, 65, 65, -84, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 142, 65, 65, 65, 65, 65, 65, 143, 65, 65, 65, 65, 65, 65, 65 }, { 5, -85, -85, -85, -85, -85, -85, -85, -85, 64, -85, -85, 65, 65, 65, 65, 65, 65, 65, 65, -85, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 144, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -86, -86, -86, -86, -86, -86, -86, -86, 64, -86, -86, 65, 65, 65, 65, 65, 65, 65, 65, -86, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 145, 65, 65, 65, 65, 65, 65 }, { 5, -87, -87, -87, -87, -87, -87, -87, -87, 64, -87, -87, 65, 65, 65, 65, 65, 65, 65, 65, -87, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 146, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -88, -88, -88, -88, -88, -88, -88, -88, 64, -88, -88, 65, 65, 65, 65, 65, 65, 65, 65, -88, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 147, 65, 65, 65, 65, 148, 65, 65, 65, 65, 65, 65, 65, 149, 65, 65, 65, 65, 65, 150, 65, 65, 65, 65 }, { 5, -89, -89, -89, -89, -89, -89, -89, -89, 64, -89, -89, 65, 65, 65, 65, 65, 65, 65, 65, -89, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 151, 65, 65, 65 }, { 5, -90, -90, -90, -90, -90, -90, -90, -90, 64, -90, -90, 65, 65, 65, 65, 65, 65, 65, 65, -90, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 152, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -91, -91, -91, -91, -91, -91, -91, -91, 64, -91, -91, 65, 65, 65, 65, 65, 65, 65, 65, -91, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 153, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -92, -92, -92, -92, -92, -92, -92, -92, 64, -92, -92, 65, 65, 65, 65, 65, 65, 65, 65, -92, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 154, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -93, -93, -93, -93, -93, -93, -93, -93, 64, -93, -93, 65, 65, 65, 65, 65, 65, 65, 65, -93, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 155, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -94, -94, -94, -94, -94, -94, -94, -94, 64, -94, -94, 65, 65, 65, 65, 65, 65, 65, 65, -94, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 156, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -95, -95, -95, -95, -95, -95, -95, -95, 64, -95, -95, 65, 65, 65, 65, 65, 65, 65, 65, -95, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 157, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -96, -96, -96, -96, -96, -96, -96, -96, 64, -96, -96, 65, 65, 65, 65, 65, 65, 65, 65, -96, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 158, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 97, 97, 98, 99, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97 }, { 5, -98, -98, -98, 100, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98, -98 }, { 5, 97, 97, 101, 99, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97 }, { 5, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 }, { 5, -101, -101, -101, 100, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101, -101 }, { 5, -102, 102, 103, 104, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102 }, { 5, -103, -103, -103, 159, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103, -103 }, { 5, -104, -104, 160, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104, -104 }, { 5, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, 161, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105, -105 }, { 5, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, 162, 107, 107, 107, 107, 107, 107, 107, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106, -106 }, { 5, -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 }, { 5, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 164, 109, 109, 109, 109, 109, 109, 109, 163, 109, 109, 109, 109, 163, 163, 163, 163, 163, 163, 109, 109, 109, 109, 109, 109, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163 }, { 5, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 109, 109, 109, 109, 109, 109, 109, 109, 163, 109, 109, 109, 109, 163, 163, 163, 163, 163, 163, 109, 109, 109, 109, 109, 109, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163 }, { 5, -110, -110, -110, -110, -110, -110, -110, -110, 55, -110, -110, 56, 56, 56, 56, 56, 56, 56, 56, -110, 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, 165, 56, 56, 56, 56, 56, 56, 56 }, { 5, -111, -111, -111, -111, -111, -111, -111, -111, 55, -111, -111, 56, 56, 56, 56, 56, 56, 56, 56, -111, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 166, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -112, -112, -112, -112, -112, -112, -112, -112, 55, -112, -112, 56, 56, 56, 56, 56, 56, 56, 56, -112, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 167, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -113, -113, -113, -113, -113, -113, -113, -113, 55, -113, -113, 56, 56, 56, 56, 56, 56, 56, 56, -113, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 168, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -114, -114, -114, -114, -114, -114, -114, -114, 55, -114, -114, 56, 56, 56, 56, 56, 56, 56, 56, -114, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 169, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -115, -115, -115, -115, -115, -115, -115, -115, 55, -115, -115, 56, 56, 56, 56, 56, 56, 56, 56, -115, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 170, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -116, -116, -116, -116, -116, -116, -116, -116, 55, -116, -116, 56, 56, 56, 56, 56, 56, 56, 56, -116, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 171, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -117, -117, -117, -117, -117, -117, -117, -117, 64, -117, -117, 65, 65, 65, 65, 65, 65, 65, 65, -117, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 172, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -118, -118, -118, -118, -118, -118, -118, -118, 64, -118, -118, 65, 65, 65, 65, 65, 65, 65, 65, -118, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 173, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -119, -119, -119, -119, -119, -119, -119, -119, 64, -119, -119, 65, 65, 65, 65, 65, 65, 65, 65, -119, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 174, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -120, -120, -120, -120, -120, -120, -120, -120, 64, -120, -120, 65, 65, 65, 65, 65, 65, 65, 65, -120, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 175, 65, 65, 65, 65, 65 }, { 5, -121, -121, -121, -121, -121, -121, -121, -121, 64, -121, -121, 65, 65, 65, 65, 65, 65, 65, 65, -121, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 176, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -122, -122, -122, -122, -122, -122, -122, -122, 64, -122, -122, 65, 65, 65, 65, 65, 65, 65, 65, -122, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 177, 65, 65, 65, 65, 65, 65 }, { 5, -123, -123, -123, -123, -123, -123, -123, -123, 64, -123, -123, 65, 65, 65, 65, 65, 65, 65, 65, -123, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 178, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -124, -124, -124, -124, -124, -124, -124, -124, 64, -124, -124, 65, 65, 65, 65, 65, 65, 65, 65, -124, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 179, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -125, -125, -125, -125, -125, -125, -125, -125, 64, -125, -125, 65, 65, 65, 65, 65, 65, 65, 65, -125, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 180, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -126, -126, -126, -126, -126, -126, -126, -126, 64, -126, -126, 65, 65, 65, 65, 65, 65, 65, 65, -126, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 181, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -127, -127, -127, -127, -127, -127, -127, -127, 64, -127, -127, 65, 65, 65, 65, 65, 65, 65, 65, -127, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 182, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -128, -128, -128, -128, -128, -128, -128, -128, 64, -128, -128, 65, 65, 65, 65, 65, 65, 65, 65, -128, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 183, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -129, -129, -129, -129, -129, -129, -129, -129, 64, -129, -129, 65, 65, 65, 65, 65, 65, 65, 65, -129, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 184, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -130, -130, -130, -130, -130, -130, -130, -130, 64, -130, -130, 65, 65, 65, 65, 65, 65, 65, 65, -130, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 185, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -131, -131, -131, -131, -131, -131, -131, -131, 64, -131, -131, 65, 65, 65, 65, 65, 65, 65, 65, -131, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 186, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -132, -132, -132, -132, -132, -132, -132, -132, 64, -132, -132, 65, 65, 65, 65, 65, 65, 65, 65, -132, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 187, 65, 65, 65, 65, 65 }, { 5, -133, -133, -133, -133, -133, -133, -133, -133, 64, -133, -133, 65, 65, 65, 65, 65, 65, 65, 65, -133, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 188, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -134, -134, -134, -134, -134, -134, -134, -134, 64, -134, -134, 65, 65, 65, 65, 65, 65, 65, 65, -134, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 189, 65, 65, 190, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -135, -135, -135, -135, -135, -135, -135, -135, 64, -135, -135, 65, 65, 65, 65, 65, 65, 65, 65, -135, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 191, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -136, -136, -136, -136, -136, -136, -136, -136, 64, -136, -136, 65, 65, 65, 65, 65, 65, 65, 65, -136, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 192, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -137, -137, -137, -137, -137, -137, -137, -137, 64, -137, -137, 65, 65, 65, 65, 65, 65, 65, 65, -137, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 193, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -138, -138, -138, -138, -138, -138, -138, -138, 64, -138, -138, 65, 65, 65, 65, 65, 65, 65, 65, -138, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 194, 65, 65, 65, 65, 65 }, { 5, -139, -139, -139, -139, -139, -139, -139, -139, 64, -139, -139, 65, 65, 65, 65, 65, 65, 65, 65, -139, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 195, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -140, -140, -140, -140, -140, -140, -140, -140, 64, -140, -140, 65, 65, 65, 65, 65, 65, 65, 65, -140, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 196, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -141, -141, -141, -141, -141, -141, -141, -141, 64, -141, -141, 65, 65, 65, 65, 65, 65, 65, 65, -141, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 197, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -142, -142, -142, -142, -142, -142, -142, -142, 64, -142, -142, 65, 65, 65, 65, 65, 65, 65, 65, -142, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 198, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -143, -143, -143, -143, -143, -143, -143, -143, 64, -143, -143, 65, 65, 65, 65, 65, 65, 65, 65, -143, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 199, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 200, 200, 200, 200, 200, 200, 200, 200, 64, 200, 200, 65, 65, 65, 65, 65, 65, 65, 65, 200, 65, 65, 65, 65, 65, 65, 65, 65, 65, 201, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -145, -145, -145, -145, -145, -145, -145, -145, 64, -145, -145, 65, 65, 65, 65, 65, 65, 65, 65, -145, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 202, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -146, -146, -146, -146, -146, -146, -146, -146, 64, -146, -146, 65, 65, 65, 65, 65, 65, 65, 65, -146, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 203, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -147, -147, -147, -147, -147, -147, -147, -147, 64, -147, -147, 65, 65, 65, 65, 65, 65, 65, 65, -147, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 204, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -148, -148, -148, -148, -148, -148, -148, -148, 64, -148, -148, 65, 65, 65, 65, 65, 65, 65, 65, -148, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 205, 65, 65, 65, 206, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -149, -149, -149, -149, -149, -149, -149, -149, 64, -149, -149, 65, 65, 65, 65, 65, 65, 65, 65, -149, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 207, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -150, -150, -150, -150, -150, -150, -150, -150, 64, -150, -150, 65, 65, 65, 65, 65, 65, 65, 65, -150, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 208, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 209, 209, 209, 209, 209, 209, 209, 209, 64, 209, 209, 65, 65, 65, 65, 65, 65, 65, 65, 209, 65, 65, 65, 65, 65, 65, 65, 65, 65, 210, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -152, -152, -152, -152, -152, -152, -152, -152, 64, -152, -152, 65, 65, 65, 65, 65, 65, 65, 65, -152, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 211, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -153, -153, -153, -153, -153, -153, -153, -153, 64, -153, -153, 65, 65, 65, 65, 65, 65, 65, 65, -153, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 212, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -154, -154, -154, -154, -154, -154, -154, -154, 64, -154, -154, 65, 65, 65, 65, 65, 65, 65, 65, -154, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 213, 65, 65, 65, 65, 65, 65 }, { 5, -155, -155, -155, -155, -155, -155, -155, -155, 64, -155, -155, 65, 65, 65, 65, 65, 65, 65, 65, -155, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 214, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -156, -156, -156, -156, -156, -156, -156, -156, 64, -156, -156, 65, 65, 65, 65, 65, 65, 65, 65, -156, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 215, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -157, -157, -157, -157, -157, -157, -157, -157, 64, -157, -157, 65, 65, 65, 65, 65, 65, 65, 65, -157, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 216, 65, 65, 65, 65, 65, 65 }, { 5, -158, -158, -158, -158, -158, -158, -158, -158, 64, -158, -158, 65, 65, 65, 65, 65, 65, 65, 65, -158, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 217, 65, 65, 65, 65, 65, 65 }, { 5, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159, -159 }, { 5, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160, -160 }, { 5, 218, 218, 218, 218, 218, 218, 218, 218, -161, 218, 218, -161, -161, -161, -161, -161, -161, -161, -161, 218, -161, -161, -161, -161, -161, -161, -161, -161, -161, 218, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161, -161 }, { 5, 218, 218, 218, 218, 218, 218, 218, 218, -162, 218, 218, 219, 107, 107, 107, 107, 107, 107, 107, 218, -162, -162, -162, -162, -162, -162, -162, -162, -162, 218, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162 }, { 5, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163, -163 }, { 5, 220, 220, 220, 220, 220, 220, 220, 220, 163, 220, 220, 109, 109, 109, 109, 109, 109, 109, 109, 220, 109, 109, 109, 109, 163, 163, 163, 163, 163, 220, 109, 109, 109, 109, 109, 109, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163 }, { 5, 221, 221, 221, 221, 221, 221, 221, 221, 55, 221, 221, 56, 56, 56, 56, 56, 56, 56, 56, 221, 56, 56, 56, 56, 56, 56, 56, 56, 56, 222, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -166, -166, -166, -166, -166, -166, -166, -166, 55, -166, -166, 56, 56, 56, 56, 56, 56, 56, 56, -166, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 223, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -167, -167, -167, -167, -167, -167, -167, -167, 55, -167, -167, 56, 56, 56, 56, 56, 56, 56, 56, -167, 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, 224, 56, 56, 56, 56, 56, 56 }, { 5, -168, -168, -168, -168, -168, -168, -168, -168, 55, -168, -168, 56, 56, 56, 56, 56, 56, 56, 56, -168, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 225, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -169, -169, -169, -169, -169, -169, -169, -169, 55, -169, -169, 56, 56, 56, 56, 56, 56, 56, 56, -169, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 226, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -170, -170, -170, -170, -170, -170, -170, -170, 55, -170, -170, 56, 56, 56, 56, 56, 56, 56, 56, -170, 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, 227, 56, 56, 56, 56, 56, 56 }, { 5, -171, -171, -171, -171, -171, -171, -171, -171, 55, -171, -171, 56, 56, 56, 56, 56, 56, 56, 56, -171, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 228, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 229, 229, 229, 229, 229, 229, 229, 229, 64, 229, 229, 65, 65, 65, 65, 65, 65, 65, 65, 229, 65, 65, 65, 65, 65, 65, 65, 65, 65, 230, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -173, -173, -173, -173, -173, -173, -173, -173, 64, -173, -173, 65, 65, 65, 65, 65, 65, 65, 65, -173, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 231, 65, 65, 65, 65, 65, 65, 65 }, { 5, -174, -174, -174, -174, -174, -174, -174, -174, 64, -174, -174, 65, 65, 65, 65, 65, 65, 65, 65, -174, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 232, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -175, -175, -175, -175, -175, -175, -175, -175, 64, -175, -175, 65, 65, 65, 65, 65, 65, 65, 65, -175, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 233, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -176, -176, -176, -176, -176, -176, -176, -176, 64, -176, -176, 65, 65, 65, 65, 65, 65, 65, 65, -176, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 234, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -177, -177, -177, -177, -177, -177, -177, -177, 64, -177, -177, 65, 65, 65, 65, 65, 65, 65, 65, -177, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 235, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -178, -178, -178, -178, -178, -178, -178, -178, 64, -178, -178, 65, 65, 65, 65, 65, 65, 65, 65, -178, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 236, 65, 65, 65, 65, 65, 65 }, { 5, -179, -179, -179, -179, -179, -179, -179, -179, 64, -179, -179, 65, 65, 65, 65, 65, 65, 65, 65, -179, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 237, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 238, 238, 238, 238, 238, 238, 238, 238, 64, 238, 238, 65, 65, 65, 65, 65, 65, 65, 65, 238, 65, 65, 65, 65, 65, 65, 65, 65, 65, 239, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -181, -181, -181, -181, -181, -181, -181, -181, 64, -181, -181, 65, 65, 65, 65, 65, 65, 65, 65, -181, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 240, 65, 65, 65, 65, 65 }, { 5, -182, -182, -182, -182, -182, -182, -182, -182, 64, -182, -182, 65, 65, 65, 65, 65, 65, 65, 65, -182, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 241, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -183, -183, -183, -183, -183, -183, -183, -183, 64, -183, -183, 65, 65, 65, 65, 65, 65, 65, 65, -183, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 242, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -184, -184, -184, -184, -184, -184, -184, -184, 64, -184, -184, 65, 65, 65, 65, 65, 65, 65, 65, -184, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 243, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -185, -185, -185, -185, -185, -185, -185, -185, 64, -185, -185, 65, 65, 65, 65, 65, 65, 65, 65, -185, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 244, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -186, -186, -186, -186, -186, -186, -186, -186, 64, -186, -186, 65, 65, 65, 65, 65, 65, 65, 65, -186, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 245, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -187, -187, -187, -187, -187, -187, -187, -187, 64, -187, -187, 65, 65, 65, 65, 65, 65, 65, 65, -187, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 246, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -188, -188, -188, -188, -188, -188, -188, -188, 64, -188, -188, 65, 65, 65, 65, 65, 65, 65, 65, -188, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 247, 65, 65, 65, 65, 65, 65 }, { 5, -189, -189, -189, -189, -189, -189, -189, -189, 64, -189, -189, 65, 65, 65, 65, 65, 65, 65, 65, -189, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 248, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -190, -190, -190, -190, -190, -190, -190, -190, 64, -190, -190, 65, 65, 65, 65, 65, 65, 65, 65, -190, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 249, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -191, -191, -191, -191, -191, -191, -191, -191, 64, -191, -191, 65, 65, 65, 65, 65, 65, 65, 65, -191, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 250, 65, 65 }, { 5, -192, -192, -192, -192, -192, -192, -192, -192, 64, -192, -192, 65, 65, 65, 65, 65, 65, 65, 65, -192, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 251, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -193, -193, -193, -193, -193, -193, -193, -193, 64, -193, -193, 65, 65, 65, 65, 65, 65, 65, 65, -193, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 252, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -194, -194, -194, -194, -194, -194, -194, -194, 64, -194, -194, 65, 65, 65, 65, 65, 65, 65, 65, -194, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 253, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -195, -195, -195, -195, -195, -195, -195, -195, 64, -195, -195, 65, 65, 65, 65, 65, 65, 65, 65, -195, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 254, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 255, 255, 255, 255, 255, 255, 255, 255, 64, 255, 255, 65, 65, 65, 65, 65, 65, 65, 65, 255, 65, 65, 65, 65, 65, 65, 65, 65, 65, 256, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -197, -197, -197, -197, -197, -197, -197, -197, 64, -197, -197, 65, 65, 65, 65, 65, 65, 65, 65, -197, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 257, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -198, -198, -198, -198, -198, -198, -198, -198, 64, -198, -198, 65, 65, 65, 65, 65, 65, 65, 65, -198, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 258, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -199, -199, -199, -199, -199, -199, -199, -199, 64, -199, -199, 65, 65, 65, 65, 65, 65, 65, 65, -199, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 259, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200, -200 }, { 5, -201, -201, -201, -201, -201, -201, -201, -201, 64, -201, -201, 65, 65, 65, 65, 65, 65, 65, 65, -201, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -202, -202, -202, -202, -202, -202, -202, -202, 64, -202, -202, 65, 65, 65, 65, 65, 65, 65, 65, -202, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 260, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -203, -203, -203, -203, -203, -203, -203, -203, 64, -203, -203, 65, 65, 65, 65, 65, 65, 65, 65, -203, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 261, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -204, -204, -204, -204, -204, -204, -204, -204, 64, -204, -204, 65, 65, 65, 65, 65, 65, 65, 65, -204, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 262, 65, 65, 65, 65, 65, 65, 263, 65, 65, 65 }, { 5, -205, -205, -205, -205, -205, -205, -205, -205, 64, -205, -205, 65, 65, 65, 65, 65, 65, 65, 65, -205, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 264, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -206, -206, -206, -206, -206, -206, -206, -206, 64, -206, -206, 65, 65, 65, 65, 65, 65, 65, 65, -206, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 265, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -207, -207, -207, -207, -207, -207, -207, -207, 64, -207, -207, 65, 65, 65, 65, 65, 65, 65, 65, -207, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 266, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -208, -208, -208, -208, -208, -208, -208, -208, 64, -208, -208, 65, 65, 65, 65, 65, 65, 65, 65, -208, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 267, 65, 65, 65, 65, 65, 65, 65 }, { 5, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209, -209 }, { 5, -210, -210, -210, -210, -210, -210, -210, -210, 64, -210, -210, 65, 65, 65, 65, 65, 65, 65, 65, -210, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -211, -211, -211, -211, -211, -211, -211, -211, 64, -211, -211, 65, 65, 65, 65, 65, 65, 65, 65, -211, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 268, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -212, -212, -212, -212, -212, -212, -212, -212, 64, -212, -212, 65, 65, 65, 65, 65, 65, 65, 65, -212, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 269, 65, 65, 65, 65, 65, 65, 65 }, { 5, -213, -213, -213, -213, -213, -213, -213, -213, 64, -213, -213, 65, 65, 65, 65, 65, 65, 65, 65, -213, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 270, 65, 65, 65, 65, 65 }, { 5, -214, -214, -214, -214, -214, -214, -214, -214, 64, -214, -214, 65, 65, 65, 65, 65, 65, 65, 65, -214, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 271, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 272, 272, 272, 272, 272, 272, 272, 272, 64, 272, 272, 65, 65, 65, 65, 65, 65, 65, 65, 272, 65, 65, 65, 65, 65, 65, 65, 65, 65, 273, 65, 65, 65, 274, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -216, -216, -216, -216, -216, -216, -216, -216, 64, -216, -216, 65, 65, 65, 65, 65, 65, 65, 65, -216, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 275, 65, 65, 65, 65, 65, 65, 65 }, { 5, -217, -217, -217, -217, -217, -217, -217, -217, 64, -217, -217, 65, 65, 65, 65, 65, 65, 65, 65, -217, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 276, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218, -218 }, { 5, -219, -219, -219, -219, -219, -219, -219, -219, -219, -219, -219, 219, 107, 107, 107, 107, 107, 107, 107, -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 }, { 5, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220, -220 }, { 5, -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 }, { 5, -222, -222, -222, -222, -222, -222, -222, -222, 55, -222, -222, 56, 56, 56, 56, 56, 56, 56, 56, -222, 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 }, { 5, -223, -223, -223, -223, -223, -223, -223, -223, 55, -223, -223, 56, 56, 56, 56, 56, 56, 56, 56, -223, 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, 277, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -224, -224, -224, -224, -224, -224, -224, -224, 55, -224, -224, 56, 278, 56, 279, 56, 56, 280, 56, -224, 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 }, { 5, -225, -225, -225, -225, -225, -225, -225, -225, 55, -225, -225, 56, 56, 56, 56, 56, 56, 56, 56, -225, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 281, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -226, -226, -226, -226, -226, -226, -226, -226, 55, -226, -226, 56, 56, 56, 56, 56, 56, 56, 56, -226, 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, 282, 56, 56, 56, 56, 56, 56 }, { 5, -227, -227, -227, -227, -227, -227, -227, -227, 55, -227, -227, 56, 56, 56, 56, 56, 56, 56, 56, -227, 56, 56, 56, 56, 56, 56, 56, 283, 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 }, { 5, -228, -228, -228, -228, -228, -228, -228, -228, 55, -228, -228, 56, 56, 56, 56, 56, 56, 56, 56, -228, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 284, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229, -229 }, { 5, -230, -230, -230, -230, -230, -230, -230, -230, 64, -230, -230, 65, 65, 65, 65, 65, 65, 65, 65, -230, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -231, -231, -231, -231, -231, -231, -231, -231, 64, -231, -231, 65, 65, 65, 65, 65, 65, 65, 65, -231, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 285, 65, 65, 65, 65, 65, 65, 65 }, { 5, -232, -232, -232, -232, -232, -232, -232, -232, 64, -232, -232, 65, 65, 65, 65, 65, 65, 65, 65, -232, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 286, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -233, -233, -233, -233, -233, -233, -233, -233, 64, -233, -233, 65, 65, 65, 65, 65, 65, 65, 65, -233, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 287, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -234, -234, -234, -234, -234, -234, -234, -234, 64, -234, -234, 65, 65, 65, 65, 65, 65, 65, 65, -234, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 288, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -235, -235, -235, -235, -235, -235, -235, -235, 64, -235, -235, 65, 65, 65, 65, 65, 65, 65, 65, -235, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 289, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -236, -236, -236, -236, -236, -236, -236, -236, 64, -236, -236, 65, 65, 65, 65, 65, 65, 65, 65, -236, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 290, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -237, -237, -237, -237, -237, -237, -237, -237, 64, -237, -237, 65, 65, 65, 65, 65, 65, 65, 65, -237, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 291, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238, -238 }, { 5, -239, -239, -239, -239, -239, -239, -239, -239, 64, -239, -239, 65, 65, 65, 65, 65, 65, 65, 65, -239, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -240, -240, -240, -240, -240, -240, -240, -240, 64, -240, -240, 65, 65, 65, 65, 65, 65, 65, 65, -240, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 292, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -241, -241, -241, -241, -241, -241, -241, -241, 64, -241, -241, 65, 65, 65, 65, 65, 65, 65, 65, -241, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 293, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -242, -242, -242, -242, -242, -242, -242, -242, 64, -242, -242, 65, 65, 65, 65, 65, 65, 65, 65, -242, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 294, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -243, -243, -243, -243, -243, -243, -243, -243, 64, -243, -243, 65, 65, 65, 65, 65, 65, 65, 65, -243, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 295, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -244, -244, -244, -244, -244, -244, -244, -244, 64, -244, -244, 65, 65, 65, 65, 65, 65, 65, 65, -244, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 296, 65, 65, 65, 65, 65, 65, 65 }, { 5, -245, -245, -245, -245, -245, -245, -245, -245, 64, -245, -245, 65, 65, 65, 65, 65, 65, 65, 65, -245, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 297, 65, 65, 65, 65, 65, 65 }, { 5, 298, 298, 298, 298, 298, 298, 298, 298, 64, 298, 298, 65, 65, 65, 65, 65, 65, 65, 65, 298, 65, 65, 65, 65, 65, 65, 65, 65, 65, 299, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -247, -247, -247, -247, -247, -247, -247, -247, 64, -247, -247, 65, 65, 65, 65, 65, 65, 65, 65, -247, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 300, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -248, -248, -248, -248, -248, -248, -248, -248, 64, -248, -248, 65, 65, 65, 65, 65, 65, 65, 65, -248, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 301, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -249, -249, -249, -249, -249, -249, -249, -249, 64, -249, -249, 65, 65, 65, 65, 65, 65, 65, 65, -249, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 302, 65, 65, 65, 65, 65, 65 }, { 5, 303, 303, 303, 303, 303, 303, 303, 303, 64, 303, 303, 65, 65, 65, 65, 65, 65, 65, 65, 303, 65, 65, 65, 65, 65, 65, 65, 65, 65, 304, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -251, -251, -251, -251, -251, -251, -251, -251, 64, -251, -251, 65, 65, 65, 65, 65, 65, 65, 65, -251, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 305, 65, 65, 65, 65, 65, 65 }, { 5, -252, -252, -252, -252, -252, -252, -252, -252, 64, -252, -252, 65, 65, 65, 65, 65, 65, 65, 65, -252, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 306, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -253, -253, -253, -253, -253, -253, -253, -253, 64, -253, -253, 65, 65, 65, 65, 65, 65, 65, 65, -253, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 307, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -254, -254, -254, -254, -254, -254, -254, -254, 64, -254, -254, 65, 65, 65, 65, 65, 65, 65, 65, -254, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 308, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255, -255 }, { 5, -256, -256, -256, -256, -256, -256, -256, -256, 64, -256, -256, 65, 65, 65, 65, 65, 65, 65, 65, -256, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -257, -257, -257, -257, -257, -257, -257, -257, 64, -257, -257, 65, 65, 65, 65, 65, 65, 65, 65, -257, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 309, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 310, 65 }, { 5, -258, -258, -258, -258, -258, -258, -258, -258, 64, -258, -258, 65, 65, 65, 65, 65, 65, 65, 65, -258, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 311, 65, 65, 65, 65, 65, 65 }, { 5, -259, -259, -259, -259, -259, -259, -259, -259, 64, -259, -259, 65, 65, 65, 65, 65, 65, 65, 65, -259, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 312, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -260, -260, -260, -260, -260, -260, -260, -260, 64, -260, -260, 65, 65, 65, 65, 65, 65, 65, 65, -260, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 313, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -261, -261, -261, -261, -261, -261, -261, -261, 64, -261, -261, 65, 65, 65, 65, 65, 65, 65, 65, -261, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 314, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -262, -262, -262, -262, -262, -262, -262, -262, 64, -262, -262, 65, 65, 65, 65, 65, 65, 65, 65, -262, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 315, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -263, -263, -263, -263, -263, -263, -263, -263, 64, -263, -263, 65, 65, 65, 65, 65, 65, 65, 65, -263, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 316, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -264, -264, -264, -264, -264, -264, -264, -264, 64, -264, -264, 65, 65, 65, 65, 65, 65, 65, 65, -264, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 317, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -265, -265, -265, -265, -265, -265, -265, -265, 64, -265, -265, 65, 65, 65, 65, 65, 65, 65, 65, -265, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 318, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -266, -266, -266, -266, -266, -266, -266, -266, 64, -266, -266, 65, 65, 65, 65, 65, 65, 65, 65, -266, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 319, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -267, -267, -267, -267, -267, -267, -267, -267, 64, -267, -267, 65, 65, 65, 65, 65, 65, 65, 65, -267, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 320, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -268, -268, -268, -268, -268, -268, -268, -268, 64, -268, -268, 65, 65, 65, 65, 65, 65, 65, 65, -268, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 321, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -269, -269, -269, -269, -269, -269, -269, -269, 64, -269, -269, 65, 65, 65, 65, 65, 65, 65, 65, -269, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 322, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -270, -270, -270, -270, -270, -270, -270, -270, 64, -270, -270, 65, 65, 65, 65, 65, 65, 65, 65, -270, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 323, 65, 65, 65, 65, 65, 65, 65 }, { 5, 324, 324, 324, 324, 324, 324, 324, 324, 64, 324, 324, 65, 65, 65, 65, 65, 65, 65, 65, 324, 65, 65, 65, 65, 65, 65, 65, 65, 65, 325, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272, -272 }, { 5, -273, -273, -273, -273, -273, -273, -273, -273, 64, -273, -273, 65, 65, 65, 65, 65, 65, 65, 65, -273, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -274, -274, -274, -274, -274, -274, -274, -274, 64, -274, -274, 65, 65, 65, 65, 65, 65, 65, 65, -274, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 326, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 327, 327, 327, 327, 327, 327, 327, 327, 64, 327, 327, 65, 65, 65, 65, 65, 65, 65, 65, 327, 65, 65, 65, 65, 65, 65, 65, 65, 65, 328, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -276, -276, -276, -276, -276, -276, -276, -276, 64, -276, -276, 65, 65, 65, 65, 65, 65, 65, 65, -276, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 329, 65, 65, 65, 65, 65, 65 }, { 5, -277, -277, -277, -277, -277, -277, -277, -277, 55, -277, -277, 56, 56, 56, 56, 56, 56, 56, 56, -277, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 330, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -278, -278, -278, -278, -278, -278, -278, -278, 55, -278, -278, 56, 56, 331, 56, 56, 56, 56, 56, -278, 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 }, { 5, -279, -279, -279, -279, -279, -279, -279, -279, 55, -279, -279, 56, 56, 332, 56, 56, 56, 56, 56, -279, 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 }, { 5, -280, -280, -280, -280, -280, -280, -280, -280, 55, -280, -280, 56, 56, 56, 56, 333, 56, 56, 56, -280, 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 }, { 5, -281, -281, -281, -281, -281, -281, -281, -281, 55, -281, -281, 56, 56, 56, 56, 56, 56, 56, 56, -281, 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, 334, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -282, -282, -282, -282, -282, -282, -282, -282, 55, -282, -282, 56, 56, 56, 56, 56, 56, 56, 56, -282, 56, 56, 56, 56, 56, 335, 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 }, { 5, -283, -283, -283, -283, -283, -283, -283, -283, 55, -283, -283, 56, 56, 56, 56, 56, 56, 56, 56, -283, 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, 336, 56, 56, 56, 56, 56, 56 }, { 5, -284, -284, -284, -284, -284, -284, -284, -284, 55, -284, -284, 56, 56, 56, 56, 56, 56, 56, 56, -284, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 337, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 338, 338, 338, 338, 338, 338, 338, 338, 64, 338, 338, 65, 65, 65, 65, 65, 65, 65, 65, 338, 65, 65, 65, 65, 65, 65, 65, 65, 65, 339, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -286, -286, -286, -286, -286, -286, -286, -286, 64, -286, -286, 65, 65, 65, 65, 65, 65, 65, 65, -286, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 340, 65, 65, 65, 65, 65, 65 }, { 5, 341, 341, 341, 341, 341, 341, 341, 341, 64, 341, 341, 65, 65, 65, 65, 65, 65, 65, 65, 341, 65, 65, 65, 65, 65, 65, 65, 65, 65, 342, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -288, -288, -288, -288, -288, -288, -288, -288, 64, -288, -288, 65, 65, 65, 65, 65, 65, 65, 65, -288, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 343, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -289, -289, -289, -289, -289, -289, -289, -289, 64, -289, -289, 65, 65, 65, 65, 65, 65, 65, 65, -289, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 344, 65, 65, 65, 65, 65, 65 }, { 5, 345, 345, 345, 345, 345, 345, 345, 345, 64, 345, 345, 65, 65, 65, 65, 65, 65, 65, 65, 345, 65, 65, 65, 65, 65, 65, 65, 65, 65, 346, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -291, -291, -291, -291, -291, -291, -291, -291, 64, -291, -291, 65, 65, 65, 65, 65, 65, 65, 65, -291, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 347, 65, 65, 65, 65, 65, 65 }, { 5, -292, -292, -292, -292, -292, -292, -292, -292, 64, -292, -292, 65, 65, 65, 65, 65, 65, 65, 65, -292, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 348, 65, 65, 65, 65, 65, 65 }, { 5, -293, -293, -293, -293, -293, -293, -293, -293, 64, -293, -293, 65, 65, 65, 65, 65, 65, 65, 65, -293, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 349, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -294, -294, -294, -294, -294, -294, -294, -294, 64, -294, -294, 65, 65, 65, 65, 65, 65, 65, 65, -294, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 350, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -295, -295, -295, -295, -295, -295, -295, -295, 64, -295, -295, 65, 65, 65, 65, 65, 65, 65, 65, -295, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 351, 65, 65, 65, 65, 65, 65, 65 }, { 5, -296, -296, -296, -296, -296, -296, -296, -296, 64, -296, -296, 65, 65, 65, 65, 65, 65, 65, 65, -296, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 352, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 353, 353, 353, 353, 353, 353, 353, 353, 64, 353, 353, 65, 65, 65, 65, 65, 65, 65, 65, 353, 65, 65, 65, 65, 65, 65, 65, 65, 65, 354, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -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, -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, -298, -298, -298, -298 }, { 5, -299, -299, -299, -299, -299, -299, -299, -299, 64, -299, -299, 65, 65, 65, 65, 65, 65, 65, 65, -299, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -300, -300, -300, -300, -300, -300, -300, -300, 64, -300, -300, 65, 65, 65, 65, 65, 65, 65, 65, -300, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 355, 65, 65, 65, 65, 65, 65 }, { 5, -301, -301, -301, -301, -301, -301, -301, -301, 64, -301, -301, 65, 65, 65, 65, 65, 65, 65, 65, -301, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 356, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 357, 357, 357, 357, 357, 357, 357, 357, 64, 357, 357, 65, 65, 65, 65, 65, 65, 65, 65, 357, 65, 65, 65, 65, 65, 65, 65, 65, 65, 358, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303, -303 }, { 5, -304, -304, -304, -304, -304, -304, -304, -304, 64, -304, -304, 65, 65, 65, 65, 65, 65, 65, 65, -304, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -305, -305, -305, -305, -305, -305, -305, -305, 64, -305, -305, 65, 65, 65, 65, 65, 65, 65, 65, -305, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 359, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -306, -306, -306, -306, -306, -306, -306, -306, 64, -306, -306, 65, 65, 65, 65, 65, 65, 65, 65, -306, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 360, 65, 65, 65, 65, 65, 65, 65 }, { 5, 361, 361, 361, 361, 361, 361, 361, 361, 64, 361, 361, 65, 65, 65, 65, 65, 65, 65, 65, 361, 65, 65, 65, 65, 65, 65, 65, 65, 65, 362, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -308, -308, -308, -308, -308, -308, -308, -308, 64, -308, -308, 65, 65, 65, 65, 65, 65, 65, 65, -308, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 363, 65, 65, 65, 65, 65, 65, 65 }, { 5, -309, -309, -309, -309, -309, -309, -309, -309, 64, -309, -309, 65, 65, 65, 65, 65, 65, 65, 65, -309, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 364, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -310, -310, -310, -310, -310, -310, -310, -310, 64, -310, -310, 65, 65, 65, 65, 65, 65, 65, 65, -310, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 365, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -311, -311, -311, -311, -311, -311, -311, -311, 64, -311, -311, 65, 65, 65, 65, 65, 65, 65, 65, -311, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 366, 65, 65, 65, 65, 65, 65, 65 }, { 5, -312, -312, -312, -312, -312, -312, -312, -312, 64, -312, -312, 65, 65, 65, 65, 65, 65, 65, 65, -312, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 367, 65, 65, 65, 65, 65, 65 }, { 5, -313, -313, -313, -313, -313, -313, -313, -313, 64, -313, -313, 65, 65, 65, 65, 65, 65, 65, 65, -313, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 368, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -314, -314, -314, -314, -314, -314, -314, -314, 64, -314, -314, 65, 65, 65, 65, 65, 65, 65, 65, -314, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 369 }, { 5, -315, -315, -315, -315, -315, -315, -315, -315, 64, -315, -315, 65, 65, 65, 65, 65, 65, 65, 65, -315, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 370, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -316, -316, -316, -316, -316, -316, -316, -316, 64, -316, -316, 65, 65, 65, 65, 65, 65, 65, 65, -316, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 371, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -317, -317, -317, -317, -317, -317, -317, -317, 64, -317, -317, 65, 65, 65, 65, 65, 65, 65, 65, -317, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 372, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 373, 373, 373, 373, 373, 373, 373, 373, 64, 373, 373, 65, 65, 65, 65, 65, 65, 65, 65, 373, 65, 65, 65, 65, 65, 65, 65, 65, 65, 374, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -319, -319, -319, -319, -319, -319, -319, -319, 64, -319, -319, 65, 65, 65, 65, 65, 65, 65, 65, -319, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 375, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -320, -320, -320, -320, -320, -320, -320, -320, 64, -320, -320, 65, 65, 65, 65, 65, 65, 65, 65, -320, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 376, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 377, 377, 377, 377, 377, 377, 377, 377, 64, 377, 377, 65, 65, 65, 65, 65, 65, 65, 65, 377, 65, 65, 65, 65, 65, 65, 65, 65, 65, 378, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 379, 379, 379, 379, 379, 379, 379, 379, 64, 379, 379, 65, 65, 65, 65, 65, 65, 65, 65, 379, 65, 65, 65, 65, 65, 65, 65, 65, 65, 380, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 381, 381, 381, 381, 381, 381, 381, 381, 64, 381, 381, 65, 65, 65, 65, 65, 65, 65, 65, 381, 65, 65, 65, 65, 65, 65, 65, 65, 65, 382, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324, -324 }, { 5, -325, -325, -325, -325, -325, -325, -325, -325, 64, -325, -325, 65, 65, 65, 65, 65, 65, 65, 65, -325, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -326, -326, -326, -326, -326, -326, -326, -326, 64, -326, -326, 65, 65, 65, 65, 65, 65, 65, 65, -326, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 383, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327, -327 }, { 5, -328, -328, -328, -328, -328, -328, -328, -328, 64, -328, -328, 65, 65, 65, 65, 65, 65, 65, 65, -328, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -329, -329, -329, -329, -329, -329, -329, -329, 64, -329, -329, 65, 65, 65, 65, 65, 65, 65, 65, -329, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 384, 65 }, { 5, -330, -330, -330, -330, -330, -330, -330, -330, 55, -330, -330, 56, 56, 56, 56, 56, 56, 56, 56, -330, 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, 385, 56, 56, 56, 56, 56, 56 }, { 5, -331, -331, -331, -331, -331, -331, -331, -331, 55, -331, -331, 56, 56, 56, 56, 56, 56, 56, 386, -331, 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 }, { 5, 387, 387, 387, 387, 387, 387, 387, 387, 55, 387, 387, 56, 56, 56, 56, 56, 56, 56, 56, 387, 56, 56, 56, 56, 56, 56, 56, 56, 56, 388, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 389, 389, 389, 389, 389, 389, 389, 389, 55, 389, 389, 56, 56, 56, 56, 56, 56, 56, 56, 389, 56, 56, 56, 56, 56, 56, 56, 56, 56, 390, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -334, -334, -334, -334, -334, -334, -334, -334, 55, -334, -334, 56, 56, 56, 391, 56, 56, 392, 56, -334, 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 }, { 5, -335, -335, -335, -335, -335, -335, -335, -335, 55, -335, -335, 56, 56, 56, 56, 56, 56, 56, 56, -335, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 393, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -336, -336, -336, -336, -336, -336, -336, -336, 55, -336, -336, 56, 56, 56, 56, 56, 56, 56, 56, -336, 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, 394, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -337, -337, -337, -337, -337, -337, -337, -337, 55, -337, -337, 56, 56, 56, 56, 56, 56, 56, 56, -337, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 395, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338 }, { 5, -339, -339, -339, -339, -339, -339, -339, -339, 64, -339, -339, 65, 65, 65, 65, 65, 65, 65, 65, -339, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -340, -340, -340, -340, -340, -340, -340, -340, 64, -340, -340, 65, 65, 65, 65, 65, 65, 65, 65, -340, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 396, 65, 65, 65, 65, 65, 65, 65 }, { 5, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341, -341 }, { 5, -342, -342, -342, -342, -342, -342, -342, -342, 64, -342, -342, 65, 65, 65, 65, 65, 65, 65, 65, -342, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -343, -343, -343, -343, -343, -343, -343, -343, 64, -343, -343, 65, 65, 65, 65, 65, 65, 65, 65, -343, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 397, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 398, 398, 398, 398, 398, 398, 398, 398, 64, 398, 398, 65, 65, 65, 65, 65, 65, 65, 65, 398, 65, 65, 65, 65, 65, 65, 65, 65, 65, 399, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345 }, { 5, -346, -346, -346, -346, -346, -346, -346, -346, 64, -346, -346, 65, 65, 65, 65, 65, 65, 65, 65, -346, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 400, 400, 400, 400, 400, 400, 400, 400, 64, 400, 400, 65, 65, 65, 65, 65, 65, 65, 65, 400, 65, 65, 65, 65, 65, 65, 65, 65, 65, 401, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 402, 402, 402, 402, 402, 402, 402, 402, 64, 402, 402, 65, 65, 65, 65, 65, 65, 65, 65, 402, 65, 65, 65, 65, 65, 65, 65, 65, 65, 403, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -349, -349, -349, -349, -349, -349, -349, -349, 64, -349, -349, 65, 65, 65, 65, 65, 65, 65, 65, -349, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 404, 65, 65, 65, 65, 65, 65 }, { 5, -350, -350, -350, -350, -350, -350, -350, -350, 64, -350, -350, 65, 65, 65, 65, 65, 65, 65, 65, -350, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 405, 65, 65, 65, 65, 65, 65 }, { 5, 406, 406, 406, 406, 406, 406, 406, 406, 64, 406, 406, 65, 65, 65, 65, 65, 65, 65, 65, 406, 65, 65, 65, 65, 65, 65, 65, 65, 65, 407, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -352, -352, -352, -352, -352, -352, -352, -352, 64, -352, -352, 65, 65, 65, 65, 65, 65, 65, 65, -352, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 408, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353, -353 }, { 5, -354, -354, -354, -354, -354, -354, -354, -354, 64, -354, -354, 65, 65, 65, 65, 65, 65, 65, 65, -354, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -355, -355, -355, -355, -355, -355, -355, -355, 64, -355, -355, 65, 65, 65, 65, 65, 65, 65, 65, -355, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 409, 65 }, { 5, 410, 410, 410, 410, 410, 410, 410, 410, 64, 410, 410, 65, 65, 65, 65, 65, 65, 65, 65, 410, 65, 65, 65, 65, 65, 65, 65, 65, 65, 411, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357, -357 }, { 5, -358, -358, -358, -358, -358, -358, -358, -358, 64, -358, -358, 65, 65, 65, 65, 65, 65, 65, 65, -358, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -359, -359, -359, -359, -359, -359, -359, -359, 64, -359, -359, 65, 65, 65, 65, 65, 65, 65, 65, -359, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 412, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 413, 413, 413, 413, 413, 413, 413, 413, 64, 413, 413, 65, 65, 65, 65, 65, 65, 65, 65, 413, 65, 65, 65, 65, 65, 65, 65, 65, 65, 414, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361, -361 }, { 5, -362, -362, -362, -362, -362, -362, -362, -362, 64, -362, -362, 65, 65, 65, 65, 65, 65, 65, 65, -362, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -363, -363, -363, -363, -363, -363, -363, -363, 64, -363, -363, 65, 65, 65, 65, 65, 65, 65, 65, -363, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 415, 65, 65, 65, 65, 65, 65, 65 }, { 5, -364, -364, -364, -364, -364, -364, -364, -364, 64, -364, -364, 65, 65, 65, 65, 65, 65, 65, 65, -364, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 416, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -365, -365, -365, -365, -365, -365, -365, -365, 64, -365, -365, 65, 65, 65, 65, 65, 65, 65, 65, -365, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 417, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 418, 418, 418, 418, 418, 418, 418, 418, 64, 418, 418, 65, 65, 65, 65, 65, 65, 65, 65, 418, 65, 65, 65, 65, 65, 65, 65, 65, 65, 419, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -367, -367, -367, -367, -367, -367, -367, -367, 64, -367, -367, 65, 65, 65, 65, 65, 65, 65, 65, -367, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 420, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -368, -368, -368, -368, -368, -368, -368, -368, 64, -368, -368, 65, 65, 65, 65, 65, 65, 65, 65, -368, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 421, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -369, -369, -369, -369, -369, -369, -369, -369, 64, -369, -369, 65, 65, 65, 65, 65, 65, 65, 65, -369, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 422, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -370, -370, -370, -370, -370, -370, -370, -370, 64, -370, -370, 65, 65, 65, 65, 65, 65, 65, 65, -370, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 423, 65 }, { 5, -371, -371, -371, -371, -371, -371, -371, -371, 64, -371, -371, 65, 65, 65, 65, 65, 65, 65, 65, -371, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 424, 65, 65, 65, 65, 65, 65 }, { 5, -372, -372, -372, -372, -372, -372, -372, -372, 64, -372, -372, 65, 65, 65, 65, 65, 65, 65, 65, -372, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 425, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, -373 }, { 5, -374, -374, -374, -374, -374, -374, -374, -374, 64, -374, -374, 65, 65, 65, 65, 65, 65, 65, 65, -374, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -375, -375, -375, -375, -375, -375, -375, -375, 64, -375, -375, 65, 65, 65, 65, 65, 65, 65, 65, -375, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 426, 65, 65, 65, 65, 65, 65, 65 }, { 5, -376, -376, -376, -376, -376, -376, -376, -376, 64, -376, -376, 65, 65, 65, 65, 65, 65, 65, 65, -376, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 427, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377, -377 }, { 5, -378, -378, -378, -378, -378, -378, -378, -378, 64, -378, -378, 65, 65, 65, 65, 65, 65, 65, 65, -378, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379, -379 }, { 5, -380, -380, -380, -380, -380, -380, -380, -380, 64, -380, -380, 65, 65, 65, 65, 65, 65, 65, 65, -380, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381, -381 }, { 5, -382, -382, -382, -382, -382, -382, -382, -382, 64, -382, -382, 65, 65, 65, 65, 65, 65, 65, 65, -382, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 428, 428, 428, 428, 428, 428, 428, 428, 64, 428, 428, 65, 65, 65, 65, 65, 65, 65, 65, 428, 65, 65, 65, 65, 65, 65, 65, 65, 65, 429, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -384, -384, -384, -384, -384, -384, -384, -384, 64, -384, -384, 65, 65, 65, 65, 65, 65, 65, 65, -384, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 430, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -385, -385, -385, -385, -385, -385, -385, -385, 55, -385, -385, 56, 56, 56, 56, 56, 56, 56, 56, -385, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 431, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 432, 432, 432, 432, 432, 432, 432, 432, 55, 432, 432, 56, 56, 56, 56, 56, 56, 56, 56, 432, 56, 56, 56, 56, 56, 56, 56, 56, 56, 433, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387, -387 }, { 5, -388, -388, -388, -388, -388, -388, -388, -388, 55, -388, -388, 56, 56, 56, 56, 56, 56, 56, 56, -388, 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 }, { 5, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389, -389 }, { 5, -390, -390, -390, -390, -390, -390, -390, -390, 55, -390, -390, 56, 56, 56, 56, 56, 56, 56, 56, -390, 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 }, { 5, -391, -391, -391, -391, -391, -391, -391, -391, 55, -391, -391, 56, 56, 434, 56, 56, 56, 56, 56, -391, 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 }, { 5, -392, -392, -392, -392, -392, -392, -392, -392, 55, -392, -392, 56, 56, 56, 56, 435, 56, 56, 56, -392, 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 }, { 5, -393, -393, -393, -393, -393, -393, -393, -393, 55, -393, -393, 56, 56, 56, 56, 56, 56, 56, 56, -393, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 436, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -394, -394, -394, -394, -394, -394, -394, -394, 55, -394, -394, 56, 56, 56, 56, 56, 56, 56, 56, -394, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 437, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -395, -395, -395, -395, -395, -395, -395, -395, 55, -395, -395, 56, 56, 56, 438, 56, 56, 439, 56, -395, 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 }, { 5, 440, 440, 440, 440, 440, 440, 440, 440, 64, 440, 440, 65, 65, 65, 65, 65, 65, 65, 65, 440, 65, 65, 65, 65, 65, 65, 65, 65, 65, 441, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -397, -397, -397, -397, -397, -397, -397, -397, 64, -397, -397, 65, 65, 65, 65, 65, 65, 65, 65, -397, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 442, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398, -398 }, { 5, -399, -399, -399, -399, -399, -399, -399, -399, 64, -399, -399, 65, 65, 65, 65, 65, 65, 65, 65, -399, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -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, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400, -400 }, { 5, -401, -401, -401, -401, -401, -401, -401, -401, 64, -401, -401, 65, 65, 65, 65, 65, 65, 65, 65, -401, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402, -402 }, { 5, -403, -403, -403, -403, -403, -403, -403, -403, 64, -403, -403, 65, 65, 65, 65, 65, 65, 65, 65, -403, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -404, -404, -404, -404, -404, -404, -404, -404, 64, -404, -404, 65, 65, 65, 65, 65, 65, 65, 65, -404, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 443, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -405, -405, -405, -405, -405, -405, -405, -405, 64, -405, -405, 65, 65, 65, 65, 65, 65, 65, 65, -405, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 444, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406, -406 }, { 5, -407, -407, -407, -407, -407, -407, -407, -407, 64, -407, -407, 65, 65, 65, 65, 65, 65, 65, 65, -407, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -408, -408, -408, -408, -408, -408, -408, -408, 64, -408, -408, 65, 65, 65, 65, 65, 65, 65, 65, -408, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 445, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 446, 446, 446, 446, 446, 446, 446, 446, 64, 446, 446, 65, 65, 65, 65, 65, 65, 65, 65, 446, 65, 65, 65, 65, 65, 65, 65, 65, 65, 447, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, -410 }, { 5, -411, -411, -411, -411, -411, -411, -411, -411, 64, -411, -411, 65, 65, 65, 65, 65, 65, 65, 65, -411, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -412, -412, -412, -412, -412, -412, -412, -412, 64, -412, -412, 65, 65, 65, 65, 65, 65, 65, 65, -412, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 448, 65 }, { 5, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413, -413 }, { 5, -414, -414, -414, -414, -414, -414, -414, -414, 64, -414, -414, 65, 65, 65, 65, 65, 65, 65, 65, -414, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 449, 449, 449, 449, 449, 449, 449, 449, 64, 449, 449, 65, 65, 65, 65, 65, 65, 65, 65, 449, 65, 65, 65, 65, 65, 65, 65, 65, 65, 450, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -416, -416, -416, -416, -416, -416, -416, -416, 64, -416, -416, 65, 65, 65, 65, 65, 65, 65, 65, -416, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 451, 65, 65, 65, 65, 65, 65 }, { 5, -417, -417, -417, -417, -417, -417, -417, -417, 64, -417, -417, 65, 65, 65, 65, 65, 65, 65, 65, -417, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 452, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418, -418 }, { 5, -419, -419, -419, -419, -419, -419, -419, -419, 64, -419, -419, 65, 65, 65, 65, 65, 65, 65, 65, -419, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 453, 453, 453, 453, 453, 453, 453, 453, 64, 453, 453, 65, 65, 65, 65, 65, 65, 65, 65, 453, 65, 65, 65, 65, 65, 65, 65, 65, 65, 454, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 455, 455, 455, 455, 455, 455, 455, 455, 64, 455, 455, 65, 65, 65, 65, 65, 65, 65, 65, 455, 65, 65, 65, 65, 65, 65, 65, 65, 65, 456, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -422, -422, -422, -422, -422, -422, -422, -422, 64, -422, -422, 65, 65, 65, 65, 65, 65, 65, 65, -422, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 457, 65, 65, 65, 65, 65, 65 }, { 5, 458, 458, 458, 458, 458, 458, 458, 458, 64, 458, 458, 65, 65, 65, 65, 65, 65, 65, 65, 458, 65, 65, 65, 65, 65, 65, 65, 65, 65, 459, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -424, -424, -424, -424, -424, -424, -424, -424, 64, -424, -424, 65, 65, 65, 65, 65, 65, 65, 65, -424, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 460, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -425, -425, -425, -425, -425, -425, -425, -425, 64, -425, -425, 65, 65, 65, 65, 65, 65, 65, 65, -425, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 461, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 462, 462, 462, 462, 462, 462, 462, 462, 64, 462, 462, 65, 65, 65, 65, 65, 65, 65, 65, 462, 65, 65, 65, 65, 65, 65, 65, 65, 65, 463, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 464, 464, 464, 464, 464, 464, 464, 464, 64, 464, 464, 65, 65, 65, 65, 65, 65, 65, 65, 464, 65, 65, 65, 65, 65, 65, 65, 65, 65, 465, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428, -428 }, { 5, -429, -429, -429, -429, -429, -429, -429, -429, 64, -429, -429, 65, 65, 65, 65, 65, 65, 65, 65, -429, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -430, -430, -430, -430, -430, -430, -430, -430, 64, -430, -430, 65, 65, 65, 65, 65, 65, 65, 65, -430, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 466, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -431, -431, -431, -431, -431, -431, -431, -431, 55, -431, -431, 56, 56, 56, 56, 56, 56, 56, 56, -431, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 467, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, -432 }, { 5, -433, -433, -433, -433, -433, -433, -433, -433, 55, -433, -433, 56, 56, 56, 56, 56, 56, 56, 56, -433, 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 }, { 5, 468, 468, 468, 468, 468, 468, 468, 468, 55, 468, 468, 56, 56, 56, 56, 56, 56, 56, 56, 468, 56, 56, 56, 56, 56, 56, 56, 56, 56, 469, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 470, 470, 470, 470, 470, 470, 470, 470, 55, 470, 470, 56, 56, 56, 56, 56, 56, 56, 56, 470, 56, 56, 56, 56, 56, 56, 56, 56, 56, 471, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -436, -436, -436, -436, -436, -436, -436, -436, 55, -436, -436, 56, 56, 56, 56, 56, 56, 56, 56, -436, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 472, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -437, -437, -437, -437, -437, -437, -437, -437, 55, -437, -437, 56, 56, 56, 56, 56, 56, 56, 56, -437, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 473, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -438, -438, -438, -438, -438, -438, -438, -438, 55, -438, -438, 56, 56, 474, 56, 56, 56, 56, 56, -438, 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 }, { 5, -439, -439, -439, -439, -439, -439, -439, -439, 55, -439, -439, 56, 56, 56, 56, 475, 56, 56, 56, -439, 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 }, { 5, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440, -440 }, { 5, -441, -441, -441, -441, -441, -441, -441, -441, 64, -441, -441, 65, 65, 65, 65, 65, 65, 65, 65, -441, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -442, -442, -442, -442, -442, -442, -442, -442, 64, -442, -442, 65, 65, 65, 65, 65, 65, 65, 65, -442, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 476, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -443, -443, -443, -443, -443, -443, -443, -443, 64, -443, -443, 65, 65, 65, 65, 65, 65, 65, 65, -443, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 477, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -444, -444, -444, -444, -444, -444, -444, -444, 64, -444, -444, 65, 65, 65, 65, 65, 65, 65, 65, -444, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 478, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 479, 479, 479, 479, 479, 479, 479, 479, 64, 479, 479, 65, 65, 65, 65, 65, 65, 65, 65, 479, 65, 65, 65, 65, 65, 65, 65, 65, 65, 480, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -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, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446, -446 }, { 5, -447, -447, -447, -447, -447, -447, -447, -447, 64, -447, -447, 65, 65, 65, 65, 65, 65, 65, 65, -447, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 481, 481, 481, 481, 481, 481, 481, 481, 64, 481, 481, 65, 65, 65, 65, 65, 65, 65, 65, 481, 65, 65, 65, 65, 65, 65, 65, 65, 65, 482, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449, -449 }, { 5, -450, -450, -450, -450, -450, -450, -450, -450, 64, -450, -450, 65, 65, 65, 65, 65, 65, 65, 65, -450, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -451, -451, -451, -451, -451, -451, -451, -451, 64, -451, -451, 65, 65, 65, 65, 65, 65, 65, 65, -451, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 483, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -452, -452, -452, -452, -452, -452, -452, -452, 64, -452, -452, 65, 65, 65, 65, 65, 65, 65, 65, -452, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 484, 65 }, { 5, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453, -453 }, { 5, -454, -454, -454, -454, -454, -454, -454, -454, 64, -454, -454, 65, 65, 65, 65, 65, 65, 65, 65, -454, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455, -455 }, { 5, -456, -456, -456, -456, -456, -456, -456, -456, 64, -456, -456, 65, 65, 65, 65, 65, 65, 65, 65, -456, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -457, -457, -457, -457, -457, -457, -457, -457, 64, -457, -457, 65, 65, 65, 65, 65, 65, 65, 65, -457, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 485, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458 }, { 5, -459, -459, -459, -459, -459, -459, -459, -459, 64, -459, -459, 65, 65, 65, 65, 65, 65, 65, 65, -459, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 486, 486, 486, 486, 486, 486, 486, 486, 64, 486, 486, 65, 65, 65, 65, 65, 65, 65, 65, 486, 65, 65, 65, 65, 65, 65, 65, 65, 65, 487, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 488, 488, 488, 488, 488, 488, 488, 488, 64, 488, 488, 65, 65, 65, 65, 65, 65, 65, 65, 488, 65, 65, 65, 65, 65, 65, 65, 65, 65, 489, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462, -462 }, { 5, -463, -463, -463, -463, -463, -463, -463, -463, 64, -463, -463, 65, 65, 65, 65, 65, 65, 65, 65, -463, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, -464 }, { 5, -465, -465, -465, -465, -465, -465, -465, -465, 64, -465, -465, 65, 65, 65, 65, 65, 65, 65, 65, -465, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 490, 490, 490, 490, 490, 490, 490, 490, 64, 490, 490, 65, 65, 65, 65, 65, 65, 65, 65, 490, 65, 65, 65, 65, 65, 65, 65, 65, 65, 491, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -467, -467, -467, -467, -467, -467, -467, -467, 55, -467, -467, 56, 56, 56, 56, 56, 56, 56, 56, -467, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 492, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468, -468 }, { 5, -469, -469, -469, -469, -469, -469, -469, -469, 55, -469, -469, 56, 56, 56, 56, 56, 56, 56, 56, -469, 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 }, { 5, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470, -470 }, { 5, -471, -471, -471, -471, -471, -471, -471, -471, 55, -471, -471, 56, 56, 56, 56, 56, 56, 56, 56, -471, 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 }, { 5, -472, -472, -472, -472, -472, -472, -472, -472, 55, -472, -472, 56, 56, 56, 56, 56, 56, 56, 56, -472, 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, 493, 56, 56, 56, 56, 56, 56 }, { 5, -473, -473, -473, -473, -473, -473, -473, -473, 55, -473, -473, 56, 56, 56, 56, 56, 56, 56, 56, -473, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 494, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 495, 495, 495, 495, 495, 495, 495, 495, 55, 495, 495, 56, 56, 56, 56, 56, 56, 56, 56, 495, 56, 56, 56, 56, 56, 56, 56, 56, 56, 496, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 497, 497, 497, 497, 497, 497, 497, 497, 55, 497, 497, 56, 56, 56, 56, 56, 56, 56, 56, 497, 56, 56, 56, 56, 56, 56, 56, 56, 56, 498, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 499, 499, 499, 499, 499, 499, 499, 499, 64, 499, 499, 65, 65, 65, 65, 65, 65, 65, 65, 499, 65, 65, 65, 65, 65, 65, 65, 65, 65, 500, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 501, 501, 501, 501, 501, 501, 501, 501, 64, 501, 501, 65, 65, 65, 65, 65, 65, 65, 65, 501, 65, 65, 65, 65, 65, 65, 65, 65, 65, 502, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -478, -478, -478, -478, -478, -478, -478, -478, 64, -478, -478, 65, 65, 65, 65, 65, 65, 65, 65, -478, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 503, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479, -479 }, { 5, -480, -480, -480, -480, -480, -480, -480, -480, 64, -480, -480, 65, 65, 65, 65, 65, 65, 65, 65, -480, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481, -481 }, { 5, -482, -482, -482, -482, -482, -482, -482, -482, 64, -482, -482, 65, 65, 65, 65, 65, 65, 65, 65, -482, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -483, -483, -483, -483, -483, -483, -483, -483, 64, -483, -483, 65, 65, 65, 65, 65, 65, 65, 65, -483, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 504, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 505, 505, 505, 505, 505, 505, 505, 505, 64, 505, 505, 65, 65, 65, 65, 65, 65, 65, 65, 505, 65, 65, 65, 65, 65, 65, 65, 65, 65, 506, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -485, -485, -485, -485, -485, -485, -485, -485, 64, -485, -485, 65, 65, 65, 65, 65, 65, 65, 65, -485, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 507, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486, -486 }, { 5, -487, -487, -487, -487, -487, -487, -487, -487, 64, -487, -487, 65, 65, 65, 65, 65, 65, 65, 65, -487, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488, -488 }, { 5, -489, -489, -489, -489, -489, -489, -489, -489, 64, -489, -489, 65, 65, 65, 65, 65, 65, 65, 65, -489, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490, -490 }, { 5, -491, -491, -491, -491, -491, -491, -491, -491, 64, -491, -491, 65, 65, 65, 65, 65, 65, 65, 65, -491, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 508, 508, 508, 508, 508, 508, 508, 508, 55, 508, 508, 56, 56, 56, 56, 56, 56, 56, 56, 508, 56, 56, 56, 56, 56, 56, 56, 56, 56, 509, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -493, -493, -493, -493, -493, -493, -493, -493, 55, -493, -493, 56, 56, 56, 56, 56, 56, 56, 56, -493, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 510, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 511, 511, 511, 511, 511, 511, 511, 511, 55, 511, 511, 56, 56, 56, 56, 56, 56, 56, 56, 511, 56, 56, 56, 56, 56, 56, 56, 56, 56, 512, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495, -495 }, { 5, -496, -496, -496, -496, -496, -496, -496, -496, 55, -496, -496, 56, 56, 56, 56, 56, 56, 56, 56, -496, 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 }, { 5, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497, -497 }, { 5, -498, -498, -498, -498, -498, -498, -498, -498, 55, -498, -498, 56, 56, 56, 56, 56, 56, 56, 56, -498, 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 }, { 5, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499, -499 }, { 5, -500, -500, -500, -500, -500, -500, -500, -500, 64, -500, -500, 65, 65, 65, 65, 65, 65, 65, 65, -500, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501, -501 }, { 5, -502, -502, -502, -502, -502, -502, -502, -502, 64, -502, -502, 65, 65, 65, 65, 65, 65, 65, 65, -502, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 513, 513, 513, 513, 513, 513, 513, 513, 64, 513, 513, 65, 65, 65, 65, 65, 65, 65, 65, 513, 65, 65, 65, 65, 65, 65, 65, 65, 65, 514, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -504, -504, -504, -504, -504, -504, -504, -504, 64, -504, -504, 65, 65, 65, 65, 65, 65, 65, 65, -504, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 515, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505, -505 }, { 5, -506, -506, -506, -506, -506, -506, -506, -506, 64, -506, -506, 65, 65, 65, 65, 65, 65, 65, 65, -506, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -507, -507, -507, -507, -507, -507, -507, -507, 64, -507, -507, 65, 65, 65, 65, 65, 65, 65, 65, -507, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 516, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -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, -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, -508, -508, -508, -508 }, { 5, -509, -509, -509, -509, -509, -509, -509, -509, 55, -509, -509, 56, 56, 56, 56, 56, 56, 56, 56, -509, 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 }, { 5, -510, -510, -510, -510, -510, -510, -510, -510, 55, -510, -510, 56, 56, 56, 56, 56, 56, 56, 56, -510, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 517, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511, -511 }, { 5, -512, -512, -512, -512, -512, -512, -512, -512, 55, -512, -512, 56, 56, 56, 56, 56, 56, 56, 56, -512, 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 }, { 5, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513, -513 }, { 5, -514, -514, -514, -514, -514, -514, -514, -514, 64, -514, -514, 65, 65, 65, 65, 65, 65, 65, 65, -514, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 518, 518, 518, 518, 518, 518, 518, 518, 64, 518, 518, 65, 65, 65, 65, 65, 65, 65, 65, 518, 65, 65, 65, 65, 65, 65, 65, 65, 65, 519, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, 520, 520, 520, 520, 520, 520, 520, 520, 64, 520, 520, 65, 65, 65, 65, 65, 65, 65, 65, 520, 65, 65, 65, 65, 65, 65, 65, 65, 65, 521, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -517, -517, -517, -517, -517, -517, -517, -517, 55, -517, -517, 56, 56, 56, 56, 56, 56, 56, 56, -517, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 522, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518, -518 }, { 5, -519, -519, -519, -519, -519, -519, -519, -519, 64, -519, -519, 65, 65, 65, 65, 65, 65, 65, 65, -519, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520, -520 }, { 5, -521, -521, -521, -521, -521, -521, -521, -521, 64, -521, -521, 65, 65, 65, 65, 65, 65, 65, 65, -521, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65 }, { 5, -522, -522, -522, -522, -522, -522, -522, -522, 55, -522, -522, 56, 56, 56, 56, 56, 56, 56, 56, -522, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 523, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -523, -523, -523, -523, -523, -523, -523, -523, 55, -523, -523, 56, 56, 56, 56, 56, 56, 56, 56, -523, 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, 524, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, 525, 525, 525, 525, 525, 525, 525, 525, 55, 525, 525, 56, 56, 56, 56, 56, 56, 56, 56, 525, 56, 56, 56, 56, 56, 56, 56, 56, 56, 526, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 }, { 5, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525, -525 }, { 5, -526, -526, -526, -526, -526, -526, -526, -526, 55, -526, -526, 56, 56, 56, 56, 56, 56, 56, 56, -526, 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 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 76 #define YY_END_OF_BUFFER 77 static yyconst short int yy_accept[527] = { 0, 0, 0, 0, 0, 77, 75, 8, 7, 75, 75, 4, 4, 75, 75, 75, 75, 67, 67, 67, 67, 67, 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 75, 74, 75, 7, 0, 73, 5, 0, 70, 70, 69, 69, 70, 0, 6, 67, 67, 67, 67, 67, 67, 67, 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 0, 74, 0, 74, 74, 0, 1, 0, 0, 69, 69, 0, 0, 67, 67, 67, 67, 67, 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 2, 3, 0, 69, 71, 0, 67, 67, 67, 67, 67, 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 13, 13, 68, 68, 68, 68, 68, 68, 68, 27, 27, 68, 68, 68, 68, 68, 68, 68, 72, 69, 71, 58, 58, 67, 67, 67, 67, 67, 67, 48, 48, 68, 68, 68, 68, 68, 68, 68, 14, 14, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 23, 23, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 21, 21, 68, 68, 68, 67, 67, 67, 67, 67, 67, 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 29, 29, 68, 68, 68, 37, 37, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 25, 25, 68, 32, 32, 68, 67, 67, 67, 67, 67, 67, 67, 67, 34, 34, 68, 26, 26, 68, 68, 42, 42, 68, 68, 68, 68, 68, 68, 31, 31, 68, 68, 10, 10, 68, 68, 9, 9, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 47, 47, 68, 68, 24, 24, 40, 40, 33, 33, 68, 68, 67, 67, 55, 55, 56, 56, 67, 67, 67, 67, 67, 68, 68, 16, 16, 60, 60, 35, 35, 68, 68, 41, 41, 68, 68, 36, 36, 68, 43, 43, 68, 68, 68, 44, 44, 68, 68, 68, 68, 68, 68, 68, 68, 20, 20, 68, 67, 57, 57, 67, 67, 67, 67, 67, 67, 38, 38, 68, 68, 68, 68, 12, 12, 68, 63, 63, 68, 68, 62, 62, 46, 46, 68, 65, 65, 68, 68, 39, 39, 11, 11, 68, 67, 51, 51, 53, 53, 67, 67, 67, 67, 68, 68, 68, 19, 19, 45, 45, 68, 68, 68, 66, 66, 18, 18, 22, 22, 67, 67, 67, 52, 52, 54, 54, 30, 30, 61, 61, 68, 68, 64, 64, 68, 59, 59, 67, 49, 49, 17, 17, 68, 68, 67, 28, 28, 15, 15, 67, 67, 67, 50, 50 } ; 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, 6, 6, 6, 6, 6, 8, 8, 6, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 17, 19, 17, 20, 8, 6, 6, 6, 6, 6, 21, 22, 21, 21, 23, 24, 25, 25, 26, 25, 25, 25, 25, 25, 27, 25, 25, 25, 28, 25, 29, 25, 25, 25, 25, 25, 6, 6, 6, 6, 30, 6, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 38, 41, 42, 43, 44, 45, 38, 46, 47, 48, 49, 50, 51, 52, 53, 54, 8, 8, 8, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "scanner-sming.l" #define INITIAL 0 /* * scanner-sming.l -- * * Lexical rules for scanning the SMIng MIB module language. * * Copyright (c) 1999 Frank Strauss, Technical University of Braunschweig. * * See the file "COPYING" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * @(#) $Id: scanner-sming.l 1667 2004-08-09 14:00:46Z strauss $ */ #line 17 "scanner-sming.l" #include #ifdef BACKEND_SMING #include #include #include #include #if defined(HAVE_WIN_H) #include "win.h" #endif #include "error.h" #include "util.h" #include "parser-sming.h" #include "parser-sming.tab.h" #include "scanner-sming.h" #ifdef HAVE_DMALLOC_H #include #endif /* we need a reentrant parser, so yylex gets arguments */ #if 0 #define YY_DECL int yylex YY_PROTO((YYSTYPE *lvalp, void *parser)) #else #define YY_DECL int yylex(YYSTYPE *lvalp, void *parser) #endif #define thisParser (*(Parser *) parser) #define MAX_NUMBER "18446744073709551615" /* max Counter64 */ /* * This makes the usual notation when referencing attributes also * work with our pure parser code. */ #define yylval (*lvalp) static YY_BUFFER_STATE yybuffer[MAX_LEX_DEPTH]; static int lexDepth = 0; int smingEnterLexRecursion(file) FILE *file; { if (lexDepth >= MAX_LEX_DEPTH) { return (-1); } yybuffer[lexDepth++] = YY_CURRENT_BUFFER; yy_switch_to_buffer(yy_create_buffer(file, YY_BUF_SIZE)); return (lexDepth); } void smingLeaveLexRecursion() { yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(yybuffer[--lexDepth]); } /* * Lex pattern definitions. */ /* * Lex state definitions. */ #define Skipline 1 /* 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 \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 115 "scanner-sming.l" /* * Lex rules for comments. Do you use {lineBreak} here because it * introduces a trailing context which is (a) slow and (b) causes * REJECT to be used. */ 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_match: while ( (yy_current_state = yy_nxt[yy_current_state][yy_ec[YY_SC_TO_UI(*yy_cp)]]) > 0 ) { if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } ++yy_cp; } yy_current_state = -yy_current_state; yy_find_action: yy_act = 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 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yy_hold_char; yy_cp = yy_last_accepting_cpos + 1; yy_current_state = yy_last_accepting_state; goto yy_find_action; case 1: *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 125 "scanner-sming.l" { } YY_BREAK case 2: *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 128 "scanner-sming.l" { } YY_BREAK case 3: *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 131 "scanner-sming.l" { } YY_BREAK /* * Lex rules for some special tokens. */ case 4: YY_RULE_SETUP #line 138 "scanner-sming.l" { return yytext[0]; } YY_BREAK case 5: YY_RULE_SETUP #line 142 "scanner-sming.l" { return DOT_DOT; } YY_BREAK case 6: YY_RULE_SETUP #line 146 "scanner-sming.l" { return COLON_COLON; } YY_BREAK /* * Lex rules for separators. */ case 7: YY_RULE_SETUP #line 154 "scanner-sming.l" { thisParser.line++; } YY_BREAK case 8: YY_RULE_SETUP #line 158 "scanner-sming.l" { } YY_BREAK /* * Lex rules for known keywords. */ case 9: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 165 "scanner-sming.l" { yylval.id = yytext; return moduleKeyword; } YY_BREAK case 10: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 170 "scanner-sming.l" { yylval.id = yytext; return importKeyword; } YY_BREAK case 11: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 175 "scanner-sming.l" { yylval.id = yytext; return revisionKeyword; } YY_BREAK case 12: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 180 "scanner-sming.l" { yylval.id = yytext; return identityKeyword; } YY_BREAK case 13: *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 185 "scanner-sming.l" { yylval.id = yytext; return oidKeyword; } YY_BREAK case 14: *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 190 "scanner-sming.l" { yylval.id = yytext; return dateKeyword; } YY_BREAK case 15: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 12; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 195 "scanner-sming.l" { yylval.id = yytext; return organizationKeyword; } YY_BREAK case 16: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 200 "scanner-sming.l" { yylval.id = yytext; return contactKeyword; } YY_BREAK case 17: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 205 "scanner-sming.l" { yylval.id = yytext; return descriptionKeyword; } YY_BREAK case 18: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 210 "scanner-sming.l" { yylval.id = yytext; return referenceKeyword; } YY_BREAK case 19: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 215 "scanner-sming.l" { yylval.id = yytext; return extensionKeyword; } YY_BREAK case 20: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 220 "scanner-sming.l" { yylval.id = yytext; return typedefKeyword; } YY_BREAK case 21: *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 225 "scanner-sming.l" { yylval.id = yytext; return typeKeyword; } YY_BREAK case 22: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 230 "scanner-sming.l" { yylval.id = yytext; return writetypeKeyword; } YY_BREAK case 23: *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 235 "scanner-sming.l" { yylval.id = yytext; return nodeKeyword; } YY_BREAK case 24: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 240 "scanner-sming.l" { yylval.id = yytext; return scalarKeyword; } YY_BREAK case 25: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 245 "scanner-sming.l" { yylval.id = yytext; return tableKeyword; } YY_BREAK case 26: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 250 "scanner-sming.l" { yylval.id = yytext; return columnKeyword; } YY_BREAK case 27: *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 255 "scanner-sming.l" { yylval.id = yytext; return rowKeyword; } YY_BREAK case 28: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 12; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 260 "scanner-sming.l" { yylval.id = yytext; return notificationKeyword; } YY_BREAK case 29: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 265 "scanner-sming.l" { yylval.id = yytext; return groupKeyword; } YY_BREAK case 30: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 270 "scanner-sming.l" { yylval.id = yytext; return complianceKeyword; } YY_BREAK case 31: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 275 "scanner-sming.l" { yylval.id = yytext; return formatKeyword; } YY_BREAK case 32: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 280 "scanner-sming.l" { yylval.id = yytext; return unitsKeyword; } YY_BREAK case 33: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 285 "scanner-sming.l" { yylval.id = yytext; return statusKeyword; } YY_BREAK case 34: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 290 "scanner-sming.l" { yylval.id = yytext; return accessKeyword; } YY_BREAK case 35: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 295 "scanner-sming.l" { yylval.id = yytext; return defaultKeyword; } YY_BREAK case 36: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 300 "scanner-sming.l" { yylval.id = yytext; return impliedKeyword; } YY_BREAK case 37: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 305 "scanner-sming.l" { yylval.id = yytext; return indexKeyword; } YY_BREAK case 38: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 310 "scanner-sming.l" { yylval.id = yytext; return augmentsKeyword; } YY_BREAK case 39: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 315 "scanner-sming.l" { yylval.id = yytext; return reordersKeyword; } YY_BREAK case 40: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 320 "scanner-sming.l" { yylval.id = yytext; return sparseKeyword; } YY_BREAK case 41: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 325 "scanner-sming.l" { yylval.id = yytext; return expandsKeyword; } YY_BREAK case 42: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 330 "scanner-sming.l" { yylval.id = yytext; return createKeyword; } YY_BREAK case 43: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 335 "scanner-sming.l" { yylval.id = yytext; return membersKeyword; } YY_BREAK case 44: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 340 "scanner-sming.l" { yylval.id = yytext; return objectsKeyword; } YY_BREAK case 45: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 345 "scanner-sming.l" { yylval.id = yytext; return mandatoryKeyword; } YY_BREAK case 46: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 350 "scanner-sming.l" { yylval.id = yytext; return optionalKeyword; } YY_BREAK case 47: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 355 "scanner-sming.l" { yylval.id = yytext; return refineKeyword; } YY_BREAK case 48: *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 360 "scanner-sming.l" { yylval.id = yytext; return abnfKeyword; } YY_BREAK case 49: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 365 "scanner-sming.l" { yylval.id = yytext; return OctetStringKeyword; } YY_BREAK case 50: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 16; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 370 "scanner-sming.l" { yylval.id = yytext; return ObjectIdentifierKeyword; } YY_BREAK case 51: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 375 "scanner-sming.l" { yylval.id = yytext; return Integer32Keyword; } YY_BREAK case 52: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 380 "scanner-sming.l" { yylval.id = yytext; return Unsigned32Keyword; } YY_BREAK case 53: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 385 "scanner-sming.l" { yylval.id = yytext; return Integer64Keyword; } YY_BREAK case 54: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 390 "scanner-sming.l" { yylval.id = yytext; return Unsigned64Keyword; } YY_BREAK case 55: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 395 "scanner-sming.l" { yylval.id = yytext; return Float32Keyword; } YY_BREAK case 56: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 400 "scanner-sming.l" { yylval.id = yytext; return Float64Keyword; } YY_BREAK case 57: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 405 "scanner-sming.l" { yylval.id = yytext; return Float128Keyword; } YY_BREAK case 58: *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 410 "scanner-sming.l" { yylval.id = yytext; return BitsKeyword; } YY_BREAK case 59: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 415 "scanner-sming.l" { yylval.id = yytext; return EnumerationKeyword; } YY_BREAK case 60: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 7; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 420 "scanner-sming.l" { yylval.id = yytext; return currentKeyword; } YY_BREAK case 61: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 425 "scanner-sming.l" { yylval.id = yytext; return deprecatedKeyword; } YY_BREAK case 62: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 430 "scanner-sming.l" { yylval.id = yytext; return obsoleteKeyword; } YY_BREAK case 63: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 435 "scanner-sming.l" { yylval.id = yytext; return noaccessKeyword; } YY_BREAK case 64: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 440 "scanner-sming.l" { yylval.id = yytext; return notifyonlyKeyword; } YY_BREAK case 65: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 8; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 445 "scanner-sming.l" { yylval.id = yytext; return readonlyKeyword; } YY_BREAK case 66: *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ yy_c_buf_p = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 450 "scanner-sming.l" { yylval.id = yytext; return readwriteKeyword; } YY_BREAK /* * Lex rules for identifiers. */ /* e.g. module names: REF: draft,p.12-13 */ case 67: YY_RULE_SETUP #line 460 "scanner-sming.l" { if (yytext[yyleng-1] == '-') { smiPrintError(parser, ERR_ID_ENDS_IN_HYPHEN, yytext); } if (yyleng > 64) { smiPrintError(parser, ERR_UCIDENTIFIER_64, yytext); } if (strchr(yytext, '_')) { smiPrintError(parser, ERR_UNDERSCORE_IN_IDENTIFIER, yytext); } yylval.text = smiStrdup(yytext); return ucIdentifier; } YY_BREAK /* same for lowercase names */ case 68: YY_RULE_SETUP #line 475 "scanner-sming.l" { if (yytext[yyleng-1] == '-') { smiPrintError(parser, ERR_ID_ENDS_IN_HYPHEN, yytext); } if (yyleng > 64) { smiPrintError(parser, ERR_LCIDENTIFIER_64, yytext); } if (strchr(yytext, '_')) { smiPrintError(parser, ERR_UNDERSCORE_IN_IDENTIFIER, yytext); } yylval.text = smiStrdup(yytext); return lcIdentifier; } YY_BREAK /* * Lex rules for numbers. * * NOTE: `-' is a separate token. Hence, there are no negative numbers. */ case 69: *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 495 "scanner-sming.l" { smiPrintError(parser, ERR_LEADING_ZEROS); } 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 499 "scanner-sming.l" { if ((yyleng > sizeof(MAX_NUMBER)-1) || ((yyleng == sizeof(MAX_NUMBER)-1) && (strcmp(yytext, MAX_NUMBER) > 0))) { smiPrintError(parser, ERR_NUMBER_TOO_LARGE, yytext); } yylval.text = yytext; return decimalNumber; } YY_BREAK case 71: *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 509 "scanner-sming.l" { if (yyleng % 2) { smiPrintError(parser, ERR_HEX_STRING_MUL2, yytext); } yylval.text = yytext; return hexadecimalNumber; } YY_BREAK /* * Lex rules for floating point values. */ case 72: *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 520 "scanner-sming.l" { /* TODO */ yylval.text = yytext; return floatValue; } YY_BREAK /* * Lex rules for textSegments. */ case 73: YY_RULE_SETUP #line 530 "scanner-sming.l" { char *s, *d; /* the source and destination pointer */ int column = 0; /* the current column */ int newlineflag = 0; /* we have just passed a newline */ int cutoffcolumn = 0; /* cut off white space up to this column */ /* (computed by caculating the indentation */ /* of the first column) */ yytext[yyleng-1] = '\0'; for (d = yytext, s = yytext+1; s[0]; s++, d++) { if ((s[0] == '\n' && s[1] == '\r') /* newline sequence */ || (s[0] == '\r' && s[1] == '\n')) { thisParser.line += 1; d[0] = '\n'; s++; newlineflag = 1; column = 0; if (cutoffcolumn < 0) cutoffcolumn = 0; } else if (s[0] == '\n') { /* simple newline */ thisParser.line += 1; d[0] = '\n'; newlineflag = 1; column = 0; if (cutoffcolumn < 0) cutoffcolumn = 0; } else { if (newlineflag && isspace((int)(unsigned char)s[0])) { /* space after newline */ if (cutoffcolumn <= 0) { cutoffcolumn -= (s[0] == '\t') ? (8-((column-1) % 8)) : 1; } column += (s[0] == '\t') ? (8-((column-1) % 8)) : 1; if (cutoffcolumn <= 0 || column <= cutoffcolumn) { d--; } else { d[0] = s[0]; newlineflag = 0; } } else { /* everything else */ if (! isascii(s[0])) { smiPrintError(parser, ERR_ILLEGAL_CHAR_IN_STRING, s[0], (unsigned char) s[0]); } d[0] = s[0]; newlineflag = 0; if (cutoffcolumn < 0) { cutoffcolumn *= -1; } } } } d[0] = '\0'; yylval.text = yytext; return textSegment; } YY_BREAK /* * Skip the remainder of the line */ case 74: YY_RULE_SETUP #line 589 "scanner-sming.l" { thisParser.line++; BEGIN(INITIAL); } YY_BREAK /* * Everything else... */ case 75: YY_RULE_SETUP #line 598 "scanner-sming.l" { smiPrintError(parser, ERR_LEX_UNEXPECTED_CHAR); BEGIN(Skipline); } YY_BREAK case 76: YY_RULE_SETUP #line 603 "scanner-sming.l" ECHO; YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(Skipline): 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; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { yy_current_state = yy_nxt[yy_current_state][(*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1)]; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } } 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 char *yy_cp = yy_c_buf_p; yy_current_state = yy_nxt[yy_current_state][1]; yy_is_jam = (yy_current_state <= 0); if ( ! yy_is_jam ) { if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } } 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; 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 603 "scanner-sming.l" #endif