/* A lexical scanner generated by flex */

/* Scanner skeleton version:
 * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.89 96/05/25 21:02:21 vern Exp $
 */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5

#include <stdio.h>


/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif


#ifdef __cplusplus

#include <stdlib.h>
#include <unistd.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 *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)

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 65
#define YY_END_OF_BUFFER 66
static yyconst short int yy_accept[763] =
    {   0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,   66,   63,   31,   64,
       62,   63,   31,   63,   63,   63,   63,   63,   63,   63,
       63,   63,   63,   63,   63,    5,    3,    2,    6,    4,
        6,    3,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,    5,    5,    8,    8,    8,    7,    8,    8,
        8,    8,    7,    7,    7,    7,    7,    7,    7,    7,
        7,    7,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,   13,   11,   10,   14,

       12,   14,   11,   13,   13,   13,   13,   13,   13,   13,
       13,   13,   13,   13,   13,   16,   16,   16,   15,   16,
       16,   16,   16,   15,   15,   15,   15,   15,   15,   15,
       15,   15,   15,   63,   21,   19,   18,   22,   20,   22,
       19,   21,   21,   21,   21,   21,   21,   21,   21,   21,
       21,   21,   21,   24,   24,   24,   23,   24,   24,   24,
       24,   23,   23,   23,   23,   23,   23,   23,   23,   23,
       23,   26,   26,   26,   26,   26,   26,   26,   26,   26,
       26,   26,   26,   26,   26,   28,   28,   28,   28,   28,
       28,   28,   28,   28,   28,   28,   28,   28,   28,   28,

       25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
       25,   25,   25,   45,   63,   63,   63,   63,   63,   63,
       63,   63,   63,   63,   63,   63,   63,   63,   63,   63,
       63,   63,   63,   63,   31,   62,    1,   31,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,   61,    0,   60,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    3,    4,
        3,    7,    7,    7,    7,    7,    7,    7,    7,    7,
        7,    7,    7,    7,    7,    7,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,

        9,    9,    9,    9,    9,    9,   11,   12,   11,   15,
       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
       15,   15,   15,   15,   17,   19,   20,   19,   23,   23,
       23,   23,   23,   23,   23,   23,   23,   23,   23,   23,
       23,   23,   23,   26,   26,   26,   26,   26,   26,   26,
       26,   26,   26,   26,   26,   26,   26,   26,   26,   26,
       28,   28,   28,   28,   28,   28,   28,   28,   28,   28,
       28,   28,   28,   28,   28,   28,   28,   25,   25,   25,
       25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
       25,   25,   25,   25,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,   59,   56,    0,    0,    0,
        0,    0,    0,    0,    7,    7,    7,    7,    7,    7,
        7,    7,    7,    7,    7,    7,    7,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
       15,   15,   15,   23,   23,   23,   23,   23,   23,   23,
       23,   23,   23,   23,   23,   23,   26,   26,   26,   26,
       26,   26,   26,   26,   26,   26,   26,   26,   26,   28,

       28,   28,   28,   28,   28,   28,   28,   28,   28,   28,
       28,   28,   25,   25,   25,   25,   25,   25,   25,   25,
       25,   25,   25,   25,   25,    0,    0,    0,    0,    0,
       42,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,   42,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,   57,    0,    0,    0,   46,
       54,    0,    0,    7,    7,    7,    7,    7,    7,    7,
        7,    7,    7,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,   15,   15,   15,   15,   15,   15,   15,
       15,   15,   15,   23,   23,   23,   23,   23,   23,   23,

       23,   23,   23,   26,   26,   26,   26,   26,   26,   26,
       26,   26,   26,   28,   28,   28,   28,   28,   28,   28,
       28,   28,   28,   25,   25,   25,   25,   25,   25,   25,
       25,   25,   25,    0,    0,    0,    0,   43,    0,    0,
        0,   32,   40,    0,    0,    0,    0,    0,    0,   43,
        0,    0,    0,   32,   40,    0,    0,   58,    0,   47,
        0,    0,   49,    0,    0,   53,    7,    7,    7,    7,
        7,    7,    9,    9,    9,    9,    9,    9,   15,   15,
       15,   15,   15,   15,   23,   23,   23,   23,   23,   23,
       26,   26,   26,   26,   26,   26,   28,   28,   28,   28,

       28,   28,   25,   25,   25,   25,   25,   25,   44,    0,
       33,    0,    0,   35,    0,    0,   39,   44,    0,   33,
        0,    0,   35,    0,    0,   39,   52,    0,    0,   48,
       55,    7,    7,    9,    9,   15,   15,   23,   23,   26,
       26,   28,   28,   25,   25,   38,    0,    0,   34,   41,
       38,    0,    0,   34,   41,   50,   51,   36,   37,   36,
       37,    0
    } ;

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,    2,    1,    1,    1,    5,    6,    1,    1,    7,
        8,    1,    1,    1,    9,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,   10,   11,    1,
        1,    1,    1,    1,   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,
        1,   13,    1,    1,    1,    1,   14,   15,   16,   17,

       18,   19,   20,   21,   22,   12,   23,   24,   25,   26,
       27,   28,   12,   29,   30,   31,   32,   12,   33,   12,
       34,   12,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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[35] =
    {   0,
        1,    2,    3,    2,    1,    1,    1,    1,    1,    1,
        2,    4,    2,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4
    } ;

