4377 lines
137 KiB
C
Executable File
4377 lines
137 KiB
C
Executable File
#define yy_create_buffer cockney_yy_create_buffer
|
|
#define yy_delete_buffer cockney_yy_delete_buffer
|
|
#define yy_scan_buffer cockney_yy_scan_buffer
|
|
#define yy_scan_string cockney_yy_scan_string
|
|
#define yy_scan_bytes cockney_yy_scan_bytes
|
|
#define yy_flex_debug cockney_yy_flex_debug
|
|
#define yy_init_buffer cockney_yy_init_buffer
|
|
#define yy_flush_buffer cockney_yy_flush_buffer
|
|
#define yy_load_buffer_state cockney_yy_load_buffer_state
|
|
#define yy_switch_to_buffer cockney_yy_switch_to_buffer
|
|
#define yyin cockney_yyin
|
|
#define yyleng cockney_yyleng
|
|
#define yylex cockney_yylex
|
|
#define yyout cockney_yyout
|
|
#define yyrestart cockney_yyrestart
|
|
#define yytext cockney_yytext
|
|
|
|
#line 19 "cockney.c"
|
|
/* A lexical scanner generated by flex */
|
|
|
|
/* Scanner skeleton version:
|
|
* $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $
|
|
*/
|
|
|
|
#define FLEX_SCANNER
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
#define YY_FLEX_MINOR_VERSION 5
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
|
#ifdef c_plusplus
|
|
#ifndef __cplusplus
|
|
#define __cplusplus
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* 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 <io.h>
|
|
#include <stdlib.h>
|
|
#define YY_USE_CONST
|
|
#define YY_USE_PROTOS
|
|
#endif
|
|
|
|
#ifdef YY_USE_CONST
|
|
#define yyconst const
|
|
#else
|
|
#define yyconst
|
|
#endif
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
#define YY_PROTO(proto) proto
|
|
#else
|
|
#define YY_PROTO(proto) ()
|
|
#endif
|
|
|
|
/* Returned upon end-of-file. */
|
|
#define YY_NULL 0
|
|
|
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
|
* integer for use as an array index. If the signed char is negative,
|
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
|
* double cast.
|
|
*/
|
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
|
|
|
/* Enter a start condition. This macro really ought to take a parameter,
|
|
* but we do it the disgusting crufty way forced on us by the ()-less
|
|
* definition of BEGIN.
|
|
*/
|
|
#define BEGIN yy_start = 1 + 2 *
|
|
|
|
/* Translate the current start state into a value that can be later handed
|
|
* to BEGIN to return to the state. The YYSTATE alias is for lex
|
|
* compatibility.
|
|
*/
|
|
#define YY_START ((yy_start - 1) / 2)
|
|
#define YYSTATE YY_START
|
|
|
|
/* Action number for EOF rule of a given start state. */
|
|
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
|
|
|
|
/* Special action meaning "start processing a new file". */
|
|
#define YY_NEW_FILE yyrestart( yyin )
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
/* Size of default input buffer. */
|
|
#define YY_BUF_SIZE 16384
|
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
|
|
|
extern int yyleng;
|
|
extern FILE *yyin, *yyout;
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
#define EOB_ACT_LAST_MATCH 2
|
|
|
|
/* The funky do-while in the following #define is used to turn the definition
|
|
* int a single C statement (which needs a semi-colon terminator). This
|
|
* avoids problems with code like:
|
|
*
|
|
* if ( condition_holds )
|
|
* yyless( 5 );
|
|
* else
|
|
* do_something_else();
|
|
*
|
|
* Prior to using the do-while the compiler would get upset at the
|
|
* "else" because it interpreted the "if" statement as being all
|
|
* done when it reached the ';' after the yyless() call.
|
|
*/
|
|
|
|
/* Return all but the first 'n' matched characters back to the input stream. */
|
|
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up yytext. */ \
|
|
*yy_cp = yy_hold_char; \
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
|
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
} \
|
|
while ( 0 )
|
|
|
|
#define unput(c) yyunput( c, yytext_ptr )
|
|
|
|
/* The following is because we cannot portably get our hands on size_t
|
|
* (without autoconf's help, which isn't available because we want
|
|
* flex-generated scanners to compile on their own).
|
|
*/
|
|
typedef unsigned int yy_size_t;
|
|
|
|
|
|
struct yy_buffer_state
|
|
{
|
|
FILE *yy_input_file;
|
|
|
|
char *yy_ch_buf; /* input buffer */
|
|
char *yy_buf_pos; /* current position in input buffer */
|
|
|
|
/* Size of input buffer in bytes, not including room for EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t yy_buf_size;
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
* characters.
|
|
*/
|
|
int yy_n_chars;
|
|
|
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
|
* and can realloc() it to grow it, and should free() it to
|
|
* delete it.
|
|
*/
|
|
int yy_is_our_buffer;
|
|
|
|
/* Whether this is an "interactive" input source; if so, and
|
|
* if we're using stdio for input, then we want to use getc()
|
|
* instead of fread(), to make sure we stop fetching input after
|
|
* each newline.
|
|
*/
|
|
int yy_is_interactive;
|
|
|
|
/* Whether we're considered to be at the beginning of a line.
|
|
* If so, '^' rules will be active on the next match, otherwise
|
|
* not.
|
|
*/
|
|
int yy_at_bol;
|
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
* end of it.
|
|
*/
|
|
int yy_fill_buffer;
|
|
|
|
int yy_buffer_status;
|
|
#define YY_BUFFER_NEW 0
|
|
#define YY_BUFFER_NORMAL 1
|
|
/* When an EOF's been seen but there's still some text to process
|
|
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
|
|
* shouldn't try reading from the input source any more. We might
|
|
* still have a bunch of tokens to match, though, because of
|
|
* possible backing-up.
|
|
*
|
|
* When we actually see the EOF, we change the status to "new"
|
|
* (via yyrestart()), so that the user can continue scanning by
|
|
* just pointing yyin at a new input file.
|
|
*/
|
|
#define YY_BUFFER_EOF_PENDING 2
|
|
};
|
|
|
|
static YY_BUFFER_STATE yy_current_buffer = 0;
|
|
|
|
/* We provide macros for accessing buffer states in case in the
|
|
* future we want to put the buffer states in a more general
|
|
* "scanner state".
|
|
*/
|
|
#define YY_CURRENT_BUFFER yy_current_buffer
|
|
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
static char yy_hold_char;
|
|
|
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
|
int yyleng;
|
|
|
|
/* Points to current character in buffer. */
|
|
static char *yy_c_buf_p = (char *) 0;
|
|
static int yy_init = 1; /* whether we need to initialize */
|
|
static int yy_start = 0; /* start state number */
|
|
|
|
/* Flag which is used to allow yywrap()'s to do buffer switches
|
|
* instead of setting up a fresh yyin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void yyrestart YY_PROTO(( FILE *input_file ));
|
|
|
|
void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
|
|
void yy_load_buffer_state YY_PROTO(( void ));
|
|
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
|
|
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
|
|
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
|
|
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
|
|
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
|
|
|
|
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
|
|
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
|
|
static void yy_flex_free YY_PROTO(( void * ));
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_at_bol = at_bol; \
|
|
}
|
|
|
|
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
|
|
|
|
|
|
#define YY_USES_REJECT
|
|
|
|
#define yywrap() 1
|
|
#define YY_SKIP_YYWRAP
|
|
typedef unsigned char YY_CHAR;
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
|
typedef int yy_state_type;
|
|
extern char *yytext;
|
|
#define yytext_ptr yytext
|
|
|
|
static yy_state_type yy_get_previous_state YY_PROTO(( void ));
|
|
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
|
|
static int yy_get_next_buffer YY_PROTO(( void ));
|
|
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up yytext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
yytext_ptr = yy_bp; \
|
|
yyleng = (int) (yy_cp - yy_bp); \
|
|
yy_hold_char = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
yy_c_buf_p = yy_cp;
|
|
|
|
#define YY_NUM_RULES 285
|
|
#define YY_END_OF_BUFFER 286
|
|
static yyconst short int yy_acclist[481] =
|
|
{ 0,
|
|
286, 284, 285, 283, 284, 285, 285, 274, 284, 285,
|
|
284, 285, 274, 284, 285, 274, 284, 285, 274, 284,
|
|
285, 274, 284, 285, 274, 284, 285, 274, 284, 285,
|
|
274, 284, 285, 234, 274, 284, 285, 274, 284, 285,
|
|
274, 284, 285, 274, 284, 285, 274, 284, 285, 274,
|
|
284, 285, 274, 284, 285, 274, 284, 285, 274, 284,
|
|
285, 274, 284, 285, 274, 284, 285, 274, 284, 285,
|
|
274, 284, 285, 274, 284, 285, 274, 284, 285, 274,
|
|
284, 285, 274, 284, 285, 274, 284, 285, 274, 284,
|
|
285, 234, 274, 284, 285, 274, 284, 285, 274, 284,
|
|
|
|
285, 274, 284, 285, 274, 284, 285, 282, 284, 285,
|
|
282, 283, 284, 285, 282, 285, 281, 282, 284, 285,
|
|
280, 282, 284, 285, 278, 282, 284, 285, 279, 282,
|
|
284, 285, 284, 285, 284, 285, 284, 285, 222, 268,
|
|
272, 276, 1, 139, 144, 204, 118, 81, 8, 273,
|
|
92, 270,16530, 83, 94, 275, 76, 263, 228, 121,
|
|
199, 62,16444, 154, 194, 251, 250,16569, 171, 201,
|
|
16393,16534, 49, 49,16535, 153, 107, 207,16397, 67,
|
|
235, 269, 252,16574, 29, 240, 74, 206, 30, 31,
|
|
91, 88, 267, 86, 265, 87, 266, 236, 28, 28,
|
|
|
|
16576, 224, 96, 95, 113, 163, 145,16518, 8338, 82,
|
|
82, 83, 203,16399, 93, 93, 277, 77, 116, 217,
|
|
259,16625, 68, 262, 8252, 175, 247, 52, 8377,16569,
|
|
54, 70, 200, 8201,16575, 8342,16536, 19, 8343, 124,
|
|
16474, 253,16484, 223, 21, 21, 8205, 225, 208, 44,
|
|
8382,16574, 142, 242, 79,16514, 75, 73, 126,16511,
|
|
32, 205, 238, 162, 120, 260, 232, 64, 261, 10,
|
|
10, 2, 264, 246, 89, 57, 8384,16576, 168, 114,
|
|
271, 72,16531, 8326, 8207, 18, 11, 11, 33, 7,
|
|
219, 119, 115, 8433, 209, 221, 66, 156, 8383,16575,
|
|
|
|
243, 258, 258, 8344, 111, 8282, 8292, 237, 211, 239,
|
|
117, 69, 45, 39, 132, 131, 8322, 193, 248,16553,
|
|
8319, 212, 122, 216, 85,16571, 244, 245, 43, 8339,
|
|
16518,16533, 112, 231, 143, 36, 35,16483, 98, 98,
|
|
37, 249, 170, 48, 161, 51, 184, 148, 174, 227,
|
|
218, 214, 59, 213, 197, 24, 157, 8361,16639, 41,
|
|
56, 3,16570, 8379,16571, 158, 102, 102, 160, 8341,
|
|
83, 84, 38, 256, 8291, 5,16572, 40, 215, 198,
|
|
172, 183, 220,16426, 50, 22, 23, 78,16512, 210,
|
|
182, 202, 159, 20, 233, 34, 166, 135, 137, 80,
|
|
|
|
55, 46, 46, 8447, 140, 229, 181, 4,16573, 71,
|
|
8378,16570, 102, 133, 164, 254,16557, 257, 8380,16572,
|
|
8234, 226,16520,16522, 178, 6, 179, 16, 8320, 235,
|
|
16447,16445, 26,16401, 141, 230, 8381,16573, 58, 106,
|
|
8365, 195, 27, 8328, 8330,16507,16431, 8255, 8253, 176,
|
|
25, 8209, 165, 177, 129, 125, 108, 97, 53, 167,
|
|
8315, 8239, 110,16489,16488, 196, 180, 65, 12, 110,
|
|
8297, 110,16489, 8296, 109, 103, 101, 14, 110, 155
|
|
} ;
|
|
|
|
static yyconst short int yy_accept[1311] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 2, 4, 7,
|
|
8, 11, 13, 16, 19, 22, 25, 28, 31, 34,
|
|
38, 41, 44, 47, 50, 53, 56, 59, 62, 65,
|
|
68, 71, 74, 77, 80, 83, 86, 89, 92, 96,
|
|
99, 102, 105, 108, 111, 115, 117, 121, 125, 129,
|
|
133, 135, 137, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
|
|
140, 140, 140, 140, 140, 141, 141, 141, 141, 141,
|
|
141, 141, 141, 141, 141, 141, 141, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 143, 143, 143,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
144, 144, 145, 145, 145, 145, 145, 145, 145, 146,
|
|
146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
|
|
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
|
|
147, 147, 147, 147, 148, 148, 148, 148, 148, 149,
|
|
|
|
149, 149, 149, 149, 149, 150, 150, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
151, 151, 151, 151, 151, 151, 152, 153, 153, 153,
|
|
153, 153, 153, 153, 153, 154, 154, 155, 155, 155,
|
|
155, 155, 155, 155, 155, 155, 155, 156, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
157, 157, 157, 157, 157, 157, 157, 158, 158, 158,
|
|
159, 160, 160, 160, 160, 160, 160, 160, 161, 162,
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
163, 164, 165, 165, 166, 166, 166, 166, 166, 167,
|
|
168, 168, 169, 170, 170, 170, 170, 170, 170, 170,
|
|
170, 171, 172, 172, 172, 172, 172, 173, 173, 174,
|
|
175, 175, 175, 175, 175, 175, 176, 176, 176, 176,
|
|
176, 176, 176, 176, 176, 177, 177, 177, 177, 178,
|
|
178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
|
|
|
|
178, 178, 179, 179, 180, 180, 180, 181, 181, 182,
|
|
182, 182, 182, 182, 183, 183, 184, 184, 184, 184,
|
|
185, 185, 185, 186, 186, 187, 187, 187, 187, 187,
|
|
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 189,
|
|
190, 190, 191, 191, 191, 191, 191, 191, 191, 191,
|
|
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
|
|
191, 191, 191, 191, 191, 192, 194, 195, 195, 196,
|
|
196, 198, 198, 198, 199, 199, 199, 199, 199, 200,
|
|
201, 202, 202, 202, 202, 202, 203, 204, 204, 204,
|
|
|
|
204, 206, 206, 206, 207, 207, 207, 208, 208, 208,
|
|
209, 210, 210, 211, 212, 212, 213, 214, 214, 214,
|
|
214, 215, 216, 217, 217, 217, 217, 218, 218, 218,
|
|
218, 218, 218, 218, 218, 218, 218, 218, 218, 218,
|
|
218, 218, 218, 219, 219, 219, 220, 221, 222, 223,
|
|
223, 223, 223, 223, 223, 223, 224, 225, 225, 225,
|
|
225, 225, 226, 227, 228, 228, 228, 228, 229, 229,
|
|
230, 231, 231, 231, 231, 232, 232, 233, 233, 234,
|
|
235, 236, 236, 236, 236, 237, 237, 237, 237, 237,
|
|
237, 237, 238, 239, 240, 240, 240, 240, 240, 240,
|
|
|
|
240, 241, 242, 242, 242, 242, 243, 243, 243, 244,
|
|
245, 245, 245, 245, 245, 246, 247, 247, 247, 248,
|
|
248, 249, 249, 249, 249, 249, 249, 250, 250, 250,
|
|
250, 251, 251, 252, 253, 253, 254, 254, 255, 255,
|
|
255, 256, 256, 256, 256, 257, 257, 257, 257, 257,
|
|
257, 257, 257, 257, 258, 258, 258, 258, 258, 258,
|
|
259, 260, 261, 261, 262, 262, 263, 263, 264, 265,
|
|
265, 265, 265, 265, 265, 265, 266, 267, 267, 268,
|
|
268, 268, 269, 269, 269, 270, 271, 272, 273, 273,
|
|
273, 273, 274, 275, 275, 276, 277, 277, 277, 277,
|
|
|
|
277, 278, 279, 279, 279, 280, 280, 280, 280, 281,
|
|
281, 281, 282, 283, 283, 283, 283, 283, 284, 285,
|
|
285, 285, 285, 285, 285, 285, 286, 287, 287, 288,
|
|
289, 290, 291, 292, 292, 292, 292, 292, 292, 292,
|
|
292, 292, 292, 293, 293, 293, 293, 294, 295, 296,
|
|
297, 297, 297, 297, 297, 297, 297, 297, 297, 297,
|
|
297, 297, 297, 297, 297, 298, 298, 299, 300, 301,
|
|
301, 302, 302, 302, 302, 302, 302, 302, 302, 303,
|
|
304, 305, 305, 305, 305, 306, 306, 306, 307, 307,
|
|
307, 307, 307, 307, 308, 308, 308, 308, 308, 308,
|
|
|
|
309, 309, 309, 310, 310, 311, 312, 313, 314, 314,
|
|
314, 314, 314, 314, 315, 315, 316, 316, 317, 318,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
320, 320, 321, 322, 323, 323, 323, 323, 323, 323,
|
|
323, 323, 323, 324, 324, 324, 324, 325, 325, 325,
|
|
325, 325, 325, 325, 326, 326, 326, 326, 326, 326,
|
|
326, 327, 327, 327, 327, 327, 327, 327, 327, 327,
|
|
327, 328, 329, 330, 331, 332, 333, 333, 333, 333,
|
|
334, 335, 335, 335, 335, 336, 337, 337, 338, 339,
|
|
340, 341, 342, 342, 343, 343, 344, 344, 344, 344,
|
|
|
|
345, 345, 345, 345, 345, 345, 345, 345, 345, 346,
|
|
346, 346, 346, 346, 346, 347, 347, 347, 347, 347,
|
|
347, 347, 347, 348, 348, 348, 348, 348, 349, 349,
|
|
350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
|
|
350, 351, 351, 351, 352, 352, 352, 352, 353, 354,
|
|
354, 354, 355, 356, 356, 356, 357, 357, 357, 358,
|
|
359, 359, 360, 361, 361, 361, 361, 362, 362, 362,
|
|
362, 362, 362, 362, 363, 363, 363, 363, 363, 364,
|
|
364, 364, 365, 366, 366, 367, 367, 367, 367, 367,
|
|
367, 368, 369, 370, 371, 372, 373, 374, 374, 375,
|
|
|
|
375, 375, 376, 376, 377, 377, 377, 377, 378, 379,
|
|
380, 381, 382, 382, 382, 383, 383, 383, 384, 385,
|
|
385, 385, 385, 385, 386, 387, 388, 388, 388, 388,
|
|
388, 388, 388, 389, 390, 391, 392, 393, 394, 395,
|
|
396, 397, 397, 398, 399, 400, 401, 402, 403, 404,
|
|
404, 404, 404, 404, 404, 404, 404, 404, 405, 405,
|
|
406, 406, 406, 407, 407, 408, 408, 408, 409, 409,
|
|
410, 411, 412, 413, 413, 413, 413, 413, 413, 414,
|
|
414, 414, 414, 414, 415, 416, 416, 417, 418, 419,
|
|
420, 421, 421, 421, 421, 421, 421, 422, 423, 424,
|
|
|
|
425, 426, 427, 428, 428, 428, 428, 429, 430, 431,
|
|
431, 432, 433, 433, 433, 434, 434, 435, 436, 436,
|
|
436, 437, 437, 437, 437, 438, 439, 439, 440, 441,
|
|
441, 441, 441, 441, 441, 441, 441, 441, 441, 442,
|
|
442, 443, 444, 444, 444, 445, 446, 446, 447, 448,
|
|
448, 449, 450, 451, 451, 452, 453, 454, 454, 455,
|
|
455, 456, 457, 457, 457, 458, 458, 458, 458, 458,
|
|
459, 459, 460, 461, 461, 462, 463, 463, 463, 463,
|
|
463, 463, 465, 466, 466, 466, 466, 467, 468, 468,
|
|
469, 469, 470, 471, 472, 474, 476, 477, 477, 478,
|
|
|
|
479, 479, 479, 480, 480, 480, 480, 480, 481, 481
|
|
} ;
|
|
|
|
static yyconst int yy_ec[256] =
|
|
{ 0,
|
|
1, 1, 1, 2, 1, 1, 1, 1, 3, 4,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 3, 5, 1, 1, 1, 1, 1, 6, 1,
|
|
1, 1, 1, 7, 1, 8, 9, 10, 10, 10,
|
|
10, 10, 10, 10, 10, 10, 10, 1, 1, 11,
|
|
1, 12, 13, 1, 14, 15, 16, 17, 18, 19,
|
|
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
|
|
30, 31, 32, 33, 34, 35, 36, 30, 37, 38,
|
|
1, 1, 1, 1, 1, 1, 39, 40, 41, 42,
|
|
|
|
43, 44, 45, 46, 47, 23, 48, 49, 50, 51,
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
|
62, 63, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1
|
|
} ;
|
|
|
|
static yyconst int yy_meta[64] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 2, 1, 1, 3, 4,
|
|
1, 1, 1, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 6, 5, 5,
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
5, 5, 7, 5, 5, 6, 8, 5, 6, 9,
|
|
10, 11, 12, 5, 13, 14, 15, 5, 5, 16,
|
|
5, 17, 5
|
|
} ;
|
|
|
|
static yyconst short int yy_base[1504] =
|
|
{ 0,
|
|
0, 0, 0, 0, 63, 110, 1791, 1792, 1792, 1792,
|
|
1792, 1781, 76, 42, 41, 90, 44, 107, 100, 121,
|
|
135, 34, 35, 122, 128, 143, 148, 164, 165, 185,
|
|
201, 56, 52, 211, 175, 1746, 226, 218, 240, 241,
|
|
261, 41, 256, 1792, 1792, 1792, 1792, 1792, 1792, 1792,
|
|
147, 195, 1737, 1778, 1774, 59, 108, 241, 1742, 265,
|
|
219, 235, 1729, 167, 1732, 132, 97, 278, 1725, 1792,
|
|
115, 1734, 1735, 285, 289, 1721, 1721, 1718, 165, 295,
|
|
1718, 1725, 1717, 1730, 1719, 1728, 132, 152, 151, 194,
|
|
281, 202, 264, 1711, 296, 269, 305, 308, 0, 274,
|
|
|
|
257, 1730, 1718, 1720, 183, 343, 1707, 1725, 1702, 1712,
|
|
1711, 227, 1704, 321, 1709, 1708, 311, 1750, 0, 1709,
|
|
1701, 1698, 309, 1746, 1701, 0, 1710, 1705, 1695, 326,
|
|
335, 242, 1697, 284, 324, 1699, 327, 232, 331, 1708,
|
|
1707, 1703, 333, 1689, 322, 338, 1696, 1703, 42, 356,
|
|
87, 328, 349, 1692, 362, 1689, 1679, 348, 1698, 1694,
|
|
1680, 1680, 1682, 354, 373, 373, 379, 381, 116, 1694,
|
|
373, 1689, 1673, 1675, 361, 385, 388, 384, 403, 1687,
|
|
404, 406, 403, 424, 1668, 1681, 1792, 1681, 1713, 1792,
|
|
1672, 1668, 418, 453, 1675, 1666, 409, 1663, 418, 462,
|
|
|
|
1661, 1675, 1661, 1670, 1659, 1660, 1668, 1664, 1665, 1654,
|
|
1662, 1657, 1665, 1662, 1648, 1661, 440, 1654, 1663, 417,
|
|
1662, 1649, 1642, 1645, 1648, 1640, 0, 1653, 1655, 1646,
|
|
1649, 1650, 1634, 1632, 1640, 1636, 1636, 1645, 1638, 1628,
|
|
1639, 1625, 436, 1637, 1633, 1635, 1634, 1619, 1618, 1631,
|
|
1626, 1609, 1614, 476, 1627, 1618, 1619, 1625, 1620, 480,
|
|
1608, 1792, 1615, 1621, 1615, 1612, 1619, 0, 1792, 1616,
|
|
1603, 1617, 0, 1604, 1603, 1596, 1602, 1646, 1612, 1792,
|
|
1610, 432, 1604, 1591, 1605, 1589, 1603, 1602, 437, 1587,
|
|
1599, 1583, 370, 1792, 1597, 1593, 430, 0, 1792, 1595,
|
|
|
|
1595, 1590, 1592, 1593, 1792, 1590, 1792, 486, 1589, 0,
|
|
465, 1575, 1573, 1572, 1575, 284, 1576, 1575, 1563, 1567,
|
|
1576, 1571, 450, 1565, 492, 1579, 1573, 1569, 1575, 1573,
|
|
1559, 1571, 0, 1570, 1556, 1564, 1561, 1552, 372, 1567,
|
|
1564, 450, 1567, 1554, 449, 1557, 1546, 1549, 1562, 1549,
|
|
1556, 1550, 1554, 448, 446, 453, 1540, 1539, 1532, 1542,
|
|
453, 1542, 511, 1552, 1537, 1532, 1526, 1538, 0, 0,
|
|
1545, 1528, 1541, 1526, 1527, 1792, 1792, 1538, 1534, 473,
|
|
0, 1530, 1526, 1529, 0, 1530, 514, 1523, 1516, 1524,
|
|
1523, 471, 520, 1521, 472, 1527, 1792, 1792, 0, 1512,
|
|
|
|
1506, 485, 1512, 1521, 1518, 1514, 1517, 1510, 1515, 1521,
|
|
1508, 1552, 1506, 1500, 1503, 1502, 1792, 0, 1495, 1792,
|
|
1792, 1509, 0, 1500, 1505, 1487, 1505, 1792, 1792, 501,
|
|
1498, 1491, 1498, 1488, 1492, 1497, 1495, 480, 525, 1792,
|
|
0, 1792, 1497, 1792, 1490, 1497, 1479, 1485, 1792, 1792,
|
|
1479, 1478, 1792, 1490, 1470, 1476, 0, 499, 0, 1487,
|
|
1473, 0, 1485, 1487, 1475, 1468, 0, 1475, 1792, 489,
|
|
1476, 528, 1477, 1459, 0, 0, 1468, 1476, 1479, 1465,
|
|
1475, 1464, 1462, 1470, 1792, 1456, 1472, 1471, 1792, 1452,
|
|
1453, 1465, 1454, 1448, 0, 1452, 532, 1445, 1456, 539,
|
|
|
|
1452, 1792, 1448, 0, 497, 541, 1792, 1460, 1459, 1435,
|
|
1453, 1452, 1448, 1792, 1451, 1792, 1445, 0, 1452, 1434,
|
|
1439, 1433, 1792, 532, 1792, 0, 1431, 500, 1437, 1446,
|
|
1432, 1440, 1430, 1434, 1423, 1438, 1421, 1434, 509, 1792,
|
|
0, 504, 1437, 1432, 1425, 0, 0, 1411, 1792, 1792,
|
|
1429, 1792, 0, 1419, 1421, 552, 1420, 1411, 1424, 513,
|
|
1411, 1422, 1415, 1418, 1419, 1408, 1409, 0, 1407, 1403,
|
|
1412, 554, 517, 1403, 1792, 1792, 1792, 1412, 1792, 1409,
|
|
1792, 1410, 0, 1792, 0, 1412, 1411, 1397, 1792, 1402,
|
|
1392, 1398, 1407, 0, 1398, 1792, 1792, 1398, 1397, 0,
|
|
|
|
569, 1399, 0, 1398, 1389, 1388, 1792, 1389, 1385, 1393,
|
|
1792, 1396, 1792, 1395, 1378, 1792, 1792, 1381, 1379, 1378,
|
|
0, 1792, 1379, 0, 510, 564, 1792, 0, 0, 0,
|
|
1382, 1386, 1383, 1365, 1377, 1361, 1370, 1364, 1378, 1362,
|
|
1366, 1368, 1792, 1369, 1360, 1792, 1792, 1792, 0, 1359,
|
|
0, 573, 1370, 1361, 1349, 1792, 1792, 1367, 1360, 1351,
|
|
1360, 1792, 1792, 1792, 1349, 1349, 1398, 1792, 1346, 1792,
|
|
0, 1347, 1344, 1343, 1792, 535, 1792, 1344, 1792, 1792,
|
|
1342, 1358, 1354, 1354, 1792, 1351, 1350, 1333, 1340, 528,
|
|
576, 0, 1792, 1792, 1331, 1338, 1333, 0, 1329, 1341,
|
|
|
|
1792, 0, 1328, 535, 1333, 1792, 1344, 1339, 0, 1792,
|
|
1342, 1328, 1340, 1335, 1792, 1327, 1333, 1324, 1792, 1312,
|
|
1792, 1321, 1323, 1314, 0, 1315, 1792, 0, 0, 1318,
|
|
1792, 1312, 1792, 0, 544, 1792, 557, 1792, 0, 1324,
|
|
1792, 1323, 1312, 1313, 0, 0, 1312, 1319, 1318, 1317,
|
|
1303, 1307, 1301, 1792, 1299, 1309, 1305, 1298, 1290, 1792,
|
|
1792, 0, 1300, 1792, 1292, 1792, 1291, 1792, 1792, 1293,
|
|
1295, 1295, 1299, 1288, 581, 1792, 1792, 1292, 1792, 545,
|
|
1297, 1792, 1285, 586, 1792, 1792, 1301, 1792, 1297, 1287,
|
|
1291, 1792, 1792, 0, 1792, 1792, 1284, 1286, 1291, 1276,
|
|
|
|
1792, 0, 1279, 1283, 1792, 1278, 590, 1285, 1792, 556,
|
|
544, 1792, 1792, 1272, 0, 0, 0, 0, 1792, 1283,
|
|
1265, 547, 1281, 1281, 0, 1792, 1792, 0, 1792, 1282,
|
|
1792, 1792, 1792, 1201, 1182, 1112, 0, 1115, 0, 1094,
|
|
601, 0, 1792, 1086, 1084, 1070, 0, 1792, 1792, 1792,
|
|
1060, 1049, 1048, 0, 1034, 1040, 1029, 1001, 1005, 991,
|
|
976, 980, 0, 959, 1792, 564, 1792, 1792, 933, 926,
|
|
1792, 922, 897, 0, 903, 887, 875, 850, 1792, 811,
|
|
1792, 803, 604, 64, 1792, 171, 606, 1792, 251, 0,
|
|
343, 451, 550, 1792, 556, 568, 568, 559, 573, 1792,
|
|
|
|
574, 575, 1792, 562, 1792, 1792, 1792, 1792, 576, 579,
|
|
572, 573, 0, 1792, 569, 1792, 570, 1792, 1792, 1792,
|
|
582, 573, 579, 575, 575, 585, 577, 0, 591, 1792,
|
|
0, 0, 1792, 1792, 579, 583, 0, 595, 595, 593,
|
|
0, 589, 1792, 591, 602, 594, 1792, 603, 587, 645,
|
|
0, 605, 599, 1792, 601, 610, 597, 0, 593, 601,
|
|
601, 611, 604, 605, 609, 606, 611, 621, 662, 0,
|
|
1792, 1792, 1792, 1792, 0, 0, 624, 0, 0, 1792,
|
|
1792, 665, 0, 619, 1792, 1792, 626, 1792, 0, 1792,
|
|
610, 1792, 0, 1792, 616, 1792, 616, 618, 619, 1792,
|
|
|
|
0, 622, 623, 0, 624, 633, 0, 634, 1792, 635,
|
|
0, 634, 636, 646, 1792, 631, 0, 0, 0, 635,
|
|
633, 638, 1792, 635, 648, 649, 632, 1792, 0, 1792,
|
|
638, 654, 0, 654, 0, 0, 643, 0, 644, 0,
|
|
1792, 0, 0, 1792, 0, 0, 697, 1792, 1792, 663,
|
|
651, 1792, 1792, 647, 658, 1792, 657, 652, 1792, 1792,
|
|
660, 0, 1792, 648, 0, 660, 1792, 668, 0, 668,
|
|
0, 662, 666, 1792, 0, 665, 674, 0, 662, 676,
|
|
664, 1792, 0, 664, 1792, 679, 720, 722, 669, 725,
|
|
1792, 673, 1792, 1792, 0, 1792, 1792, 682, 1792, 0,
|
|
|
|
0, 1792, 680, 1792, 0, 676, 691, 679, 1792, 1792,
|
|
1792, 1792, 689, 685, 1792, 683, 688, 1792, 0, 697,
|
|
690, 691, 0, 1792, 1792, 1792, 0, 0, 684, 701,
|
|
687, 0, 1792, 0, 1792, 1792, 1792, 1792, 1792, 1792,
|
|
1792, 703, 1792, 1792, 1792, 1792, 1792, 1792, 708, 697,
|
|
698, 700, 690, 701, 0, 711, 693, 1792, 0, 1792,
|
|
711, 754, 1792, 0, 1792, 704, 708, 1792, 718, 706,
|
|
1792, 1792, 707, 722, 0, 0, 762, 705, 711, 766,
|
|
709, 727, 722, 1792, 1792, 717, 1792, 0, 1792, 1792,
|
|
720, 734, 0, 727, 723, 735, 1792, 1792, 0, 0,
|
|
|
|
1792, 1792, 1792, 738, 740, 732, 1792, 1792, 1792, 729,
|
|
0, 0, 0, 734, 1792, 0, 0, 1792, 0, 729,
|
|
1792, 745, 736, 0, 1792, 733, 0, 1792, 1792, 728,
|
|
739, 746, 754, 739, 743, 757, 745, 0, 1792, 742,
|
|
1792, 1792, 0, 0, 1792, 1792, 744, 0, 0, 748,
|
|
1792, 1792, 1792, 762, 1792, 1792, 1792, 756, 1792, 755,
|
|
1792, 1792, 752, 747, 767, 764, 750, 752, 762, 1792,
|
|
0, 1792, 1792, 0, 1792, 1792, 753, 763, 770, 0,
|
|
756, 760, 0, 761, 0, 0, 1792, 1792, 766, 1792,
|
|
815, 1792, 765, 1792, 766, 1792, 1792, 767, 1792, 1792,
|
|
|
|
781, 785, 770, 0, 771, 770, 0, 1792, 1792, 827,
|
|
842, 859, 872, 860, 863, 868, 889, 905, 919, 890,
|
|
933, 893, 894, 897, 898, 948, 962, 901, 976, 990,
|
|
906, 909, 910, 913, 914, 1007, 920, 923, 924, 927,
|
|
928, 1020, 1034, 934, 937, 938, 941, 942, 949, 1048,
|
|
952, 953, 956, 957, 1059, 963, 966, 967, 970, 971,
|
|
1073, 977, 980, 1085, 981, 984, 1093, 985, 991, 994,
|
|
1107, 995, 998, 999, 1003, 1010, 1011, 1014, 1015, 1021,
|
|
1114, 1024, 1025, 1028, 1029, 1035, 1038, 1039, 1042, 1043,
|
|
1049, 1052, 1053, 1060, 1128, 1063, 1064, 1067, 1068, 1074,
|
|
|
|
1077, 1078, 1081, 1086, 1094, 1097, 1098, 1101, 1102, 1108,
|
|
1115, 1138, 1118, 1119, 1152, 1122, 1123, 1129, 1132, 1133,
|
|
1139, 1142, 1168, 1143, 1146, 1147, 1153, 1156, 1157, 1161,
|
|
1162, 1169, 1172, 1173, 1176, 1177, 1180, 1183, 1184, 1187,
|
|
1188, 1191, 1192, 1195, 1196, 1199, 1200, 1203, 1204, 1207,
|
|
1208, 1211, 1212, 1215, 1216, 1219, 1222, 1223, 1226, 1227,
|
|
1230, 1231, 1234, 1237, 1238, 1241, 1242, 1245, 1246, 1249,
|
|
1252, 1253, 1256, 1259, 1260, 1263, 1264, 1267, 1268, 1271,
|
|
1274, 1275, 1278, 1279, 1282, 1283, 1286, 1287, 1290, 1291,
|
|
1294, 1295, 1298, 1299, 1302, 1303, 1306, 1307, 1319, 1310,
|
|
|
|
1311, 1314, 1315
|
|
} ;
|
|
|
|
static yyconst short int yy_def[1504] =
|
|
{ 0,
|
|
1309, 1, 1, 1, 1310, 1310, 1309, 1309, 1309, 1309,
|
|
1309, 1311, 1309, 1309, 1312, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 30, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1311, 1313, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1314, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1315, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1316, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1317, 1309, 1309, 1309, 1313, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1318, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1319, 1320, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1321, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1322, 1309, 1309,
|
|
1309, 1309, 1323, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1324, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1325,
|
|
1309, 1326, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1327, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1328, 1309, 1329, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1330, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1331, 1309, 1309, 1309, 1309, 1309, 1332, 1333,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1334, 1309, 1309, 1309, 1335, 1309, 1336, 1309, 1309, 1309,
|
|
1309, 1309, 1337, 1309, 1309, 1309, 1309, 1309, 1338, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1339, 1309, 1309,
|
|
1309, 1309, 1340, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1341, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1342, 1343, 1309, 1309, 1309, 1309, 1344, 1309, 1345, 1309,
|
|
1309, 1346, 1309, 1309, 1309, 1309, 1347, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1348, 1349, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1350, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1351, 1309, 1309, 1309, 1309, 1352,
|
|
|
|
1309, 1309, 1309, 1353, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1354, 1309, 1355,
|
|
1309, 1309, 1309, 1309, 1309, 1356, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1357, 1309, 1309, 1309, 1309, 1358, 1359, 1309, 1309, 1309,
|
|
1309, 1309, 1360, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1361, 1309, 1362, 1309, 1309,
|
|
1309, 1363, 1364, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1365, 1309, 1366, 1309, 1309, 1309, 1309, 1309,
|
|
1367, 1309, 1309, 1368, 1309, 1309, 1309, 1309, 1309, 1369,
|
|
|
|
1309, 1309, 1370, 1309, 1309, 1309, 1309, 1309, 1309, 1371,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1350,
|
|
1372, 1309, 1309, 1373, 1361, 1374, 1309, 1375, 1376, 1377,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1378, 1309,
|
|
1379, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1380, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1381, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1382, 1383, 1309, 1309, 1309, 1309, 1309, 1384, 1309, 1309,
|
|
|
|
1309, 1385, 1309, 1309, 1309, 1309, 1309, 1309, 1386, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1387, 1309, 1309, 1388, 1389, 1309,
|
|
1309, 1309, 1309, 1390, 1309, 1309, 1309, 1309, 1391, 1309,
|
|
1309, 1309, 1309, 1309, 1392, 1393, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1394, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1395, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1396, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1397, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1398, 1399, 1400, 1401, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1402, 1309, 1309, 1403, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1404, 1309, 1405, 1309,
|
|
1406, 1407, 1309, 1309, 1309, 1309, 1408, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1409, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1410, 1309, 1309, 1309, 1309, 1309, 1381, 1309,
|
|
1309, 1309, 1309, 1411, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1412, 1309, 1309, 1309, 1309, 1309, 1413,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1414, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1415, 1309, 1309, 1309, 1309, 1416, 1309, 1309,
|
|
1417, 1418, 1309, 1309, 1309, 1309, 1419, 1309, 1309, 1309,
|
|
1420, 1309, 1309, 1395, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1421, 1309, 1309, 1309, 1309, 1309, 1309, 1422, 1309, 1309,
|
|
1423, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1424, 1425,
|
|
1309, 1309, 1309, 1309, 1426, 1427, 1309, 1428, 1429, 1309,
|
|
1309, 1309, 1430, 1309, 1309, 1309, 1309, 1309, 1431, 1309,
|
|
1309, 1309, 1432, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1433, 1309, 1309, 1434, 1309, 1309, 1435, 1309, 1309, 1309,
|
|
1436, 1309, 1309, 1309, 1309, 1309, 1437, 1438, 1439, 1309,
|
|
1309, 1309, 1309, 1412, 1309, 1309, 1309, 1309, 1440, 1309,
|
|
1309, 1309, 1441, 1309, 1442, 1443, 1309, 1444, 1309, 1445,
|
|
1309, 1446, 1447, 1309, 1448, 1449, 1450, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1451, 1309, 1309, 1452, 1309, 1309, 1309, 1453, 1309,
|
|
1454, 1309, 1309, 1309, 1455, 1309, 1309, 1456, 1457, 1309,
|
|
1309, 1309, 1458, 1309, 1309, 1309, 1309, 1459, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1460, 1309, 1309, 1309, 1309, 1461,
|
|
|
|
1462, 1309, 1309, 1309, 1463, 1309, 1309, 1464, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1465, 1309,
|
|
1309, 1309, 1466, 1309, 1309, 1309, 1467, 1468, 1309, 1309,
|
|
1309, 1469, 1309, 1470, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1471, 1309, 1309, 1309, 1472, 1309,
|
|
1309, 1309, 1309, 1473, 1309, 1309, 1309, 1309, 1309, 1474,
|
|
1309, 1309, 1457, 1309, 1475, 1476, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1477, 1309, 1309,
|
|
1464, 1309, 1478, 1309, 1309, 1309, 1309, 1309, 1479, 1480,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1481, 1482, 1483, 1309, 1309, 1484, 1485, 1309, 1486, 1309,
|
|
1309, 1309, 1309, 1487, 1309, 1474, 1488, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1489, 1309, 1309,
|
|
1309, 1309, 1490, 1491, 1309, 1309, 1309, 1492, 1493, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1494, 1309, 1309, 1495, 1309, 1309, 1309, 1309, 1309, 1496,
|
|
1309, 1497, 1498, 1499, 1500, 1501, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1499, 1309, 1497, 1309, 1309, 1499, 1309, 1309,
|
|
|
|
1309, 1309, 1499, 1502, 1309, 1309, 1503, 1309, 0, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309
|
|
} ;
|
|
|
|
static yyconst short int yy_nxt[1856] =
|
|
{ 0,
|
|
8, 9, 8, 10, 8, 11, 8, 8, 8, 11,
|
|
12, 8, 8, 13, 14, 15, 16, 17, 18, 19,
|
|
20, 21, 22, 23, 24, 25, 26, 27, 28, 11,
|
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 14,
|
|
38, 16, 17, 18, 19, 39, 21, 23, 40, 25,
|
|
26, 41, 28, 11, 29, 42, 43, 32, 33, 34,
|
|
11, 35, 36, 44, 45, 44, 46, 47, 71, 48,
|
|
49, 44, 107, 44, 44, 50, 51, 109, 56, 56,
|
|
63, 110, 340, 181, 64, 108, 72, 73, 65, 74,
|
|
83, 341, 75, 66, 162, 76, 67, 182, 163, 68,
|
|
|
|
57, 52, 84, 69, 85, 86, 160, 191, 161, 53,
|
|
44, 45, 44, 46, 47, 192, 48, 49, 44, 1024,
|
|
44, 44, 50, 51, 58, 59, 60, 193, 77, 217,
|
|
61, 62, 78, 347, 87, 211, 79, 102, 102, 348,
|
|
103, 80, 93, 212, 81, 88, 94, 82, 52, 186,
|
|
186, 95, 193, 89, 217, 90, 53, 96, 91, 97,
|
|
111, 92, 243, 98, 112, 380, 115, 99, 113, 206,
|
|
206, 124, 100, 114, 116, 381, 104, 130, 101, 117,
|
|
170, 120, 118, 208, 105, 121, 243, 125, 209, 119,
|
|
106, 126, 244, 210, 122, 124, 127, 186, 186, 246,
|
|
|
|
123, 247, 131, 139, 128, 129, 132, 140, 245, 133,
|
|
134, 65, 135, 171, 1025, 136, 141, 172, 137, 231,
|
|
232, 138, 142, 143, 164, 144, 173, 145, 56, 56,
|
|
146, 65, 275, 147, 148, 276, 149, 203, 203, 153,
|
|
222, 150, 151, 154, 152, 71, 155, 156, 250, 165,
|
|
57, 248, 157, 166, 187, 158, 167, 168, 159, 251,
|
|
193, 200, 169, 72, 73, 284, 74, 197, 197, 75,
|
|
201, 324, 76, 202, 58, 59, 60, 285, 176, 111,
|
|
175, 62, 177, 112, 124, 193, 99, 113, 325, 194,
|
|
204, 100, 179, 315, 183, 195, 316, 178, 154, 1027,
|
|
|
|
125, 184, 156, 217, 126, 263, 252, 185, 124, 180,
|
|
158, 243, 272, 159, 253, 261, 198, 128, 129, 213,
|
|
254, 214, 318, 220, 270, 271, 199, 221, 217, 530,
|
|
262, 222, 249, 215, 207, 243, 223, 233, 224, 531,
|
|
225, 226, 256, 234, 257, 277, 277, 258, 227, 235,
|
|
303, 259, 260, 263, 236, 264, 266, 311, 267, 287,
|
|
294, 295, 319, 265, 335, 304, 311, 296, 297, 268,
|
|
349, 288, 289, 322, 350, 320, 336, 290, 323, 291,
|
|
337, 311, 369, 312, 1029, 313, 326, 327, 331, 314,
|
|
311, 332, 333, 278, 342, 338, 351, 352, 343, 361,
|
|
|
|
354, 369, 344, 200, 355, 362, 369, 345, 356, 363,
|
|
346, 372, 389, 357, 420, 202, 509, 374, 383, 358,
|
|
557, 375, 406, 384, 378, 369, 558, 373, 370, 371,
|
|
376, 207, 390, 390, 385, 264, 391, 379, 267, 272,
|
|
377, 287, 394, 265, 342, 402, 335, 406, 343, 268,
|
|
396, 352, 344, 288, 392, 403, 403, 395, 336, 290,
|
|
346, 291, 354, 408, 411, 411, 355, 430, 458, 402,
|
|
356, 433, 434, 497, 409, 357, 420, 410, 470, 470,
|
|
524, 358, 477, 477, 504, 512, 513, 505, 521, 521,
|
|
538, 430, 458, 539, 542, 542, 561, 565, 575, 1030,
|
|
|
|
578, 566, 586, 580, 576, 524, 562, 579, 581, 630,
|
|
587, 605, 412, 590, 590, 606, 614, 614, 621, 615,
|
|
565, 505, 623, 623, 625, 651, 659, 661, 661, 676,
|
|
690, 690, 471, 630, 712, 712, 478, 660, 687, 720,
|
|
688, 716, 716, 722, 722, 737, 740, 752, 866, 651,
|
|
755, 753, 771, 676, 767, 767, 787, 787, 721, 789,
|
|
756, 741, 780, 790, 772, 828, 830, 830, 616, 773,
|
|
737, 810, 810, 866, 811, 851, 851, 877, 880, 880,
|
|
890, 913, 911, 942, 942, 878, 912, 945, 949, 949,
|
|
1011, 946, 962, 962, 964, 608, 890, 965, 968, 969,
|
|
|
|
1031, 977, 966, 991, 991, 913, 1022, 1022, 1026, 1026,
|
|
1032, 1033, 1034, 1035, 1011, 1036, 1037, 967, 1038, 1039,
|
|
1040, 1041, 1042, 1043, 1045, 1046, 1047, 1048, 1050, 1052,
|
|
1053, 1054, 1055, 1057, 1061, 1062, 1064, 1065, 1051, 1066,
|
|
1068, 1309, 1058, 1069, 1070, 1071, 1072, 1073, 1073, 1075,
|
|
1076, 1077, 1078, 1079, 1080, 1081, 1083, 1084, 1085, 1086,
|
|
1087, 1088, 1089, 1090, 1092, 1092, 1095, 1098, 1098, 1100,
|
|
1101, 1103, 1105, 1106, 1107, 1108, 1110, 1111, 1113, 1114,
|
|
1116, 1117, 1119, 1120, 1121, 1123, 1127, 1128, 1122, 1129,
|
|
1309, 1130, 1131, 1132, 1134, 1135, 1137, 1140, 1142, 1149,
|
|
|
|
1149, 1150, 1152, 1153, 1154, 1151, 1155, 1156, 1157, 1159,
|
|
1161, 1162, 1164, 1166, 1167, 1169, 1170, 1173, 1174, 1175,
|
|
1176, 1177, 1178, 1178, 1179, 1179, 1180, 1181, 1181, 1182,
|
|
1183, 1186, 1188, 1189, 1191, 1192, 1194, 1195, 1196, 1198,
|
|
1199, 1200, 1204, 1205, 1206, 1209, 1210, 1211, 1212, 1050,
|
|
1193, 1213, 1214, 1216, 1217, 1219, 1220, 1220, 1222, 1223,
|
|
1224, 1226, 1309, 1227, 1230, 1230, 1231, 1232, 1233, 1233,
|
|
1235, 1234, 1236, 1237, 1238, 1309, 1240, 1242, 1243, 1244,
|
|
1247, 1248, 1249, 1250, 1254, 1258, 1259, 1260, 1309, 1263,
|
|
1264, 1265, 1234, 1266, 1267, 1268, 1269, 1271, 1274, 1277,
|
|
|
|
1278, 1279, 1280, 1281, 1282, 1268, 1283, 1284, 1285, 1286,
|
|
1289, 1290, 1291, 1293, 1295, 1298, 1301, 1302, 1302, 1303,
|
|
1309, 1309, 1304, 1305, 1309, 1306, 1307, 8, 8, 8,
|
|
8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
|
|
8, 8, 8, 8, 55, 1021, 55, 55, 55, 55,
|
|
55, 55, 55, 55, 55, 55, 55, 55, 55, 70,
|
|
269, 70, 269, 299, 70, 299, 70, 1020, 307, 70,
|
|
307, 70, 189, 189, 189, 189, 189, 189, 189, 189,
|
|
189, 189, 189, 189, 189, 189, 189, 189, 189, 397,
|
|
442, 397, 442, 485, 489, 485, 489, 514, 523, 514,
|
|
|
|
523, 550, 1019, 550, 397, 417, 589, 417, 589, 596,
|
|
597, 596, 597, 607, 611, 607, 611, 1018, 417, 440,
|
|
622, 440, 622, 627, 643, 627, 643, 646, 662, 646,
|
|
662, 1017, 440, 469, 675, 469, 675, 677, 680, 677,
|
|
680, 685, 693, 685, 693, 1016, 1014, 469, 525, 694,
|
|
525, 694, 710, 715, 710, 715, 719, 731, 719, 731,
|
|
1013, 525, 540, 738, 540, 738, 754, 760, 754, 760,
|
|
761, 764, 761, 764, 1012, 540, 552, 782, 552, 782,
|
|
786, 795, 786, 795, 796, 805, 796, 805, 1309, 552,
|
|
577, 809, 577, 809, 813, 826, 813, 826, 827, 829,
|
|
|
|
827, 829, 577, 831, 1010, 831, 577, 613, 613, 613,
|
|
832, 833, 832, 833, 848, 850, 848, 850, 1008, 613,
|
|
668, 670, 668, 670, 879, 881, 879, 881, 885, 888,
|
|
885, 888, 1007, 668, 670, 894, 670, 894, 905, 907,
|
|
905, 907, 908, 733, 908, 733, 1006, 670, 701, 914,
|
|
701, 914, 919, 920, 919, 920, 1005, 1004, 701, 733,
|
|
933, 733, 933, 954, 801, 954, 801, 971, 972, 971,
|
|
972, 1003, 733, 779, 973, 779, 973, 974, 980, 974,
|
|
980, 981, 1002, 981, 779, 788, 986, 788, 986, 1001,
|
|
999, 788, 788, 801, 988, 801, 988, 990, 992, 990,
|
|
|
|
992, 996, 1000, 996, 1000, 998, 801, 819, 1009, 819,
|
|
1009, 997, 995, 819, 868, 1015, 868, 1015, 1028, 1044,
|
|
1028, 1044, 1056, 1059, 1056, 1059, 994, 868, 943, 1060,
|
|
943, 1060, 1063, 1067, 1063, 1067, 993, 943, 1023, 1074,
|
|
1023, 1074, 589, 1091, 589, 1091, 1093, 819, 1093, 819,
|
|
989, 1023, 1049, 1094, 1049, 1094, 1096, 1097, 1096, 1097,
|
|
1049, 1099, 1102, 1099, 1102, 987, 985, 1049, 1082, 1104,
|
|
1082, 1104, 1109, 1112, 1109, 1112, 1115, 1118, 1115, 1118,
|
|
1124, 1082, 1124, 1125, 1126, 1125, 1126, 1133, 1136, 1133,
|
|
1136, 1138, 1139, 1138, 1139, 1141, 1143, 1141, 1143, 1144,
|
|
|
|
1145, 1144, 1145, 1146, 1147, 1146, 1147, 1148, 1158, 1148,
|
|
1158, 1160, 1163, 1160, 1163, 1165, 1168, 1165, 1168, 1171,
|
|
984, 1171, 1172, 1082, 1172, 1082, 1091, 1096, 1091, 1096,
|
|
1184, 1185, 1184, 1185, 1187, 1172, 1187, 1190, 1197, 1190,
|
|
1197, 1201, 1202, 1201, 1202, 1203, 1207, 1203, 1207, 1208,
|
|
1190, 1208, 1215, 1218, 1215, 1218, 1221, 983, 1221, 1225,
|
|
1228, 1225, 1228, 1229, 1239, 1229, 1239, 1241, 1245, 1241,
|
|
1245, 1246, 1225, 1246, 1251, 1252, 1251, 1252, 1253, 1255,
|
|
1253, 1255, 1256, 1257, 1256, 1257, 1261, 1262, 1261, 1262,
|
|
1270, 1272, 1270, 1272, 1273, 1275, 1273, 1275, 1276, 1287,
|
|
|
|
1276, 1287, 1288, 1292, 1288, 1292, 1294, 1296, 1294, 1296,
|
|
1299, 1300, 1299, 1300, 1148, 1308, 1148, 1308, 1294, 1297,
|
|
982, 1297, 979, 978, 976, 975, 970, 963, 961, 960,
|
|
959, 1297, 958, 957, 956, 955, 953, 952, 951, 950,
|
|
948, 947, 944, 941, 940, 939, 938, 937, 936, 935,
|
|
934, 932, 931, 930, 929, 928, 927, 926, 925, 924,
|
|
923, 922, 921, 918, 917, 916, 915, 910, 909, 906,
|
|
904, 903, 902, 721, 901, 900, 899, 898, 897, 896,
|
|
895, 893, 892, 891, 889, 887, 886, 884, 883, 882,
|
|
876, 875, 874, 873, 872, 871, 870, 869, 867, 865,
|
|
|
|
864, 863, 862, 861, 860, 859, 858, 857, 856, 855,
|
|
854, 853, 852, 849, 847, 846, 845, 844, 843, 842,
|
|
841, 840, 839, 838, 837, 836, 835, 834, 735, 825,
|
|
825, 824, 823, 822, 821, 820, 818, 817, 816, 815,
|
|
814, 812, 808, 807, 806, 804, 803, 802, 800, 799,
|
|
798, 797, 794, 793, 792, 791, 785, 784, 783, 781,
|
|
780, 778, 777, 776, 775, 774, 770, 769, 768, 766,
|
|
765, 763, 762, 759, 758, 757, 751, 750, 749, 748,
|
|
747, 746, 745, 744, 743, 742, 739, 736, 735, 734,
|
|
732, 730, 729, 728, 727, 726, 725, 724, 723, 718,
|
|
|
|
717, 714, 713, 711, 709, 494, 708, 707, 706, 705,
|
|
704, 703, 702, 698, 700, 699, 698, 697, 696, 695,
|
|
692, 691, 689, 686, 684, 683, 682, 681, 679, 678,
|
|
674, 673, 672, 671, 669, 667, 666, 665, 664, 663,
|
|
658, 657, 656, 655, 654, 653, 652, 650, 649, 648,
|
|
647, 645, 644, 642, 641, 640, 639, 638, 637, 636,
|
|
635, 634, 633, 59, 632, 631, 195, 629, 628, 626,
|
|
624, 620, 619, 618, 617, 612, 610, 609, 608, 604,
|
|
603, 602, 601, 600, 599, 598, 595, 594, 593, 592,
|
|
591, 588, 585, 584, 583, 582, 574, 573, 572, 571,
|
|
|
|
570, 569, 568, 567, 564, 563, 560, 559, 556, 555,
|
|
554, 553, 551, 549, 548, 547, 546, 545, 544, 543,
|
|
541, 537, 536, 535, 534, 533, 532, 529, 528, 527,
|
|
526, 522, 520, 519, 518, 517, 516, 515, 511, 510,
|
|
508, 507, 506, 503, 502, 501, 500, 499, 498, 496,
|
|
495, 494, 493, 492, 491, 490, 488, 487, 486, 484,
|
|
483, 482, 481, 480, 479, 476, 475, 474, 473, 472,
|
|
468, 467, 466, 465, 464, 463, 462, 461, 460, 459,
|
|
457, 456, 455, 454, 453, 452, 451, 450, 449, 448,
|
|
447, 446, 445, 444, 443, 441, 439, 438, 437, 436,
|
|
|
|
435, 432, 431, 429, 428, 427, 426, 425, 424, 423,
|
|
422, 421, 420, 419, 418, 416, 415, 414, 413, 407,
|
|
405, 404, 401, 400, 190, 399, 398, 360, 393, 388,
|
|
387, 386, 382, 368, 367, 366, 365, 364, 360, 359,
|
|
353, 339, 222, 334, 330, 329, 328, 321, 317, 310,
|
|
309, 308, 306, 305, 302, 301, 300, 298, 293, 292,
|
|
286, 283, 282, 281, 280, 279, 274, 273, 103, 255,
|
|
242, 241, 240, 239, 238, 237, 230, 229, 228, 219,
|
|
218, 216, 207, 205, 196, 190, 1309, 188, 174, 54,
|
|
1309, 7, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309
|
|
} ;
|
|
|
|
static yyconst short int yy_chk[1856] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 5, 5, 5, 5, 5, 15, 5,
|
|
5, 5, 22, 5, 5, 5, 5, 23, 13, 13,
|
|
14, 23, 149, 42, 14, 22, 15, 15, 14, 15,
|
|
17, 149, 15, 14, 33, 15, 14, 42, 33, 14,
|
|
|
|
13, 5, 17, 14, 17, 17, 32, 56, 32, 5,
|
|
6, 6, 6, 6, 6, 56, 6, 6, 6, 884,
|
|
6, 6, 6, 6, 13, 13, 13, 57, 16, 71,
|
|
13, 13, 16, 151, 18, 67, 16, 21, 21, 151,
|
|
21, 16, 19, 67, 16, 18, 19, 16, 6, 51,
|
|
51, 19, 57, 18, 71, 18, 6, 19, 18, 20,
|
|
24, 18, 87, 20, 24, 169, 25, 20, 24, 64,
|
|
64, 27, 20, 24, 25, 169, 21, 28, 20, 25,
|
|
35, 26, 25, 66, 21, 26, 87, 27, 66, 25,
|
|
21, 27, 88, 66, 26, 27, 27, 52, 52, 89,
|
|
|
|
26, 89, 28, 29, 27, 27, 28, 29, 88, 28,
|
|
28, 29, 28, 35, 886, 28, 29, 35, 28, 79,
|
|
79, 28, 29, 30, 34, 30, 35, 30, 37, 37,
|
|
30, 30, 105, 30, 30, 105, 30, 62, 62, 31,
|
|
90, 30, 30, 31, 30, 38, 31, 31, 92, 34,
|
|
37, 90, 31, 34, 52, 31, 34, 34, 31, 92,
|
|
58, 61, 34, 38, 38, 112, 38, 60, 60, 38,
|
|
61, 138, 38, 61, 37, 37, 37, 112, 39, 40,
|
|
37, 37, 39, 40, 41, 58, 39, 40, 138, 58,
|
|
62, 39, 40, 132, 43, 58, 132, 39, 43, 889,
|
|
|
|
41, 43, 43, 75, 41, 101, 93, 43, 41, 41,
|
|
43, 91, 101, 43, 93, 96, 60, 41, 41, 68,
|
|
93, 68, 134, 74, 100, 100, 60, 74, 75, 316,
|
|
96, 74, 91, 68, 134, 91, 74, 80, 75, 316,
|
|
75, 75, 95, 80, 95, 106, 106, 95, 75, 80,
|
|
123, 95, 95, 97, 80, 97, 98, 130, 98, 114,
|
|
117, 117, 135, 97, 145, 123, 131, 117, 117, 98,
|
|
152, 114, 114, 137, 152, 135, 145, 114, 137, 114,
|
|
146, 130, 164, 131, 891, 131, 139, 139, 143, 131,
|
|
131, 143, 143, 106, 150, 146, 153, 153, 150, 158,
|
|
|
|
155, 165, 150, 175, 155, 158, 164, 150, 155, 158,
|
|
150, 166, 175, 155, 293, 175, 293, 167, 171, 155,
|
|
339, 167, 197, 171, 168, 165, 339, 166, 165, 165,
|
|
167, 168, 178, 176, 171, 176, 177, 168, 177, 178,
|
|
167, 179, 181, 176, 182, 193, 181, 197, 182, 177,
|
|
183, 183, 182, 179, 179, 194, 194, 182, 181, 179,
|
|
182, 179, 184, 199, 200, 200, 184, 217, 243, 193,
|
|
184, 220, 220, 282, 199, 184, 282, 199, 254, 254,
|
|
311, 184, 260, 260, 289, 297, 297, 289, 308, 308,
|
|
323, 217, 243, 323, 325, 325, 342, 345, 354, 892,
|
|
|
|
355, 345, 361, 356, 354, 311, 342, 355, 356, 402,
|
|
361, 380, 200, 363, 363, 380, 387, 387, 392, 387,
|
|
395, 392, 393, 393, 395, 430, 438, 439, 439, 458,
|
|
472, 472, 254, 402, 497, 497, 260, 438, 470, 505,
|
|
470, 500, 500, 506, 506, 524, 528, 539, 676, 430,
|
|
542, 539, 560, 458, 556, 556, 572, 572, 505, 573,
|
|
542, 528, 625, 573, 560, 625, 626, 626, 387, 560,
|
|
524, 601, 601, 676, 601, 652, 652, 690, 691, 691,
|
|
704, 737, 735, 775, 775, 690, 735, 780, 784, 784,
|
|
866, 780, 807, 807, 810, 822, 704, 810, 811, 811,
|
|
|
|
893, 822, 810, 841, 841, 737, 883, 883, 887, 887,
|
|
895, 896, 897, 898, 866, 899, 901, 810, 902, 904,
|
|
909, 910, 911, 912, 915, 917, 921, 922, 923, 924,
|
|
925, 926, 927, 929, 935, 936, 938, 939, 923, 940,
|
|
942, 944, 929, 945, 946, 948, 949, 950, 950, 952,
|
|
953, 955, 956, 957, 959, 960, 961, 962, 963, 964,
|
|
965, 966, 967, 968, 969, 969, 977, 982, 982, 984,
|
|
987, 991, 995, 997, 998, 999, 1002, 1003, 1005, 1006,
|
|
1008, 1010, 1012, 1013, 1014, 1016, 1020, 1021, 1014, 1022,
|
|
1024, 1025, 1026, 1027, 1031, 1032, 1034, 1037, 1039, 1047,
|
|
|
|
1047, 1050, 1051, 1054, 1055, 1050, 1057, 1058, 1061, 1064,
|
|
1066, 1068, 1070, 1072, 1073, 1076, 1077, 1079, 1080, 1081,
|
|
1084, 1086, 1087, 1087, 1088, 1088, 1089, 1090, 1090, 1092,
|
|
1098, 1103, 1106, 1107, 1108, 1113, 1114, 1116, 1117, 1120,
|
|
1121, 1122, 1129, 1130, 1131, 1142, 1149, 1150, 1151, 1152,
|
|
1113, 1153, 1154, 1156, 1157, 1161, 1162, 1162, 1166, 1167,
|
|
1169, 1170, 1173, 1174, 1177, 1177, 1178, 1179, 1180, 1180,
|
|
1181, 1180, 1182, 1183, 1186, 1191, 1192, 1194, 1195, 1196,
|
|
1204, 1205, 1206, 1210, 1214, 1220, 1222, 1223, 1226, 1230,
|
|
1231, 1232, 1233, 1234, 1235, 1236, 1237, 1240, 1247, 1250,
|
|
|
|
1254, 1258, 1260, 1263, 1264, 1265, 1266, 1267, 1268, 1269,
|
|
1277, 1278, 1279, 1281, 1282, 1284, 1289, 1291, 1291, 1293,
|
|
1295, 1298, 1301, 1302, 1303, 1305, 1306, 1310, 1310, 1310,
|
|
1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310,
|
|
1310, 1310, 1310, 1310, 1311, 882, 1311, 1311, 1311, 1311,
|
|
1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1312,
|
|
1314, 1312, 1314, 1315, 1312, 1315, 1312, 880, 1316, 1312,
|
|
1316, 1312, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313,
|
|
1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1317,
|
|
1320, 1317, 1320, 1322, 1323, 1322, 1323, 1324, 1325, 1324,
|
|
|
|
1325, 1328, 878, 1328, 1317, 1318, 1331, 1318, 1331, 1332,
|
|
1333, 1332, 1333, 1334, 1335, 1334, 1335, 877, 1318, 1319,
|
|
1337, 1319, 1337, 1338, 1339, 1338, 1339, 1340, 1341, 1340,
|
|
1341, 876, 1319, 1321, 1344, 1321, 1344, 1345, 1346, 1345,
|
|
1346, 1347, 1348, 1347, 1348, 875, 873, 1321, 1326, 1349,
|
|
1326, 1349, 1351, 1352, 1351, 1352, 1353, 1354, 1353, 1354,
|
|
872, 1326, 1327, 1356, 1327, 1356, 1357, 1358, 1357, 1358,
|
|
1359, 1360, 1359, 1360, 870, 1327, 1329, 1362, 1329, 1362,
|
|
1363, 1365, 1363, 1365, 1366, 1368, 1366, 1368, 869, 1329,
|
|
1330, 1369, 1330, 1369, 1370, 1372, 1370, 1372, 1373, 1374,
|
|
|
|
1373, 1374, 1330, 1375, 864, 1375, 1330, 1336, 1336, 1336,
|
|
1376, 1377, 1376, 1377, 1378, 1379, 1378, 1379, 862, 1336,
|
|
1342, 1380, 1342, 1380, 1382, 1383, 1382, 1383, 1384, 1385,
|
|
1384, 1385, 861, 1342, 1343, 1386, 1343, 1386, 1387, 1388,
|
|
1387, 1388, 1389, 1390, 1389, 1390, 860, 1343, 1350, 1391,
|
|
1350, 1391, 1392, 1393, 1392, 1393, 859, 858, 1350, 1355,
|
|
1394, 1355, 1394, 1396, 1397, 1396, 1397, 1398, 1399, 1398,
|
|
1399, 857, 1355, 1361, 1400, 1361, 1400, 1401, 1402, 1401,
|
|
1402, 1403, 856, 1403, 1361, 1364, 1404, 1364, 1404, 855,
|
|
853, 1364, 1364, 1367, 1405, 1367, 1405, 1406, 1407, 1406,
|
|
|
|
1407, 1408, 1409, 1408, 1409, 852, 1367, 1371, 1410, 1371,
|
|
1410, 851, 846, 1371, 1381, 1411, 1381, 1411, 1413, 1414,
|
|
1413, 1414, 1416, 1417, 1416, 1417, 845, 1381, 1395, 1418,
|
|
1395, 1418, 1419, 1420, 1419, 1420, 844, 1395, 1412, 1421,
|
|
1412, 1421, 1422, 1424, 1422, 1424, 1425, 1426, 1425, 1426,
|
|
840, 1412, 1415, 1427, 1415, 1427, 1428, 1429, 1428, 1429,
|
|
1415, 1430, 1431, 1430, 1431, 838, 836, 1415, 1423, 1432,
|
|
1423, 1432, 1433, 1434, 1433, 1434, 1435, 1436, 1435, 1436,
|
|
1437, 1423, 1437, 1438, 1439, 1438, 1439, 1440, 1441, 1440,
|
|
1441, 1442, 1443, 1442, 1443, 1444, 1445, 1444, 1445, 1446,
|
|
|
|
1447, 1446, 1447, 1448, 1449, 1448, 1449, 1450, 1451, 1450,
|
|
1451, 1452, 1453, 1452, 1453, 1454, 1455, 1454, 1455, 1456,
|
|
835, 1456, 1457, 1458, 1457, 1458, 1459, 1460, 1459, 1460,
|
|
1461, 1462, 1461, 1462, 1463, 1457, 1463, 1464, 1465, 1464,
|
|
1465, 1466, 1467, 1466, 1467, 1468, 1469, 1468, 1469, 1470,
|
|
1464, 1470, 1471, 1472, 1471, 1472, 1473, 834, 1473, 1474,
|
|
1475, 1474, 1475, 1476, 1477, 1476, 1477, 1478, 1479, 1478,
|
|
1479, 1480, 1474, 1480, 1481, 1482, 1481, 1482, 1483, 1484,
|
|
1483, 1484, 1485, 1486, 1485, 1486, 1487, 1488, 1487, 1488,
|
|
1489, 1490, 1489, 1490, 1491, 1492, 1491, 1492, 1493, 1494,
|
|
|
|
1493, 1494, 1495, 1496, 1495, 1496, 1497, 1498, 1497, 1498,
|
|
1500, 1501, 1500, 1501, 1502, 1503, 1502, 1503, 1497, 1499,
|
|
830, 1499, 824, 823, 821, 820, 814, 808, 806, 804,
|
|
803, 1499, 800, 799, 798, 797, 791, 790, 789, 787,
|
|
783, 781, 778, 774, 773, 772, 771, 770, 767, 765,
|
|
763, 759, 758, 757, 756, 755, 753, 752, 751, 750,
|
|
749, 748, 747, 744, 743, 742, 740, 732, 730, 726,
|
|
724, 723, 722, 720, 718, 717, 716, 714, 713, 712,
|
|
711, 708, 707, 705, 703, 700, 699, 697, 696, 695,
|
|
689, 688, 687, 686, 684, 683, 682, 681, 678, 674,
|
|
|
|
673, 672, 669, 667, 666, 665, 661, 660, 659, 658,
|
|
655, 654, 653, 650, 645, 644, 642, 641, 640, 639,
|
|
638, 637, 636, 635, 634, 633, 632, 631, 623, 620,
|
|
619, 618, 615, 614, 612, 610, 609, 608, 606, 605,
|
|
604, 602, 599, 598, 595, 593, 592, 591, 590, 588,
|
|
587, 586, 582, 580, 578, 574, 571, 570, 569, 567,
|
|
566, 565, 564, 563, 562, 561, 559, 558, 557, 555,
|
|
554, 551, 548, 545, 544, 543, 538, 537, 536, 535,
|
|
534, 533, 532, 531, 530, 529, 527, 522, 521, 520,
|
|
519, 517, 515, 513, 512, 511, 510, 509, 508, 503,
|
|
|
|
501, 499, 498, 496, 494, 493, 492, 491, 490, 488,
|
|
487, 486, 484, 483, 482, 481, 480, 479, 478, 477,
|
|
474, 473, 471, 468, 466, 465, 464, 463, 461, 460,
|
|
456, 455, 454, 452, 451, 448, 447, 446, 445, 443,
|
|
437, 436, 435, 434, 433, 432, 431, 427, 426, 425,
|
|
424, 422, 419, 416, 415, 414, 413, 412, 411, 410,
|
|
409, 408, 407, 406, 405, 404, 403, 401, 400, 396,
|
|
394, 391, 390, 389, 388, 386, 384, 383, 382, 379,
|
|
378, 375, 374, 373, 372, 371, 368, 367, 366, 365,
|
|
364, 362, 360, 359, 358, 357, 353, 352, 351, 350,
|
|
|
|
349, 348, 347, 346, 344, 343, 341, 340, 338, 337,
|
|
336, 335, 334, 332, 331, 330, 329, 328, 327, 326,
|
|
324, 322, 321, 320, 319, 318, 317, 315, 314, 313,
|
|
312, 309, 306, 304, 303, 302, 301, 300, 296, 295,
|
|
292, 291, 290, 288, 287, 286, 285, 284, 283, 281,
|
|
279, 278, 277, 276, 275, 274, 272, 271, 270, 267,
|
|
266, 265, 264, 263, 261, 259, 258, 257, 256, 255,
|
|
253, 252, 251, 250, 249, 248, 247, 246, 245, 244,
|
|
242, 241, 240, 239, 238, 237, 236, 235, 234, 233,
|
|
232, 231, 230, 229, 228, 226, 225, 224, 223, 222,
|
|
|
|
221, 219, 218, 216, 215, 214, 213, 212, 211, 210,
|
|
209, 208, 207, 206, 205, 204, 203, 202, 201, 198,
|
|
196, 195, 192, 191, 189, 188, 186, 185, 180, 174,
|
|
173, 172, 170, 163, 162, 161, 160, 159, 157, 156,
|
|
154, 148, 147, 144, 142, 141, 140, 136, 133, 129,
|
|
128, 127, 125, 124, 122, 121, 120, 118, 116, 115,
|
|
113, 111, 110, 109, 108, 107, 104, 103, 102, 94,
|
|
86, 85, 84, 83, 82, 81, 78, 77, 76, 73,
|
|
72, 69, 65, 63, 59, 55, 54, 53, 36, 12,
|
|
7, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309,
|
|
1309, 1309, 1309, 1309, 1309
|
|
} ;
|
|
|
|
static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;
|
|
static char *yy_full_match;
|
|
static int yy_lp;
|
|
static int yy_looking_for_trail_begin = 0;
|
|
static int yy_full_lp;
|
|
static int *yy_full_state;
|
|
#define YY_TRAILING_MASK 0x2000
|
|
#define YY_TRAILING_HEAD_MASK 0x4000
|
|
#define REJECT \
|
|
{ \
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
|
|
yy_cp = yy_full_match; /* restore poss. backed-over text */ \
|
|
yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \
|
|
yy_state_ptr = yy_full_state; /* restore orig. state */ \
|
|
yy_current_state = *yy_state_ptr; /* restore curr. state */ \
|
|
++yy_lp; \
|
|
goto find_rule; \
|
|
}
|
|
#define yymore() yymore_used_but_not_detected
|
|
#define YY_MORE_ADJ 0
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
char *yytext;
|
|
#line 1 "cockney.l"
|
|
#define INITIAL 0
|
|
/* GNU Talkfilters
|
|
Copyright (C) 1998-2003 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Talkfilters
|
|
|
|
GNU Talkfilters is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2, or (at
|
|
your option) any later version.
|
|
|
|
This software is distributed in the hope that it will be amusing, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this software; see the file COPYING. If not, write to the
|
|
Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
/*
|
|
* ken:
|
|
* will turn English into Cockney, featuring (dubious) rhyming slang for a lot
|
|
* of computer terminology.
|
|
*
|
|
* Written by Stephen K Mulrine <smulrine%cs.strath.ac.uk@nsfnet-relay.ac.uk>
|
|
* Make copies if you want etc.etc.
|
|
*
|
|
* Contacted author in June 2001, asked him to clarify the license, he replied
|
|
* with some improvements and placed the program in the public domain.
|
|
* -- Edward Betts <edward@debian.org> Mon, 11 Jun 2001 12:04:29 +0100
|
|
*
|
|
* ken is named after Ken the Chirpy Cockney Character from the Viz Comic (tm),
|
|
* who speaks somewhat like that.
|
|
*/
|
|
#line 51 "cockney.l"
|
|
|
|
#include "common.h"
|
|
#include "talkfilters.h"
|
|
|
|
#define YY_DECL int yylex(gtf_databuf_t *buf)
|
|
|
|
#define NIW 1
|
|
#define INW 2
|
|
|
|
#line 1382 "cockney.c"
|
|
|
|
/* 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 <stdlib.h>
|
|
#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 = NULL, *yy_bp = NULL;
|
|
register int yy_act;
|
|
|
|
#line 66 "cockney.l"
|
|
|
|
|
|
#line 1536 "cockney.c"
|
|
|
|
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_state_ptr = yy_state_buf;
|
|
*yy_state_ptr++ = yy_current_state;
|
|
yy_match:
|
|
do
|
|
{
|
|
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
{
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
|
if ( yy_current_state >= 1310 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
*yy_state_ptr++ = yy_current_state;
|
|
++yy_cp;
|
|
}
|
|
while ( yy_base[yy_current_state] != 1792 );
|
|
|
|
yy_find_action:
|
|
yy_current_state = *--yy_state_ptr;
|
|
yy_lp = yy_accept[yy_current_state];
|
|
find_rule: /* we branch to this label when backing up */
|
|
for ( ; ; ) /* until we find what rule we matched */
|
|
{
|
|
if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
|
|
{
|
|
yy_act = yy_acclist[yy_lp];
|
|
if ( yy_act & YY_TRAILING_HEAD_MASK ||
|
|
yy_looking_for_trail_begin )
|
|
{
|
|
if ( yy_act == yy_looking_for_trail_begin )
|
|
{
|
|
yy_looking_for_trail_begin = 0;
|
|
yy_act &= ~YY_TRAILING_HEAD_MASK;
|
|
break;
|
|
}
|
|
}
|
|
else if ( yy_act & YY_TRAILING_MASK )
|
|
{
|
|
yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK;
|
|
yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK;
|
|
}
|
|
else
|
|
{
|
|
yy_full_match = yy_cp;
|
|
yy_full_state = yy_state_ptr;
|
|
yy_full_lp = yy_lp;
|
|
break;
|
|
}
|
|
++yy_lp;
|
|
goto find_rule;
|
|
}
|
|
--yy_cp;
|
|
yy_current_state = *--yy_state_ptr;
|
|
yy_lp = yy_accept[yy_current_state];
|
|
}
|
|
|
|
YY_DO_BEFORE_ACTION;
|
|
|
|
|
|
do_action: /* This label is used only to access EOF actions. */
|
|
|
|
|
|
switch ( yy_act )
|
|
{ /* beginning of action switch */
|
|
|
|
case 1:
|
|
YY_RULE_SETUP
|
|
#line 70 "cockney.l"
|
|
gtf_echo(); // don't damage HTML tags
|
|
YY_BREAK
|
|
case 2:
|
|
*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 72 "cockney.l"
|
|
gtf_puts_case("go on");
|
|
YY_BREAK
|
|
case 3:
|
|
*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 73 "cockney.l"
|
|
gtf_puts_case("went on");
|
|
YY_BREAK
|
|
case 4:
|
|
*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 74 "cockney.l"
|
|
gtf_puts_case("goin' on");
|
|
YY_BREAK
|
|
case 5:
|
|
*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 75 "cockney.l"
|
|
gtf_puts_case("soon");
|
|
YY_BREAK
|
|
case 6:
|
|
*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 76 "cockney.l"
|
|
gtf_puts_case("gonna");
|
|
YY_BREAK
|
|
case 7:
|
|
*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 77 "cockney.l"
|
|
gtf_puts_case("a go");
|
|
YY_BREAK
|
|
case 8:
|
|
#line 79 "cockney.l"
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 79 "cockney.l"
|
|
gtf_puts_case("not so bad");
|
|
YY_BREAK
|
|
case 10:
|
|
*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 80 "cockney.l"
|
|
gtf_puts_case("'Ave");
|
|
YY_BREAK
|
|
case 11:
|
|
*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 81 "cockney.l"
|
|
gtf_puts_case("'ave");
|
|
YY_BREAK
|
|
case 12:
|
|
*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 */
|
|
#line 83 "cockney.l"
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 83 "cockney.l"
|
|
gtf_puts_case("'Ave a look");
|
|
YY_BREAK
|
|
case 14:
|
|
*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 */
|
|
#line 85 "cockney.l"
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 85 "cockney.l"
|
|
gtf_puts_case("'ave a look");
|
|
YY_BREAK
|
|
case 16:
|
|
*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 */
|
|
#line 87 "cockney.l"
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 87 "cockney.l"
|
|
gtf_puts_case("straight up");
|
|
YY_BREAK
|
|
case 18:
|
|
*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 88 "cockney.l"
|
|
gtf_puts_case("join");
|
|
YY_BREAK
|
|
case 19:
|
|
*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 89 "cockney.l"
|
|
{ if(gtf_random(3) == 0)
|
|
gtf_puts_case("right good");
|
|
else
|
|
gtf_echo();
|
|
}
|
|
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 94 "cockney.l"
|
|
gtf_puts_case("borrow us");
|
|
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 95 "cockney.l"
|
|
gtf_puts_case("borrow");
|
|
YY_BREAK
|
|
case 22:
|
|
*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 96 "cockney.l"
|
|
gtf_puts_case("give us");
|
|
YY_BREAK
|
|
case 23:
|
|
*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 97 "cockney.l"
|
|
gtf_puts_case("give over");
|
|
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 98 "cockney.l"
|
|
gtf_puts_case("stick it");
|
|
YY_BREAK
|
|
case 25:
|
|
*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 99 "cockney.l"
|
|
gtf_puts_case("stick those");
|
|
YY_BREAK
|
|
case 26:
|
|
*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 100 "cockney.l"
|
|
gtf_puts_case("stick 'em");
|
|
YY_BREAK
|
|
case 27:
|
|
YY_RULE_SETUP
|
|
#line 101 "cockney.l"
|
|
gtf_puts_case("chat"); BEGIN(INW);
|
|
YY_BREAK
|
|
case 28:
|
|
*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 102 "cockney.l"
|
|
gtf_puts_case("give it a go");
|
|
YY_BREAK
|
|
case 29:
|
|
*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 103 "cockney.l"
|
|
gtf_puts_case("us");
|
|
YY_BREAK
|
|
case 30:
|
|
*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 104 "cockney.l"
|
|
gtf_puts_case("seen");
|
|
YY_BREAK
|
|
case 31:
|
|
*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 105 "cockney.l"
|
|
gtf_puts_case("spot");
|
|
YY_BREAK
|
|
case 32:
|
|
*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 106 "cockney.l"
|
|
gtf_puts_case("spots");
|
|
YY_BREAK
|
|
case 33:
|
|
*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 107 "cockney.l"
|
|
gtf_puts_case("a bit");
|
|
YY_BREAK
|
|
case 34:
|
|
*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 108 "cockney.l"
|
|
gtf_puts_case("a bit a'");
|
|
YY_BREAK
|
|
case 35:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp = yy_bp + 6;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 109 "cockney.l"
|
|
gtf_puts_case("any road, so");
|
|
YY_BREAK
|
|
case 36:
|
|
*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 110 "cockney.l"
|
|
gtf_puts_case("any road");
|
|
YY_BREAK
|
|
case 37:
|
|
*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 111 "cockney.l"
|
|
gtf_puts_case("'Round");
|
|
YY_BREAK
|
|
case 38:
|
|
*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 112 "cockney.l"
|
|
gtf_puts_case("'round");
|
|
YY_BREAK
|
|
case 39:
|
|
*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 113 "cockney.l"
|
|
gtf_puts_case("kegs");
|
|
YY_BREAK
|
|
case 40:
|
|
*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 114 "cockney.l"
|
|
gtf_puts_case("kit");
|
|
YY_BREAK
|
|
case 41:
|
|
*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 */
|
|
#line 116 "cockney.l"
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 116 "cockney.l"
|
|
gtf_puts_case("footie");
|
|
YY_BREAK
|
|
case 43:
|
|
*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 117 "cockney.l"
|
|
gtf_puts_case("you lot");
|
|
YY_BREAK
|
|
case 44:
|
|
*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 118 "cockney.l"
|
|
gtf_puts_case("buff");
|
|
YY_BREAK
|
|
case 45:
|
|
*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 119 "cockney.l"
|
|
gtf_puts_case("stark bloody naked");
|
|
YY_BREAK
|
|
case 46:
|
|
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
#line 121 "cockney.l"
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 121 "cockney.l"
|
|
gtf_puts_case("messing");
|
|
YY_BREAK
|
|
case 48:
|
|
*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 122 "cockney.l"
|
|
gtf_puts_case("posh");
|
|
YY_BREAK
|
|
case 49:
|
|
*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 123 "cockney.l"
|
|
gtf_puts_case |