static yyconst short int yy_base[797] =
    {   0,
        0,   12,   36,   48,   81,   94,  127,  140,  173,  185,
      218,  231,   66, 1403,  264,  276,  309,  322,  355,  368,
      401,  414,  447,  459,  491,  522, 1411, 1413, 1408, 1413,
        0,    0,  554, 1406, 1405, 1389,    5, 1388,    7,    0,
       19, 1391, 1386, 1377, 1381, 1413, 1399, 1413, 1413,    0,
        0, 1398, 1396, 1395, 1379,   35, 1378,   31,    2,   21,
     1381, 1376, 1367, 1371, 1413, 1389,    0,    0,    0,    0,
     1387, 1386, 1370,  112, 1369,   34,  115,   49, 1372, 1367,
     1358, 1362,    0,    2,  586,  598,  175,  187,  194,  264,
      266,  463,  490,  449,  461,  173, 1413, 1380, 1413, 1413,

        0,    0, 1379, 1377, 1376, 1360,  184, 1359,  155,  253,
      275, 1362, 1357, 1348, 1352, 1413, 1370,    0,    0,    0,
        0, 1368, 1367, 1351,  278, 1350,  337,  264,  338, 1353,
     1348, 1339, 1343,    0, 1413, 1361, 1413, 1413,    0,    0,
     1360, 1358, 1357, 1341,  386, 1340,  429,  276,  384, 1343,
     1338, 1329, 1333, 1413, 1351,    0,    0,    0,    0, 1349,
     1348, 1332,  459, 1331,  475,  284,  430, 1334, 1329, 1320,
     1324,    0,    0,  515,  530, 1326,  461, 1325,  479,  459,
      500, 1328, 1323, 1314, 1318,    0,    0,    0,  562,  602,
     1320,  493, 1319,  486,  510,  509, 1322, 1317, 1308, 1312,

        0,  614,  617, 1314,  521, 1313,  525,  538,  523, 1316,
     1311, 1302, 1306, 1413, 1308,  540, 1307, 1300,  543,  555,
     1309, 1304, 1295, 1299, 1301,  547, 1300,  557,  573,  558,
     1303, 1298, 1289, 1293, 1311,    0, 1413,    0, 1309, 1308,
     1292,  602, 1291,  586,  575,  604, 1294, 1289, 1280, 1284,
     1301, 1413, 1300, 1413, 1282, 1287, 1272, 1275, 1268, 1280,
     1294, 1269, 1268, 1277, 1264, 1260, 1260, 1271, 1286,    0,
     1285,    0, 1266, 1271, 1256, 1259, 1252, 1264, 1278, 1253,
     1252, 1261, 1248, 1244, 1244, 1255,  627,  628,  637,    0,
      649,    0,  651,  653,  659,  660,  663,  669,  670,  671,

      672,  639,  673,  680,  684,  686, 1270,    0, 1269,    0,
     1250, 1255, 1240, 1243, 1236, 1248, 1262, 1237, 1236, 1245,
     1232, 1228, 1228, 1239, 1413, 1254,    0, 1253,    0, 1234,
     1239, 1224, 1227, 1220, 1232, 1246, 1221, 1220, 1229, 1216,
     1212, 1212, 1223,    0,  632,  704, 1220, 1225, 1210, 1213,
     1206, 1218, 1232, 1207, 1206, 1215, 1202, 1198, 1198, 1209,
        0,  716,  719, 1206, 1211, 1196, 1199, 1192, 1204, 1218,
     1193, 1192, 1201, 1188, 1184, 1184, 1195,    0,  722,  734,
     1192, 1197, 1182, 1185, 1178, 1190, 1204, 1179, 1178, 1187,
     1174, 1170, 1170, 1181, 1178, 1183, 1168, 1171, 1164, 1191,

     1166, 1165, 1174, 1161, 1157, 1157, 1168, 1165, 1170, 1155,
     1158, 1151, 1178, 1153, 1152, 1161, 1148, 1144, 1144, 1155,
     1150, 1141, 1136, 1151, 1150, 1413, 1165, 1139, 1142, 1150,
     1161, 1160, 1143, 1134, 1137, 1128, 1123, 1138, 1137,    0,
     1127, 1130, 1138, 1149, 1148, 1131, 1122,  690,  729,  736,
      738,  739,  700,  745,  748,  755,  771,  772,  757,  758,
     1125, 1116, 1111, 1126, 1125,    0, 1115, 1118, 1126, 1137,
     1136, 1119, 1110, 1113, 1104, 1099, 1114, 1113,    0, 1103,
     1106, 1114, 1125, 1124, 1107, 1098, 1101, 1092, 1087, 1102,
     1101,    0, 1091, 1094, 1102, 1113, 1112, 1095, 1086, 1089,

     1080, 1075, 1090, 1089,    0, 1079, 1082, 1090, 1101, 1100,
     1083, 1074, 1077, 1068, 1063, 1078, 1077,    0, 1067, 1070,
     1078, 1089, 1088, 1071, 1062, 1065, 1056, 1051, 1066, 1065,
     1080, 1054, 1057, 1065, 1076, 1075, 1058, 1049, 1052, 1043,
     1038, 1053, 1052, 1067, 1041, 1044, 1052, 1063, 1062, 1045,
     1036, 1035, 1042, 1057, 1027, 1413, 1028, 1054, 1031, 1052,
     1051, 1021, 1049, 1024, 1031, 1046, 1016,    0, 1017, 1043,
     1020, 1012, 1040,  773,  775,  784,  756,  785,  786,  795,
      793,  796,  802, 1015, 1022, 1037, 1007,    0, 1008, 1034,
     1011, 1003, 1031, 1006, 1013, 1028,  998,    0,  999, 1025,

     1002,  994, 1022,  997, 1004, 1019,  989,    0,  990, 1016,
      993,  985, 1013,  988,  995, 1010,  980,    0,  981, 1007,
      984,  976, 1004,  979,  986, 1001,  971,    0,  972,  998,
      975,  967,  995,  970,  977,  992,  962, 1413,  963,  989,
      966,  987,  986,  956,  984,  959,  966,  981,  951, 1413,
      952,  978,  955,  976,  975,  945,  973, 1413,  972,  971,
      954,  953,  968,  967,  966,  965,    0,  964,  947,  946,
      961,  951,  803,  809,  811,  813,  820,  830,    0,  950,
      923,  922,  927,  926,    0,  923,  903,  891,  906,  903,
        0,  891,  871,  821,  836,  826,    0,  824,  806,  802,

      808,  807,    0,  800,  774,  770,  777,  762, 1413,  752,
      750,  733,  724,  738,  729,  726,  714, 1413,  711,  707,
      685,  684,  697,  690,  686,  664,  655,  644,  622,  620,
      612,  605,  596,  831,  832,    2,    4,    6,    7,   14,
       22,   33,   65,   72,   91,  134,  180,  193,  204,  211,
      214,  228,  268,  305,  319,  362,  365,  408,  454,  467,
      496, 1413,  842,  846,  850,  854,  858,  862,  866,  870,
      874,  878,  882,  886,  890,  894,  898,  902,  498,  906,
      910,  914,  918,  507,  531,  922,  549,  926,  930,  934,
      938,  942,  946,  950,  954,  958

    } ;

static yyconst short int yy_def[797] =
    {   0,
      763,  763,  764,  764,  765,  762,  766,  762,  767,  767,
      768,  762,  763,    2,  769,  769,  770,  762,  771,  762,
      772,  762,  773,  773,    2,    2,  762,  762,  762,  762,
      774,  775,  762,  776,  777,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  778,
      775,   33,  776,  777,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  774,  779,  775,   33,
      776,  777,  779,  779,  779,  779,  779,  779,  779,  779,
      779,  779,  780,  780,  781,  782,  780,  780,  780,  780,
      780,  780,  780,  780,  780,  780,  762,  762,  762,  762,

      783,  775,   33,  776,  777,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  774,  784,  775,
       33,  776,  777,  784,  784,  784,  784,  784,  784,  784,
      784,  784,  784,  785,  762,  762,  762,  762,  786,  775,
       33,  776,  777,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  774,  787,  775,   33,  776,
      777,  787,  787,  787,  787,  787,  787,  787,  787,  787,
      787,  788,  788,  789,  790,  788,  788,  788,  788,  788,
      788,  788,  788,  788,  788,  791,  791,  791,  792,  793,
      791,  791,  791,  791,  791,  791,  791,  791,  791,  791,

      794,  795,  796,  794,  794,  794,  794,  794,  794,  794,
      794,  794,  794,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  774,  762,   33,  776,  777,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      776,  762,  777,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  778,
       33,  779,  779,  779,  779,  779,  779,  779,  779,  779,
      779,  779,  779,  779,  779,  779,  780,  780,  781,  289,
      782,  291,  780,  780,  780,  780,  780,  780,  780,  780,

      780,  780,  780,  780,  780,  780,  762,  783,   33,  784,
      784,  784,  784,  784,  784,  784,  784,  784,  784,  784,
      784,  784,  784,  784,  762,  762,  786,   33,  787,  787,
      787,  787,  787,  787,  787,  787,  787,  787,  787,  787,
      787,  787,  787,  788,  789,  790,  788,  788,  788,  788,
      788,  788,  788,  788,  788,  788,  788,  788,  788,  788,
      791,  792,  793,  791,  791,  791,  791,  791,  791,  791,
      791,  791,  791,  791,  791,  791,  791,  794,  795,  796,
      794,  794,  794,  794,  794,  794,  794,  794,  794,  794,
      794,  794,  794,  794,  762,  762,  762,  762,  762,  762,

      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  779,  779,  779,  779,  779,  779,
      779,  779,  779,  779,  779,  779,  779,  780,  780,  780,
      780,  780,  780,  780,  780,  780,  780,  780,  780,  780,
      784,  784,  784,  784,  784,  784,  784,  784,  784,  784,
      784,  784,  784,  787,  787,  787,  787,  787,  787,  787,
      787,  787,  787,  787,  787,  787,  788,  788,  788,  788,
      788,  788,  788,  788,  788,  788,  788,  788,  788,  791,

      791,  791,  791,  791,  791,  791,  791,  791,  791,  791,
      791,  791,  794,  794,  794,  794,  794,  794,  794,  794,
      794,  794,  794,  794,  794,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  779,  779,  779,  779,  779,  779,  779,
      779,  779,  779,  780,  780,  780,  780,  780,  780,  780,
      780,  780,  780,  784,  784,  784,  784,  784,  784,  784,
      784,  784,  784,  787,  787,  787,  787,  787,  787,  787,

      787,  787,  787,  788,  788,  788,  788,  788,  788,  788,
      788,  788,  788,  791,  791,  791,  791,  791,  791,  791,
      791,  791,  791,  794,  794,  794,  794,  794,  794,  794,
      794,  794,  794,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  779,  779,  779,  779,
      779,  779,  780,  780,  780,  780,  780,  780,  784,  784,
      784,  784,  784,  784,  787,  787,  787,  787,  787,  787,
      788,  788,  788,  788,  788,  788,  791,  791,  791,  791,

      791,  791,  794,  794,  794,  794,  794,  794,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  779,  779,  780,  780,  784,  784,  787,  787,  788,
      788,  791,  791,  794,  794,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,    0,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762

    } ;

static yyconst short int yy_nxt[1448] =
    {   0,
      762,   29,   30,  756,  288,  757,  288,  756,  757,  288,
       31,  288,   32,   33,   30,  756,   34,   35,  261,  262,
      261,  262,   31,  757,   32,  256,   36,   37,   38,   39,
      259,  257,  260,   40,  756,   41,   42,   47,   48,   49,
      263,   43,  263,   44,   45,  264,   50,  264,   51,   52,
       48,   49,   53,   54,  259,  256,  260,  277,   50,  278,
       51,  257,   55,   56,   57,   58,  757,   29,   30,   59,
      281,   60,   61,  756,  134,  282,   31,   62,   32,   63,
       64,   65,   66,   30,   65,   65,   65,   65,   65,   65,
       65,   67,  757,   69,   65,   70,   30,   65,   71,   72,

       65,   65,   65,   65,   67,   68,   69,   68,   73,   74,
       75,   76,   68,   68,   68,   77,   68,   78,   79,   68,
       68,   68,   68,   80,   68,   81,   82,   68,   29,   30,
       28,   84,  274,  279,  280,  746,   84,   31,  275,   32,
       83,   33,   30,   28,   85,   86,   83,   83,   83,   84,
       31,   83,   32,   83,   87,   88,   89,   90,   83,   83,
       83,   91,   83,   92,   93,   83,   83,   83,   83,   94,
       83,   95,   96,   83,   98,   99,  100,  288,  259,  288,
      260,  758,  288,  101,  288,  102,  103,   99,  100,  104,
      105,  288,  293,  306,  759,  101,  288,  102,  288,  106,

      107,  108,  109,  288,  256,  749,  110,  294,  111,  112,
      257,  296,  750,  295,  113,  751,  114,  115,  116,  117,
       30,  116,  116,  116,  116,  116,  116,  116,  118,  760,
      120,  116,  121,   30,  116,  122,  123,  116,  116,  116,
      116,  118,  119,  120,  119,  124,  125,  126,  127,  119,
      119,  119,  128,  119,  129,  130,  119,  119,  119,  119,
      131,  119,  132,  133,  119,  136,  137,  138,  288,  761,
      288,  261,  262,  288,  139,  288,  140,  141,  137,  138,
      142,  143,  317,  318,  299,  300,  139,  297,  140,  298,
      144,  145,  146,  147,  261,  262,  263,  148,  312,  149,

      150,  264,  336,  337,  313,  151,  754,  152,  153,  154,
      155,   30,  154,  154,  154,  154,  154,  154,  154,  156,
      755,  158,  154,  159,   30,  154,  160,  161,  154,  154,
      154,  154,  156,  157,  158,  157,  162,  163,  164,  165,
      157,  157,  157,  166,  157,  167,  168,  157,  157,  157,
      157,  169,  157,  170,  171,  157,   29,   30,   28,  319,
      315,  173,  316,  756,  320,   31,  757,   32,  172,   33,
       30,   28,  174,  175,  173,  172,  172,  172,   31,  172,
       32,  172,  176,  177,  178,  179,  172,  172,  172,  180,
      172,  181,  182,  172,  172,  172,  172,  183,  172,  184,

      185,  172,   29,   30,   28,  263,  256,  187,  188,  758,
      264,   31,  257,   32,  186,   33,   30,   28,  189,  190,
      187,  188,  186,  186,   31,  186,   32,  186,  191,  192,
      193,  194,  186,  186,  186,  195,  186,  196,  197,  186,
      186,  186,  186,  198,  186,  199,  200,  186,   29,   30,
       28,  338,  259,  288,  260,  759,  339,   31,  288,   32,
       33,   30,   28,  202,  203,  288,  304,  288,  760,   31,
      288,   32,  288,  204,  205,  206,  207,  353,  354,  331,
      208,  348,  209,  210,  301,  332,  305,  349,  211,  302,
      212,  213,   29,  214,  288,   28,   28,  761,  334,  288,

      335,  272,  351,  303,  352,  215,  216,  217,  218,  368,
      310,  369,  219,  365,  220,  221,  251,  252,  251,  366,
      222,  355,  223,  224,  214,  251,  356,  251,  370,  371,
      372,  253,  254,  253,  325,  373,  225,  226,  227,  228,
      253,  382,  253,  229,  389,  230,  231,  383,  385,  390,
      386,  232,  329,  233,  234,  238,  387,  388,  239,  240,
      396,  400,  401,  251,  252,  251,  397,  409,  241,  242,
      243,  244,  251,  410,  251,  245,  402,  246,  247,  415,
      412,  403,  260,  248,  416,  249,  250,  251,  252,  251,
      290,  413,  414,  261,  262,  290,  251,  757,  251,  253,

      254,  253,  292,  253,  254,  253,  756,  292,  253,  259,
      253,  260,  253,  731,  253,  251,  252,  251,  253,  254,
      253,  730,  256,  757,  251,  263,  251,  253,  257,  253,
      264,  288,  288,  251,  252,  251,  288,  288,  251,  252,
      251,  290,  251,  288,  251,  756,  290,  251,  288,  251,
      253,  254,  253,  292,  456,  288,  727,  288,  292,  253,
      288,  253,  288,  288,  288,  726,  449,  288,  288,  288,
      448,  427,  288,  288,  288,  288,  288,  288,  288,  288,
      288,  288,  288,  451,  288,  453,  450,  755,  288,  288,
      288,  754,  452,  288,  288,  288,  454,  455,  723,  288,

      457,  753,  752,  460,  288,  253,  254,  253,  720,  288,
      458,  574,  751,  459,  253,  717,  253,  251,  252,  251,
      253,  254,  253,  251,  252,  251,  251,  750,  251,  253,
      749,  253,  251,  288,  251,  253,  254,  253,  288,  714,
      288,  748,  288,  288,  253,  288,  253,  288,  288,  288,
      747,  711,  288,  746,  288,  577,  578,  288,  575,  288,
      288,  288,  288,  731,  288,  288,  288,  288,  581,  576,
      580,  579,  560,  561,  582,  288,  288,  288,  730,  288,
      288,  288,  288,  583,  288,  660,  675,  745,  288,  288,
      288,  744,  674,  288,  288,  288,  663,  288,  673,  288,

      288,  727,  288,  666,  288,  288,  288,  288,  731,  730,
      727,  288,  288,  288,  676,  288,  677,  288,  288,  743,
      288,  730,  288,  742,  288,  727,  678,  731,  734,  288,
      735,  731,  756,  757,  288,  288,  288,  730,  741,  288,
      288,  288,   28,   28,   28,   28,   46,   46,   46,   46,
       68,   68,   68,   68,   83,   83,   83,   83,   97,   97,
       97,   97,  119,  119,  119,  119,  135,  135,  135,  135,
      157,  157,  157,  157,  172,  172,  172,  172,  186,  186,
      186,  186,  201,  201,  201,  201,  236,  236,  740,  236,
      237,  237,  727,  237,  251,  251,  251,  251,  253,  253,

      253,  253,  270,  270,  731,  270,  287,  730,  739,  287,
      289,  289,  289,  289,  291,  291,  291,  291,  308,  308,
      738,  308,  327,  327,  727,  327,  344,  731,  730,  344,
      345,  345,  345,  345,  346,  346,  346,  346,  361,  737,
      736,  361,  362,  362,  362,  362,  363,  363,  363,  363,
      378,  727,  731,  378,  379,  379,  379,  379,  380,  380,
      380,  380,  730,  733,  732,  727,  666,  731,  730,  663,
      729,  728,  660,  727,  726,  725,  655,  654,  724,  723,
      722,  721,  720,  719,  718,  717,  716,  643,  642,  715,
      714,  713,  712,  711,  710,  709,  666,  708,  707,  663,

      706,  705,  660,  704,  703,  666,  702,  701,  663,  700,
      699,  660,  698,  697,  666,  696,  695,  663,  694,  693,
      660,  692,  691,  666,  690,  689,  663,  688,  687,  660,
      686,  685,  666,  684,  683,  663,  682,  681,  660,  680,
      679,  666,  672,  671,  663,  670,  669,  660,  668,  667,
      666,  665,  561,  560,  664,  663,  662,  661,  660,  659,
      658,  657,  656,  655,  654,  653,  652,  651,  544,  650,
      649,  648,  647,  646,  645,  644,  643,  642,  641,  640,
      639,  531,  638,  637,  636,  635,  634,  633,  632,  561,
      560,  631,  630,  629,  628,  627,  626,  625,  624,  623,

      622,  561,  560,  621,  620,  619,  618,  617,  616,  615,
      614,  613,  612,  561,  560,  611,  610,  609,  608,  607,
      606,  605,  604,  603,  602,  561,  560,  601,  600,  599,
      598,  597,  596,  595,  594,  593,  592,  561,  560,  591,
      590,  589,  588,  587,  586,  585,  584,  573,  572,  561,
      560,  571,  570,  569,  568,  567,  566,  565,  564,  563,
      562,  561,  560,  559,  558,  557,  427,  556,  555,  554,
      553,  552,  551,  550,  549,  548,  547,  546,  545,  544,
      543,  542,  541,  540,  539,  538,  537,  536,  535,  534,
      533,  532,  531,  530,  529,  528,  527,  526,  525,  524,

      523,  522,  521,  520,  519,  427,  518,  517,  516,  515,
      514,  513,  512,  511,  510,  509,  508,  507,  506,  427,
      505,  504,  503,  502,  501,  500,  499,  498,  497,  496,
      495,  494,  493,  427,  492,  491,  490,  489,  488,  487,
      486,  485,  484,  483,  482,  481,  480,  427,  479,  478,
      477,  476,  475,  474,  328,  326,  473,  472,  471,  470,
      469,  468,  467,  427,  466,  465,  464,  463,  462,  461,
      309,  307,  447,  446,  445,  444,  443,  442,  441,  427,
      440,  439,  438,  437,  436,  435,  271,  269,  434,  433,
      432,  431,  430,  429,  428,  427,  426,  425,  424,  423,

      422,  421,  254,  252,  268,  267,  266,  265,  258,  255,
      254,  252,  235,  420,  419,  418,  417,  411,  408,  407,
      406,  405,  404,  399,  398,  395,  394,  393,  392,  391,
      384,  381,  377,  376,  375,  374,  367,  364,  360,  359,
      358,  357,  350,  347,  343,  342,  341,  340,  333,  330,
      254,  252,  235,  268,  267,  266,  265,  258,  255,  254,
      252,  328,  326,  324,  323,  322,  321,  314,  311,  254,
      252,  235,  268,  267,  266,  265,  258,  255,  254,  252,
      309,  307,  286,  285,  284,  283,  276,  273,  254,  252,
      235,  268,  267,  266,  265,  258,  255,  254,  252,  271,

      269,  268,  267,  266,  265,  258,  255,  254,  252,  235,
      762,  134,   27,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762
    } ;

static yyconst short int yy_chk[1448] =
    {   0,
        0,    1,    1,  736,   83,  737,   84,  738,  739,   83,
        1,   84,    1,    2,    2,  740,    2,    2,   40,   40,
       59,   59,    2,  741,    2,   37,    2,    2,    2,    2,
       39,   37,   39,    2,  742,    2,    2,    3,    3,    3,
       41,    2,   60,    2,    2,   41,    3,   60,    3,    4,
        4,    4,    4,    4,   58,   56,   58,   76,    4,   76,
        4,   56,    4,    4,    4,    4,  743,   13,   13,    4,
       78,    4,    4,  744,   13,   78,   13,    4,   13,    4,
        4,    5,    5,    5,    5,    5,    5,    5,    5,    5,
        5,    5,  745,    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,    7,    7,
        7,    7,   74,   77,   77,  746,    7,    7,   74,    7,
        8,    8,    8,    8,    8,    8,    8,    8,    8,    8,
        8,    8,    8,    8,    8,    8,    8,    8,    8,    8,
        8,    8,    8,    8,    8,    8,    8,    8,    8,    8,
        8,    8,    8,    8,    9,    9,    9,   96,  109,   87,
      109,  747,   96,    9,   87,    9,   10,   10,   10,   10,
       10,   88,   87,   96,  748,   10,   88,   10,   89,   10,

       10,   10,   10,   89,  107,  749,   10,   88,   10,   10,
      107,   89,  750,   88,   10,  751,   10,   10,   11,   11,
       11,   11,   11,   11,   11,   11,   11,   11,   11,  752,
       11,   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,   15,   15,   15,   90,  753,
       91,  110,  110,   90,   15,   91,   15,   16,   16,   16,
       16,   16,  128,  128,   91,   91,   16,   90,   16,   90,
       16,   16,   16,   16,  148,  148,  111,   16,  125,   16,

       16,  111,  166,  166,  125,   16,  754,   16,   16,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
      755,   17,   18,   18,   18,   18,   18,   18,   18,   18,
       18,   18,   18,   18,   18,   18,   18,   18,   18,   18,
       18,   18,   18,   18,   18,   18,   18,   18,   18,   18,
       18,   18,   18,   18,   18,   18,   19,   19,   19,  129,
      127,   19,  127,  756,  129,   19,  757,   19,   20,   20,
       20,   20,   20,   20,   20,   20,   20,   20,   20,   20,
       20,   20,   20,   20,   20,   20,   20,   20,   20,   20,
       20,   20,   20,   20,   20,   20,   20,   20,   20,   20,

       20,   20,   21,   21,   21,  149,  145,   21,   21,  758,
      149,   21,  145,   21,   22,   22,   22,   22,   22,   22,
       22,   22,   22,   22,   22,   22,   22,   22,   22,   22,
       22,   22,   22,   22,   22,   22,   22,   22,   22,   22,
       22,   22,   22,   22,   22,   22,   22,   22,   23,   23,
       23,  167,  147,   94,  147,  759,  167,   23,   94,   23,
       24,   24,   24,   24,   24,   95,   94,   92,  760,   24,
       95,   24,   92,   24,   24,   24,   24,  180,  180,  163,
       24,  177,   24,   24,   92,  163,   95,  177,   24,   92,
       24,   24,   25,   25,   93,   25,   25,  761,  165,   93,

      165,  779,  179,   93,  179,   25,   25,   25,   25,  194,
      784,  194,   25,  192,   25,   25,  174,  174,  174,  192,
       25,  181,   25,   25,   26,  174,  181,  174,  195,  195,
      196,  175,  175,  175,  785,  196,   26,   26,   26,   26,
      175,  205,  175,   26,  209,   26,   26,  205,  207,  209,
      207,   26,  787,   26,   26,   33,  208,  208,   33,   33,
      216,  219,  219,  189,  189,  189,  216,  226,   33,   33,
       33,   33,  189,  226,  189,   33,  220,   33,   33,  230,
      228,  220,  228,   33,  230,   33,   33,   85,   85,   85,
       85,  229,  229,  245,  245,   85,   85,  733,   85,   86,

       86,   86,   86,  190,  190,  190,  732,   86,   86,  244,
       86,  244,  190,  731,  190,  202,  202,  202,  203,  203,
      203,  730,  242,  729,  202,  246,  202,  203,  242,  203,
      246,  287,  288,  345,  345,  345,  287,  288,  289,  289,
      289,  289,  345,  302,  345,  728,  289,  289,  302,  289,
      291,  291,  291,  291,  302,  293,  727,  294,  291,  291,
      293,  291,  294,  295,  296,  726,  294,  297,  295,  296,
      293,  299,  297,  298,  299,  300,  301,  303,  298,  299,
      300,  301,  303,  296,  304,  298,  295,  725,  305,  304,
      306,  724,  297,  305,  448,  306,  300,  301,  723,  448,

      303,  722,  721,  306,  453,  346,  346,  346,  720,  453,
      304,  448,  719,  305,  346,  717,  346,  362,  362,  362,
      363,  363,  363,  379,  379,  379,  362,  716,  362,  363,
      715,  363,  379,  449,  379,  380,  380,  380,  449,  714,
      450,  713,  451,  452,  380,  450,  380,  451,  452,  454,
      712,  711,  455,  710,  454,  451,  452,  455,  449,  456,
      577,  459,  460,  708,  456,  577,  459,  460,  456,  450,
      455,  454,  457,  458,  459,  457,  458,  574,  707,  575,
      457,  458,  574,  460,  575,  576,  577,  706,  576,  578,
      579,  705,  575,  576,  578,  579,  580,  581,  574,  580,

      582,  704,  581,  583,  580,  582,  583,  673,  702,  701,
      674,  583,  673,  674,  579,  675,  581,  676,  674,  700,
      675,  677,  676,  699,  677,  698,  582,  696,  675,  677,
      676,  678,  734,  735,  678,  734,  735,  695,  694,  678,
      734,  735,  763,  763,  763,  763,  764,  764,  764,  764,
      765,  765,  765,  765,  766,  766,  766,  766,  767,  767,
      767,  767,  768,  768,  768,  768,  769,  769,  769,  769,
      770,  770,  770,  770,  771,  771,  771,  771,  772,  772,
      772,  772,  773,  773,  773,  773,  774,  774,  693,  774,
      775,  775,  692,  775,  776,  776,  776,  776,  777,  777,

      777,  777,  778,  778,  690,  778,  780,  689,  688,  780,
      781,  781,  781,  781,  782,  782,  782,  782,  783,  783,
      687,  783,  786,  786,  686,  786,  788,  684,  683,  788,
      789,  789,  789,  789,  790,  790,  790,  790,  791,  682,
      681,  791,  792,  792,  792,  792,  793,  793,  793,  793,
      794,  680,  672,  794,  795,  795,  795,  795,  796,  796,
      796,  796,  671,  670,  669,  668,  666,  665,  664,  663,
      662,  661,  660,  659,  657,  656,  655,  654,  653,  652,
      651,  649,  648,  647,  646,  645,  644,  643,  642,  641,
      640,  639,  637,  636,  635,  634,  633,  632,  631,  630,

      629,  627,  626,  625,  624,  623,  622,  621,  620,  619,
      617,  616,  615,  614,  613,  612,  611,  610,  609,  607,
      606,  605,  604,  603,  602,  601,  600,  599,  597,  596,
      595,  594,  593,  592,  591,  590,  589,  587,  586,  585,
      584,  573,  572,  571,  570,  569,  567,  566,  565,  564,
      563,  562,  561,  560,  559,  558,  557,  555,  554,  553,
      552,  551,  550,  549,  548,  547,  546,  545,  544,  543,
      542,  541,  540,  539,  538,  537,  536,  535,  534,  533,
      532,  531,  530,  529,  528,  527,  526,  525,  524,  523,
      522,  521,  520,  519,  517,  516,  515,  514,  513,  512,

      511,  510,  509,  508,  507,  506,  504,  503,  502,  501,
      500,  499,  498,  497,  496,  495,  494,  493,  491,  490,
      489,  488,  487,  486,  485,  484,  483,  482,  481,  480,
      478,  477,  476,  475,  474,  473,  472,  471,  470,  469,
      468,  467,  465,  464,  463,  462,  461,  447,  446,  445,
      444,  443,  442,  441,  439,  438,  437,  436,  435,  434,
      433,  432,  431,  430,  429,  428,  427,  425,  424,  423,
      422,  421,  420,  419,  418,  417,  416,  415,  414,  413,
      412,  411,  410,  409,  408,  407,  406,  405,  404,  403,
      402,  401,  400,  399,  398,  397,  396,  395,  394,  393,

      392,  391,  390,  389,  388,  387,  386,  385,  384,  383,
      382,  381,  377,  376,  375,  374,  373,  372,  371,  370,
      369,  368,  367,  366,  365,  364,  360,  359,  358,  357,
      356,  355,  354,  353,  352,  351,  350,  349,  348,  347,
      343,  342,  341,  340,  339,  338,  337,  336,  335,  334,
      333,  332,  331,  330,  328,  326,  324,  323,  322,  321,
      320,  319,  318,  317,  316,  315,  314,  313,  312,  311,
      309,  307,  286,  285,  284,  283,  282,  281,  280,  279,
      278,  277,  276,  275,  274,  273,  271,  269,  268,  267,
      266,  265,  264,  263,  262,  261,  260,  259,  258,  257,

      256,  255,  253,  251,  250,  249,  248,  247,  243,  241,
      240,  239,  235,  234,  233,  232,  231,  227,  225,  224,
      223,  222,  221,  218,  217,  215,  213,  212,  211,  210,
      206,  204,  200,  199,  198,  197,  193,  191,  185,  184,
      183,  182,  178,  176,  171,  170,  169,  168,  164,  162,
      161,  160,  155,  153,  152,  151,  150,  146,  144,  143,
      142,  141,  136,  133,  132,  131,  130,  126,  124,  123,
      122,  117,  115,  114,  113,  112,  108,  106,  105,  104,
      103,   98,   82,   81,   80,   79,   75,   73,   72,   71,
       66,   64,   63,   62,   61,   57,   55,   54,   53,   52,

       47,   45,   44,   43,   42,   38,   36,   35,   34,   29,
       27,   14,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  762,  762,  762
    } ;

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 "readrules.l"
#define INITIAL 0
#line 6 "readrules.l"
#define countlines() {char *s=yytext;while(*s!='\0')if(*(s++)=='\n')lineno++;}
#define getstring() yylval.s=(char *)malloc(yyleng+1);strcpy(yylval.s,yytext)
#define getshcmd() { int i=0; \
		     while ( yytext[i] == ' ' || yytext[i] == '\t') i++; \
		     i++; /* over the % or $ */ \
		     if (yytext[i] == ' ') i++; \
		     yylval.s=(char *)malloc(yyleng+1-i); \
		     strcpy(yylval.s,&yytext[i]); \
		   }
#define rtn(st) { extern int verbosef; if (verbosef>3) printf("LEX returning st\n") ; return st; }

#define useonly(nn) { int i; for(i=yyleng-1;i>=(nn);i--) unput(yytext[i]); }

static int parenlevel;
#define MapGE 1
#define MapTypes 2
#define MapDests 3
#define ActGE 4
#define ActTypes 5
#define ActOpts 6
#define WhenGE 7
#define WhenTypes 8
#define IfExp 9
#define IfPExp 10
#define SetVar 11
#define Rule 12

#line 967 "lex.yy.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 \
	if ( yyleng > 0 ) \
		yy_current_buffer->yy_at_bol = \
				(yytext[yyleng - 1] == '\n'); \
	YY_USER_ACTION

YY_DECL
	{
	register yy_state_type yy_current_state;
	register char *yy_cp, *yy_bp;
	register int yy_act;

#line 28 "readrules.l"

#line 1123 "lex.yy.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_current_state += YY_AT_BOL();
yy_match:
		do
			{
			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
			if ( yy_accept[yy_current_state] )
				{
				yy_last_accepting_state = yy_current_state;
				yy_last_accepting_cpos = 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 >= 763 )
					yy_c = yy_meta[(unsigned int) yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
			++yy_cp;
			}
		while ( yy_base[yy_current_state] != 1413 );

yy_find_action:
		yy_act = yy_accept[yy_current_state];
		if ( yy_act == 0 )
			{ /* have to back up */
			yy_cp = yy_last_accepting_cpos;
			yy_current_state = yy_last_accepting_state;
			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;
			yy_current_state = yy_last_accepting_state;
			goto yy_find_action;

case 1:
YY_RULE_SETUP
#line 29 "readrules.l"
{ yylval.c = yytext[1]; rtn(ALPHANUM); }
	YY_BREAK
case 2:
YY_RULE_SETUP
#line 30 "readrules.l"
{ BEGIN 0; countlines(); rtn(GE_END); }
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 31 "readrules.l"
{ BEGIN MapDests; rtn(GE_END); }
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 32 "readrules.l"
{ useonly(1); BEGIN MapTypes; rtn(GE_END); }
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 33 "readrules.l"
{ yylval.c = yytext[0]; rtn(ALPHANUM); }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 34 "readrules.l"
{ yylval.c = yytext[0]; rtn(yytext[0]); }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 35 "readrules.l"
{ getstring(); BEGIN MapDests; rtn(FILETYPES); }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 36 "readrules.l"
{ rtn(yytext[0]); /* parser error */ }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 37 "readrules.l"
{ getstring(); rtn(MAPDEST); }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 38 "readrules.l"
{ BEGIN 0; countlines(); rtn(GE_END); }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 39 "readrules.l"
{ BEGIN ActOpts; rtn(GE_END); }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 40 "readrules.l"
{ useonly(1); BEGIN ActTypes; rtn(GE_END); }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 41 "readrules.l"
{ yylval.c=yytext[0]; rtn(ALPHANUM); }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 42 "readrules.l"
{ yylval.c=yytext[0]; rtn(yytext[0]);}
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 43 "readrules.l"
{ getstring(); BEGIN ActOpts; rtn(FILETYPES);}
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 44 "readrules.l"
{ rtn(yytext[0]); /* error */ }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 45 "readrules.l"
{ yylval.c = yytext[1];  rtn(ACTIONOPT); }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 46 "readrules.l"
{ BEGIN 0; countlines(); rtn(GE_END); }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 47 "readrules.l"
{ BEGIN 0; rtn(GE_END); }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 48 "readrules.l"
{ useonly(1); BEGIN WhenTypes; rtn(GE_END); }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 49 "readrules.l"
{ yylval.c=yytext[0]; rtn(ALPHANUM); }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 50 "readrules.l"
{ yylval.c=yytext[0]; rtn(yytext[0]); }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 51 "readrules.l"
{ getstring(); BEGIN 0; rtn(FILETYPES); }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 52 "readrules.l"
{ rtn(yytext[0]); /* error */ }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 53 "readrules.l"
{ getstring(); BEGIN Rule; rtn(BOOLVAR); }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 54 "readrules.l"
{ getstring(); BEGIN Rule; rtn(BOOLVAR); }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 55 "readrules.l"
{ BEGIN IfPExp; parenlevel = 1; rtn('('); /*)*/ }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 56 "readrules.l"
{ getstring(); rtn(BOOLVAR); }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 57 "readrules.l"
{ parenlevel++; rtn('('); /*)*/ }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 58 "readrules.l"
{ if(--parenlevel==0) BEGIN Rule; /*(*/ rtn(')'); }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 59 "readrules.l"
;
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 60 "readrules.l"
{ BEGIN MapGE;    rtn(MAP);	   }
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 61 "readrules.l"
{ BEGIN ActGE;    rtn(COPY);   }
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 62 "readrules.l"
{ BEGIN ActGE;    rtn(LOCAL);  }
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 63 "readrules.l"
{ BEGIN ActGE;    rtn(LINK);   }
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 64 "readrules.l"
{ BEGIN ActGE;    rtn(DELETE);   }
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 65 "readrules.l"
{ BEGIN ActGE;    rtn(IGNORE); }
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 66 "readrules.l"
{ BEGIN ActGE;    rtn(CHASE);  }
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 67 "readrules.l"
{ BEGIN WhenGE;   rtn(WHEN);   }
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 68 "readrules.l"
{ BEGIN SetVar;   rtn(SET);	   }
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 69 "readrules.l"
{ BEGIN SetVar;   rtn(UNSET);  }
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 70 "readrules.l"
{ BEGIN IfExp;    rtn(IF);	   }
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 71 "readrules.l"
{ BEGIN 0;        rtn(ELSE);   }
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 72 "readrules.l"
{ BEGIN 0;        rtn(BEGIN_); }
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 73 "readrules.l"
{ BEGIN 0; countlines();	   }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 74 "readrules.l"
{ BEGIN MapGE;    rtn(MAP);	   }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 75 "readrules.l"
{ BEGIN ActGE;    rtn(COPY);   }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 76 "readrules.l"
{ BEGIN ActGE;    rtn(LOCAL);  }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 77 "readrules.l"
{ BEGIN ActGE;    rtn(LINK);   }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 78 "readrules.l"
{ BEGIN ActGE;    rtn(DELETE);   }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 79 "readrules.l"
{ BEGIN ActGE;    rtn(IGNORE); }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 80 "readrules.l"
{ BEGIN ActGE;    rtn(CHASE);  }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 81 "readrules.l"
{ BEGIN WhenGE;   rtn(WHEN);   }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 82 "readrules.l"
{ BEGIN SetVar;   rtn(SET);	   }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 83 "readrules.l"
{ BEGIN SetVar;   rtn(UNSET);  }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 84 "readrules.l"
{ BEGIN IfExp;    rtn(IF);	   }
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 85 "readrules.l"
{ BEGIN 0;        rtn(ELSE);   }
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 86 "readrules.l"
{ rtn(BEGIN_);                 }
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 87 "readrules.l"
{ rtn(END);                    }
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 88 "readrules.l"
{ getshcmd(); countlines(); rtn(CSH_CMD);}
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 89 "readrules.l"
{ getshcmd(); countlines(); rtn(SH_CMD);}
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 90 "readrules.l"
;
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 91 "readrules.l"
{ yylval.c = yytext[0]; return yytext[0]; }
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 92 "readrules.l"
{ countlines(); BEGIN 0; }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 93 "readrules.l"
ECHO;
	YY_BREAK
#line 1532 "lex.yy.c"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(MapGE):
case YY_STATE_EOF(MapTypes):
case YY_STATE_EOF(MapDests):
case YY_STATE_EOF(ActGE):
case YY_STATE_EOF(ActTypes):
case YY_STATE_EOF(ActOpts):
case YY_STATE_EOF(WhenGE):
case YY_STATE_EOF(WhenTypes):
case YY_STATE_EOF(IfExp):
case YY_STATE_EOF(IfPExp):
case YY_STATE_EOF(SetVar):
case YY_STATE_EOF(Rule):
	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_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 );
		}

	if ( yy_n_chars == 0 )
		{
		if ( number_to_move == YY_MORE_ADJ )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( yyin );
			}

		else
			{
			ret_val = EOB_ACT_LAST_MATCH;
			yy_current_buffer->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	yy_n_chars += number_to_move;
	yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
	yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;

	yytext_ptr = &yy_current_buffer->yy_ch_buf[0];

	return ret_val;
	}


/* yy_get_previous_state - get the state just before the EOB char was reached */

static yy_state_type yy_get_previous_state()
	{
	register yy_state_type yy_current_state;
	register char *yy_cp;

	yy_current_state = yy_start;
	yy_current_state += YY_AT_BOL();

	for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
		{
		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
		if ( yy_accept[yy_current_state] )
			{
			yy_last_accepting_state = yy_current_state;
			yy_last_accepting_cpos = 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 >= 763 )
				yy_c = yy_meta[(unsigned int) yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
		}

	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;

	register YY_CHAR yy_c = 1;
	if ( yy_accept[yy_current_state] )
		{
		yy_last_accepting_state = yy_current_state;
		yy_last_accepting_cpos = 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 >= 763 )
			yy_c = yy_meta[(unsigned int) yy_c];
		}
	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
	yy_is_jam = (yy_current_state == 762);

	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_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_END_OF_FILE:
					{
					if ( yywrap() )
						{
						yy_c_buf_p = yytext_ptr + offset;
						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;

				case EOB_ACT_LAST_MATCH:
#ifdef __cplusplus
					YY_FATAL_ERROR(
					"unexpected last match in yyinput()" );
#else
					YY_FATAL_ERROR(
					"unexpected last match in input()" );
#endif
				}
			}
		}

	c = *(unsigned char *) yy_c_buf_p;	/* cast for 8-bit char's */
	*yy_c_buf_p = '\0';	/* preserve yytext */
	yy_hold_char = *++yy_c_buf_p;

	yy_current_buffer->yy_at_bol = (c == '\n');

	return c;
	}


#ifdef YY_USE_PROTOS
void yyrestart( FILE *input_file )
#else
void yyrestart( input_file )
FILE *input_file;
#endif
	{
	if ( ! yy_current_buffer )
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );

	yy_init_buffer( yy_current_buffer, input_file );
	yy_load_buffer_state();
	}


#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
#else
void yy_switch_to_buffer( new_buffer )
YY_BUFFER_STATE new_buffer;
#endif
	{
	if ( yy_current_buffer == new_buffer )
		return;

	if ( yy_current_buffer )
		{
		/* Flush out information for old buffer. */
		*yy_c_buf_p = yy_hold_char;
		yy_current_buffer->yy_buf_pos = yy_c_buf_p;
		yy_current_buffer->yy_n_chars = yy_n_chars;
		}

	yy_current_buffer = new_buffer;
	yy_load_buffer_state();

	/* We don't actually know whether we did this switch during
	 * EOF (yywrap()) processing, but the only time this flag
	 * is looked at is after yywrap() is called, so it's safe
	 * to go ahead and always set it.
	 */
	yy_did_buffer_switch_on_eof = 1;
	}


#ifdef YY_USE_PROTOS
void yy_load_buffer_state( void )
#else
void yy_load_buffer_state()
#endif
	{
	yy_n_chars = yy_current_buffer->yy_n_chars;
	yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
	yyin = yy_current_buffer->yy_input_file;
	yy_hold_char = *yy_c_buf_p;
	}


#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
#else
YY_BUFFER_STATE yy_create_buffer( file, size )
FILE *file;
int size;
#endif
	{
	YY_BUFFER_STATE b;

	b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_buf_size = size;

	/* yy_ch_buf has to be 2 characters longer than the size given because
	 * we need to put in 2 end-of-buffer characters.
	 */
	b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
	if ( ! b->yy_ch_buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_is_our_buffer = 1;

	yy_init_buffer( b, file );

	return b;
	}


#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b )
#else
void yy_delete_buffer( b )
YY_BUFFER_STATE b;
#endif
	{
	if ( ! b )
		return;

	if ( b == yy_current_buffer )
		yy_current_buffer = (YY_BUFFER_STATE) 0;

	if ( b->yy_is_our_buffer )
		yy_flex_free( (void *) b->yy_ch_buf );

	yy_flex_free( (void *) b );
	}


#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif

#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
#else
void yy_init_buffer( b, file )
YY_BUFFER_STATE b;
FILE *file;
#endif


	{
	yy_flush_buffer( b );

	b->yy_input_file = file;
	b->yy_fill_buffer = 1;

#if YY_ALWAYS_INTERACTIVE
	b->yy_is_interactive = 1;
#else
#if YY_NEVER_INTERACTIVE
	b->yy_is_interactive = 0;
#else
	b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
#endif
#endif
	}


#ifdef YY_USE_PROTOS
void yy_flush_buffer( YY_BUFFER_STATE b )
#else
void yy_flush_buffer( b )
YY_BUFFER_STATE b;
#endif

	{
	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 *str )
#else
YY_BUFFER_STATE yy_scan_string( str )
yyconst char *str;
#endif
	{
	int len;
	for ( len = 0; str[len]; ++len )
		;

	return yy_scan_bytes( 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 93 "readrules.l"

yysetin(i)
     FILE *i;
{ yyin = i; }
