diff --git a/libpcap/Makefile.in b/libpcap/Makefile.in
index 4d4356320..c12b93bc3 100644
--- a/libpcap/Makefile.in
+++ b/libpcap/Makefile.in
@@ -62,14 +62,6 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
RANLIB = @RANLIB@
-#
-# Flex and bison allow you to specify the prefixes of the global symbols
-# used by the generated parser. This allows programs to use lex/yacc
-# and link against libpcap. If you don't have flex or bison, get them.
-#
-LEX = @V_LEX@
-YACC = @V_YACC@
-
# Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
# Also, gcc does not remove the .o before forking 'as', which can be a
# problem if you don't own the file but can write to the directory.
@@ -122,7 +114,7 @@ TAGHDR = \
TAGFILES = \
$(SRC) $(HDR) $(TAGHDR)
-CLEANFILES = $(OBJ) libpcap.a $(GENSRC) $(GENHDR) lex.yy.c
+CLEANFILES = $(OBJ) libpcap.a lex.yy.c
MAN1 = pcap-config.1
@@ -344,22 +336,11 @@ libpcap.dylib: $(OBJ)
-compatibility_version 1 \
-current_version `sed 's/[^0-9.].*$$//' $(srcdir)/VERSION`
-scanner.c: $(srcdir)/scanner.l
- @rm -f $@
- ./runlex.sh $(LEX) -o$@ $<
-
scanner.o: scanner.c tokdefs.h
$(CC) $(CFLAGS) -c scanner.c
pcap.o: version.h
-tokdefs.h: grammar.c
-grammar.c: $(srcdir)/grammar.y
- @rm -f grammar.c tokdefs.h
- $(YACC) -d $<
- mv y.tab.c grammar.c
- mv y.tab.h tokdefs.h
-
grammar.o: grammar.c
@rm -f $@
$(CC) $(CFLAGS) -Dyylval=pcap_lval -c grammar.c
diff --git a/libpcap/NMAP_MODIFICATIONS b/libpcap/NMAP_MODIFICATIONS
index e7fb97e37..05e2a2ef7 100644
--- a/libpcap/NMAP_MODIFICATIONS
+++ b/libpcap/NMAP_MODIFICATIONS
@@ -23,6 +23,100 @@ o Added @CFLAGS@ to the CFLAGS definition in Makefile.in to pick up -g
# INSTALL = @INSTALL@
# INSTALL_PROGRAM = @INSTALL_PROGRAM@
+o Eliminated Lex/Yacc requirement and added the generated files:
+ grammar.c
+ scanner.c
+ scanner.h
+ tokdefs.h
+
+--- Makefile.in.orig 2009-10-27 16:17:34.000000000 -0600
++++ Makefile.in 2009-10-27 16:19:50.000000000 -0600
+@@ -62,14 +62,6 @@
+ INSTALL_DATA = @INSTALL_DATA@
+ RANLIB = @RANLIB@
+
+-#
+-# Flex and bison allow you to specify the prefixes of the global symbols
+-# used by the generated parser. This allows programs to use lex/yacc
+-# and link against libpcap. If you don't have flex or bison, get them.
+-#
+-LEX = @V_LEX@
+-YACC = @V_YACC@
+-
+ # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
+ # Also, gcc does not remove the .o before forking 'as', which can be a
+ # problem if you don't own the file but can write to the directory.
+@@ -122,7 +114,7 @@
+ TAGFILES = \
+ $(SRC) $(HDR) $(TAGHDR)
+
+-CLEANFILES = $(OBJ) libpcap.a $(GENSRC) $(GENHDR) lex.yy.c
++CLEANFILES = $(OBJ) libpcap.a lex.yy.c
+
+ MAN1 = pcap-config.1
+
+@@ -344,22 +336,11 @@
+ -compatibility_version 1 \
+ -current_version `sed 's/[^0-9.].*$$//' $(srcdir)/VERSION`
+
+-scanner.c: $(srcdir)/scanner.l
+- @rm -f $@
+- ./runlex.sh $(LEX) -o$@ $<
+-
+ scanner.o: scanner.c tokdefs.h
+ $(CC) $(CFLAGS) -c scanner.c
+
+ pcap.o: version.h
+
+-tokdefs.h: grammar.c
+-grammar.c: $(srcdir)/grammar.y
+- @rm -f grammar.c tokdefs.h
+- $(YACC) -d $<
+- mv y.tab.c grammar.c
+- mv y.tab.h tokdefs.h
+-
+ grammar.o: grammar.c
+ @rm -f $@
+ $(CC) $(CFLAGS) -Dyylval=pcap_lval -c grammar.c
+--- configure.in.orig 2009-10-27 16:20:34.000000000 -0600
++++ configure.in 2009-10-27 16:14:32.000000000 -0600
+@@ -848,24 +848,6 @@
+ fi
+
+
+-AC_LBL_LEX_AND_YACC(V_LEX, V_YACC, pcap_)
+-if test "$V_LEX" = lex ; then
+-# Some versions of lex can't handle the definitions section of scanner.l .
+-# Try lexing it and complain if it can't deal.
+- AC_CACHE_CHECK([for capable lex], tcpdump_cv_capable_lex,
+- if lex -t scanner.l > /dev/null 2>&1; then
+- tcpdump_cv_capable_lex=yes
+- else
+- tcpdump_cv_capable_lex=insufficient
+- fi)
+- if test $tcpdump_cv_capable_lex = insufficient ; then
+- AC_MSG_ERROR([Your operating system's lex is insufficient to compile
+- libpcap. flex is a lex replacement that has many advantages, including
+- being able to compile libpcap. For more information, see
+- http://www.gnu.org/software/flex/flex.html .])
+- fi
+-fi
+-
+ #
+ # Assume a.out/ELF convention for shared library names (".so"), and
+ # V7/BSD convention for man pages (file formats in section 5,
+@@ -1004,10 +986,8 @@
+ AC_SUBST(V_DEFS)
+ AC_SUBST(V_INCLS)
+ AC_SUBST(V_LIBS)
+-AC_SUBST(V_LEX)
+ AC_SUBST(V_PCAP)
+ AC_SUBST(V_FINDALLDEVS)
+-AC_SUBST(V_YACC)
+ AC_SUBST(SSRC)
+ AC_SUBST(DYEXT)
+ AC_SUBST(DAGLIBS)
+
o The following patch removes some code that apparently causes libpcap
on Solaris to wait for 64K chunks before returning in some cases,
regardless of the timeout values. Problem report and original patch
@@ -45,3 +139,5 @@ o The following patch removes some code that apparently causes libpcap
return (retv);
}
#endif /* HAVE_SYS_BUFMOD_H */
+
+o Regenerated configure.
diff --git a/libpcap/configure b/libpcap/configure
index bd8da0bfd..f0ad76c0b 100755
--- a/libpcap/configure
+++ b/libpcap/configure
@@ -675,8 +675,6 @@ CPP
GREP
EGREP
LIBOBJS
-V_LEX
-V_YACC
RANLIB
V_CCOPT
V_DEFS
@@ -1297,8 +1295,6 @@ Optional Packages:
--with-dag-includes=DIR Endace DAG include directory
--with-dag-libraries=DIR Endace DAG library directory
--with-septel[=DIR] include Septel support (located in directory DIR, if supplied). default=yes, on Linux, if present
- --without-flex don't use flex
- --without-bison don't use bison
Some influential environment variables:
CC C compiler command
@@ -8405,177 +8401,6 @@ echo "$as_me: error: Specifying the capture type as 'septel' requires the Septel
fi
-
-# Check whether --with-flex was given.
-if test "${with_flex+set}" = set; then
- withval=$with_flex;
-fi
-
-
-# Check whether --with-bison was given.
-if test "${with_bison+set}" = set; then
- withval=$with_bison;
-fi
-
- if test "$with_flex" = no ; then
- V_LEX=lex
- else
- for ac_prog in flex
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-if test "${ac_cv_prog_V_LEX+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- if test -n "$V_LEX"; then
- ac_cv_prog_V_LEX="$V_LEX" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_V_LEX="$ac_prog"
- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
-done
-IFS=$as_save_IFS
-
-fi
-fi
-V_LEX=$ac_cv_prog_V_LEX
-if test -n "$V_LEX"; then
- { echo "$as_me:$LINENO: result: $V_LEX" >&5
-echo "${ECHO_T}$V_LEX" >&6; }
-else
- { echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6; }
-fi
-
-
- test -n "$V_LEX" && break
-done
-test -n "$V_LEX" || V_LEX="lex"
-
- fi
- if test "$V_LEX" = flex ; then
- # The -V flag was added in 2.4
- { echo "$as_me:$LINENO: checking for flex 2.4 or higher" >&5
-echo $ECHO_N "checking for flex 2.4 or higher... $ECHO_C" >&6; }
- if test "${ac_cv_lbl_flex_v24+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- if flex -V >/dev/null 2>&1; then
- ac_cv_lbl_flex_v24=yes
- else
- ac_cv_lbl_flex_v24=no
- fi
-fi
-
- { echo "$as_me:$LINENO: result: $ac_cv_lbl_flex_v24" >&5
-echo "${ECHO_T}$ac_cv_lbl_flex_v24" >&6; }
- if test $ac_cv_lbl_flex_v24 = no ; then
- s="2.4 or higher required"
- { echo "$as_me:$LINENO: WARNING: ignoring obsolete flex executable ($s)" >&5
-echo "$as_me: WARNING: ignoring obsolete flex executable ($s)" >&2;}
- V_LEX=lex
- fi
- fi
- if test "$with_bison" = no ; then
- V_YACC=yacc
- else
- for ac_prog in bison
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-if test "${ac_cv_prog_V_YACC+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- if test -n "$V_YACC"; then
- ac_cv_prog_V_YACC="$V_YACC" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_V_YACC="$ac_prog"
- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
-done
-IFS=$as_save_IFS
-
-fi
-fi
-V_YACC=$ac_cv_prog_V_YACC
-if test -n "$V_YACC"; then
- { echo "$as_me:$LINENO: result: $V_YACC" >&5
-echo "${ECHO_T}$V_YACC" >&6; }
-else
- { echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6; }
-fi
-
-
- test -n "$V_YACC" && break
-done
-test -n "$V_YACC" || V_YACC="yacc"
-
- fi
- if test "$V_YACC" = bison ; then
- V_YACC="$V_YACC -y"
- fi
- if test "$V_LEX" != lex -a "$V_YACC" = yacc -o "$V_LEX" = lex -a "$V_YACC" != yacc ; then
- { echo "$as_me:$LINENO: WARNING: don't have both flex and bison; reverting to lex/yacc" >&5
-echo "$as_me: WARNING: don't have both flex and bison; reverting to lex/yacc" >&2;}
- V_LEX=lex
- V_YACC=yacc
- fi
- if test "$V_LEX" = flex -a -n "pcap_" ; then
- V_LEX="$V_LEX -Ppcap_"
- V_YACC="$V_YACC -p pcap_"
- fi
-if test "$V_LEX" = lex ; then
-# Some versions of lex can't handle the definitions section of scanner.l .
-# Try lexing it and complain if it can't deal.
- { echo "$as_me:$LINENO: checking for capable lex" >&5
-echo $ECHO_N "checking for capable lex... $ECHO_C" >&6; }
-if test "${tcpdump_cv_capable_lex+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- if lex -t scanner.l > /dev/null 2>&1; then
- tcpdump_cv_capable_lex=yes
- else
- tcpdump_cv_capable_lex=insufficient
- fi
-fi
-{ echo "$as_me:$LINENO: result: $tcpdump_cv_capable_lex" >&5
-echo "${ECHO_T}$tcpdump_cv_capable_lex" >&6; }
- if test $tcpdump_cv_capable_lex = insufficient ; then
- { { echo "$as_me:$LINENO: error: Your operating system's lex is insufficient to compile
- libpcap. flex is a lex replacement that has many advantages, including
- being able to compile libpcap. For more information, see
- http://www.gnu.org/software/flex/flex.html ." >&5
-echo "$as_me: error: Your operating system's lex is insufficient to compile
- libpcap. flex is a lex replacement that has many advantages, including
- being able to compile libpcap. For more information, see
- http://www.gnu.org/software/flex/flex.html ." >&2;}
- { (exit 1); exit 1; }; }
- fi
-fi
-
#
# Assume a.out/ELF convention for shared library names (".so"), and
# V7/BSD convention for man pages (file formats in section 5,
@@ -9186,8 +9011,6 @@ ln -s ${srcdir}/bpf/net net
-
-
{ echo "$as_me:$LINENO: checking for USB sniffing support" >&5
echo $ECHO_N "checking for USB sniffing support... $ECHO_C" >&6; }
case "$host_os" in
@@ -10147,8 +9970,6 @@ CPP!$CPP$ac_delim
GREP!$GREP$ac_delim
EGREP!$EGREP$ac_delim
LIBOBJS!$LIBOBJS$ac_delim
-V_LEX!$V_LEX$ac_delim
-V_YACC!$V_YACC$ac_delim
RANLIB!$RANLIB$ac_delim
V_CCOPT!$V_CCOPT$ac_delim
V_DEFS!$V_DEFS$ac_delim
@@ -10172,7 +9993,7 @@ INSTALL_DATA!$INSTALL_DATA$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 84; then
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 82; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
diff --git a/libpcap/configure.in b/libpcap/configure.in
index 7d1230913..5653863e5 100644
--- a/libpcap/configure.in
+++ b/libpcap/configure.in
@@ -848,24 +848,6 @@ if test "$V_PCAP" = septel -a "$ac_cv_lbl_septel_api" = no; then
fi
-AC_LBL_LEX_AND_YACC(V_LEX, V_YACC, pcap_)
-if test "$V_LEX" = lex ; then
-# Some versions of lex can't handle the definitions section of scanner.l .
-# Try lexing it and complain if it can't deal.
- AC_CACHE_CHECK([for capable lex], tcpdump_cv_capable_lex,
- if lex -t scanner.l > /dev/null 2>&1; then
- tcpdump_cv_capable_lex=yes
- else
- tcpdump_cv_capable_lex=insufficient
- fi)
- if test $tcpdump_cv_capable_lex = insufficient ; then
- AC_MSG_ERROR([Your operating system's lex is insufficient to compile
- libpcap. flex is a lex replacement that has many advantages, including
- being able to compile libpcap. For more information, see
- http://www.gnu.org/software/flex/flex.html .])
- fi
-fi
-
#
# Assume a.out/ELF convention for shared library names (".so"), and
# V7/BSD convention for man pages (file formats in section 5,
@@ -1004,10 +986,8 @@ AC_SUBST(V_CCOPT)
AC_SUBST(V_DEFS)
AC_SUBST(V_INCLS)
AC_SUBST(V_LIBS)
-AC_SUBST(V_LEX)
AC_SUBST(V_PCAP)
AC_SUBST(V_FINDALLDEVS)
-AC_SUBST(V_YACC)
AC_SUBST(SSRC)
AC_SUBST(DYEXT)
AC_SUBST(DAGLIBS)
diff --git a/libpcap/grammar.c b/libpcap/grammar.c
new file mode 100644
index 000000000..1d5745239
--- /dev/null
+++ b/libpcap/grammar.c
@@ -0,0 +1,3803 @@
+
+/* A Bison parser, made by GNU Bison 2.4.1. */
+
+/* Skeleton implementation for Bison's Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+ Free Software Foundation, Inc.
+
+ This program 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ 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 program. If not, see . */
+
+/* As a special exception, you may create a larger work that contains
+ part or all of the Bison parser skeleton and distribute that work
+ under terms of your choice, so long as that work isn't itself a
+ parser generator using the skeleton or a modified version thereof
+ as a parser skeleton. Alternatively, if you modify or redistribute
+ the parser skeleton itself, you may (at your option) remove this
+ special exception, which will cause the skeleton and the resulting
+ Bison output files to be licensed under the GNU General Public
+ License without this special exception.
+
+ This special exception was added by the Free Software Foundation in
+ version 2.2 of Bison. */
+
+/* C LALR(1) parser skeleton written by Richard Stallman, by
+ simplifying the original so-called "semantic" parser. */
+
+/* All symbols defined below should begin with yy or YY, to avoid
+ infringing on user name space. This should be done even for local
+ variables, as they might otherwise be expanded by user macros.
+ There are some unavoidable exceptions within include files to
+ define necessary library symbols; they are noted "INFRINGES ON
+ USER NAME SPACE" below. */
+
+/* Identify Bison output. */
+#define YYBISON 1
+
+/* Bison version. */
+#define YYBISON_VERSION "2.4.1"
+
+/* Skeleton name. */
+#define YYSKELETON_NAME "yacc.c"
+
+/* Pure parsers. */
+#define YYPURE 0
+
+/* Push parsers. */
+#define YYPUSH 0
+
+/* Pull parsers. */
+#define YYPULL 1
+
+/* Using locations. */
+#define YYLSP_NEEDED 0
+
+/* Substitute the variable and function names. */
+#define yyparse pcap_parse
+#define yylex pcap_lex
+#define yyerror pcap_error
+#define yylval pcap_lval
+#define yychar pcap_char
+#define yydebug pcap_debug
+#define yynerrs pcap_nerrs
+
+
+/* Copy the first part of user declarations. */
+
+/* Line 189 of yacc.c */
+#line 1 "grammar.y"
+
+/*
+ * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
+ * The Regents of the University of California. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that: (1) source code distributions
+ * retain the above copyright notice and this paragraph in its entirety, (2)
+ * distributions including binary code include the above copyright notice and
+ * this paragraph in its entirety in the documentation or other materials
+ * provided with the distribution, and (3) all advertising materials mentioning
+ * features or use of this software display the following acknowledgement:
+ * ``This product includes software developed by the University of California,
+ * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
+ * the University nor the names of its contributors may be used to endorse
+ * or promote products derived from this software without specific prior
+ * written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ */
+#ifndef lint
+static const char rcsid[] _U_ =
+ "@(#) $Header: /tcpdump/master/libpcap/grammar.y,v 1.99.2.2 2007/11/18 02:04:55 guy Exp $ (LBL)";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#ifdef WIN32
+#include
+#else /* WIN32 */
+#include
+#include
+#endif /* WIN32 */
+
+#include
+
+#ifndef WIN32
+#if __STDC__
+struct mbuf;
+struct rtentry;
+#endif
+
+#include
+#endif /* WIN32 */
+
+#include
+
+#include "pcap-int.h"
+
+#include "gencode.h"
+#ifdef HAVE_NET_PFVAR_H
+#include
+#include
+#include
+#endif
+#include "ieee80211.h"
+#include
+
+#ifdef HAVE_OS_PROTO_H
+#include "os-proto.h"
+#endif
+
+#define QSET(q, p, d, a) (q).proto = (p),\
+ (q).dir = (d),\
+ (q).addr = (a)
+
+struct tok {
+ int v; /* value */
+ const char *s; /* string */
+};
+
+static const struct tok ieee80211_types[] = {
+ { IEEE80211_FC0_TYPE_DATA, "data" },
+ { IEEE80211_FC0_TYPE_MGT, "mgt" },
+ { IEEE80211_FC0_TYPE_MGT, "management" },
+ { IEEE80211_FC0_TYPE_CTL, "ctl" },
+ { IEEE80211_FC0_TYPE_CTL, "control" },
+ { 0, NULL }
+};
+static const struct tok ieee80211_mgt_subtypes[] = {
+ { IEEE80211_FC0_SUBTYPE_ASSOC_REQ, "assocreq" },
+ { IEEE80211_FC0_SUBTYPE_ASSOC_REQ, "assoc-req" },
+ { IEEE80211_FC0_SUBTYPE_ASSOC_RESP, "assocresp" },
+ { IEEE80211_FC0_SUBTYPE_ASSOC_RESP, "assoc-resp" },
+ { IEEE80211_FC0_SUBTYPE_REASSOC_REQ, "reassocreq" },
+ { IEEE80211_FC0_SUBTYPE_REASSOC_REQ, "reassoc-req" },
+ { IEEE80211_FC0_SUBTYPE_REASSOC_RESP, "reassocresp" },
+ { IEEE80211_FC0_SUBTYPE_REASSOC_RESP, "reassoc-resp" },
+ { IEEE80211_FC0_SUBTYPE_PROBE_REQ, "probereq" },
+ { IEEE80211_FC0_SUBTYPE_PROBE_REQ, "probe-req" },
+ { IEEE80211_FC0_SUBTYPE_PROBE_RESP, "proberesp" },
+ { IEEE80211_FC0_SUBTYPE_PROBE_RESP, "probe-resp" },
+ { IEEE80211_FC0_SUBTYPE_BEACON, "beacon" },
+ { IEEE80211_FC0_SUBTYPE_ATIM, "atim" },
+ { IEEE80211_FC0_SUBTYPE_DISASSOC, "disassoc" },
+ { IEEE80211_FC0_SUBTYPE_DISASSOC, "disassociation" },
+ { IEEE80211_FC0_SUBTYPE_AUTH, "auth" },
+ { IEEE80211_FC0_SUBTYPE_AUTH, "authentication" },
+ { IEEE80211_FC0_SUBTYPE_DEAUTH, "deauth" },
+ { IEEE80211_FC0_SUBTYPE_DEAUTH, "deauthentication" },
+ { 0, NULL }
+};
+static const struct tok ieee80211_ctl_subtypes[] = {
+ { IEEE80211_FC0_SUBTYPE_PS_POLL, "ps-poll" },
+ { IEEE80211_FC0_SUBTYPE_RTS, "rts" },
+ { IEEE80211_FC0_SUBTYPE_CTS, "cts" },
+ { IEEE80211_FC0_SUBTYPE_ACK, "ack" },
+ { IEEE80211_FC0_SUBTYPE_CF_END, "cf-end" },
+ { IEEE80211_FC0_SUBTYPE_CF_END_ACK, "cf-end-ack" },
+ { 0, NULL }
+};
+static const struct tok ieee80211_data_subtypes[] = {
+ { IEEE80211_FC0_SUBTYPE_DATA, "data" },
+ { IEEE80211_FC0_SUBTYPE_CF_ACK, "data-cf-ack" },
+ { IEEE80211_FC0_SUBTYPE_CF_POLL, "data-cf-poll" },
+ { IEEE80211_FC0_SUBTYPE_CF_ACPL, "data-cf-ack-poll" },
+ { IEEE80211_FC0_SUBTYPE_NODATA, "null" },
+ { IEEE80211_FC0_SUBTYPE_NODATA_CF_ACK, "cf-ack" },
+ { IEEE80211_FC0_SUBTYPE_NODATA_CF_POLL, "cf-poll" },
+ { IEEE80211_FC0_SUBTYPE_NODATA_CF_ACPL, "cf-ack-poll" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_DATA, "qos-data" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_CF_ACK, "qos-data-cf-ack" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_CF_POLL, "qos-data-cf-poll" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_CF_ACPL, "qos-data-cf-ack-poll" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_NODATA, "qos" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_NODATA_CF_POLL, "qos-cf-poll" },
+ { IEEE80211_FC0_SUBTYPE_QOS|IEEE80211_FC0_SUBTYPE_NODATA_CF_ACPL, "qos-cf-ack-poll" },
+ { 0, NULL }
+};
+struct type2tok {
+ int type;
+ const struct tok *tok;
+};
+static const struct type2tok ieee80211_type_subtypes[] = {
+ { IEEE80211_FC0_TYPE_MGT, ieee80211_mgt_subtypes },
+ { IEEE80211_FC0_TYPE_CTL, ieee80211_ctl_subtypes },
+ { IEEE80211_FC0_TYPE_DATA, ieee80211_data_subtypes },
+ { 0, NULL }
+};
+
+static int
+str2tok(const char *str, const struct tok *toks)
+{
+ int i;
+
+ for (i = 0; toks[i].s != NULL; i++) {
+ if (pcap_strcasecmp(toks[i].s, str) == 0)
+ return (toks[i].v);
+ }
+ return (-1);
+}
+
+int n_errors = 0;
+
+static struct qual qerr = { Q_UNDEF, Q_UNDEF, Q_UNDEF, Q_UNDEF };
+
+static void
+yyerror(const char *msg)
+{
+ ++n_errors;
+ bpf_error("%s", msg);
+ /* NOTREACHED */
+}
+
+#ifndef YYBISON
+int yyparse(void);
+
+int
+pcap_parse()
+{
+ return (yyparse());
+}
+#endif
+
+#ifdef HAVE_NET_PFVAR_H
+static int
+pfreason_to_num(const char *reason)
+{
+ const char *reasons[] = PFRES_NAMES;
+ int i;
+
+ for (i = 0; reasons[i]; i++) {
+ if (pcap_strcasecmp(reason, reasons[i]) == 0)
+ return (i);
+ }
+ bpf_error("unknown PF reason");
+ /*NOTREACHED*/
+}
+
+static int
+pfaction_to_num(const char *action)
+{
+ if (pcap_strcasecmp(action, "pass") == 0 ||
+ pcap_strcasecmp(action, "accept") == 0)
+ return (PF_PASS);
+ else if (pcap_strcasecmp(action, "drop") == 0 ||
+ pcap_strcasecmp(action, "block") == 0)
+ return (PF_DROP);
+#if HAVE_PF_NAT_THROUGH_PF_NORDR
+ else if (pcap_strcasecmp(action, "rdr") == 0)
+ return (PF_RDR);
+ else if (pcap_strcasecmp(action, "nat") == 0)
+ return (PF_NAT);
+ else if (pcap_strcasecmp(action, "binat") == 0)
+ return (PF_BINAT);
+ else if (pcap_strcasecmp(action, "nordr") == 0)
+ return (PF_NORDR);
+#endif
+ else {
+ bpf_error("unknown PF action");
+ /*NOTREACHED*/
+ }
+}
+#else /* !HAVE_NET_PFVAR_H */
+static int
+pfreason_to_num(const char *reason)
+{
+ bpf_error("libpcap was compiled on a machine without pf support");
+ /*NOTREACHED*/
+
+ /* this is to make the VC compiler happy */
+ return -1;
+}
+
+static int
+pfaction_to_num(const char *action)
+{
+ bpf_error("libpcap was compiled on a machine without pf support");
+ /*NOTREACHED*/
+
+ /* this is to make the VC compiler happy */
+ return -1;
+}
+#endif /* HAVE_NET_PFVAR_H */
+
+
+/* Line 189 of yacc.c */
+#line 322 "y.tab.c"
+
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+
+/* Enabling verbose error messages. */
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE 0
+#endif
+
+/* Enabling the token table. */
+#ifndef YYTOKEN_TABLE
+# define YYTOKEN_TABLE 0
+#endif
+
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ DST = 258,
+ SRC = 259,
+ HOST = 260,
+ GATEWAY = 261,
+ NET = 262,
+ NETMASK = 263,
+ PORT = 264,
+ PORTRANGE = 265,
+ LESS = 266,
+ GREATER = 267,
+ PROTO = 268,
+ PROTOCHAIN = 269,
+ CBYTE = 270,
+ ARP = 271,
+ RARP = 272,
+ IP = 273,
+ SCTP = 274,
+ TCP = 275,
+ UDP = 276,
+ ICMP = 277,
+ IGMP = 278,
+ IGRP = 279,
+ PIM = 280,
+ VRRP = 281,
+ ATALK = 282,
+ AARP = 283,
+ DECNET = 284,
+ LAT = 285,
+ SCA = 286,
+ MOPRC = 287,
+ MOPDL = 288,
+ TK_BROADCAST = 289,
+ TK_MULTICAST = 290,
+ NUM = 291,
+ INBOUND = 292,
+ OUTBOUND = 293,
+ PF_IFNAME = 294,
+ PF_RSET = 295,
+ PF_RNR = 296,
+ PF_SRNR = 297,
+ PF_REASON = 298,
+ PF_ACTION = 299,
+ TYPE = 300,
+ SUBTYPE = 301,
+ DIR = 302,
+ ADDR1 = 303,
+ ADDR2 = 304,
+ ADDR3 = 305,
+ ADDR4 = 306,
+ LINK = 307,
+ GEQ = 308,
+ LEQ = 309,
+ NEQ = 310,
+ ID = 311,
+ EID = 312,
+ HID = 313,
+ HID6 = 314,
+ AID = 315,
+ LSH = 316,
+ RSH = 317,
+ LEN = 318,
+ IPV6 = 319,
+ ICMPV6 = 320,
+ AH = 321,
+ ESP = 322,
+ VLAN = 323,
+ MPLS = 324,
+ PPPOED = 325,
+ PPPOES = 326,
+ ISO = 327,
+ ESIS = 328,
+ CLNP = 329,
+ ISIS = 330,
+ L1 = 331,
+ L2 = 332,
+ IIH = 333,
+ LSP = 334,
+ SNP = 335,
+ CSNP = 336,
+ PSNP = 337,
+ STP = 338,
+ IPX = 339,
+ NETBEUI = 340,
+ LANE = 341,
+ LLC = 342,
+ METAC = 343,
+ BCC = 344,
+ SC = 345,
+ ILMIC = 346,
+ OAMF4EC = 347,
+ OAMF4SC = 348,
+ OAM = 349,
+ OAMF4 = 350,
+ CONNECTMSG = 351,
+ METACONNECT = 352,
+ VPI = 353,
+ VCI = 354,
+ RADIO = 355,
+ FISU = 356,
+ LSSU = 357,
+ MSU = 358,
+ SIO = 359,
+ OPC = 360,
+ DPC = 361,
+ SLS = 362,
+ AND = 363,
+ OR = 364,
+ UMINUS = 365
+ };
+#endif
+/* Tokens. */
+#define DST 258
+#define SRC 259
+#define HOST 260
+#define GATEWAY 261
+#define NET 262
+#define NETMASK 263
+#define PORT 264
+#define PORTRANGE 265
+#define LESS 266
+#define GREATER 267
+#define PROTO 268
+#define PROTOCHAIN 269
+#define CBYTE 270
+#define ARP 271
+#define RARP 272
+#define IP 273
+#define SCTP 274
+#define TCP 275
+#define UDP 276
+#define ICMP 277
+#define IGMP 278
+#define IGRP 279
+#define PIM 280
+#define VRRP 281
+#define ATALK 282
+#define AARP 283
+#define DECNET 284
+#define LAT 285
+#define SCA 286
+#define MOPRC 287
+#define MOPDL 288
+#define TK_BROADCAST 289
+#define TK_MULTICAST 290
+#define NUM 291
+#define INBOUND 292
+#define OUTBOUND 293
+#define PF_IFNAME 294
+#define PF_RSET 295
+#define PF_RNR 296
+#define PF_SRNR 297
+#define PF_REASON 298
+#define PF_ACTION 299
+#define TYPE 300
+#define SUBTYPE 301
+#define DIR 302
+#define ADDR1 303
+#define ADDR2 304
+#define ADDR3 305
+#define ADDR4 306
+#define LINK 307
+#define GEQ 308
+#define LEQ 309
+#define NEQ 310
+#define ID 311
+#define EID 312
+#define HID 313
+#define HID6 314
+#define AID 315
+#define LSH 316
+#define RSH 317
+#define LEN 318
+#define IPV6 319
+#define ICMPV6 320
+#define AH 321
+#define ESP 322
+#define VLAN 323
+#define MPLS 324
+#define PPPOED 325
+#define PPPOES 326
+#define ISO 327
+#define ESIS 328
+#define CLNP 329
+#define ISIS 330
+#define L1 331
+#define L2 332
+#define IIH 333
+#define LSP 334
+#define SNP 335
+#define CSNP 336
+#define PSNP 337
+#define STP 338
+#define IPX 339
+#define NETBEUI 340
+#define LANE 341
+#define LLC 342
+#define METAC 343
+#define BCC 344
+#define SC 345
+#define ILMIC 346
+#define OAMF4EC 347
+#define OAMF4SC 348
+#define OAM 349
+#define OAMF4 350
+#define CONNECTMSG 351
+#define METACONNECT 352
+#define VPI 353
+#define VCI 354
+#define RADIO 355
+#define FISU 356
+#define LSSU 357
+#define MSU 358
+#define SIO 359
+#define OPC 360
+#define DPC 361
+#define SLS 362
+#define AND 363
+#define OR 364
+#define UMINUS 365
+
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+/* Line 214 of yacc.c */
+#line 241 "grammar.y"
+
+ int i;
+ bpf_u_int32 h;
+ u_char *e;
+ char *s;
+ struct stmt *stmt;
+ struct arth *a;
+ struct {
+ struct qual q;
+ int atmfieldtype;
+ int mtp3fieldtype;
+ struct block *b;
+ } blk;
+ struct block *rblk;
+
+
+
+/* Line 214 of yacc.c */
+#line 596 "y.tab.c"
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+
+/* Copy the second part of user declarations. */
+
+
+/* Line 264 of yacc.c */
+#line 608 "y.tab.c"
+
+#ifdef short
+# undef short
+#endif
+
+#ifdef YYTYPE_UINT8
+typedef YYTYPE_UINT8 yytype_uint8;
+#else
+typedef unsigned char yytype_uint8;
+#endif
+
+#ifdef YYTYPE_INT8
+typedef YYTYPE_INT8 yytype_int8;
+#elif (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+typedef signed char yytype_int8;
+#else
+typedef short int yytype_int8;
+#endif
+
+#ifdef YYTYPE_UINT16
+typedef YYTYPE_UINT16 yytype_uint16;
+#else
+typedef unsigned short int yytype_uint16;
+#endif
+
+#ifdef YYTYPE_INT16
+typedef YYTYPE_INT16 yytype_int16;
+#else
+typedef short int yytype_int16;
+#endif
+
+#ifndef YYSIZE_T
+# ifdef __SIZE_TYPE__
+# define YYSIZE_T __SIZE_TYPE__
+# elif defined size_t
+# define YYSIZE_T size_t
+# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include /* INFRINGES ON USER NAME SPACE */
+# define YYSIZE_T size_t
+# else
+# define YYSIZE_T unsigned int
+# endif
+#endif
+
+#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
+
+#ifndef YY_
+# if YYENABLE_NLS
+# if ENABLE_NLS
+# include /* INFRINGES ON USER NAME SPACE */
+# define YY_(msgid) dgettext ("bison-runtime", msgid)
+# endif
+# endif
+# ifndef YY_
+# define YY_(msgid) msgid
+# endif
+#endif
+
+/* Suppress unused-variable warnings by "using" E. */
+#if ! defined lint || defined __GNUC__
+# define YYUSE(e) ((void) (e))
+#else
+# define YYUSE(e) /* empty */
+#endif
+
+/* Identity function, used to suppress warnings about constant conditions. */
+#ifndef lint
+# define YYID(n) (n)
+#else
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static int
+YYID (int yyi)
+#else
+static int
+YYID (yyi)
+ int yyi;
+#endif
+{
+ return yyi;
+}
+#endif
+
+#if ! defined yyoverflow || YYERROR_VERBOSE
+
+/* The parser invokes alloca or malloc; define the necessary symbols. */
+
+# ifdef YYSTACK_USE_ALLOCA
+# if YYSTACK_USE_ALLOCA
+# ifdef __GNUC__
+# define YYSTACK_ALLOC __builtin_alloca
+# elif defined __BUILTIN_VA_ARG_INCR
+# include /* INFRINGES ON USER NAME SPACE */
+# elif defined _AIX
+# define YYSTACK_ALLOC __alloca
+# elif defined _MSC_VER
+# include /* INFRINGES ON USER NAME SPACE */
+# define alloca _alloca
+# else
+# define YYSTACK_ALLOC alloca
+# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include /* INFRINGES ON USER NAME SPACE */
+# ifndef _STDLIB_H
+# define _STDLIB_H 1
+# endif
+# endif
+# endif
+# endif
+# endif
+
+# ifdef YYSTACK_ALLOC
+ /* Pacify GCC's `empty if-body' warning. */
+# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
+# ifndef YYSTACK_ALLOC_MAXIMUM
+ /* The OS might guarantee only one guard page at the bottom of the stack,
+ and a page size can be as small as 4096 bytes. So we cannot safely
+ invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
+ to allow for a few compiler-allocated temporary stack slots. */
+# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
+# endif
+# else
+# define YYSTACK_ALLOC YYMALLOC
+# define YYSTACK_FREE YYFREE
+# ifndef YYSTACK_ALLOC_MAXIMUM
+# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
+# endif
+# if (defined __cplusplus && ! defined _STDLIB_H \
+ && ! ((defined YYMALLOC || defined malloc) \
+ && (defined YYFREE || defined free)))
+# include /* INFRINGES ON USER NAME SPACE */
+# ifndef _STDLIB_H
+# define _STDLIB_H 1
+# endif
+# endif
+# ifndef YYMALLOC
+# define YYMALLOC malloc
+# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# ifndef YYFREE
+# define YYFREE free
+# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void free (void *); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# endif
+#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
+
+
+#if (! defined yyoverflow \
+ && (! defined __cplusplus \
+ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+
+/* A type that is properly aligned for any stack member. */
+union yyalloc
+{
+ yytype_int16 yyss_alloc;
+ YYSTYPE yyvs_alloc;
+};
+
+/* The size of the maximum gap between one aligned stack and the next. */
+# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
+
+/* The size of an array large to enough to hold all stacks, each with
+ N elements. */
+# define YYSTACK_BYTES(N) \
+ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ + YYSTACK_GAP_MAXIMUM)
+
+/* Copy COUNT objects from FROM to TO. The source and destination do
+ not overlap. */
+# ifndef YYCOPY
+# if defined __GNUC__ && 1 < __GNUC__
+# define YYCOPY(To, From, Count) \
+ __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
+# else
+# define YYCOPY(To, From, Count) \
+ do \
+ { \
+ YYSIZE_T yyi; \
+ for (yyi = 0; yyi < (Count); yyi++) \
+ (To)[yyi] = (From)[yyi]; \
+ } \
+ while (YYID (0))
+# endif
+# endif
+
+/* Relocate STACK from its old location to the new one. The
+ local variables YYSIZE and YYSTACKSIZE give the old and new number of
+ elements in the stack, and YYPTR gives the new location of the
+ stack. Advance YYPTR to a properly aligned location for the next
+ stack. */
+# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
+ Stack = &yyptr->Stack_alloc; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (YYID (0))
+
+#endif
+
+/* YYFINAL -- State number of the termination state. */
+#define YYFINAL 3
+/* YYLAST -- Last index in YYTABLE. */
+#define YYLAST 669
+
+/* YYNTOKENS -- Number of terminals. */
+#define YYNTOKENS 126
+/* YYNNTS -- Number of nonterminals. */
+#define YYNNTS 46
+/* YYNRULES -- Number of rules. */
+#define YYNRULES 202
+/* YYNRULES -- Number of states. */
+#define YYNSTATES 274
+
+/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
+#define YYUNDEFTOK 2
+#define YYMAXUTOK 365
+
+#define YYTRANSLATE(YYX) \
+ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
+
+/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
+static const yytype_uint8 yytranslate[] =
+{
+ 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 110, 2, 2, 2, 2, 112, 2,
+ 119, 118, 115, 113, 2, 114, 2, 116, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 125, 2,
+ 122, 121, 120, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 123, 2, 124, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 111, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
+ 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
+ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
+ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
+ 95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
+ 105, 106, 107, 108, 109, 117
+};
+
+#if YYDEBUG
+/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
+ YYRHS. */
+static const yytype_uint16 yyprhs[] =
+{
+ 0, 0, 3, 6, 8, 9, 11, 15, 19, 23,
+ 27, 29, 31, 33, 35, 39, 41, 45, 49, 51,
+ 55, 57, 59, 61, 64, 66, 68, 70, 74, 78,
+ 80, 82, 84, 87, 91, 94, 97, 100, 103, 106,
+ 109, 113, 115, 119, 123, 125, 127, 129, 132, 134,
+ 137, 139, 140, 142, 144, 148, 152, 156, 160, 162,
+ 164, 166, 168, 170, 172, 174, 176, 178, 180, 182,
+ 184, 186, 188, 190, 192, 194, 196, 198, 200, 202,
+ 204, 206, 208, 210, 212, 214, 216, 218, 220, 222,
+ 224, 226, 228, 230, 232, 234, 236, 238, 240, 242,
+ 244, 246, 248, 250, 252, 254, 257, 260, 263, 266,
+ 271, 273, 275, 278, 280, 283, 285, 287, 289, 291,
+ 294, 297, 300, 303, 306, 309, 312, 317, 320, 323,
+ 326, 328, 330, 332, 334, 336, 338, 340, 342, 344,
+ 346, 348, 350, 352, 354, 356, 358, 360, 362, 367,
+ 374, 378, 382, 386, 390, 394, 398, 402, 406, 409,
+ 413, 415, 417, 419, 421, 423, 425, 427, 431, 433,
+ 435, 437, 439, 441, 443, 445, 447, 449, 451, 453,
+ 455, 457, 459, 461, 464, 467, 471, 473, 475, 479,
+ 481, 483, 485, 487, 489, 491, 493, 495, 498, 501,
+ 505, 507, 509
+};
+
+/* YYRHS -- A `-1'-separated list of the rules' RHS. */
+static const yytype_int16 yyrhs[] =
+{
+ 127, 0, -1, 128, 129, -1, 128, -1, -1, 138,
+ -1, 129, 130, 138, -1, 129, 130, 132, -1, 129,
+ 131, 138, -1, 129, 131, 132, -1, 108, -1, 109,
+ -1, 133, -1, 160, -1, 135, 136, 118, -1, 56,
+ -1, 58, 116, 36, -1, 58, 8, 58, -1, 58,
+ -1, 59, 116, 36, -1, 59, -1, 57, -1, 60,
+ -1, 134, 132, -1, 110, -1, 119, -1, 133, -1,
+ 137, 130, 132, -1, 137, 131, 132, -1, 160, -1,
+ 136, -1, 140, -1, 134, 138, -1, 141, 142, 143,
+ -1, 141, 142, -1, 141, 143, -1, 141, 13, -1,
+ 141, 14, -1, 141, 144, -1, 139, 132, -1, 135,
+ 129, 118, -1, 145, -1, 157, 155, 157, -1, 157,
+ 156, 157, -1, 146, -1, 161, -1, 162, -1, 163,
+ 164, -1, 167, -1, 168, 169, -1, 145, -1, -1,
+ 4, -1, 3, -1, 4, 109, 3, -1, 3, 109,
+ 4, -1, 4, 108, 3, -1, 3, 108, 4, -1,
+ 48, -1, 49, -1, 50, -1, 51, -1, 5, -1,
+ 7, -1, 9, -1, 10, -1, 6, -1, 52, -1,
+ 18, -1, 16, -1, 17, -1, 19, -1, 20, -1,
+ 21, -1, 22, -1, 23, -1, 24, -1, 25, -1,
+ 26, -1, 27, -1, 28, -1, 29, -1, 30, -1,
+ 31, -1, 33, -1, 32, -1, 64, -1, 65, -1,
+ 66, -1, 67, -1, 72, -1, 73, -1, 75, -1,
+ 76, -1, 77, -1, 78, -1, 79, -1, 80, -1,
+ 82, -1, 81, -1, 74, -1, 83, -1, 84, -1,
+ 85, -1, 100, -1, 141, 34, -1, 141, 35, -1,
+ 11, 36, -1, 12, 36, -1, 15, 36, 159, 36,
+ -1, 37, -1, 38, -1, 68, 160, -1, 68, -1,
+ 69, 160, -1, 69, -1, 70, -1, 71, -1, 147,
+ -1, 141, 148, -1, 39, 56, -1, 40, 56, -1,
+ 41, 36, -1, 42, 36, -1, 43, 153, -1, 44,
+ 154, -1, 45, 149, 46, 150, -1, 45, 149, -1,
+ 46, 151, -1, 47, 152, -1, 36, -1, 56, -1,
+ 36, -1, 56, -1, 56, -1, 36, -1, 56, -1,
+ 36, -1, 56, -1, 56, -1, 120, -1, 53, -1,
+ 121, -1, 54, -1, 122, -1, 55, -1, 160, -1,
+ 158, -1, 145, 123, 157, 124, -1, 145, 123, 157,
+ 125, 36, 124, -1, 157, 113, 157, -1, 157, 114,
+ 157, -1, 157, 115, 157, -1, 157, 116, 157, -1,
+ 157, 112, 157, -1, 157, 111, 157, -1, 157, 61,
+ 157, -1, 157, 62, 157, -1, 114, 157, -1, 135,
+ 158, 118, -1, 63, -1, 112, -1, 111, -1, 122,
+ -1, 120, -1, 121, -1, 36, -1, 135, 160, 118,
+ -1, 86, -1, 87, -1, 88, -1, 89, -1, 92,
+ -1, 93, -1, 90, -1, 91, -1, 94, -1, 95,
+ -1, 96, -1, 97, -1, 98, -1, 99, -1, 165,
+ -1, 155, 36, -1, 156, 36, -1, 135, 166, 118,
+ -1, 36, -1, 165, -1, 166, 131, 165, -1, 101,
+ -1, 102, -1, 103, -1, 104, -1, 105, -1, 106,
+ -1, 107, -1, 170, -1, 155, 36, -1, 156, 36,
+ -1, 135, 171, 118, -1, 36, -1, 170, -1, 171,
+ 131, 170, -1
+};
+
+/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
+static const yytype_uint16 yyrline[] =
+{
+ 0, 314, 314, 318, 320, 322, 323, 324, 325, 326,
+ 328, 330, 332, 333, 335, 337, 338, 340, 342, 355,
+ 364, 373, 382, 391, 393, 395, 397, 398, 399, 401,
+ 403, 405, 406, 408, 409, 410, 411, 412, 413, 415,
+ 416, 417, 418, 420, 422, 423, 424, 425, 426, 427,
+ 430, 431, 434, 435, 436, 437, 438, 439, 440, 441,
+ 442, 443, 446, 447, 448, 449, 452, 454, 455, 456,
+ 457, 458, 459, 460, 461, 462, 463, 464, 465, 466,
+ 467, 468, 469, 470, 471, 472, 473, 474, 475, 476,
+ 477, 478, 479, 480, 481, 482, 483, 484, 485, 486,
+ 487, 488, 489, 490, 491, 493, 494, 495, 496, 497,
+ 498, 499, 500, 501, 502, 503, 504, 505, 506, 507,
+ 510, 511, 512, 513, 514, 515, 518, 523, 526, 530,
+ 533, 534, 540, 541, 561, 577, 578, 591, 592, 595,
+ 598, 599, 600, 602, 603, 604, 606, 607, 609, 610,
+ 611, 612, 613, 614, 615, 616, 617, 618, 619, 620,
+ 621, 623, 624, 625, 626, 627, 629, 630, 632, 633,
+ 634, 635, 636, 637, 638, 639, 641, 642, 643, 644,
+ 647, 648, 650, 651, 652, 653, 655, 662, 663, 666,
+ 667, 668, 671, 672, 673, 674, 676, 677, 678, 679,
+ 681, 690, 691
+};
+#endif
+
+#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
+/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
+ First, the terminals, then, starting at YYNTOKENS, nonterminals. */
+static const char *const yytname[] =
+{
+ "$end", "error", "$undefined", "DST", "SRC", "HOST", "GATEWAY", "NET",
+ "NETMASK", "PORT", "PORTRANGE", "LESS", "GREATER", "PROTO", "PROTOCHAIN",
+ "CBYTE", "ARP", "RARP", "IP", "SCTP", "TCP", "UDP", "ICMP", "IGMP",
+ "IGRP", "PIM", "VRRP", "ATALK", "AARP", "DECNET", "LAT", "SCA", "MOPRC",
+ "MOPDL", "TK_BROADCAST", "TK_MULTICAST", "NUM", "INBOUND", "OUTBOUND",
+ "PF_IFNAME", "PF_RSET", "PF_RNR", "PF_SRNR", "PF_REASON", "PF_ACTION",
+ "TYPE", "SUBTYPE", "DIR", "ADDR1", "ADDR2", "ADDR3", "ADDR4", "LINK",
+ "GEQ", "LEQ", "NEQ", "ID", "EID", "HID", "HID6", "AID", "LSH", "RSH",
+ "LEN", "IPV6", "ICMPV6", "AH", "ESP", "VLAN", "MPLS", "PPPOED", "PPPOES",
+ "ISO", "ESIS", "CLNP", "ISIS", "L1", "L2", "IIH", "LSP", "SNP", "CSNP",
+ "PSNP", "STP", "IPX", "NETBEUI", "LANE", "LLC", "METAC", "BCC", "SC",
+ "ILMIC", "OAMF4EC", "OAMF4SC", "OAM", "OAMF4", "CONNECTMSG",
+ "METACONNECT", "VPI", "VCI", "RADIO", "FISU", "LSSU", "MSU", "SIO",
+ "OPC", "DPC", "SLS", "AND", "OR", "'!'", "'|'", "'&'", "'+'", "'-'",
+ "'*'", "'/'", "UMINUS", "')'", "'('", "'>'", "'='", "'<'", "'['", "']'",
+ "':'", "$accept", "prog", "null", "expr", "and", "or", "id", "nid",
+ "not", "paren", "pid", "qid", "term", "head", "rterm", "pqual", "dqual",
+ "aqual", "ndaqual", "pname", "other", "pfvar", "p80211", "type",
+ "subtype", "type_subtype", "dir", "reason", "action", "relop", "irelop",
+ "arth", "narth", "byteop", "pnum", "atmtype", "atmmultitype", "atmfield",
+ "atmvalue", "atmfieldvalue", "atmlistvalue", "mtp2type", "mtp3field",
+ "mtp3value", "mtp3fieldvalue", "mtp3listvalue", 0
+};
+#endif
+
+# ifdef YYPRINT
+/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
+ token YYLEX-NUM. */
+static const yytype_uint16 yytoknum[] =
+{
+ 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
+ 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
+ 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
+ 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
+ 305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
+ 315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
+ 325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
+ 335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
+ 345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
+ 355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
+ 33, 124, 38, 43, 45, 42, 47, 365, 41, 40,
+ 62, 61, 60, 91, 93, 58
+};
+# endif
+
+/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
+static const yytype_uint8 yyr1[] =
+{
+ 0, 126, 127, 127, 128, 129, 129, 129, 129, 129,
+ 130, 131, 132, 132, 132, 133, 133, 133, 133, 133,
+ 133, 133, 133, 133, 134, 135, 136, 136, 136, 137,
+ 137, 138, 138, 139, 139, 139, 139, 139, 139, 140,
+ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
+ 141, 141, 142, 142, 142, 142, 142, 142, 142, 142,
+ 142, 142, 143, 143, 143, 143, 144, 145, 145, 145,
+ 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
+ 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
+ 145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
+ 145, 145, 145, 145, 145, 146, 146, 146, 146, 146,
+ 146, 146, 146, 146, 146, 146, 146, 146, 146, 146,
+ 147, 147, 147, 147, 147, 147, 148, 148, 148, 148,
+ 149, 149, 150, 150, 151, 152, 152, 153, 153, 154,
+ 155, 155, 155, 156, 156, 156, 157, 157, 158, 158,
+ 158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
+ 158, 159, 159, 159, 159, 159, 160, 160, 161, 161,
+ 161, 161, 161, 161, 161, 161, 162, 162, 162, 162,
+ 163, 163, 164, 164, 164, 164, 165, 166, 166, 167,
+ 167, 167, 168, 168, 168, 168, 169, 169, 169, 169,
+ 170, 171, 171
+};
+
+/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 2, 1, 0, 1, 3, 3, 3, 3,
+ 1, 1, 1, 1, 3, 1, 3, 3, 1, 3,
+ 1, 1, 1, 2, 1, 1, 1, 3, 3, 1,
+ 1, 1, 2, 3, 2, 2, 2, 2, 2, 2,
+ 3, 1, 3, 3, 1, 1, 1, 2, 1, 2,
+ 1, 0, 1, 1, 3, 3, 3, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 2, 2, 2, 2, 4,
+ 1, 1, 2, 1, 2, 1, 1, 1, 1, 2,
+ 2, 2, 2, 2, 2, 2, 4, 2, 2, 2,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 4, 6,
+ 3, 3, 3, 3, 3, 3, 3, 3, 2, 3,
+ 1, 1, 1, 1, 1, 1, 1, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 2, 2, 3, 1, 1, 3, 1,
+ 1, 1, 1, 1, 1, 1, 1, 2, 2, 3,
+ 1, 1, 3
+};
+
+/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
+ STATE-NUM when YYTABLE doesn't specify something else to do. Zero
+ means the default is an error. */
+static const yytype_uint8 yydefact[] =
+{
+ 4, 0, 51, 1, 0, 0, 0, 69, 70, 68,
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 83, 85, 84, 166, 110, 111, 0, 0,
+ 0, 0, 0, 0, 67, 160, 86, 87, 88, 89,
+ 113, 115, 116, 117, 90, 91, 100, 92, 93, 94,
+ 95, 96, 97, 99, 98, 101, 102, 103, 168, 169,
+ 170, 171, 174, 175, 172, 173, 176, 177, 178, 179,
+ 180, 181, 104, 189, 190, 191, 192, 193, 194, 195,
+ 24, 0, 25, 2, 51, 51, 5, 0, 31, 0,
+ 50, 44, 118, 0, 147, 146, 45, 46, 0, 48,
+ 0, 107, 108, 0, 120, 121, 122, 123, 137, 138,
+ 124, 139, 125, 0, 112, 114, 0, 0, 158, 10,
+ 11, 51, 51, 32, 0, 147, 146, 15, 21, 18,
+ 20, 22, 39, 12, 0, 0, 13, 53, 52, 62,
+ 66, 63, 64, 65, 36, 37, 105, 106, 0, 0,
+ 0, 58, 59, 60, 61, 34, 35, 38, 119, 0,
+ 141, 143, 145, 0, 0, 0, 0, 0, 0, 0,
+ 0, 140, 142, 144, 0, 0, 186, 0, 0, 0,
+ 47, 182, 200, 0, 0, 0, 49, 196, 162, 161,
+ 164, 165, 163, 0, 0, 0, 7, 51, 51, 6,
+ 146, 9, 8, 40, 159, 167, 0, 0, 0, 23,
+ 26, 30, 0, 29, 0, 0, 0, 0, 130, 131,
+ 127, 134, 128, 135, 136, 129, 33, 0, 156, 157,
+ 155, 154, 150, 151, 152, 153, 42, 43, 187, 0,
+ 183, 184, 201, 0, 197, 198, 109, 146, 17, 16,
+ 19, 14, 0, 0, 57, 55, 56, 54, 0, 148,
+ 0, 185, 0, 199, 0, 27, 28, 132, 133, 126,
+ 0, 188, 202, 149
+};
+
+/* YYDEFGOTO[NTERM-NUM]. */
+static const yytype_int16 yydefgoto[] =
+{
+ -1, 1, 2, 124, 121, 122, 209, 133, 134, 116,
+ 211, 212, 86, 87, 88, 89, 155, 156, 157, 117,
+ 91, 92, 158, 220, 269, 222, 225, 110, 112, 174,
+ 175, 93, 94, 193, 95, 96, 97, 98, 180, 181,
+ 239, 99, 100, 186, 187, 243
+};
+
+/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
+ STATE-NUM. */
+#define YYPACT_NINF -198
+static const yytype_int16 yypact[] =
+{
+ -198, 19, 216, -198, 1, 40, 61, -198, -198, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -198, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -27, 54,
+ 81, 82, -13, 58, -198, -198, -198, -198, -198, -198,
+ -24, -24, -198, -198, -198, -198, -198, -198, -198, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -198, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -198, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -198, -198,
+ -198, 530, -198, -54, 426, 426, -198, 151, -198, 618,
+ 13, -198, -198, 525, -198, -198, -198, -198, 52, -198,
+ 102, -198, -198, -90, -198, -198, -198, -198, -198, -198,
+ -198, -198, -198, -24, -198, -198, 530, -89, -198, -198,
+ -198, 321, 321, -198, -60, 12, 17, -198, -198, -4,
+ 33, -198, -198, -198, 151, 151, -198, -29, -6, -198,
+ -198, -198, -198, -198, -198, -198, -198, -198, -12, 67,
+ -11, -198, -198, -198, -198, 170, -198, -198, -198, 530,
+ -198, -198, -198, 530, 530, 530, 530, 530, 530, 530,
+ 530, -198, -198, -198, 530, 530, -198, 114, 115, 118,
+ -198, -198, -198, 122, 123, 128, -198, -198, -198, -198,
+ -198, -198, -198, 129, 17, -44, -198, 321, 321, -198,
+ 16, -198, -198, -198, -198, -198, 110, 133, 134, -198,
+ -198, 60, -54, 17, 172, 181, 183, 185, -198, -198,
+ 143, -198, -198, -198, -198, -198, -198, -51, 68, 68,
+ 78, 99, -7, -7, -198, -198, -44, -44, -198, -34,
+ -198, -198, -198, -5, -198, -198, -198, -52, -198, -198,
+ -198, -198, 151, 151, -198, -198, -198, -198, -9, -198,
+ 161, -198, 114, -198, 122, -198, -198, -198, -198, -198,
+ 74, -198, -198, -198
+};
+
+/* YYPGOTO[NTERM-NUM]. */
+static const yytype_int16 yypgoto[] =
+{
+ -198, -198, -198, 197, 8, -197, -86, -121, 5, -2,
+ -198, -198, -81, -198, -198, -198, -198, 45, -198, 7,
+ -198, -198, -198, -198, -198, -198, -198, -198, -198, -72,
+ -47, -22, -83, -198, -35, -198, -198, -198, -198, -169,
+ -198, -198, -198, -198, -163, -198
+};
+
+/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
+ positive, shift that token. If negative, reduce the rule which
+ number is the opposite. If zero, do what YYDEFACT says.
+ If YYTABLE_NINF, syntax error. */
+#define YYTABLE_NINF -42
+static const yytype_int16 yytable[] =
+{
+ 85, 132, 125, 123, 206, 114, 115, 84, 238, 90,
+ 163, 164, 25, -41, 210, 253, -13, 163, 164, 3,
+ 242, 188, 189, 108, 218, 223, 178, 267, 184, 104,
+ 190, 191, 192, 125, 159, 196, 201, 101, 113, 113,
+ 199, 202, 262, 109, 219, 224, 264, 268, 119, 120,
+ 126, 179, 136, 185, 119, 120, -29, -29, 203, 118,
+ 165, 166, 167, 168, 169, 170, 205, 165, 166, 167,
+ 168, 169, 170, 259, 260, 120, 102, 210, 194, 214,
+ 215, 126, 85, 85, 261, 135, 200, 200, 176, 84,
+ 84, 90, 90, 271, 195, 82, 177, 103, 183, 136,
+ 213, 272, 216, 217, 120, 160, 161, 162, 169, 170,
+ 105, 113, 207, 263, 111, 125, 123, 106, 107, 198,
+ 198, -41, -41, 221, -13, -13, 197, 197, 90, 90,
+ 204, -41, 135, 113, -13, 205, 159, 227, 182, 163,
+ 164, 228, 229, 230, 231, 232, 233, 234, 235, 208,
+ 176, 240, 236, 237, 241, 160, 161, 162, 182, 244,
+ 163, 164, 200, 247, 245, 246, 265, 266, 248, 249,
+ 250, 82, 171, 172, 173, 139, 254, 141, 251, 142,
+ 143, 167, 168, 169, 170, 255, 256, 25, 257, 258,
+ 166, 167, 168, 169, 170, 198, 85, 270, 273, 83,
+ 226, 0, 197, 197, 90, 90, 0, 127, 128, 129,
+ 130, 131, 167, 168, 169, 170, -3, 136, 136, 0,
+ 252, 82, 171, 172, 173, 0, 0, 4, 5, 0,
+ 0, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 135, 135, 25, 26, 27, 28, 29, 30, 31, 32,
+ 33, 80, 0, 0, 0, 0, 0, 0, 34, 0,
+ 82, 0, 0, 0, 0, 0, 0, 0, 0, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
+ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ 76, 77, 78, 79, 0, 0, 80, 0, 0, 0,
+ 81, 0, 4, 5, 0, 82, 6, 7, 8, 9,
+ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
+ 20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
+ 28, 29, 30, 31, 32, 33, 0, 0, 0, 0,
+ 0, 0, 0, 34, 0, 0, 0, 127, 128, 129,
+ 130, 131, 0, 0, 35, 36, 37, 38, 39, 40,
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 0,
+ 0, 80, 0, 0, 0, 81, 0, 4, 5, 0,
+ 82, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 0, 0, 25, 26, 27, 28, 29, 30, 31, 32,
+ 33, 0, 0, 0, 0, 0, 0, 0, 34, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
+ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ 76, 77, 78, 79, 0, 0, 80, 0, 0, 0,
+ 81, 0, 0, 0, 0, 82, 7, 8, 9, 10,
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
+ 21, 22, 23, 24, 0, 0, 25, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 160, 161,
+ 162, 0, 34, 0, 0, 0, 163, 164, 0, 0,
+ 0, 0, 0, 35, 36, 37, 38, 39, 0, 0,
+ 0, 0, 44, 45, 46, 47, 48, 49, 50, 51,
+ 52, 53, 54, 55, 56, 57, 0, 0, 0, 0,
+ 0, 137, 138, 139, 140, 141, 0, 142, 143, 0,
+ 72, 144, 145, 0, 0, 0, 165, 166, 167, 168,
+ 169, 170, 0, 0, 81, 171, 172, 173, 0, 82,
+ 0, 0, 146, 147, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 148, 149, 150, 151, 152, 153, 154
+};
+
+static const yytype_int16 yycheck[] =
+{
+ 2, 87, 85, 84, 8, 40, 41, 2, 177, 2,
+ 61, 62, 36, 0, 135, 212, 0, 61, 62, 0,
+ 183, 111, 112, 36, 36, 36, 98, 36, 100, 56,
+ 120, 121, 122, 116, 123, 121, 122, 36, 40, 41,
+ 121, 122, 239, 56, 56, 56, 243, 56, 108, 109,
+ 85, 98, 87, 100, 108, 109, 108, 109, 118, 81,
+ 111, 112, 113, 114, 115, 116, 118, 111, 112, 113,
+ 114, 115, 116, 124, 125, 109, 36, 198, 113, 108,
+ 109, 116, 84, 85, 118, 87, 121, 122, 36, 84,
+ 85, 84, 85, 262, 116, 119, 98, 36, 100, 134,
+ 135, 264, 108, 109, 109, 53, 54, 55, 115, 116,
+ 56, 113, 116, 118, 56, 198, 197, 36, 36, 121,
+ 122, 108, 109, 56, 108, 109, 121, 122, 121, 122,
+ 118, 118, 134, 135, 118, 118, 123, 159, 36, 61,
+ 62, 163, 164, 165, 166, 167, 168, 169, 170, 116,
+ 36, 36, 174, 175, 36, 53, 54, 55, 36, 36,
+ 61, 62, 197, 198, 36, 36, 252, 253, 58, 36,
+ 36, 119, 120, 121, 122, 5, 4, 7, 118, 9,
+ 10, 113, 114, 115, 116, 4, 3, 36, 3, 46,
+ 112, 113, 114, 115, 116, 197, 198, 36, 124, 2,
+ 155, -1, 197, 198, 197, 198, -1, 56, 57, 58,
+ 59, 60, 113, 114, 115, 116, 0, 252, 253, -1,
+ 212, 119, 120, 121, 122, -1, -1, 11, 12, -1,
+ -1, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
+ 252, 253, 36, 37, 38, 39, 40, 41, 42, 43,
+ 44, 110, -1, -1, -1, -1, -1, -1, 52, -1,
+ 119, -1, -1, -1, -1, -1, -1, -1, -1, 63,
+ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
+ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
+ 94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
+ 104, 105, 106, 107, -1, -1, 110, -1, -1, -1,
+ 114, -1, 11, 12, -1, 119, 15, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
+ 29, 30, 31, 32, 33, -1, -1, 36, 37, 38,
+ 39, 40, 41, 42, 43, 44, -1, -1, -1, -1,
+ -1, -1, -1, 52, -1, -1, -1, 56, 57, 58,
+ 59, 60, -1, -1, 63, 64, 65, 66, 67, 68,
+ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
+ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
+ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
+ 99, 100, 101, 102, 103, 104, 105, 106, 107, -1,
+ -1, 110, -1, -1, -1, 114, -1, 11, 12, -1,
+ 119, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
+ -1, -1, 36, 37, 38, 39, 40, 41, 42, 43,
+ 44, -1, -1, -1, -1, -1, -1, -1, 52, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 63,
+ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
+ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
+ 94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
+ 104, 105, 106, 107, -1, -1, 110, -1, -1, -1,
+ 114, -1, -1, -1, -1, 119, 16, 17, 18, 19,
+ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
+ 30, 31, 32, 33, -1, -1, 36, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 53, 54,
+ 55, -1, 52, -1, -1, -1, 61, 62, -1, -1,
+ -1, -1, -1, 63, 64, 65, 66, 67, -1, -1,
+ -1, -1, 72, 73, 74, 75, 76, 77, 78, 79,
+ 80, 81, 82, 83, 84, 85, -1, -1, -1, -1,
+ -1, 3, 4, 5, 6, 7, -1, 9, 10, -1,
+ 100, 13, 14, -1, -1, -1, 111, 112, 113, 114,
+ 115, 116, -1, -1, 114, 120, 121, 122, -1, 119,
+ -1, -1, 34, 35, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 45, 46, 47, 48, 49, 50, 51
+};
+
+/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
+ symbol of state STATE-NUM. */
+static const yytype_uint8 yystos[] =
+{
+ 0, 127, 128, 0, 11, 12, 15, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
+ 29, 30, 31, 32, 33, 36, 37, 38, 39, 40,
+ 41, 42, 43, 44, 52, 63, 64, 65, 66, 67,
+ 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
+ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
+ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
+ 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
+ 110, 114, 119, 129, 134, 135, 138, 139, 140, 141,
+ 145, 146, 147, 157, 158, 160, 161, 162, 163, 167,
+ 168, 36, 36, 36, 56, 56, 36, 36, 36, 56,
+ 153, 56, 154, 135, 160, 160, 135, 145, 157, 108,
+ 109, 130, 131, 138, 129, 158, 160, 56, 57, 58,
+ 59, 60, 132, 133, 134, 135, 160, 3, 4, 5,
+ 6, 7, 9, 10, 13, 14, 34, 35, 45, 46,
+ 47, 48, 49, 50, 51, 142, 143, 144, 148, 123,
+ 53, 54, 55, 61, 62, 111, 112, 113, 114, 115,
+ 116, 120, 121, 122, 155, 156, 36, 135, 155, 156,
+ 164, 165, 36, 135, 155, 156, 169, 170, 111, 112,
+ 120, 121, 122, 159, 160, 157, 132, 134, 135, 138,
+ 160, 132, 138, 118, 118, 118, 8, 116, 116, 132,
+ 133, 136, 137, 160, 108, 109, 108, 109, 36, 56,
+ 149, 56, 151, 36, 56, 152, 143, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 165, 166,
+ 36, 36, 170, 171, 36, 36, 36, 160, 58, 36,
+ 36, 118, 130, 131, 4, 4, 3, 3, 46, 124,
+ 125, 118, 131, 118, 131, 132, 132, 36, 56, 150,
+ 36, 165, 170, 124
+};
+
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY (-2)
+#define YYEOF 0
+
+#define YYACCEPT goto yyacceptlab
+#define YYABORT goto yyabortlab
+#define YYERROR goto yyerrorlab
+
+
+/* Like YYERROR except do call yyerror. This remains here temporarily
+ to ease the transition to the new meaning of YYERROR, for GCC.
+ Once GCC version 2 has supplanted version 1, this can go. */
+
+#define YYFAIL goto yyerrlab
+
+#define YYRECOVERING() (!!yyerrstatus)
+
+#define YYBACKUP(Token, Value) \
+do \
+ if (yychar == YYEMPTY && yylen == 1) \
+ { \
+ yychar = (Token); \
+ yylval = (Value); \
+ yytoken = YYTRANSLATE (yychar); \
+ YYPOPSTACK (1); \
+ goto yybackup; \
+ } \
+ else \
+ { \
+ yyerror (YY_("syntax error: cannot back up")); \
+ YYERROR; \
+ } \
+while (YYID (0))
+
+
+#define YYTERROR 1
+#define YYERRCODE 256
+
+
+/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
+ If N is 0, then set CURRENT to the empty location which ends
+ the previous symbol: RHS[0] (always defined). */
+
+#define YYRHSLOC(Rhs, K) ((Rhs)[K])
+#ifndef YYLLOC_DEFAULT
+# define YYLLOC_DEFAULT(Current, Rhs, N) \
+ do \
+ if (YYID (N)) \
+ { \
+ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
+ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
+ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
+ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
+ } \
+ else \
+ { \
+ (Current).first_line = (Current).last_line = \
+ YYRHSLOC (Rhs, 0).last_line; \
+ (Current).first_column = (Current).last_column = \
+ YYRHSLOC (Rhs, 0).last_column; \
+ } \
+ while (YYID (0))
+#endif
+
+
+/* YY_LOCATION_PRINT -- Print the location on the stream.
+ This macro was not mandated originally: define only if we know
+ we won't break user code: when these are the locations we know. */
+
+#ifndef YY_LOCATION_PRINT
+# if YYLTYPE_IS_TRIVIAL
+# define YY_LOCATION_PRINT(File, Loc) \
+ fprintf (File, "%d.%d-%d.%d", \
+ (Loc).first_line, (Loc).first_column, \
+ (Loc).last_line, (Loc).last_column)
+# else
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+# endif
+#endif
+
+
+/* YYLEX -- calling `yylex' with the right arguments. */
+
+#ifdef YYLEX_PARAM
+# define YYLEX yylex (YYLEX_PARAM)
+#else
+# define YYLEX yylex ()
+#endif
+
+/* Enable debugging if requested. */
+#if YYDEBUG
+
+# ifndef YYFPRINTF
+# include /* INFRINGES ON USER NAME SPACE */
+# define YYFPRINTF fprintf
+# endif
+
+# define YYDPRINTF(Args) \
+do { \
+ if (yydebug) \
+ YYFPRINTF Args; \
+} while (YYID (0))
+
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+do { \
+ if (yydebug) \
+ { \
+ YYFPRINTF (stderr, "%s ", Title); \
+ yy_symbol_print (stderr, \
+ Type, Value); \
+ YYFPRINTF (stderr, "\n"); \
+ } \
+} while (YYID (0))
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_value_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (!yyvaluep)
+ return;
+# ifdef YYPRINT
+ if (yytype < YYNTOKENS)
+ YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
+# else
+ YYUSE (yyoutput);
+# endif
+ switch (yytype)
+ {
+ default:
+ break;
+ }
+}
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (yytype < YYNTOKENS)
+ YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
+ else
+ YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+
+ yy_symbol_value_print (yyoutput, yytype, yyvaluep);
+ YYFPRINTF (yyoutput, ")");
+}
+
+/*------------------------------------------------------------------.
+| yy_stack_print -- Print the state stack from its BOTTOM up to its |
+| TOP (included). |
+`------------------------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+#else
+static void
+yy_stack_print (yybottom, yytop)
+ yytype_int16 *yybottom;
+ yytype_int16 *yytop;
+#endif
+{
+ YYFPRINTF (stderr, "Stack now");
+ for (; yybottom <= yytop; yybottom++)
+ {
+ int yybot = *yybottom;
+ YYFPRINTF (stderr, " %d", yybot);
+ }
+ YYFPRINTF (stderr, "\n");
+}
+
+# define YY_STACK_PRINT(Bottom, Top) \
+do { \
+ if (yydebug) \
+ yy_stack_print ((Bottom), (Top)); \
+} while (YYID (0))
+
+
+/*------------------------------------------------.
+| Report that the YYRULE is going to be reduced. |
+`------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
+#else
+static void
+yy_reduce_print (yyvsp, yyrule)
+ YYSTYPE *yyvsp;
+ int yyrule;
+#endif
+{
+ int yynrhs = yyr2[yyrule];
+ int yyi;
+ unsigned long int yylno = yyrline[yyrule];
+ YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ yyrule - 1, yylno);
+ /* The symbols being reduced. */
+ for (yyi = 0; yyi < yynrhs; yyi++)
+ {
+ YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ );
+ YYFPRINTF (stderr, "\n");
+ }
+}
+
+# define YY_REDUCE_PRINT(Rule) \
+do { \
+ if (yydebug) \
+ yy_reduce_print (yyvsp, Rule); \
+} while (YYID (0))
+
+/* Nonzero means print parse trace. It is left uninitialized so that
+ multiple parsers can coexist. */
+int yydebug;
+#else /* !YYDEBUG */
+# define YYDPRINTF(Args)
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
+# define YY_STACK_PRINT(Bottom, Top)
+# define YY_REDUCE_PRINT(Rule)
+#endif /* !YYDEBUG */
+
+
+/* YYINITDEPTH -- initial size of the parser's stacks. */
+#ifndef YYINITDEPTH
+# define YYINITDEPTH 200
+#endif
+
+/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
+ if the built-in stack extension method is used).
+
+ Do not make this value too large; the results are undefined if
+ YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
+ evaluated with infinite-precision integer arithmetic. */
+
+#ifndef YYMAXDEPTH
+# define YYMAXDEPTH 10000
+#endif
+
+
+
+#if YYERROR_VERBOSE
+
+# ifndef yystrlen
+# if defined __GLIBC__ && defined _STRING_H
+# define yystrlen strlen
+# else
+/* Return the length of YYSTR. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static YYSIZE_T
+yystrlen (const char *yystr)
+#else
+static YYSIZE_T
+yystrlen (yystr)
+ const char *yystr;
+#endif
+{
+ YYSIZE_T yylen;
+ for (yylen = 0; yystr[yylen]; yylen++)
+ continue;
+ return yylen;
+}
+# endif
+# endif
+
+# ifndef yystpcpy
+# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
+# define yystpcpy stpcpy
+# else
+/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
+ YYDEST. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static char *
+yystpcpy (char *yydest, const char *yysrc)
+#else
+static char *
+yystpcpy (yydest, yysrc)
+ char *yydest;
+ const char *yysrc;
+#endif
+{
+ char *yyd = yydest;
+ const char *yys = yysrc;
+
+ while ((*yyd++ = *yys++) != '\0')
+ continue;
+
+ return yyd - 1;
+}
+# endif
+# endif
+
+# ifndef yytnamerr
+/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
+ quotes and backslashes, so that it's suitable for yyerror. The
+ heuristic is that double-quoting is unnecessary unless the string
+ contains an apostrophe, a comma, or backslash (other than
+ backslash-backslash). YYSTR is taken from yytname. If YYRES is
+ null, do not copy; instead, return the length of what the result
+ would have been. */
+static YYSIZE_T
+yytnamerr (char *yyres, const char *yystr)
+{
+ if (*yystr == '"')
+ {
+ YYSIZE_T yyn = 0;
+ char const *yyp = yystr;
+
+ for (;;)
+ switch (*++yyp)
+ {
+ case '\'':
+ case ',':
+ goto do_not_strip_quotes;
+
+ case '\\':
+ if (*++yyp != '\\')
+ goto do_not_strip_quotes;
+ /* Fall through. */
+ default:
+ if (yyres)
+ yyres[yyn] = *yyp;
+ yyn++;
+ break;
+
+ case '"':
+ if (yyres)
+ yyres[yyn] = '\0';
+ return yyn;
+ }
+ do_not_strip_quotes: ;
+ }
+
+ if (! yyres)
+ return yystrlen (yystr);
+
+ return yystpcpy (yyres, yystr) - yyres;
+}
+# endif
+
+/* Copy into YYRESULT an error message about the unexpected token
+ YYCHAR while in state YYSTATE. Return the number of bytes copied,
+ including the terminating null byte. If YYRESULT is null, do not
+ copy anything; just return the number of bytes that would be
+ copied. As a special case, return 0 if an ordinary "syntax error"
+ message will do. Return YYSIZE_MAXIMUM if overflow occurs during
+ size calculation. */
+static YYSIZE_T
+yysyntax_error (char *yyresult, int yystate, int yychar)
+{
+ int yyn = yypact[yystate];
+
+ if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
+ return 0;
+ else
+ {
+ int yytype = YYTRANSLATE (yychar);
+ YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
+ YYSIZE_T yysize = yysize0;
+ YYSIZE_T yysize1;
+ int yysize_overflow = 0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ int yyx;
+
+# if 0
+ /* This is so xgettext sees the translatable formats that are
+ constructed on the fly. */
+ YY_("syntax error, unexpected %s");
+ YY_("syntax error, unexpected %s, expecting %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
+# endif
+ char *yyfmt;
+ char const *yyf;
+ static char const yyunexpected[] = "syntax error, unexpected %s";
+ static char const yyexpecting[] = ", expecting %s";
+ static char const yyor[] = " or %s";
+ char yyformat[sizeof yyunexpected
+ + sizeof yyexpecting - 1
+ + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
+ * (sizeof yyor - 1))];
+ char const *yyprefix = yyexpecting;
+
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yycount = 1;
+
+ yyarg[0] = yytname[yytype];
+ yyfmt = yystpcpy (yyformat, yyunexpected);
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ yyformat[sizeof yyunexpected - 1] = '\0';
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ yysize1 = yysize + yytnamerr (0, yytname[yyx]);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
+ yyfmt = yystpcpy (yyfmt, yyprefix);
+ yyprefix = yyor;
+ }
+
+ yyf = YY_(yyformat);
+ yysize1 = yysize + yystrlen (yyf);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
+
+ if (yysize_overflow)
+ return YYSIZE_MAXIMUM;
+
+ if (yyresult)
+ {
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ char *yyp = yyresult;
+ int yyi = 0;
+ while ((*yyp = *yyf) != '\0')
+ {
+ if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyf += 2;
+ }
+ else
+ {
+ yyp++;
+ yyf++;
+ }
+ }
+ }
+ return yysize;
+ }
+}
+#endif /* YYERROR_VERBOSE */
+
+
+/*-----------------------------------------------.
+| Release the memory associated to this symbol. |
+`-----------------------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
+#else
+static void
+yydestruct (yymsg, yytype, yyvaluep)
+ const char *yymsg;
+ int yytype;
+ YYSTYPE *yyvaluep;
+#endif
+{
+ YYUSE (yyvaluep);
+
+ if (!yymsg)
+ yymsg = "Deleting";
+ YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+
+ switch (yytype)
+ {
+
+ default:
+ break;
+ }
+}
+
+/* Prevent warnings from -Wmissing-prototypes. */
+#ifdef YYPARSE_PARAM
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void *YYPARSE_PARAM);
+#else
+int yyparse ();
+#endif
+#else /* ! YYPARSE_PARAM */
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void);
+#else
+int yyparse ();
+#endif
+#endif /* ! YYPARSE_PARAM */
+
+
+/* The lookahead symbol. */
+int yychar;
+
+/* The semantic value of the lookahead symbol. */
+YYSTYPE yylval;
+
+/* Number of syntax errors so far. */
+int yynerrs;
+
+
+
+/*-------------------------.
+| yyparse or yypush_parse. |
+`-------------------------*/
+
+#ifdef YYPARSE_PARAM
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void *YYPARSE_PARAM)
+#else
+int
+yyparse (YYPARSE_PARAM)
+ void *YYPARSE_PARAM;
+#endif
+#else /* ! YYPARSE_PARAM */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void)
+#else
+int
+yyparse ()
+
+#endif
+#endif
+{
+
+
+ int yystate;
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
+
+ /* The stacks and their tools:
+ `yyss': related to states.
+ `yyvs': related to semantic values.
+
+ Refer to the stacks thru separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
+
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss;
+ yytype_int16 *yyssp;
+
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs;
+ YYSTYPE *yyvsp;
+
+ YYSIZE_T yystacksize;
+
+ int yyn;
+ int yyresult;
+ /* Lookahead token as an internal (translated) token number. */
+ int yytoken;
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
+
+#if YYERROR_VERBOSE
+ /* Buffer for error messages, and its allocated size. */
+ char yymsgbuf[128];
+ char *yymsg = yymsgbuf;
+ YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
+#endif
+
+#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
+
+ /* The number of symbols on the RHS of the reduced rule.
+ Keep to zero when no symbol should be popped. */
+ int yylen = 0;
+
+ yytoken = 0;
+ yyss = yyssa;
+ yyvs = yyvsa;
+ yystacksize = YYINITDEPTH;
+
+ YYDPRINTF ((stderr, "Starting parse\n"));
+
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+
+ /* Initialize stack pointers.
+ Waste one element of value and location stack
+ so that they stay on the same level as the state stack.
+ The wasted elements are never initialized. */
+ yyssp = yyss;
+ yyvsp = yyvs;
+
+ goto yysetstate;
+
+/*------------------------------------------------------------.
+| yynewstate -- Push a new state, which is found in yystate. |
+`------------------------------------------------------------*/
+ yynewstate:
+ /* In all cases, when you get here, the value and location stacks
+ have just been pushed. So pushing a state here evens the stacks. */
+ yyssp++;
+
+ yysetstate:
+ *yyssp = yystate;
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ {
+ /* Get the current used size of the three stacks, in elements. */
+ YYSIZE_T yysize = yyssp - yyss + 1;
+
+#ifdef yyoverflow
+ {
+ /* Give user a chance to reallocate the stack. Use copies of
+ these so that the &'s don't force the real ones into
+ memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ yytype_int16 *yyss1 = yyss;
+
+ /* Each stack pointer address is followed by the size of the
+ data in use in that stack, in bytes. This used to be a
+ conditional around just the two extra args, but that might
+ be undefined if yyoverflow is a macro. */
+ yyoverflow (YY_("memory exhausted"),
+ &yyss1, yysize * sizeof (*yyssp),
+ &yyvs1, yysize * sizeof (*yyvsp),
+ &yystacksize);
+
+ yyss = yyss1;
+ yyvs = yyvs1;
+ }
+#else /* no yyoverflow */
+# ifndef YYSTACK_RELOCATE
+ goto yyexhaustedlab;
+# else
+ /* Extend the stack our own way. */
+ if (YYMAXDEPTH <= yystacksize)
+ goto yyexhaustedlab;
+ yystacksize *= 2;
+ if (YYMAXDEPTH < yystacksize)
+ yystacksize = YYMAXDEPTH;
+
+ {
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+# undef YYSTACK_RELOCATE
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
+ }
+# endif
+#endif /* no yyoverflow */
+
+ yyssp = yyss + yysize - 1;
+ yyvsp = yyvs + yysize - 1;
+
+ YYDPRINTF ((stderr, "Stack size increased to %lu\n",
+ (unsigned long int) yystacksize));
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ YYABORT;
+ }
+
+ YYDPRINTF ((stderr, "Entering state %d\n", yystate));
+
+ if (yystate == YYFINAL)
+ YYACCEPT;
+
+ goto yybackup;
+
+/*-----------.
+| yybackup. |
+`-----------*/
+yybackup:
+
+ /* Do appropriate processing given the current state. Read a
+ lookahead token if we need one and don't already have one. */
+
+ /* First try to decide what to do without reference to lookahead token. */
+ yyn = yypact[yystate];
+ if (yyn == YYPACT_NINF)
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ if (yychar == YYEMPTY)
+ {
+ YYDPRINTF ((stderr, "Reading a token: "));
+ yychar = YYLEX;
+ }
+
+ if (yychar <= YYEOF)
+ {
+ yychar = yytoken = YYEOF;
+ YYDPRINTF ((stderr, "Now at end of input.\n"));
+ }
+ else
+ {
+ yytoken = YYTRANSLATE (yychar);
+ YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
+ }
+
+ /* If the proper action on seeing token YYTOKEN is to reduce or to
+ detect an error, take that action. */
+ yyn += yytoken;
+ if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
+ goto yydefault;
+ yyn = yytable[yyn];
+ if (yyn <= 0)
+ {
+ if (yyn == 0 || yyn == YYTABLE_NINF)
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (yyerrstatus)
+ yyerrstatus--;
+
+ /* Shift the lookahead token. */
+ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
+
+ /* Discard the shifted token. */
+ yychar = YYEMPTY;
+
+ yystate = yyn;
+ *++yyvsp = yylval;
+
+ goto yynewstate;
+
+
+/*-----------------------------------------------------------.
+| yydefault -- do the default action for the current state. |
+`-----------------------------------------------------------*/
+yydefault:
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+ goto yyreduce;
+
+
+/*-----------------------------.
+| yyreduce -- Do a reduction. |
+`-----------------------------*/
+yyreduce:
+ /* yyn is the number of a rule to reduce with. */
+ yylen = yyr2[yyn];
+
+ /* If YYLEN is nonzero, implement the default value of the action:
+ `$$ = $1'.
+
+ Otherwise, the following line sets YYVAL to garbage.
+ This behavior is undocumented and Bison
+ users should not rely upon it. Assigning to YYVAL
+ unconditionally makes the parser a bit smaller, and it avoids a
+ GCC warning that YYVAL may be used uninitialized. */
+ yyval = yyvsp[1-yylen];
+
+
+ YY_REDUCE_PRINT (yyn);
+ switch (yyn)
+ {
+ case 2:
+
+/* Line 1455 of yacc.c */
+#line 315 "grammar.y"
+ {
+ finish_parse((yyvsp[(2) - (2)].blk).b);
+}
+ break;
+
+ case 4:
+
+/* Line 1455 of yacc.c */
+#line 320 "grammar.y"
+ { (yyval.blk).q = qerr; }
+ break;
+
+ case 6:
+
+/* Line 1455 of yacc.c */
+#line 323 "grammar.y"
+ { gen_and((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 7:
+
+/* Line 1455 of yacc.c */
+#line 324 "grammar.y"
+ { gen_and((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 8:
+
+/* Line 1455 of yacc.c */
+#line 325 "grammar.y"
+ { gen_or((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 9:
+
+/* Line 1455 of yacc.c */
+#line 326 "grammar.y"
+ { gen_or((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 10:
+
+/* Line 1455 of yacc.c */
+#line 328 "grammar.y"
+ { (yyval.blk) = (yyvsp[(0) - (1)].blk); }
+ break;
+
+ case 11:
+
+/* Line 1455 of yacc.c */
+#line 330 "grammar.y"
+ { (yyval.blk) = (yyvsp[(0) - (1)].blk); }
+ break;
+
+ case 13:
+
+/* Line 1455 of yacc.c */
+#line 333 "grammar.y"
+ { (yyval.blk).b = gen_ncode(NULL, (bpf_u_int32)(yyvsp[(1) - (1)].i),
+ (yyval.blk).q = (yyvsp[(0) - (1)].blk).q); }
+ break;
+
+ case 14:
+
+/* Line 1455 of yacc.c */
+#line 335 "grammar.y"
+ { (yyval.blk) = (yyvsp[(2) - (3)].blk); }
+ break;
+
+ case 15:
+
+/* Line 1455 of yacc.c */
+#line 337 "grammar.y"
+ { (yyval.blk).b = gen_scode((yyvsp[(1) - (1)].s), (yyval.blk).q = (yyvsp[(0) - (1)].blk).q); }
+ break;
+
+ case 16:
+
+/* Line 1455 of yacc.c */
+#line 338 "grammar.y"
+ { (yyval.blk).b = gen_mcode((yyvsp[(1) - (3)].s), NULL, (yyvsp[(3) - (3)].i),
+ (yyval.blk).q = (yyvsp[(0) - (3)].blk).q); }
+ break;
+
+ case 17:
+
+/* Line 1455 of yacc.c */
+#line 340 "grammar.y"
+ { (yyval.blk).b = gen_mcode((yyvsp[(1) - (3)].s), (yyvsp[(3) - (3)].s), 0,
+ (yyval.blk).q = (yyvsp[(0) - (3)].blk).q); }
+ break;
+
+ case 18:
+
+/* Line 1455 of yacc.c */
+#line 342 "grammar.y"
+ {
+ /* Decide how to parse HID based on proto */
+ (yyval.blk).q = (yyvsp[(0) - (1)].blk).q;
+ if ((yyval.blk).q.addr == Q_PORT)
+ bpf_error("'port' modifier applied to ip host");
+ else if ((yyval.blk).q.addr == Q_PORTRANGE)
+ bpf_error("'portrange' modifier applied to ip host");
+ else if ((yyval.blk).q.addr == Q_PROTO)
+ bpf_error("'proto' modifier applied to ip host");
+ else if ((yyval.blk).q.addr == Q_PROTOCHAIN)
+ bpf_error("'protochain' modifier applied to ip host");
+ (yyval.blk).b = gen_ncode((yyvsp[(1) - (1)].s), 0, (yyval.blk).q);
+ }
+ break;
+
+ case 19:
+
+/* Line 1455 of yacc.c */
+#line 355 "grammar.y"
+ {
+#ifdef INET6
+ (yyval.blk).b = gen_mcode6((yyvsp[(1) - (3)].s), NULL, (yyvsp[(3) - (3)].i),
+ (yyval.blk).q = (yyvsp[(0) - (3)].blk).q);
+#else
+ bpf_error("'ip6addr/prefixlen' not supported "
+ "in this configuration");
+#endif /*INET6*/
+ }
+ break;
+
+ case 20:
+
+/* Line 1455 of yacc.c */
+#line 364 "grammar.y"
+ {
+#ifdef INET6
+ (yyval.blk).b = gen_mcode6((yyvsp[(1) - (1)].s), 0, 128,
+ (yyval.blk).q = (yyvsp[(0) - (1)].blk).q);
+#else
+ bpf_error("'ip6addr' not supported "
+ "in this configuration");
+#endif /*INET6*/
+ }
+ break;
+
+ case 21:
+
+/* Line 1455 of yacc.c */
+#line 373 "grammar.y"
+ {
+ (yyval.blk).b = gen_ecode((yyvsp[(1) - (1)].e), (yyval.blk).q = (yyvsp[(0) - (1)].blk).q);
+ /*
+ * $1 was allocated by "pcap_ether_aton()",
+ * so we must free it now that we're done
+ * with it.
+ */
+ free((yyvsp[(1) - (1)].e));
+ }
+ break;
+
+ case 22:
+
+/* Line 1455 of yacc.c */
+#line 382 "grammar.y"
+ {
+ (yyval.blk).b = gen_acode((yyvsp[(1) - (1)].e), (yyval.blk).q = (yyvsp[(0) - (1)].blk).q);
+ /*
+ * $1 was allocated by "pcap_ether_aton()",
+ * so we must free it now that we're done
+ * with it.
+ */
+ free((yyvsp[(1) - (1)].e));
+ }
+ break;
+
+ case 23:
+
+/* Line 1455 of yacc.c */
+#line 391 "grammar.y"
+ { gen_not((yyvsp[(2) - (2)].blk).b); (yyval.blk) = (yyvsp[(2) - (2)].blk); }
+ break;
+
+ case 24:
+
+/* Line 1455 of yacc.c */
+#line 393 "grammar.y"
+ { (yyval.blk) = (yyvsp[(0) - (1)].blk); }
+ break;
+
+ case 25:
+
+/* Line 1455 of yacc.c */
+#line 395 "grammar.y"
+ { (yyval.blk) = (yyvsp[(0) - (1)].blk); }
+ break;
+
+ case 27:
+
+/* Line 1455 of yacc.c */
+#line 398 "grammar.y"
+ { gen_and((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 28:
+
+/* Line 1455 of yacc.c */
+#line 399 "grammar.y"
+ { gen_or((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 29:
+
+/* Line 1455 of yacc.c */
+#line 401 "grammar.y"
+ { (yyval.blk).b = gen_ncode(NULL, (bpf_u_int32)(yyvsp[(1) - (1)].i),
+ (yyval.blk).q = (yyvsp[(0) - (1)].blk).q); }
+ break;
+
+ case 32:
+
+/* Line 1455 of yacc.c */
+#line 406 "grammar.y"
+ { gen_not((yyvsp[(2) - (2)].blk).b); (yyval.blk) = (yyvsp[(2) - (2)].blk); }
+ break;
+
+ case 33:
+
+/* Line 1455 of yacc.c */
+#line 408 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (3)].i), (yyvsp[(2) - (3)].i), (yyvsp[(3) - (3)].i)); }
+ break;
+
+ case 34:
+
+/* Line 1455 of yacc.c */
+#line 409 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (2)].i), (yyvsp[(2) - (2)].i), Q_DEFAULT); }
+ break;
+
+ case 35:
+
+/* Line 1455 of yacc.c */
+#line 410 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (2)].i), Q_DEFAULT, (yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 36:
+
+/* Line 1455 of yacc.c */
+#line 411 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (2)].i), Q_DEFAULT, Q_PROTO); }
+ break;
+
+ case 37:
+
+/* Line 1455 of yacc.c */
+#line 412 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (2)].i), Q_DEFAULT, Q_PROTOCHAIN); }
+ break;
+
+ case 38:
+
+/* Line 1455 of yacc.c */
+#line 413 "grammar.y"
+ { QSET((yyval.blk).q, (yyvsp[(1) - (2)].i), Q_DEFAULT, (yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 39:
+
+/* Line 1455 of yacc.c */
+#line 415 "grammar.y"
+ { (yyval.blk) = (yyvsp[(2) - (2)].blk); }
+ break;
+
+ case 40:
+
+/* Line 1455 of yacc.c */
+#line 416 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(2) - (3)].blk).b; (yyval.blk).q = (yyvsp[(1) - (3)].blk).q; }
+ break;
+
+ case 41:
+
+/* Line 1455 of yacc.c */
+#line 417 "grammar.y"
+ { (yyval.blk).b = gen_proto_abbrev((yyvsp[(1) - (1)].i)); (yyval.blk).q = qerr; }
+ break;
+
+ case 42:
+
+/* Line 1455 of yacc.c */
+#line 418 "grammar.y"
+ { (yyval.blk).b = gen_relation((yyvsp[(2) - (3)].i), (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a), 0);
+ (yyval.blk).q = qerr; }
+ break;
+
+ case 43:
+
+/* Line 1455 of yacc.c */
+#line 420 "grammar.y"
+ { (yyval.blk).b = gen_relation((yyvsp[(2) - (3)].i), (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a), 1);
+ (yyval.blk).q = qerr; }
+ break;
+
+ case 44:
+
+/* Line 1455 of yacc.c */
+#line 422 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(1) - (1)].rblk); (yyval.blk).q = qerr; }
+ break;
+
+ case 45:
+
+/* Line 1455 of yacc.c */
+#line 423 "grammar.y"
+ { (yyval.blk).b = gen_atmtype_abbrev((yyvsp[(1) - (1)].i)); (yyval.blk).q = qerr; }
+ break;
+
+ case 46:
+
+/* Line 1455 of yacc.c */
+#line 424 "grammar.y"
+ { (yyval.blk).b = gen_atmmulti_abbrev((yyvsp[(1) - (1)].i)); (yyval.blk).q = qerr; }
+ break;
+
+ case 47:
+
+/* Line 1455 of yacc.c */
+#line 425 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(2) - (2)].blk).b; (yyval.blk).q = qerr; }
+ break;
+
+ case 48:
+
+/* Line 1455 of yacc.c */
+#line 426 "grammar.y"
+ { (yyval.blk).b = gen_mtp2type_abbrev((yyvsp[(1) - (1)].i)); (yyval.blk).q = qerr; }
+ break;
+
+ case 49:
+
+/* Line 1455 of yacc.c */
+#line 427 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(2) - (2)].blk).b; (yyval.blk).q = qerr; }
+ break;
+
+ case 51:
+
+/* Line 1455 of yacc.c */
+#line 431 "grammar.y"
+ { (yyval.i) = Q_DEFAULT; }
+ break;
+
+ case 52:
+
+/* Line 1455 of yacc.c */
+#line 434 "grammar.y"
+ { (yyval.i) = Q_SRC; }
+ break;
+
+ case 53:
+
+/* Line 1455 of yacc.c */
+#line 435 "grammar.y"
+ { (yyval.i) = Q_DST; }
+ break;
+
+ case 54:
+
+/* Line 1455 of yacc.c */
+#line 436 "grammar.y"
+ { (yyval.i) = Q_OR; }
+ break;
+
+ case 55:
+
+/* Line 1455 of yacc.c */
+#line 437 "grammar.y"
+ { (yyval.i) = Q_OR; }
+ break;
+
+ case 56:
+
+/* Line 1455 of yacc.c */
+#line 438 "grammar.y"
+ { (yyval.i) = Q_AND; }
+ break;
+
+ case 57:
+
+/* Line 1455 of yacc.c */
+#line 439 "grammar.y"
+ { (yyval.i) = Q_AND; }
+ break;
+
+ case 58:
+
+/* Line 1455 of yacc.c */
+#line 440 "grammar.y"
+ { (yyval.i) = Q_ADDR1; }
+ break;
+
+ case 59:
+
+/* Line 1455 of yacc.c */
+#line 441 "grammar.y"
+ { (yyval.i) = Q_ADDR2; }
+ break;
+
+ case 60:
+
+/* Line 1455 of yacc.c */
+#line 442 "grammar.y"
+ { (yyval.i) = Q_ADDR3; }
+ break;
+
+ case 61:
+
+/* Line 1455 of yacc.c */
+#line 443 "grammar.y"
+ { (yyval.i) = Q_ADDR4; }
+ break;
+
+ case 62:
+
+/* Line 1455 of yacc.c */
+#line 446 "grammar.y"
+ { (yyval.i) = Q_HOST; }
+ break;
+
+ case 63:
+
+/* Line 1455 of yacc.c */
+#line 447 "grammar.y"
+ { (yyval.i) = Q_NET; }
+ break;
+
+ case 64:
+
+/* Line 1455 of yacc.c */
+#line 448 "grammar.y"
+ { (yyval.i) = Q_PORT; }
+ break;
+
+ case 65:
+
+/* Line 1455 of yacc.c */
+#line 449 "grammar.y"
+ { (yyval.i) = Q_PORTRANGE; }
+ break;
+
+ case 66:
+
+/* Line 1455 of yacc.c */
+#line 452 "grammar.y"
+ { (yyval.i) = Q_GATEWAY; }
+ break;
+
+ case 67:
+
+/* Line 1455 of yacc.c */
+#line 454 "grammar.y"
+ { (yyval.i) = Q_LINK; }
+ break;
+
+ case 68:
+
+/* Line 1455 of yacc.c */
+#line 455 "grammar.y"
+ { (yyval.i) = Q_IP; }
+ break;
+
+ case 69:
+
+/* Line 1455 of yacc.c */
+#line 456 "grammar.y"
+ { (yyval.i) = Q_ARP; }
+ break;
+
+ case 70:
+
+/* Line 1455 of yacc.c */
+#line 457 "grammar.y"
+ { (yyval.i) = Q_RARP; }
+ break;
+
+ case 71:
+
+/* Line 1455 of yacc.c */
+#line 458 "grammar.y"
+ { (yyval.i) = Q_SCTP; }
+ break;
+
+ case 72:
+
+/* Line 1455 of yacc.c */
+#line 459 "grammar.y"
+ { (yyval.i) = Q_TCP; }
+ break;
+
+ case 73:
+
+/* Line 1455 of yacc.c */
+#line 460 "grammar.y"
+ { (yyval.i) = Q_UDP; }
+ break;
+
+ case 74:
+
+/* Line 1455 of yacc.c */
+#line 461 "grammar.y"
+ { (yyval.i) = Q_ICMP; }
+ break;
+
+ case 75:
+
+/* Line 1455 of yacc.c */
+#line 462 "grammar.y"
+ { (yyval.i) = Q_IGMP; }
+ break;
+
+ case 76:
+
+/* Line 1455 of yacc.c */
+#line 463 "grammar.y"
+ { (yyval.i) = Q_IGRP; }
+ break;
+
+ case 77:
+
+/* Line 1455 of yacc.c */
+#line 464 "grammar.y"
+ { (yyval.i) = Q_PIM; }
+ break;
+
+ case 78:
+
+/* Line 1455 of yacc.c */
+#line 465 "grammar.y"
+ { (yyval.i) = Q_VRRP; }
+ break;
+
+ case 79:
+
+/* Line 1455 of yacc.c */
+#line 466 "grammar.y"
+ { (yyval.i) = Q_ATALK; }
+ break;
+
+ case 80:
+
+/* Line 1455 of yacc.c */
+#line 467 "grammar.y"
+ { (yyval.i) = Q_AARP; }
+ break;
+
+ case 81:
+
+/* Line 1455 of yacc.c */
+#line 468 "grammar.y"
+ { (yyval.i) = Q_DECNET; }
+ break;
+
+ case 82:
+
+/* Line 1455 of yacc.c */
+#line 469 "grammar.y"
+ { (yyval.i) = Q_LAT; }
+ break;
+
+ case 83:
+
+/* Line 1455 of yacc.c */
+#line 470 "grammar.y"
+ { (yyval.i) = Q_SCA; }
+ break;
+
+ case 84:
+
+/* Line 1455 of yacc.c */
+#line 471 "grammar.y"
+ { (yyval.i) = Q_MOPDL; }
+ break;
+
+ case 85:
+
+/* Line 1455 of yacc.c */
+#line 472 "grammar.y"
+ { (yyval.i) = Q_MOPRC; }
+ break;
+
+ case 86:
+
+/* Line 1455 of yacc.c */
+#line 473 "grammar.y"
+ { (yyval.i) = Q_IPV6; }
+ break;
+
+ case 87:
+
+/* Line 1455 of yacc.c */
+#line 474 "grammar.y"
+ { (yyval.i) = Q_ICMPV6; }
+ break;
+
+ case 88:
+
+/* Line 1455 of yacc.c */
+#line 475 "grammar.y"
+ { (yyval.i) = Q_AH; }
+ break;
+
+ case 89:
+
+/* Line 1455 of yacc.c */
+#line 476 "grammar.y"
+ { (yyval.i) = Q_ESP; }
+ break;
+
+ case 90:
+
+/* Line 1455 of yacc.c */
+#line 477 "grammar.y"
+ { (yyval.i) = Q_ISO; }
+ break;
+
+ case 91:
+
+/* Line 1455 of yacc.c */
+#line 478 "grammar.y"
+ { (yyval.i) = Q_ESIS; }
+ break;
+
+ case 92:
+
+/* Line 1455 of yacc.c */
+#line 479 "grammar.y"
+ { (yyval.i) = Q_ISIS; }
+ break;
+
+ case 93:
+
+/* Line 1455 of yacc.c */
+#line 480 "grammar.y"
+ { (yyval.i) = Q_ISIS_L1; }
+ break;
+
+ case 94:
+
+/* Line 1455 of yacc.c */
+#line 481 "grammar.y"
+ { (yyval.i) = Q_ISIS_L2; }
+ break;
+
+ case 95:
+
+/* Line 1455 of yacc.c */
+#line 482 "grammar.y"
+ { (yyval.i) = Q_ISIS_IIH; }
+ break;
+
+ case 96:
+
+/* Line 1455 of yacc.c */
+#line 483 "grammar.y"
+ { (yyval.i) = Q_ISIS_LSP; }
+ break;
+
+ case 97:
+
+/* Line 1455 of yacc.c */
+#line 484 "grammar.y"
+ { (yyval.i) = Q_ISIS_SNP; }
+ break;
+
+ case 98:
+
+/* Line 1455 of yacc.c */
+#line 485 "grammar.y"
+ { (yyval.i) = Q_ISIS_PSNP; }
+ break;
+
+ case 99:
+
+/* Line 1455 of yacc.c */
+#line 486 "grammar.y"
+ { (yyval.i) = Q_ISIS_CSNP; }
+ break;
+
+ case 100:
+
+/* Line 1455 of yacc.c */
+#line 487 "grammar.y"
+ { (yyval.i) = Q_CLNP; }
+ break;
+
+ case 101:
+
+/* Line 1455 of yacc.c */
+#line 488 "grammar.y"
+ { (yyval.i) = Q_STP; }
+ break;
+
+ case 102:
+
+/* Line 1455 of yacc.c */
+#line 489 "grammar.y"
+ { (yyval.i) = Q_IPX; }
+ break;
+
+ case 103:
+
+/* Line 1455 of yacc.c */
+#line 490 "grammar.y"
+ { (yyval.i) = Q_NETBEUI; }
+ break;
+
+ case 104:
+
+/* Line 1455 of yacc.c */
+#line 491 "grammar.y"
+ { (yyval.i) = Q_RADIO; }
+ break;
+
+ case 105:
+
+/* Line 1455 of yacc.c */
+#line 493 "grammar.y"
+ { (yyval.rblk) = gen_broadcast((yyvsp[(1) - (2)].i)); }
+ break;
+
+ case 106:
+
+/* Line 1455 of yacc.c */
+#line 494 "grammar.y"
+ { (yyval.rblk) = gen_multicast((yyvsp[(1) - (2)].i)); }
+ break;
+
+ case 107:
+
+/* Line 1455 of yacc.c */
+#line 495 "grammar.y"
+ { (yyval.rblk) = gen_less((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 108:
+
+/* Line 1455 of yacc.c */
+#line 496 "grammar.y"
+ { (yyval.rblk) = gen_greater((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 109:
+
+/* Line 1455 of yacc.c */
+#line 497 "grammar.y"
+ { (yyval.rblk) = gen_byteop((yyvsp[(3) - (4)].i), (yyvsp[(2) - (4)].i), (yyvsp[(4) - (4)].i)); }
+ break;
+
+ case 110:
+
+/* Line 1455 of yacc.c */
+#line 498 "grammar.y"
+ { (yyval.rblk) = gen_inbound(0); }
+ break;
+
+ case 111:
+
+/* Line 1455 of yacc.c */
+#line 499 "grammar.y"
+ { (yyval.rblk) = gen_inbound(1); }
+ break;
+
+ case 112:
+
+/* Line 1455 of yacc.c */
+#line 500 "grammar.y"
+ { (yyval.rblk) = gen_vlan((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 113:
+
+/* Line 1455 of yacc.c */
+#line 501 "grammar.y"
+ { (yyval.rblk) = gen_vlan(-1); }
+ break;
+
+ case 114:
+
+/* Line 1455 of yacc.c */
+#line 502 "grammar.y"
+ { (yyval.rblk) = gen_mpls((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 115:
+
+/* Line 1455 of yacc.c */
+#line 503 "grammar.y"
+ { (yyval.rblk) = gen_mpls(-1); }
+ break;
+
+ case 116:
+
+/* Line 1455 of yacc.c */
+#line 504 "grammar.y"
+ { (yyval.rblk) = gen_pppoed(); }
+ break;
+
+ case 117:
+
+/* Line 1455 of yacc.c */
+#line 505 "grammar.y"
+ { (yyval.rblk) = gen_pppoes(); }
+ break;
+
+ case 118:
+
+/* Line 1455 of yacc.c */
+#line 506 "grammar.y"
+ { (yyval.rblk) = (yyvsp[(1) - (1)].rblk); }
+ break;
+
+ case 119:
+
+/* Line 1455 of yacc.c */
+#line 507 "grammar.y"
+ { (yyval.rblk) = (yyvsp[(2) - (2)].rblk); }
+ break;
+
+ case 120:
+
+/* Line 1455 of yacc.c */
+#line 510 "grammar.y"
+ { (yyval.rblk) = gen_pf_ifname((yyvsp[(2) - (2)].s)); }
+ break;
+
+ case 121:
+
+/* Line 1455 of yacc.c */
+#line 511 "grammar.y"
+ { (yyval.rblk) = gen_pf_ruleset((yyvsp[(2) - (2)].s)); }
+ break;
+
+ case 122:
+
+/* Line 1455 of yacc.c */
+#line 512 "grammar.y"
+ { (yyval.rblk) = gen_pf_rnr((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 123:
+
+/* Line 1455 of yacc.c */
+#line 513 "grammar.y"
+ { (yyval.rblk) = gen_pf_srnr((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 124:
+
+/* Line 1455 of yacc.c */
+#line 514 "grammar.y"
+ { (yyval.rblk) = gen_pf_reason((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 125:
+
+/* Line 1455 of yacc.c */
+#line 515 "grammar.y"
+ { (yyval.rblk) = gen_pf_action((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 126:
+
+/* Line 1455 of yacc.c */
+#line 519 "grammar.y"
+ { (yyval.rblk) = gen_p80211_type((yyvsp[(2) - (4)].i) | (yyvsp[(4) - (4)].i),
+ IEEE80211_FC0_TYPE_MASK |
+ IEEE80211_FC0_SUBTYPE_MASK);
+ }
+ break;
+
+ case 127:
+
+/* Line 1455 of yacc.c */
+#line 523 "grammar.y"
+ { (yyval.rblk) = gen_p80211_type((yyvsp[(2) - (2)].i),
+ IEEE80211_FC0_TYPE_MASK);
+ }
+ break;
+
+ case 128:
+
+/* Line 1455 of yacc.c */
+#line 526 "grammar.y"
+ { (yyval.rblk) = gen_p80211_type((yyvsp[(2) - (2)].i),
+ IEEE80211_FC0_TYPE_MASK |
+ IEEE80211_FC0_SUBTYPE_MASK);
+ }
+ break;
+
+ case 129:
+
+/* Line 1455 of yacc.c */
+#line 530 "grammar.y"
+ { (yyval.rblk) = gen_p80211_fcdir((yyvsp[(2) - (2)].i)); }
+ break;
+
+ case 131:
+
+/* Line 1455 of yacc.c */
+#line 534 "grammar.y"
+ { (yyval.i) = str2tok((yyvsp[(1) - (1)].s), ieee80211_types);
+ if ((yyval.i) == -1)
+ bpf_error("unknown 802.11 type name");
+ }
+ break;
+
+ case 133:
+
+/* Line 1455 of yacc.c */
+#line 541 "grammar.y"
+ { const struct tok *types = NULL;
+ int i;
+ for (i = 0;; i++) {
+ if (ieee80211_type_subtypes[i].tok == NULL) {
+ /* Ran out of types */
+ bpf_error("unknown 802.11 type");
+ break;
+ }
+ if ((yyvsp[(-1) - (1)].i) == ieee80211_type_subtypes[i].type) {
+ types = ieee80211_type_subtypes[i].tok;
+ break;
+ }
+ }
+
+ (yyval.i) = str2tok((yyvsp[(1) - (1)].s), types);
+ if ((yyval.i) == -1)
+ bpf_error("unknown 802.11 subtype name");
+ }
+ break;
+
+ case 134:
+
+/* Line 1455 of yacc.c */
+#line 561 "grammar.y"
+ { int i;
+ for (i = 0;; i++) {
+ if (ieee80211_type_subtypes[i].tok == NULL) {
+ /* Ran out of types */
+ bpf_error("unknown 802.11 type name");
+ break;
+ }
+ (yyval.i) = str2tok((yyvsp[(1) - (1)].s), ieee80211_type_subtypes[i].tok);
+ if ((yyval.i) != -1) {
+ (yyval.i) |= ieee80211_type_subtypes[i].type;
+ break;
+ }
+ }
+ }
+ break;
+
+ case 136:
+
+/* Line 1455 of yacc.c */
+#line 578 "grammar.y"
+ { if (pcap_strcasecmp((yyvsp[(1) - (1)].s), "nods") == 0)
+ (yyval.i) = IEEE80211_FC1_DIR_NODS;
+ else if (pcap_strcasecmp((yyvsp[(1) - (1)].s), "tods") == 0)
+ (yyval.i) = IEEE80211_FC1_DIR_TODS;
+ else if (pcap_strcasecmp((yyvsp[(1) - (1)].s), "fromds") == 0)
+ (yyval.i) = IEEE80211_FC1_DIR_FROMDS;
+ else if (pcap_strcasecmp((yyvsp[(1) - (1)].s), "dstods") == 0)
+ (yyval.i) = IEEE80211_FC1_DIR_DSTODS;
+ else
+ bpf_error("unknown 802.11 direction");
+ }
+ break;
+
+ case 137:
+
+/* Line 1455 of yacc.c */
+#line 591 "grammar.y"
+ { (yyval.i) = (yyvsp[(1) - (1)].i); }
+ break;
+
+ case 138:
+
+/* Line 1455 of yacc.c */
+#line 592 "grammar.y"
+ { (yyval.i) = pfreason_to_num((yyvsp[(1) - (1)].s)); }
+ break;
+
+ case 139:
+
+/* Line 1455 of yacc.c */
+#line 595 "grammar.y"
+ { (yyval.i) = pfaction_to_num((yyvsp[(1) - (1)].s)); }
+ break;
+
+ case 140:
+
+/* Line 1455 of yacc.c */
+#line 598 "grammar.y"
+ { (yyval.i) = BPF_JGT; }
+ break;
+
+ case 141:
+
+/* Line 1455 of yacc.c */
+#line 599 "grammar.y"
+ { (yyval.i) = BPF_JGE; }
+ break;
+
+ case 142:
+
+/* Line 1455 of yacc.c */
+#line 600 "grammar.y"
+ { (yyval.i) = BPF_JEQ; }
+ break;
+
+ case 143:
+
+/* Line 1455 of yacc.c */
+#line 602 "grammar.y"
+ { (yyval.i) = BPF_JGT; }
+ break;
+
+ case 144:
+
+/* Line 1455 of yacc.c */
+#line 603 "grammar.y"
+ { (yyval.i) = BPF_JGE; }
+ break;
+
+ case 145:
+
+/* Line 1455 of yacc.c */
+#line 604 "grammar.y"
+ { (yyval.i) = BPF_JEQ; }
+ break;
+
+ case 146:
+
+/* Line 1455 of yacc.c */
+#line 606 "grammar.y"
+ { (yyval.a) = gen_loadi((yyvsp[(1) - (1)].i)); }
+ break;
+
+ case 148:
+
+/* Line 1455 of yacc.c */
+#line 609 "grammar.y"
+ { (yyval.a) = gen_load((yyvsp[(1) - (4)].i), (yyvsp[(3) - (4)].a), 1); }
+ break;
+
+ case 149:
+
+/* Line 1455 of yacc.c */
+#line 610 "grammar.y"
+ { (yyval.a) = gen_load((yyvsp[(1) - (6)].i), (yyvsp[(3) - (6)].a), (yyvsp[(5) - (6)].i)); }
+ break;
+
+ case 150:
+
+/* Line 1455 of yacc.c */
+#line 611 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_ADD, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 151:
+
+/* Line 1455 of yacc.c */
+#line 612 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_SUB, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 152:
+
+/* Line 1455 of yacc.c */
+#line 613 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_MUL, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 153:
+
+/* Line 1455 of yacc.c */
+#line 614 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_DIV, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 154:
+
+/* Line 1455 of yacc.c */
+#line 615 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_AND, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 155:
+
+/* Line 1455 of yacc.c */
+#line 616 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_OR, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 156:
+
+/* Line 1455 of yacc.c */
+#line 617 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_LSH, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 157:
+
+/* Line 1455 of yacc.c */
+#line 618 "grammar.y"
+ { (yyval.a) = gen_arth(BPF_RSH, (yyvsp[(1) - (3)].a), (yyvsp[(3) - (3)].a)); }
+ break;
+
+ case 158:
+
+/* Line 1455 of yacc.c */
+#line 619 "grammar.y"
+ { (yyval.a) = gen_neg((yyvsp[(2) - (2)].a)); }
+ break;
+
+ case 159:
+
+/* Line 1455 of yacc.c */
+#line 620 "grammar.y"
+ { (yyval.a) = (yyvsp[(2) - (3)].a); }
+ break;
+
+ case 160:
+
+/* Line 1455 of yacc.c */
+#line 621 "grammar.y"
+ { (yyval.a) = gen_loadlen(); }
+ break;
+
+ case 161:
+
+/* Line 1455 of yacc.c */
+#line 623 "grammar.y"
+ { (yyval.i) = '&'; }
+ break;
+
+ case 162:
+
+/* Line 1455 of yacc.c */
+#line 624 "grammar.y"
+ { (yyval.i) = '|'; }
+ break;
+
+ case 163:
+
+/* Line 1455 of yacc.c */
+#line 625 "grammar.y"
+ { (yyval.i) = '<'; }
+ break;
+
+ case 164:
+
+/* Line 1455 of yacc.c */
+#line 626 "grammar.y"
+ { (yyval.i) = '>'; }
+ break;
+
+ case 165:
+
+/* Line 1455 of yacc.c */
+#line 627 "grammar.y"
+ { (yyval.i) = '='; }
+ break;
+
+ case 167:
+
+/* Line 1455 of yacc.c */
+#line 630 "grammar.y"
+ { (yyval.i) = (yyvsp[(2) - (3)].i); }
+ break;
+
+ case 168:
+
+/* Line 1455 of yacc.c */
+#line 632 "grammar.y"
+ { (yyval.i) = A_LANE; }
+ break;
+
+ case 169:
+
+/* Line 1455 of yacc.c */
+#line 633 "grammar.y"
+ { (yyval.i) = A_LLC; }
+ break;
+
+ case 170:
+
+/* Line 1455 of yacc.c */
+#line 634 "grammar.y"
+ { (yyval.i) = A_METAC; }
+ break;
+
+ case 171:
+
+/* Line 1455 of yacc.c */
+#line 635 "grammar.y"
+ { (yyval.i) = A_BCC; }
+ break;
+
+ case 172:
+
+/* Line 1455 of yacc.c */
+#line 636 "grammar.y"
+ { (yyval.i) = A_OAMF4EC; }
+ break;
+
+ case 173:
+
+/* Line 1455 of yacc.c */
+#line 637 "grammar.y"
+ { (yyval.i) = A_OAMF4SC; }
+ break;
+
+ case 174:
+
+/* Line 1455 of yacc.c */
+#line 638 "grammar.y"
+ { (yyval.i) = A_SC; }
+ break;
+
+ case 175:
+
+/* Line 1455 of yacc.c */
+#line 639 "grammar.y"
+ { (yyval.i) = A_ILMIC; }
+ break;
+
+ case 176:
+
+/* Line 1455 of yacc.c */
+#line 641 "grammar.y"
+ { (yyval.i) = A_OAM; }
+ break;
+
+ case 177:
+
+/* Line 1455 of yacc.c */
+#line 642 "grammar.y"
+ { (yyval.i) = A_OAMF4; }
+ break;
+
+ case 178:
+
+/* Line 1455 of yacc.c */
+#line 643 "grammar.y"
+ { (yyval.i) = A_CONNECTMSG; }
+ break;
+
+ case 179:
+
+/* Line 1455 of yacc.c */
+#line 644 "grammar.y"
+ { (yyval.i) = A_METACONNECT; }
+ break;
+
+ case 180:
+
+/* Line 1455 of yacc.c */
+#line 647 "grammar.y"
+ { (yyval.blk).atmfieldtype = A_VPI; }
+ break;
+
+ case 181:
+
+/* Line 1455 of yacc.c */
+#line 648 "grammar.y"
+ { (yyval.blk).atmfieldtype = A_VCI; }
+ break;
+
+ case 183:
+
+/* Line 1455 of yacc.c */
+#line 651 "grammar.y"
+ { (yyval.blk).b = gen_atmfield_code((yyvsp[(0) - (2)].blk).atmfieldtype, (bpf_int32)(yyvsp[(2) - (2)].i), (bpf_u_int32)(yyvsp[(1) - (2)].i), 0); }
+ break;
+
+ case 184:
+
+/* Line 1455 of yacc.c */
+#line 652 "grammar.y"
+ { (yyval.blk).b = gen_atmfield_code((yyvsp[(0) - (2)].blk).atmfieldtype, (bpf_int32)(yyvsp[(2) - (2)].i), (bpf_u_int32)(yyvsp[(1) - (2)].i), 1); }
+ break;
+
+ case 185:
+
+/* Line 1455 of yacc.c */
+#line 653 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(2) - (3)].blk).b; (yyval.blk).q = qerr; }
+ break;
+
+ case 186:
+
+/* Line 1455 of yacc.c */
+#line 655 "grammar.y"
+ {
+ (yyval.blk).atmfieldtype = (yyvsp[(0) - (1)].blk).atmfieldtype;
+ if ((yyval.blk).atmfieldtype == A_VPI ||
+ (yyval.blk).atmfieldtype == A_VCI)
+ (yyval.blk).b = gen_atmfield_code((yyval.blk).atmfieldtype, (bpf_int32) (yyvsp[(1) - (1)].i), BPF_JEQ, 0);
+ }
+ break;
+
+ case 188:
+
+/* Line 1455 of yacc.c */
+#line 663 "grammar.y"
+ { gen_or((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+ case 189:
+
+/* Line 1455 of yacc.c */
+#line 666 "grammar.y"
+ { (yyval.i) = M_FISU; }
+ break;
+
+ case 190:
+
+/* Line 1455 of yacc.c */
+#line 667 "grammar.y"
+ { (yyval.i) = M_LSSU; }
+ break;
+
+ case 191:
+
+/* Line 1455 of yacc.c */
+#line 668 "grammar.y"
+ { (yyval.i) = M_MSU; }
+ break;
+
+ case 192:
+
+/* Line 1455 of yacc.c */
+#line 671 "grammar.y"
+ { (yyval.blk).mtp3fieldtype = M_SIO; }
+ break;
+
+ case 193:
+
+/* Line 1455 of yacc.c */
+#line 672 "grammar.y"
+ { (yyval.blk).mtp3fieldtype = M_OPC; }
+ break;
+
+ case 194:
+
+/* Line 1455 of yacc.c */
+#line 673 "grammar.y"
+ { (yyval.blk).mtp3fieldtype = M_DPC; }
+ break;
+
+ case 195:
+
+/* Line 1455 of yacc.c */
+#line 674 "grammar.y"
+ { (yyval.blk).mtp3fieldtype = M_SLS; }
+ break;
+
+ case 197:
+
+/* Line 1455 of yacc.c */
+#line 677 "grammar.y"
+ { (yyval.blk).b = gen_mtp3field_code((yyvsp[(0) - (2)].blk).mtp3fieldtype, (u_int)(yyvsp[(2) - (2)].i), (u_int)(yyvsp[(1) - (2)].i), 0); }
+ break;
+
+ case 198:
+
+/* Line 1455 of yacc.c */
+#line 678 "grammar.y"
+ { (yyval.blk).b = gen_mtp3field_code((yyvsp[(0) - (2)].blk).mtp3fieldtype, (u_int)(yyvsp[(2) - (2)].i), (u_int)(yyvsp[(1) - (2)].i), 1); }
+ break;
+
+ case 199:
+
+/* Line 1455 of yacc.c */
+#line 679 "grammar.y"
+ { (yyval.blk).b = (yyvsp[(2) - (3)].blk).b; (yyval.blk).q = qerr; }
+ break;
+
+ case 200:
+
+/* Line 1455 of yacc.c */
+#line 681 "grammar.y"
+ {
+ (yyval.blk).mtp3fieldtype = (yyvsp[(0) - (1)].blk).mtp3fieldtype;
+ if ((yyval.blk).mtp3fieldtype == M_SIO ||
+ (yyval.blk).mtp3fieldtype == M_OPC ||
+ (yyval.blk).mtp3fieldtype == M_DPC ||
+ (yyval.blk).mtp3fieldtype == M_SLS )
+ (yyval.blk).b = gen_mtp3field_code((yyval.blk).mtp3fieldtype, (u_int) (yyvsp[(1) - (1)].i), BPF_JEQ, 0);
+ }
+ break;
+
+ case 202:
+
+/* Line 1455 of yacc.c */
+#line 691 "grammar.y"
+ { gen_or((yyvsp[(1) - (3)].blk).b, (yyvsp[(3) - (3)].blk).b); (yyval.blk) = (yyvsp[(3) - (3)].blk); }
+ break;
+
+
+
+/* Line 1455 of yacc.c */
+#line 3590 "y.tab.c"
+ default: break;
+ }
+ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+
+ *++yyvsp = yyval;
+
+ /* Now `shift' the result of the reduction. Determine what state
+ that goes to, based on the state we popped back to and the rule
+ number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
+ if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTOKENS];
+
+ goto yynewstate;
+
+
+/*------------------------------------.
+| yyerrlab -- here on detecting error |
+`------------------------------------*/
+yyerrlab:
+ /* If not already recovering from an error, report this error. */
+ if (!yyerrstatus)
+ {
+ ++yynerrs;
+#if ! YYERROR_VERBOSE
+ yyerror (YY_("syntax error"));
+#else
+ {
+ YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
+ if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
+ {
+ YYSIZE_T yyalloc = 2 * yysize;
+ if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
+ yyalloc = YYSTACK_ALLOC_MAXIMUM;
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yyalloc);
+ if (yymsg)
+ yymsg_alloc = yyalloc;
+ else
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ }
+ }
+
+ if (0 < yysize && yysize <= yymsg_alloc)
+ {
+ (void) yysyntax_error (yymsg, yystate, yychar);
+ yyerror (yymsg);
+ }
+ else
+ {
+ yyerror (YY_("syntax error"));
+ if (yysize != 0)
+ goto yyexhaustedlab;
+ }
+ }
+#endif
+ }
+
+
+
+ if (yyerrstatus == 3)
+ {
+ /* If just tried and failed to reuse lookahead token after an
+ error, discard it. */
+
+ if (yychar <= YYEOF)
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
+ else
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval);
+ yychar = YYEMPTY;
+ }
+ }
+
+ /* Else will try to reuse lookahead token after shifting the error
+ token. */
+ goto yyerrlab1;
+
+
+/*---------------------------------------------------.
+| yyerrorlab -- error raised explicitly by YYERROR. |
+`---------------------------------------------------*/
+yyerrorlab:
+
+ /* Pacify compilers like GCC when the user code never invokes
+ YYERROR and the label yyerrorlab therefore never appears in user
+ code. */
+ if (/*CONSTCOND*/ 0)
+ goto yyerrorlab;
+
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYERROR. */
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+ yystate = *yyssp;
+ goto yyerrlab1;
+
+
+/*-------------------------------------------------------------.
+| yyerrlab1 -- common code for both syntax error and YYERROR. |
+`-------------------------------------------------------------*/
+yyerrlab1:
+ yyerrstatus = 3; /* Each real token shifted decrements this. */
+
+ for (;;)
+ {
+ yyn = yypact[yystate];
+ if (yyn != YYPACT_NINF)
+ {
+ yyn += YYTERROR;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ {
+ yyn = yytable[yyn];
+ if (0 < yyn)
+ break;
+ }
+ }
+
+ /* Pop the current state because it cannot handle the error token. */
+ if (yyssp == yyss)
+ YYABORT;
+
+
+ yydestruct ("Error: popping",
+ yystos[yystate], yyvsp);
+ YYPOPSTACK (1);
+ yystate = *yyssp;
+ YY_STACK_PRINT (yyss, yyssp);
+ }
+
+ *++yyvsp = yylval;
+
+
+ /* Shift the error token. */
+ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+
+ yystate = yyn;
+ goto yynewstate;
+
+
+/*-------------------------------------.
+| yyacceptlab -- YYACCEPT comes here. |
+`-------------------------------------*/
+yyacceptlab:
+ yyresult = 0;
+ goto yyreturn;
+
+/*-----------------------------------.
+| yyabortlab -- YYABORT comes here. |
+`-----------------------------------*/
+yyabortlab:
+ yyresult = 1;
+ goto yyreturn;
+
+#if !defined(yyoverflow) || YYERROR_VERBOSE
+/*-------------------------------------------------.
+| yyexhaustedlab -- memory exhaustion comes here. |
+`-------------------------------------------------*/
+yyexhaustedlab:
+ yyerror (YY_("memory exhausted"));
+ yyresult = 2;
+ /* Fall through. */
+#endif
+
+yyreturn:
+ if (yychar != YYEMPTY)
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval);
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYABORT or YYACCEPT. */
+ YYPOPSTACK (yylen);
+ YY_STACK_PRINT (yyss, yyssp);
+ while (yyssp != yyss)
+ {
+ yydestruct ("Cleanup: popping",
+ yystos[*yyssp], yyvsp);
+ YYPOPSTACK (1);
+ }
+#ifndef yyoverflow
+ if (yyss != yyssa)
+ YYSTACK_FREE (yyss);
+#endif
+#if YYERROR_VERBOSE
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+#endif
+ /* Make sure YYID is used. */
+ return YYID (yyresult);
+}
+
+
+
+/* Line 1675 of yacc.c */
+#line 693 "grammar.y"
+
+
diff --git a/libpcap/scanner.c b/libpcap/scanner.c
new file mode 100644
index 000000000..98eaa8557
--- /dev/null
+++ b/libpcap/scanner.c
@@ -0,0 +1,4741 @@
+#line 2 "scanner.c"
+
+#line 4 "scanner.c"
+
+#define YY_INT_ALIGNED short int
+
+/* A lexical scanner generated by flex */
+
+#define yy_create_buffer pcap__create_buffer
+#define yy_delete_buffer pcap__delete_buffer
+#define yy_flex_debug pcap__flex_debug
+#define yy_init_buffer pcap__init_buffer
+#define yy_flush_buffer pcap__flush_buffer
+#define yy_load_buffer_state pcap__load_buffer_state
+#define yy_switch_to_buffer pcap__switch_to_buffer
+#define yyin pcap_in
+#define yyleng pcap_leng
+#define yylex pcap_lex
+#define yylineno pcap_lineno
+#define yyout pcap_out
+#define yyrestart pcap_restart
+#define yytext pcap_text
+#define yywrap pcap_wrap
+#define yyalloc pcap_alloc
+#define yyrealloc pcap_realloc
+#define yyfree pcap_free
+
+#define FLEX_SCANNER
+#define YY_FLEX_MAJOR_VERSION 2
+#define YY_FLEX_MINOR_VERSION 5
+#define YY_FLEX_SUBMINOR_VERSION 35
+#if YY_FLEX_SUBMINOR_VERSION > 0
+#define FLEX_BETA
+#endif
+
+/* First, we deal with platform-specific or compiler-specific issues. */
+
+/* begin standard C headers. */
+#include
+#include
+#include
+#include
+
+/* end standard C headers. */
+
+/* flex integer type definitions */
+
+#ifndef FLEXINT_H
+#define FLEXINT_H
+
+/* C99 systems have . Non-C99 systems may or may not. */
+
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types.
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
+#include
+typedef int8_t flex_int8_t;
+typedef uint8_t flex_uint8_t;
+typedef int16_t flex_int16_t;
+typedef uint16_t flex_uint16_t;
+typedef int32_t flex_int32_t;
+typedef uint32_t flex_uint32_t;
+#else
+typedef signed char flex_int8_t;
+typedef short int flex_int16_t;
+typedef int flex_int32_t;
+typedef unsigned char flex_uint8_t;
+typedef unsigned short int flex_uint16_t;
+typedef unsigned int flex_uint32_t;
+#endif /* ! C99 */
+
+/* Limits of integral types. */
+#ifndef INT8_MIN
+#define INT8_MIN (-128)
+#endif
+#ifndef INT16_MIN
+#define INT16_MIN (-32767-1)
+#endif
+#ifndef INT32_MIN
+#define INT32_MIN (-2147483647-1)
+#endif
+#ifndef INT8_MAX
+#define INT8_MAX (127)
+#endif
+#ifndef INT16_MAX
+#define INT16_MAX (32767)
+#endif
+#ifndef INT32_MAX
+#define INT32_MAX (2147483647)
+#endif
+#ifndef UINT8_MAX
+#define UINT8_MAX (255U)
+#endif
+#ifndef UINT16_MAX
+#define UINT16_MAX (65535U)
+#endif
+#ifndef UINT32_MAX
+#define UINT32_MAX (4294967295U)
+#endif
+
+#endif /* ! FLEXINT_H */
+
+#ifdef __cplusplus
+
+/* The "const" storage-class-modifier is valid. */
+#define YY_USE_CONST
+
+#else /* ! __cplusplus */
+
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
+
+#define YY_USE_CONST
+
+#endif /* defined (__STDC__) */
+#endif /* ! __cplusplus */
+
+#ifdef YY_USE_CONST
+#define yyconst const
+#else
+#define yyconst
+#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 pcap_restart(pcap_in )
+
+#define YY_END_OF_BUFFER_CHAR 0
+
+/* Size of default input buffer. */
+#ifndef YY_BUF_SIZE
+#define YY_BUF_SIZE 16384
+#endif
+
+/* The state buf must be large enough to hold one state per character in the main buffer.
+ */
+#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
+
+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
+#define YY_TYPEDEF_YY_BUFFER_STATE
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+#endif
+
+extern int pcap_leng;
+
+extern FILE *pcap_in, *pcap_out;
+
+#define EOB_ACT_CONTINUE_SCAN 0
+#define EOB_ACT_END_OF_FILE 1
+#define EOB_ACT_LAST_MATCH 2
+
+ #define YY_LESS_LINENO(n)
+
+/* Return all but the first "n" matched characters back to the input stream. */
+#define yyless(n) \
+ do \
+ { \
+ /* Undo effects of setting up pcap_text. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ *yy_cp = (yy_hold_char); \
+ YY_RESTORE_YY_MORE_OFFSET \
+ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
+ YY_DO_BEFORE_ACTION; /* set up pcap_text again */ \
+ } \
+ while ( 0 )
+
+#define unput(c) yyunput( c, (yytext_ptr) )
+
+#ifndef YY_TYPEDEF_YY_SIZE_T
+#define YY_TYPEDEF_YY_SIZE_T
+typedef size_t yy_size_t;
+#endif
+
+#ifndef YY_STRUCT_YY_BUFFER_STATE
+#define YY_STRUCT_YY_BUFFER_STATE
+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;
+
+ int yy_bs_lineno; /**< The line count. */
+ int yy_bs_column; /**< The column count. */
+
+ /* 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 pcap_restart()), so that the user can continue scanning by
+ * just pointing pcap_in at a new input file.
+ */
+#define YY_BUFFER_EOF_PENDING 2
+
+ };
+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
+
+/* Stack of input buffers. */
+static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
+static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
+static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
+
+/* 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".
+ *
+ * Returns the top of the stack, or NULL.
+ */
+#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
+ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
+ : NULL)
+
+/* Same as previous macro, but useful when we know that the buffer stack is not
+ * NULL or when we need an lvalue. For internal use only.
+ */
+#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
+
+/* yy_hold_char holds the character lost when pcap_text is formed. */
+static char yy_hold_char;
+static int yy_n_chars; /* number of characters read into yy_ch_buf */
+int pcap_leng;
+
+/* Points to current character in buffer. */
+static char *yy_c_buf_p = (char *) 0;
+static int yy_init = 0; /* whether we need to initialize */
+static int yy_start = 0; /* start state number */
+
+/* Flag which is used to allow pcap_wrap()'s to do buffer switches
+ * instead of setting up a fresh pcap_in. A bit of a hack ...
+ */
+static int yy_did_buffer_switch_on_eof;
+
+void pcap_restart (FILE *input_file );
+void pcap__switch_to_buffer (YY_BUFFER_STATE new_buffer );
+YY_BUFFER_STATE pcap__create_buffer (FILE *file,int size );
+void pcap__delete_buffer (YY_BUFFER_STATE b );
+void pcap__flush_buffer (YY_BUFFER_STATE b );
+void pcap_push_buffer_state (YY_BUFFER_STATE new_buffer );
+void pcap_pop_buffer_state (void );
+
+static void pcap_ensure_buffer_stack (void );
+static void pcap__load_buffer_state (void );
+static void pcap__init_buffer (YY_BUFFER_STATE b,FILE *file );
+
+#define YY_FLUSH_BUFFER pcap__flush_buffer(YY_CURRENT_BUFFER )
+
+YY_BUFFER_STATE pcap__scan_buffer (char *base,yy_size_t size );
+YY_BUFFER_STATE pcap__scan_string (yyconst char *yy_str );
+YY_BUFFER_STATE pcap__scan_bytes (yyconst char *bytes,int len );
+
+void *pcap_alloc (yy_size_t );
+void *pcap_realloc (void *,yy_size_t );
+void pcap_free (void * );
+
+#define yy_new_buffer pcap__create_buffer
+
+#define yy_set_interactive(is_interactive) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){ \
+ pcap_ensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ pcap__create_buffer(pcap_in,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
+ }
+
+#define yy_set_bol(at_bol) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){\
+ pcap_ensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ pcap__create_buffer(pcap_in,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
+ }
+
+#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
+
+/* Begin user sect3 */
+
+typedef unsigned char YY_CHAR;
+
+FILE *pcap_in = (FILE *) 0, *pcap_out = (FILE *) 0;
+
+typedef int yy_state_type;
+
+extern int pcap_lineno;
+
+int pcap_lineno = 1;
+
+extern char *pcap_text;
+#define yytext_ptr pcap_text
+
+static yy_state_type yy_get_previous_state (void );
+static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
+static int yy_get_next_buffer (void );
+static void yy_fatal_error (yyconst char msg[] );
+
+/* Done after the current pattern has been matched and before the
+ * corresponding action - sets up pcap_text.
+ */
+#define YY_DO_BEFORE_ACTION \
+ (yytext_ptr) = yy_bp; \
+ pcap_leng = (size_t) (yy_cp - yy_bp); \
+ (yy_hold_char) = *yy_cp; \
+ *yy_cp = '\0'; \
+ (yy_c_buf_p) = yy_cp;
+
+#define YY_NUM_RULES 144
+#define YY_END_OF_BUFFER 145
+/* This struct is not used in this scanner,
+ but its presence is necessary. */
+struct yy_trans_info
+ {
+ flex_int32_t yy_verify;
+ flex_int32_t yy_nxt;
+ };
+static yyconst flex_int16_t yy_accept[1434] =
+ { 0,
+ 0, 0, 145, 142, 102, 102, 102, 103, 142, 103,
+ 103, 103, 143, 112, 112, 103, 103, 103, 103, 140,
+ 140, 142, 140, 140, 140, 140, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
+ 140, 140, 103, 142, 106, 110, 64, 0, 140, 112,
+ 0, 140, 140, 140, 0, 114, 108, 105, 107, 104,
+ 109, 140, 141, 141, 140, 140, 140, 19, 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, 7, 140, 33, 34, 140, 140,
+
+ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
+ 140, 140, 88, 140, 65, 140, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 140, 82, 140, 140, 140,
+ 140, 140, 140, 140, 4, 140, 140, 140, 140, 140,
+ 140, 140, 65, 110, 140, 113, 113, 140, 112, 140,
+ 0, 114, 112, 114, 114, 114, 140, 140, 140, 64,
+ 5, 140, 77, 140, 140, 140, 140, 140, 140, 54,
+ 100, 1, 0, 140, 20, 140, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 35, 140, 140, 17, 42,
+ 0, 140, 28, 140, 24, 67, 140, 140, 75, 36,
+
+ 140, 96, 140, 140, 140, 140, 97, 140, 45, 66,
+ 78, 99, 140, 14, 140, 3, 140, 140, 140, 140,
+ 140, 90, 140, 140, 25, 140, 98, 140, 101, 37,
+ 2, 140, 41, 140, 9, 140, 10, 85, 140, 84,
+ 140, 140, 0, 140, 140, 113, 140, 140, 140, 140,
+ 112, 0, 140, 0, 115, 114, 114, 0, 114, 0,
+ 114, 0, 114, 0, 22, 140, 140, 140, 140, 61,
+ 40, 140, 38, 140, 140, 140, 29, 140, 94, 140,
+ 140, 44, 11, 140, 12, 13, 140, 140, 140, 31,
+ 74, 140, 59, 3, 95, 46, 140, 140, 140, 71,
+
+ 140, 140, 140, 140, 47, 140, 140, 39, 140, 6,
+ 140, 89, 140, 8, 91, 140, 140, 0, 140, 52,
+ 70, 15, 140, 113, 113, 140, 113, 113, 113, 140,
+ 112, 140, 0, 114, 140, 0, 0, 114, 0, 114,
+ 115, 114, 0, 0, 0, 0, 114, 114, 114, 114,
+ 114, 0, 140, 55, 56, 57, 58, 140, 21, 140,
+ 140, 140, 140, 30, 140, 140, 0, 18, 140, 140,
+ 140, 83, 140, 32, 140, 76, 27, 26, 140, 140,
+ 79, 140, 140, 140, 49, 16, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 140, 140, 140, 0, 140,
+
+ 140, 113, 140, 140, 140, 140, 113, 113, 140, 112,
+ 140, 0, 0, 114, 114, 114, 0, 0, 115, 114,
+ 114, 115, 114, 0, 0, 114, 114, 114, 114, 114,
+ 0, 0, 0, 0, 114, 114, 0, 114, 0, 114,
+ 0, 93, 140, 140, 140, 23, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
+ 67, 140, 140, 140, 140, 140, 140, 140, 72, 73,
+ 140, 92, 140, 140, 140, 140, 140, 140, 140, 140,
+ 140, 140, 140, 140, 113, 113, 140, 113, 113, 113,
+ 113, 140, 112, 140, 0, 114, 114, 0, 114, 0,
+
+ 0, 114, 0, 114, 115, 114, 0, 0, 0, 114,
+ 114, 0, 114, 115, 114, 0, 0, 0, 0, 0,
+ 0, 0, 114, 114, 114, 114, 114, 0, 140, 140,
+ 140, 140, 51, 60, 140, 140, 140, 140, 140, 140,
+ 140, 140, 140, 140, 140, 140, 68, 140, 140, 43,
+ 80, 81, 140, 140, 140, 140, 53, 138, 134, 140,
+ 136, 135, 139, 140, 0, 140, 140, 113, 140, 140,
+ 140, 113, 140, 112, 140, 0, 0, 114, 114, 114,
+ 114, 114, 114, 0, 0, 115, 114, 114, 114, 0,
+ 0, 114, 114, 114, 114, 114, 0, 0, 0, 0,
+
+ 0, 0, 0, 114, 114, 114, 114, 114, 0, 0,
+ 0, 0, 0, 114, 114, 0, 114, 0, 114, 0,
+ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
+ 140, 140, 140, 117, 116, 140, 140, 69, 140, 140,
+ 140, 137, 133, 140, 140, 113, 113, 113, 113, 140,
+ 112, 140, 0, 114, 114, 0, 114, 114, 0, 114,
+ 0, 0, 114, 0, 114, 115, 114, 0, 0, 0,
+ 114, 114, 0, 114, 115, 114, 0, 0, 0, 0,
+ 0, 114, 114, 0, 114, 115, 114, 0, 114, 114,
+ 0, 0, 0, 0, 0, 0, 0, 114, 114, 114,
+
+ 114, 114, 0, 62, 140, 54, 122, 129, 140, 140,
+ 140, 140, 140, 140, 140, 140, 140, 63, 48, 140,
+ 140, 0, 140, 140, 140, 140, 140, 112, 140, 0,
+ 0, 114, 114, 114, 114, 114, 114, 114, 114, 114,
+ 0, 0, 115, 114, 114, 114, 0, 0, 114, 114,
+ 114, 114, 114, 0, 0, 0, 0, 0, 0, 0,
+ 114, 114, 114, 114, 114, 0, 114, 114, 0, 0,
+ 0, 0, 0, 0, 0, 114, 114, 114, 114, 114,
+ 0, 0, 0, 0, 0, 0, 114, 114, 0, 114,
+ 0, 114, 0, 86, 140, 140, 140, 140, 140, 140,
+
+ 140, 140, 140, 140, 140, 50, 111, 111, 113, 113,
+ 140, 112, 140, 0, 114, 114, 0, 114, 114, 0,
+ 114, 114, 0, 114, 0, 111, 114, 0, 114, 115,
+ 114, 0, 0, 0, 114, 114, 0, 114, 115, 114,
+ 0, 0, 0, 0, 0, 114, 114, 0, 114, 115,
+ 114, 0, 0, 0, 0, 0, 0, 114, 114, 0,
+ 114, 115, 114, 0, 114, 114, 114, 0, 0, 0,
+ 0, 0, 0, 0, 114, 114, 114, 114, 114, 0,
+ 140, 140, 140, 140, 140, 140, 140, 140, 127, 140,
+ 87, 111, 111, 113, 140, 111, 111, 0, 0, 114,
+
+ 114, 114, 114, 114, 114, 114, 114, 114, 114, 114,
+ 114, 0, 111, 115, 114, 114, 114, 0, 0, 114,
+ 114, 114, 114, 114, 0, 0, 0, 0, 0, 0,
+ 0, 114, 114, 114, 114, 114, 0, 114, 114, 0,
+ 0, 0, 0, 0, 0, 0, 114, 114, 114, 114,
+ 114, 0, 114, 114, 114, 0, 0, 0, 0, 0,
+ 0, 0, 114, 114, 114, 114, 114, 0, 0, 0,
+ 0, 0, 0, 114, 114, 0, 114, 0, 114, 0,
+ 140, 140, 140, 131, 140, 140, 140, 140, 140, 140,
+ 140, 119, 113, 140, 112, 0, 114, 114, 0, 114,
+
+ 114, 0, 114, 114, 0, 114, 114, 0, 114, 0,
+ 0, 0, 114, 0, 0, 114, 115, 114, 0, 0,
+ 0, 114, 114, 0, 114, 115, 114, 0, 0, 0,
+ 0, 0, 114, 114, 0, 114, 115, 114, 0, 0,
+ 0, 0, 0, 0, 114, 114, 0, 114, 115, 114,
+ 0, 0, 0, 0, 0, 0, 114, 114, 0, 114,
+ 115, 114, 0, 114, 114, 114, 0, 0, 0, 0,
+ 0, 0, 0, 114, 114, 114, 114, 114, 0, 140,
+ 140, 140, 140, 121, 140, 140, 140, 125, 140, 111,
+ 0, 0, 114, 114, 114, 114, 114, 114, 114, 114,
+
+ 114, 114, 114, 114, 114, 114, 114, 0, 0, 0,
+ 115, 0, 0, 114, 0, 0, 114, 114, 114, 0,
+ 0, 0, 0, 0, 0, 0, 114, 114, 114, 0,
+ 114, 114, 0, 0, 0, 0, 0, 0, 0, 114,
+ 114, 114, 0, 114, 114, 114, 0, 0, 0, 0,
+ 0, 0, 0, 114, 114, 114, 0, 114, 114, 114,
+ 0, 0, 0, 0, 0, 0, 0, 114, 114, 114,
+ 0, 0, 0, 0, 0, 0, 114, 114, 0, 114,
+ 0, 114, 0, 118, 130, 132, 126, 140, 140, 140,
+ 140, 0, 0, 114, 0, 114, 0, 114, 114, 0,
+
+ 114, 114, 0, 114, 114, 0, 114, 114, 0, 114,
+ 0, 0, 0, 0, 114, 114, 0, 114, 0, 0,
+ 114, 114, 114, 0, 0, 0, 0, 114, 114, 114,
+ 0, 0, 0, 0, 0, 114, 114, 114, 0, 0,
+ 0, 0, 0, 114, 114, 114, 0, 0, 0, 0,
+ 0, 114, 114, 114, 114, 114, 114, 0, 0, 0,
+ 0, 0, 0, 0, 114, 114, 114, 0, 140, 140,
+ 140, 140, 0, 0, 0, 114, 114, 114, 114, 114,
+ 114, 0, 0, 0, 0, 114, 114, 0, 0, 0,
+ 0, 114, 114, 114, 0, 0, 0, 0, 0, 114,
+
+ 114, 114, 114, 0, 0, 0, 0, 0, 114, 114,
+ 114, 114, 0, 0, 0, 0, 0, 114, 114, 114,
+ 114, 0, 0, 0, 0, 0, 114, 0, 0, 0,
+ 0, 0, 114, 114, 114, 140, 140, 140, 128, 114,
+ 114, 114, 114, 114, 114, 114, 114, 0, 0, 0,
+ 0, 114, 114, 0, 0, 114, 0, 0, 0, 114,
+ 0, 0, 0, 114, 0, 0, 0, 114, 0, 0,
+ 0, 114, 114, 114, 114, 0, 0, 0, 0, 0,
+ 114, 123, 140, 120, 114, 0, 0, 114, 114, 0,
+ 114, 114, 114, 0, 114, 114, 114, 0, 114, 114,
+
+ 114, 0, 114, 114, 114, 0, 0, 0, 0, 114,
+ 124, 114, 114, 0, 0, 0, 0, 0, 0, 114,
+ 114, 114, 0, 0, 114, 114, 114, 114, 114, 0,
+ 114, 114, 0
+ } ;
+
+static yyconst flex_int32_t 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, 5, 1, 1, 6, 1, 7, 1, 8,
+ 8, 9, 9, 1, 10, 11, 9, 12, 13, 14,
+ 15, 16, 17, 18, 17, 17, 17, 19, 1, 20,
+ 21, 22, 1, 1, 23, 23, 23, 23, 23, 23,
+ 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
+ 24, 24, 24, 24, 24, 24, 24, 25, 24, 24,
+ 26, 27, 26, 1, 28, 1, 29, 30, 31, 32,
+
+ 33, 34, 35, 36, 37, 24, 38, 39, 40, 41,
+ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
+ 52, 24, 1, 53, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 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 flex_int32_t yy_meta[54] =
+ { 0,
+ 1, 2, 2, 1, 2, 1, 3, 2, 1, 4,
+ 5, 6, 6, 6, 6, 6, 6, 6, 7, 3,
+ 3, 3, 8, 4, 9, 3, 1, 4, 8, 8,
+ 8, 8, 8, 8, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 9, 4, 3
+ } ;
+
+static yyconst flex_int16_t yy_base[1894] =
+ { 0,
+ 0, 0, 3838, 53, 7401, 7401, 54, 3816, 60, 3829,
+ 7401, 82, 7401, 100, 31, 152, 47, 3813, 49, 169,
+ 211, 169, 61, 44, 61, 122, 30, 62, 75, 3791,
+ 215, 218, 160, 32, 166, 155, 230, 236, 53, 3800,
+ 173, 3778, 3763, 281, 7401, 0, 7401, 297, 320, 344,
+ 3796, 368, 0, 375, 0, 409, 7401, 7401, 7401, 7401,
+ 7401, 279, 297, 0, 3769, 3766, 3779, 0, 3778, 3766,
+ 3764, 3761, 3749, 3743, 3748, 3746, 3745, 3754, 3725, 3738,
+ 3721, 117, 3731, 3734, 3718, 3716, 3729, 3700, 3705, 3703,
+ 81, 3707, 3702, 3709, 139, 223, 0, 0, 122, 121,
+
+ 3697, 3692, 167, 3676, 3674, 3677, 3680, 3669, 3677, 3668,
+ 3652, 3658, 0, 3666, 0, 3649, 3654, 3647, 3633, 3633,
+ 3633, 132, 3644, 3627, 3637, 3630, 170, 3626, 202, 3609,
+ 54, 3608, 3620, 3606, 0, 3604, 3602, 3592, 3599, 3590,
+ 3581, 3596, 7401, 7401, 434, 458, 211, 499, 523, 547,
+ 3604, 554, 3611, 578, 228, 3602, 3562, 3567, 3558, 0,
+ 0, 3563, 0, 3571, 3566, 3555, 3541, 3538, 3539, 3546,
+ 0, 0, 3541, 3530, 0, 3542, 3537, 3525, 3518, 3521,
+ 3501, 3504, 3516, 3501, 3500, 0, 3505, 3485, 0, 0,
+ 3489, 3479, 0, 3491, 0, 3486, 3474, 3481, 0, 0,
+
+ 3470, 0, 3470, 3458, 254, 3440, 0, 3438, 3453, 0,
+ 3447, 0, 3450, 0, 3432, 3436, 3415, 3418, 3423, 3416,
+ 3411, 0, 3409, 3422, 0, 3411, 0, 3396, 0, 0,
+ 0, 3393, 0, 127, 270, 3403, 0, 0, 3393, 0,
+ 3390, 3390, 618, 3405, 641, 665, 3403, 672, 481, 226,
+ 696, 3394, 720, 3393, 3390, 728, 293, 3389, 3388, 488,
+ 769, 792, 3372, 0, 0, 3348, 332, 3351, 3354, 0,
+ 0, 3340, 0, 3337, 3329, 3313, 0, 3305, 0, 3299,
+ 3300, 0, 595, 3287, 0, 0, 3295, 3277, 3278, 0,
+ 0, 3276, 0, 0, 0, 0, 3290, 3267, 3264, 0,
+
+ 3256, 3253, 3269, 3242, 3217, 3228, 3218, 0, 3217, 0,
+ 3216, 0, 228, 0, 0, 3207, 3202, 720, 3204, 0,
+ 0, 0, 817, 841, 315, 882, 3210, 3209, 386, 905,
+ 929, 953, 3200, 960, 602, 3195, 3194, 983, 757, 1007,
+ 1030, 3178, 0, 3176, 405, 408, 1054, 3175, 1078, 317,
+ 3174, 3179, 3137, 0, 0, 0, 0, 3127, 0, 3141,
+ 3140, 3107, 3105, 0, 3120, 3104, 1097, 0, 3091, 3080,
+ 3098, 0, 3067, 0, 3060, 3050, 0, 0, 3060, 3042,
+ 256, 3041, 3057, 159, 3054, 0, 3043, 3035, 3049, 3033,
+ 3027, 3035, 3018, 2985, 2986, 2979, 2984, 2998, 1134, 3016,
+
+ 1157, 1181, 3014, 1188, 864, 310, 1212, 344, 1252, 1275,
+ 1299, 2981, 2980, 1307, 345, 2979, 2978, 2976, 2975, 1348,
+ 369, 2974, 2958, 496, 612, 1389, 2957, 1413, 378, 2956,
+ 2962, 2952, 871, 0, 306, 2951, 1101, 1454, 1477, 2950,
+ 0, 0, 2922, 2924, 2905, 0, 2911, 2895, 2901, 2914,
+ 2885, 2900, 2898, 330, 2881, 408, 2881, 2857, 2845, 2855,
+ 0, 2844, 2854, 2845, 2850, 2834, 2823, 2822, 0, 0,
+ 2826, 0, 2821, 2812, 2825, 2824, 2803, 2799, 2793, 2791,
+ 2796, 2800, 2799, 1502, 1526, 409, 1567, 2822, 2807, 614,
+ 1591, 1615, 1622, 1646, 2798, 1653, 1677, 1700, 2797, 2796,
+
+ 2795, 1723, 1108, 1747, 1770, 2793, 0, 1235, 0, 442,
+ 2792, 1242, 1794, 1817, 2791, 0, 739, 766, 2783, 466,
+ 786, 817, 1841, 2774, 1865, 433, 2773, 2780, 386, 2744,
+ 2748, 2745, 0, 0, 2750, 2738, 2724, 2724, 2736, 2719,
+ 2717, 2724, 2716, 2702, 2713, 2712, 0, 2703, 2697, 0,
+ 0, 0, 2709, 2705, 2710, 2683, 0, 0, 0, 2687,
+ 0, 0, 0, 2676, 1905, 2711, 1928, 1952, 2709, 1959,
+ 467, 1983, 2007, 2014, 2038, 2699, 2698, 2046, 457, 2697,
+ 2087, 493, 2681, 2680, 2679, 2678, 2128, 494, 2677, 879,
+ 899, 2169, 2674, 2193, 498, 2673, 2666, 1128, 1130, 2665,
+
+ 2664, 1251, 1317, 2234, 2655, 2258, 499, 2654, 2660, 1331,
+ 0, 1338, 0, 532, 2651, 1371, 2299, 2322, 2650, 0,
+ 2345, 479, 225, 370, 531, 622, 241, 129, 2606, 260,
+ 272, 433, 591, 2605, 2604, 1129, 2603, 2601, 1247, 854,
+ 532, 2599, 2583, 2383, 2420, 2456, 2492, 523, 2516, 593,
+ 2524, 2548, 2610, 2555, 2579, 2602, 2609, 2626, 2649, 2608,
+ 2607, 2605, 2672, 1378, 2696, 2719, 2604, 0, 1436, 0,
+ 587, 2603, 1443, 2743, 2766, 2587, 0, 1549, 0, 1556,
+ 0, 680, 2586, 1888, 2790, 2813, 2585, 0, 551, 1895,
+ 2592, 1386, 1451, 2590, 2589, 1471, 1502, 2837, 2580, 2861,
+
+ 641, 2564, 2571, 571, 633, 572, 617, 768, 1251, 2056,
+ 1388, 687, 690, 808, 2083, 688, 810, 618, 766, 2081,
+ 2085, 2903, 833, 2926, 834, 2949, 2114, 2973, 2997, 2562,
+ 2561, 3005, 642, 2560, 3046, 671, 2558, 3087, 742, 2557,
+ 2556, 2555, 2533, 3128, 878, 2532, 1564, 1694, 3169, 2531,
+ 3193, 881, 2530, 2537, 1904, 2056, 2535, 2534, 2057, 2063,
+ 3234, 2525, 3258, 882, 2524, 2509, 900, 2151, 2508, 2123,
+ 2124, 2507, 2506, 2125, 2145, 3299, 2497, 3323, 902, 2495,
+ 2502, 0, 2216, 0, 2223, 0, 737, 2493, 2281, 3364,
+ 3387, 2492, 0, 898, 921, 975, 976, 1904, 977, 1453,
+
+ 1001, 1022, 2276, 1023, 1566, 1046, 3412, 3435, 3459, 930,
+ 3499, 3523, 3547, 2445, 3554, 3578, 3601, 2444, 3625, 3648,
+ 2443, 3672, 3695, 2429, 2428, 2427, 3718, 2368, 3742, 3765,
+ 2426, 0, 2406, 0, 937, 2375, 2443, 3789, 3812, 2348,
+ 0, 2463, 0, 2470, 0, 969, 2347, 2477, 3836, 3859,
+ 2346, 0, 0, 2484, 0, 2884, 0, 1016, 2345, 2891,
+ 3883, 3906, 2331, 0, 0, 1006, 3028, 2338, 2166, 2231,
+ 2337, 2333, 2295, 2296, 3930, 2324, 3954, 1027, 2323, 2316,
+ 2298, 2359, 2360, 2127, 1048, 2233, 2361, 1071, 2362, 1070,
+ 1072, 1126, 1128, 3996, 4020, 4029, 1149, 2306, 2305, 4047,
+
+ 1077, 2286, 4088, 1080, 2283, 4129, 1107, 2282, 4170, 1110,
+ 2281, 2265, 2261, 4210, 4234, 1157, 2259, 2414, 2415, 4275,
+ 2241, 4299, 1158, 2240, 2247, 2596, 2643, 2244, 2243, 2899,
+ 2900, 4340, 2202, 4364, 1159, 2201, 2208, 1182, 3035, 2204,
+ 2903, 3043, 2203, 2202, 3056, 3062, 4405, 2176, 4429, 1187,
+ 2175, 2182, 0, 1188, 3110, 2179, 3063, 3084, 2167, 2162,
+ 3104, 3123, 4470, 2135, 4494, 1189, 2105, 2083, 0, 3151,
+ 0, 3216, 0, 1284, 2073, 3223, 4535, 4558, 2071, 0,
+ 3268, 3269, 3333, 1150, 2399, 2105, 1407, 2400, 2275, 1469,
+ 1493, 1206, 4583, 4607, 4616, 2070, 4633, 4657, 4680, 2068,
+
+ 4704, 4727, 2067, 4751, 4774, 2066, 4798, 4821, 2064, 2054,
+ 4845, 1246, 2053, 2051, 3286, 4886, 2023, 2022, 0, 3350,
+ 0, 1316, 2021, 3482, 4910, 2020, 2019, 0, 3489, 0,
+ 3977, 0, 1535, 2017, 3984, 4934, 2016, 2015, 0, 0,
+ 4036, 0, 4070, 0, 1576, 2014, 4077, 4958, 1991, 1990,
+ 0, 0, 4111, 0, 4118, 0, 1599, 1989, 4152, 4982,
+ 1988, 1985, 0, 0, 1248, 4159, 1976, 3125, 3145, 1972,
+ 1970, 3164, 3166, 5006, 1911, 5030, 1249, 1872, 1876, 1495,
+ 1669, 1670, 1520, 1347, 1671, 4168, 1583, 1715, 2401, 5072,
+ 1867, 5089, 5113, 1389, 1824, 5154, 1390, 1802, 5195, 1453,
+
+ 1800, 5236, 1561, 1779, 5277, 1566, 1777, 1756, 4196, 5318,
+ 1752, 1729, 0, 1728, 3231, 3269, 5342, 1708, 1705, 1633,
+ 3294, 3333, 1632, 1608, 3360, 3381, 5366, 1573, 1569, 1541,
+ 1621, 4257, 1534, 3412, 3498, 1518, 1517, 3595, 3642, 5390,
+ 1505, 1480, 1469, 0, 1622, 4264, 1464, 3689, 4180, 1463,
+ 1423, 4181, 4205, 5414, 1394, 1391, 1398, 0, 1623, 4322,
+ 1365, 4209, 4272, 1363, 1361, 4316, 4335, 5438, 1351, 1350,
+ 1323, 0, 4387, 0, 4394, 0, 1630, 1314, 4452, 5462,
+ 0, 1312, 0, 1716, 1739, 1740, 1741, 1762, 1974, 4488,
+ 4504, 5486, 1650, 0, 1310, 5527, 0, 1282, 5551, 0,
+
+ 1259, 5575, 0, 1258, 5599, 0, 1253, 5623, 0, 1217,
+ 4337, 4402, 5647, 1213, 1212, 1196, 1174, 1114, 4459, 0,
+ 1631, 1108, 1056, 4521, 0, 4623, 0, 1803, 1009, 988,
+ 0, 4868, 0, 4875, 0, 1826, 965, 963, 0, 5053,
+ 0, 5060, 0, 1850, 960, 938, 0, 5079, 0, 5136,
+ 0, 1874, 890, 883, 0, 1652, 5143, 858, 4467, 4531,
+ 67, 111, 4552, 4632, 5671, 200, 0, 224, 2363, 1763,
+ 1787, 1764, 5695, 249, 320, 0, 0, 0, 0, 0,
+ 0, 5177, 0, 1914, 322, 345, 0, 4674, 4721, 360,
+ 403, 0, 1653, 5184, 420, 4768, 4815, 424, 444, 0,
+
+ 0, 1677, 5218, 475, 4883, 5088, 509, 516, 0, 0,
+ 1814, 5225, 610, 5233, 5246, 611, 633, 0, 0, 1816,
+ 5260, 683, 5274, 5287, 712, 713, 0, 0, 5301, 0,
+ 5509, 0, 1937, 733, 0, 3083, 2964, 2161, 1810, 0,
+ 7401, 0, 0, 0, 0, 0, 0, 5315, 5503, 744,
+ 778, 0, 7401, 5517, 0, 7401, 0, 5718, 0, 7401,
+ 0, 5725, 0, 7401, 0, 5732, 0, 7401, 0, 5739,
+ 0, 7401, 0, 1817, 5746, 784, 5754, 5755, 801, 1967,
+ 0, 1834, 3341, 1921, 0, 5755, 0, 1838, 5769, 803,
+ 0, 1841, 5776, 805, 0, 1899, 5783, 808, 0, 1901,
+
+ 5795, 849, 0, 1902, 5802, 852, 0, 5809, 0, 7401,
+ 1975, 1929, 5816, 854, 0, 0, 0, 0, 0, 0,
+ 1954, 5823, 856, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 7401, 5841, 5849, 5853, 5856, 5859, 5862, 5865,
+ 5868, 5871, 5874, 5877, 5880, 5883, 5886, 5889, 5892, 5895,
+ 5898, 5901, 5905, 5909, 5912, 5915, 5918, 5921, 5924, 5927,
+ 5930, 5933, 5937, 5941, 5944, 5947, 5951, 5953, 5956, 5959,
+ 5962, 5965, 5968, 5971, 5974, 5977, 5981, 5983, 5986, 5990,
+ 5995, 5999, 6002, 6006, 6009, 6012, 6015, 6018, 6021, 6024,
+ 6027, 6031, 6035, 6038, 6042, 6046, 6051, 6055, 6057, 6061,
+
+ 6064, 6068, 6071, 6074, 6078, 6080, 6083, 6086, 6089, 6092,
+ 6095, 6098, 6101, 6104, 6107, 6111, 6113, 6116, 6119, 6122,
+ 6126, 6128, 6131, 6134, 6139, 6143, 6148, 6152, 6154, 6158,
+ 6161, 6165, 6170, 6174, 6177, 6180, 6183, 6186, 6189, 6192,
+ 6195, 6199, 6203, 6206, 6210, 6214, 6219, 6223, 6225, 6229,
+ 6232, 6236, 6239, 6244, 6248, 6253, 6257, 6259, 6263, 6266,
+ 6270, 6273, 6276, 6279, 6283, 6285, 6288, 6293, 6297, 6300,
+ 6303, 6306, 6309, 6312, 6315, 6318, 6321, 6325, 6327, 6330,
+ 6333, 6336, 6340, 6342, 6345, 6348, 6351, 6354, 6358, 6360,
+ 6363, 6366, 6369, 6374, 6378, 6383, 6387, 6389, 6393, 6396,
+
+ 6400, 6405, 6409, 6412, 6415, 6418, 6421, 6424, 6427, 6430,
+ 6434, 6438, 6441, 6445, 6449, 6454, 6458, 6460, 6464, 6467,
+ 6471, 6474, 6479, 6483, 6488, 6492, 6494, 6498, 6501, 6505,
+ 6508, 6511, 6516, 6520, 6525, 6529, 6531, 6535, 6538, 6542,
+ 6545, 6548, 6551, 6555, 6557, 6560, 6565, 6569, 6572, 6575,
+ 6578, 6581, 6584, 6587, 6590, 6593, 6596, 6599, 6602, 6606,
+ 6608, 6611, 6614, 6617, 6620, 6624, 6626, 6629, 6632, 6635,
+ 6638, 6641, 6645, 6647, 6650, 6653, 6656, 6659, 6662, 6666,
+ 6668, 6671, 6674, 6677, 6680, 6685, 6689, 6694, 6698, 6700,
+ 6704, 6707, 6711, 6716, 6720, 6723, 6726, 6729, 6732, 6735,
+
+ 6738, 6741, 6744, 6747, 6751, 6755, 6758, 6762, 6766, 6771,
+ 6775, 6777, 6781, 6784, 6788, 6791, 6796, 6800, 6805, 6809,
+ 6811, 6815, 6818, 6822, 6825, 6828, 6833, 6837, 6842, 6846,
+ 6848, 6852, 6855, 6859, 6862, 6865, 6870, 6874, 6879, 6883,
+ 6885, 6889, 6892, 6896, 6899, 6902, 6905, 6909, 6911, 6914,
+ 6917, 6922, 6926, 6929, 6932, 6935, 6938, 6941, 6944, 6947,
+ 6950, 6953, 6956, 6959, 6963, 6967, 6970, 6973, 6977, 6980,
+ 6983, 6987, 6989, 6992, 6995, 6999, 7001, 7004, 7007, 7010,
+ 7014, 7016, 7019, 7022, 7025, 7029, 7031, 7034, 7037, 7040,
+ 7044, 7046, 7049, 7052, 7057, 7061, 7066, 7070, 7072, 7076,
+
+ 7079, 7083, 7088, 7092, 7095, 7098, 7101, 7104, 7107, 7110,
+ 7113, 7116, 7120, 7122, 7125, 7129, 7134, 7138, 7139, 7142,
+ 7147, 7151, 7156, 7160, 7161, 7164, 7167, 7172, 7176, 7181,
+ 7185, 7186, 7189, 7192, 7197, 7201, 7206, 7210, 7211, 7214,
+ 7217, 7222, 7226, 7231, 7235, 7236, 7239, 7242, 7245, 7249,
+ 7251, 7256, 7260, 7263, 7266, 7269, 7272, 7275, 7278, 7282,
+ 7287, 7291, 7292, 7295, 7298, 7301, 7304, 7307, 7310, 7313,
+ 7316, 7319, 7322, 7327, 7331, 7334, 7337, 7340, 7344, 7348,
+ 7352, 7356, 7360, 7363, 7366, 7370, 7373, 7376, 7379, 7382,
+ 7385, 7389, 7392
+
+ } ;
+
+static yyconst flex_int16_t yy_def[1894] =
+ { 0,
+ 1433, 1, 1433, 1433, 1433, 1433, 1433, 1433, 1434, 1433,
+ 1433, 1433, 1433, 1433, 14, 1433, 1433, 1433, 1433, 14,
+ 20, 1435, 20, 20, 20, 20, 20, 20, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 1433, 1433, 1433, 1436, 1433, 21, 21, 20,
+ 1437, 50, 21, 21, 21, 1433, 1433, 1433, 1433, 1433,
+ 1433, 49, 1435, 1435, 52, 52, 52, 21, 21, 21,
+ 21, 52, 21, 21, 21, 21, 21, 52, 21, 21,
+ 21, 21, 21, 52, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 1433, 1433, 21, 21, 146, 21, 21, 149,
+ 1438, 1433, 54, 1433, 154, 1439, 21, 21, 150, 21,
+ 21, 21, 150, 21, 21, 21, 21, 21, 150, 21,
+ 21, 21, 21, 21, 21, 21, 150, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 245, 246,
+ 150, 1440, 251, 1441, 1442, 1433, 256, 1443, 1444, 1433,
+ 1433, 1433, 1445, 1446, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 324, 21, 246, 248, 246, 248,
+ 248, 331, 1447, 1433, 330, 1448, 1449, 1433, 1433, 1433,
+ 1433, 1450, 1451, 1452, 1453, 1453, 1433, 1454, 1433, 349,
+ 1455, 1446, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+
+ 21, 21, 21, 21, 401, 402, 402, 407, 401, 331,
+ 410, 1456, 1457, 1433, 414, 1458, 1433, 1459, 1460, 1433,
+ 420, 1461, 1462, 1463, 1463, 1433, 1464, 1433, 428, 1465,
+ 1451, 1433, 1433, 1466, 1467, 1433, 1433, 1433, 1433, 1468,
+ 1469, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 485, 21, 402, 404, 402,
+ 402, 491, 410, 493, 1470, 1433, 1433, 1433, 1471, 1472,
+
+ 1473, 1433, 1433, 1433, 1433, 1474, 1475, 1433, 1476, 1477,
+ 1433, 1433, 1433, 1433, 1478, 1479, 1480, 1480, 1466, 1467,
+ 1481, 1481, 1433, 1482, 1433, 525, 1483, 1484, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 568, 568, 572, 493, 574, 1485, 1486, 1433, 578, 1487,
+ 1433, 581, 1488, 1433, 1489, 1490, 1433, 587, 1491, 1492,
+ 1492, 1433, 1493, 1433, 594, 1494, 1495, 1496, 1496, 1497,
+
+ 1498, 1499, 1499, 1433, 1500, 1433, 606, 1501, 1502, 1433,
+ 1503, 1433, 1504, 1505, 1433, 1433, 1433, 1433, 1506, 1507,
+ 575, 621, 621, 621, 621, 621, 621, 621, 621, 621,
+ 621, 621, 621, 621, 621, 621, 621, 621, 621, 621,
+ 621, 621, 621, 621, 621, 621, 646, 646, 646, 621,
+ 646, 651, 1508, 1433, 1433, 1433, 1509, 1433, 1433, 1510,
+ 1511, 1512, 1433, 1433, 1433, 1433, 1513, 1514, 1433, 1515,
+ 1516, 1433, 1433, 1433, 1433, 1517, 1518, 1433, 1519, 1433,
+ 1520, 1521, 1433, 1433, 1433, 1433, 1522, 1523, 1524, 1433,
+ 1525, 1526, 1526, 1527, 1528, 1529, 1529, 1433, 1530, 1433,
+
+ 700, 1531, 1532, 1533, 1533, 1533, 1533, 1533, 1533, 1533,
+ 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533,
+ 1533, 1533, 1533, 722, 1533, 722, 726, 726, 728, 1534,
+ 1535, 1433, 732, 1536, 1433, 735, 1537, 1433, 738, 1538,
+ 1433, 1539, 1540, 1433, 744, 1541, 1542, 1542, 1433, 1543,
+ 1433, 751, 1544, 1545, 1546, 1546, 1547, 1548, 1549, 1549,
+ 1433, 1550, 1433, 763, 1551, 1552, 1553, 1433, 1554, 1555,
+ 1555, 1556, 1557, 1558, 1558, 1433, 1559, 1433, 778, 1560,
+ 1561, 1562, 1433, 1563, 1433, 1564, 1565, 1433, 1433, 1433,
+ 1433, 1566, 1567, 1568, 1568, 1568, 1568, 1568, 1568, 1568,
+
+ 1568, 1568, 1568, 1568, 1568, 1568, 1568, 807, 807, 809,
+ 807, 807, 812, 1569, 1433, 1433, 1433, 1570, 1433, 1433,
+ 1571, 1433, 1433, 1572, 1573, 1574, 1433, 1433, 1433, 1433,
+ 1575, 1576, 1433, 1577, 1578, 1433, 1433, 1433, 1433, 1579,
+ 1580, 1433, 1581, 1433, 1582, 1583, 1433, 1433, 1433, 1433,
+ 1584, 1585, 1586, 1433, 1587, 1433, 1588, 1589, 1433, 1433,
+ 1433, 1433, 1590, 1591, 1592, 1593, 1433, 1594, 1595, 1595,
+ 1596, 1597, 1598, 1598, 1433, 1599, 1433, 877, 1600, 1601,
+ 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602,
+ 1602, 1602, 1602, 1602, 894, 1602, 1602, 1603, 1604, 1433,
+
+ 900, 1605, 1433, 903, 1606, 1433, 906, 1607, 1433, 909,
+ 1608, 1433, 1609, 1433, 1433, 915, 1610, 1611, 1611, 1433,
+ 1612, 1433, 922, 1613, 1614, 1615, 1615, 1616, 1617, 1618,
+ 1618, 1433, 1619, 1433, 934, 1620, 1621, 1622, 1433, 1623,
+ 1624, 1624, 1625, 1626, 1627, 1627, 1433, 1628, 1433, 949,
+ 1629, 1630, 1631, 1632, 1433, 1633, 1634, 1634, 1635, 1636,
+ 1637, 1637, 1433, 1638, 1433, 965, 1639, 1640, 1641, 1433,
+ 1642, 1433, 1643, 1644, 1433, 1433, 1433, 1433, 1645, 1646,
+ 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647,
+ 1647, 1647, 1647, 993, 1647, 1648, 1433, 1433, 1433, 1649,
+
+ 1433, 1433, 1650, 1433, 1433, 1651, 1433, 1433, 1652, 1653,
+ 1433, 1011, 1654, 1655, 1433, 1433, 1656, 1657, 1658, 1433,
+ 1659, 1660, 1433, 1433, 1433, 1661, 1662, 1663, 1433, 1664,
+ 1433, 1665, 1666, 1433, 1433, 1433, 1667, 1668, 1669, 1670,
+ 1433, 1671, 1433, 1672, 1673, 1433, 1433, 1433, 1674, 1675,
+ 1676, 1677, 1433, 1678, 1433, 1679, 1680, 1433, 1433, 1433,
+ 1681, 1682, 1683, 1684, 1685, 1433, 1686, 1687, 1687, 1688,
+ 1689, 1690, 1690, 1433, 1691, 1433, 1076, 1692, 1693, 1694,
+ 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694,
+ 1695, 1433, 1433, 1093, 1696, 1433, 1096, 1697, 1433, 1099,
+
+ 1698, 1433, 1102, 1699, 1433, 1105, 1700, 1433, 1433, 1433,
+ 1701, 1702, 1703, 1704, 1705, 1705, 1433, 1706, 1707, 1708,
+ 1709, 1709, 1710, 1711, 1712, 1712, 1433, 1713, 1714, 1715,
+ 1716, 1433, 1717, 1718, 1718, 1719, 1720, 1721, 1721, 1433,
+ 1722, 1723, 1724, 1725, 1726, 1433, 1727, 1728, 1728, 1729,
+ 1730, 1731, 1731, 1433, 1732, 1733, 1734, 1735, 1736, 1433,
+ 1737, 1738, 1738, 1739, 1740, 1741, 1741, 1433, 1742, 1743,
+ 1744, 1745, 1433, 1746, 1433, 1747, 1748, 1433, 1433, 1433,
+ 1749, 1750, 1751, 1752, 1752, 1752, 1752, 1752, 1752, 1752,
+ 1752, 1433, 1192, 1753, 1754, 1433, 1755, 1756, 1433, 1757,
+
+ 1758, 1433, 1759, 1760, 1433, 1761, 1762, 1433, 1763, 1764,
+ 1765, 1765, 1433, 1766, 1767, 1768, 1769, 1770, 1433, 1771,
+ 1772, 1433, 1773, 1433, 1774, 1433, 1775, 1776, 1433, 1777,
+ 1778, 1433, 1779, 1433, 1780, 1781, 1433, 1782, 1783, 1433,
+ 1784, 1433, 1785, 1786, 1433, 1787, 1788, 1433, 1789, 1433,
+ 1790, 1791, 1433, 1792, 1793, 1794, 1433, 1795, 1796, 1796,
+ 1797, 1798, 1799, 1799, 1433, 1800, 1801, 1802, 1803, 1803,
+ 1803, 1803, 1433, 1804, 1805, 1806, 1807, 1808, 1809, 1810,
+ 1811, 1433, 1812, 1813, 1433, 1814, 1815, 1816, 1816, 1817,
+ 1818, 1819, 1820, 1433, 1821, 1822, 1822, 1823, 1824, 1825,
+
+ 1826, 1827, 1433, 1828, 1829, 1829, 1830, 1831, 1832, 1833,
+ 1834, 1433, 1835, 1836, 1836, 1837, 1838, 1839, 1840, 1841,
+ 1433, 1842, 1843, 1843, 1844, 1845, 1846, 1847, 1433, 1848,
+ 1433, 1849, 1850, 1433, 1851, 1852, 1852, 1852, 1852, 1853,
+ 1433, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1860, 1861,
+ 1862, 1863, 1433, 1433, 1864, 1433, 1865, 1433, 1866, 1433,
+ 1867, 1433, 1868, 1433, 1869, 1433, 1870, 1433, 1871, 1433,
+ 1872, 1433, 1847, 1873, 1433, 1848, 1874, 1874, 1849, 1850,
+ 1875, 1852, 1852, 1852, 1876, 1433, 1877, 1878, 1433, 1864,
+ 1865, 1879, 1433, 1866, 1867, 1880, 1433, 1868, 1869, 1881,
+
+ 1433, 1870, 1871, 1882, 1433, 1872, 1883, 1433, 1884, 1433,
+ 1852, 1885, 1433, 1877, 1886, 1887, 1888, 1889, 1890, 1883,
+ 1891, 1433, 1884, 1892, 1886, 1887, 1888, 1889, 1890, 1893,
+ 1892, 1893, 0, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433
+
+ } ;
+
+static yyconst flex_int16_t yy_nxt[7455] =
+ { 0,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, 11,
+ 13, 14, 15, 15, 15, 15, 15, 15, 16, 17,
+ 18, 19, 20, 21, 21, 11, 22, 13, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, 21, 32, 33,
+ 34, 35, 36, 21, 37, 38, 39, 40, 41, 42,
+ 21, 21, 43, 44, 44, 53, 44, 44, 44, 44,
+ 44, 44, 44, 44, 110, 44, 57, 58, 44, 60,
+ 61, 44, 44, 111, 72, 82, 83, 1175, 44, 44,
+ 44, 53, 44, 134, 231, 44, 44, 44, 73, 65,
+ 44, 66, 67, 84, 232, 74, 68, 135, 85, 75,
+
+ 44, 69, 76, 86, 136, 70, 77, 71, 44, 48,
+ 49, 50, 50, 50, 50, 50, 50, 50, 51, 87,
+ 184, 976, 52, 53, 54, 185, 173, 55, 52, 52,
+ 52, 52, 52, 52, 53, 53, 53, 53, 53, 53,
+ 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
+ 54, 53, 44, 174, 78, 44, 189, 44, 79, 175,
+ 44, 196, 194, 219, 80, 711, 197, 81, 195, 63,
+ 56, 316, 63, 317, 63, 53, 220, 63, 44, 62,
+ 52, 52, 52, 52, 52, 52, 52, 63, 104, 190,
+ 469, 117, 105, 53, 112, 63, 118, 119, 225, 120,
+
+ 121, 106, 107, 138, 470, 108, 113, 109, 114, 200,
+ 115, 139, 201, 116, 202, 140, 226, 141, 1181, 53,
+ 55, 53, 53, 53, 53, 53, 53, 53, 53, 1433,
+ 97, 98, 191, 53, 1179, 53, 53, 329, 228, 53,
+ 53, 53, 53, 53, 53, 89, 99, 229, 90, 91,
+ 100, 92, 1433, 93, 101, 94, 102, 95, 122, 192,
+ 96, 53, 123, 103, 193, 706, 127, 1341, 388, 710,
+ 124, 53, 128, 389, 129, 125, 130, 126, 1433, 318,
+ 131, 44, 132, 133, 44, 298, 44, 53, 465, 44,
+ 148, 148, 148, 148, 148, 148, 148, 63, 299, 44,
+
+ 63, 466, 63, 319, 713, 63, 53, 44, 145, 145,
+ 145, 145, 145, 145, 145, 63, 260, 1433, 53, 145,
+ 53, 490, 714, 63, 262, 145, 145, 145, 145, 145,
+ 145, 146, 147, 147, 147, 147, 147, 147, 1274, 53,
+ 1274, 1433, 148, 1433, 354, 355, 356, 357, 148, 148,
+ 148, 148, 148, 148, 49, 149, 149, 149, 149, 149,
+ 149, 149, 539, 422, 358, 53, 150, 1433, 53, 1433,
+ 1219, 540, 150, 150, 150, 150, 150, 150, 62, 150,
+ 150, 150, 150, 150, 150, 150, 153, 153, 153, 153,
+ 153, 153, 153, 1433, 53, 1433, 406, 153, 354, 355,
+
+ 356, 357, 1433, 153, 153, 153, 153, 153, 153, 44,
+ 248, 707, 44, 1015, 44, 433, 53, 44, 433, 1433,
+ 154, 155, 155, 155, 155, 155, 155, 44, 1433, 434,
+ 1224, 156, 1433, 53, 1226, 44, 248, 156, 156, 156,
+ 156, 156, 156, 243, 542, 244, 244, 244, 244, 244,
+ 244, 244, 339, 543, 1024, 434, 244, 1433, 1433, 53,
+ 498, 715, 244, 244, 244, 244, 244, 244, 245, 246,
+ 246, 246, 246, 246, 246, 246, 260, 53, 648, 53,
+ 247, 1433, 248, 1433, 1433, 1232, 247, 247, 247, 247,
+ 247, 247, 326, 326, 326, 326, 326, 326, 326, 345,
+
+ 346, 346, 346, 346, 346, 346, 508, 1433, 248, 249,
+ 247, 247, 247, 247, 247, 247, 247, 1433, 1433, 1234,
+ 509, 247, 1433, 1433, 705, 53, 1035, 247, 247, 247,
+ 247, 247, 247, 250, 251, 251, 251, 251, 251, 251,
+ 251, 252, 437, 1433, 1433, 253, 509, 570, 1433, 1433,
+ 439, 253, 253, 253, 253, 253, 253, 53, 253, 253,
+ 253, 253, 253, 253, 253, 256, 257, 257, 257, 257,
+ 257, 257, 258, 570, 708, 782, 259, 53, 53, 721,
+ 55, 55, 259, 259, 259, 259, 259, 259, 260, 261,
+ 261, 261, 261, 261, 261, 261, 262, 503, 55, 55,
+
+ 263, 782, 264, 727, 367, 656, 263, 263, 263, 263,
+ 263, 263, 368, 409, 409, 409, 409, 409, 409, 409,
+ 1240, 1242, 508, 716, 571, 369, 55, 55, 264, 323,
+ 323, 323, 323, 323, 323, 323, 1433, 53, 404, 53,
+ 323, 370, 55, 1047, 55, 55, 323, 323, 323, 323,
+ 323, 323, 324, 325, 325, 325, 325, 325, 325, 709,
+ 55, 795, 1433, 326, 404, 1433, 1433, 794, 53, 326,
+ 326, 326, 326, 326, 326, 245, 327, 327, 327, 327,
+ 327, 327, 327, 328, 328, 328, 328, 328, 328, 328,
+ 512, 1433, 1433, 1248, 328, 1433, 55, 55, 659, 55,
+
+ 328, 328, 328, 328, 328, 328, 330, 331, 331, 331,
+ 331, 331, 331, 331, 55, 55, 804, 55, 332, 800,
+ 801, 1433, 1250, 1059, 332, 332, 332, 332, 332, 332,
+ 335, 332, 332, 332, 332, 332, 332, 332, 339, 340,
+ 340, 340, 340, 340, 340, 340, 341, 616, 392, 610,
+ 342, 1181, 343, 393, 1282, 618, 342, 342, 342, 342,
+ 342, 342, 394, 611, 395, 396, 1433, 397, 424, 425,
+ 425, 425, 425, 425, 425, 55, 610, 55, 343, 260,
+ 347, 347, 347, 347, 347, 347, 347, 262, 1109, 611,
+ 1433, 348, 1433, 55, 1329, 55, 612, 348, 348, 348,
+
+ 348, 348, 348, 349, 350, 350, 350, 350, 350, 350,
+ 613, 1331, 796, 1354, 351, 1358, 1433, 55, 1362, 55,
+ 351, 351, 351, 351, 351, 351, 399, 612, 400, 400,
+ 400, 400, 400, 400, 400, 55, 613, 55, 802, 400,
+ 805, 1433, 722, 55, 724, 400, 400, 400, 400, 400,
+ 400, 401, 402, 402, 402, 402, 402, 402, 402, 1366,
+ 55, 55, 1370, 403, 1386, 404, 1408, 1433, 1173, 403,
+ 403, 403, 403, 403, 403, 487, 487, 487, 487, 487,
+ 487, 487, 517, 518, 518, 518, 518, 518, 518, 669,
+ 720, 404, 405, 403, 403, 403, 403, 403, 403, 403,
+
+ 53, 422, 1433, 670, 403, 1433, 1433, 55, 1209, 669,
+ 403, 403, 403, 403, 403, 403, 407, 408, 408, 408,
+ 408, 408, 408, 1433, 853, 55, 1433, 409, 1433, 670,
+ 55, 1433, 1433, 409, 409, 409, 409, 409, 409, 250,
+ 410, 410, 410, 410, 410, 410, 410, 664, 55, 1433,
+ 853, 411, 1433, 881, 53, 817, 422, 411, 411, 411,
+ 411, 411, 411, 53, 411, 411, 411, 411, 411, 411,
+ 411, 414, 415, 415, 415, 415, 415, 415, 1206, 673,
+ 53, 422, 416, 1203, 55, 55, 55, 820, 416, 416,
+ 416, 416, 416, 416, 420, 421, 421, 421, 421, 421,
+
+ 421, 422, 55, 55, 55, 423, 422, 882, 883, 885,
+ 55, 423, 423, 423, 423, 423, 423, 339, 426, 426,
+ 426, 426, 426, 426, 426, 341, 684, 1200, 55, 427,
+ 969, 55, 55, 887, 823, 427, 427, 427, 427, 427,
+ 427, 428, 429, 429, 429, 429, 429, 429, 422, 55,
+ 55, 1433, 430, 890, 888, 55, 969, 55, 430, 430,
+ 430, 430, 430, 430, 260, 435, 435, 435, 435, 435,
+ 435, 435, 262, 55, 422, 55, 436, 1433, 986, 55,
+ 55, 55, 436, 436, 436, 436, 436, 436, 437, 438,
+ 438, 438, 438, 438, 438, 438, 439, 55, 55, 55,
+
+ 440, 1433, 441, 990, 1433, 992, 440, 440, 440, 440,
+ 440, 440, 521, 522, 522, 522, 522, 522, 522, 590,
+ 591, 591, 591, 591, 591, 591, 1197, 1433, 441, 450,
+ 1433, 1433, 422, 451, 1433, 55, 452, 55, 678, 453,
+ 678, 454, 455, 456, 457, 484, 484, 484, 484, 484,
+ 484, 484, 679, 55, 1433, 55, 484, 1433, 55, 55,
+ 1433, 717, 484, 484, 484, 484, 484, 484, 485, 486,
+ 486, 486, 486, 486, 486, 53, 55, 55, 679, 487,
+ 1433, 1433, 1433, 1433, 1109, 487, 487, 487, 487, 487,
+ 487, 401, 488, 488, 488, 488, 488, 488, 488, 489,
+
+ 489, 489, 489, 489, 489, 489, 1040, 1433, 1433, 1433,
+ 489, 1433, 1052, 1433, 422, 55, 489, 489, 489, 489,
+ 489, 489, 406, 491, 491, 491, 491, 491, 491, 491,
+ 422, 1274, 1040, 55, 492, 1209, 248, 1433, 1052, 1433,
+ 492, 492, 492, 492, 492, 492, 598, 599, 599, 599,
+ 599, 599, 599, 602, 603, 603, 603, 603, 603, 603,
+ 55, 680, 248, 492, 492, 492, 492, 492, 492, 492,
+ 1433, 1206, 1172, 1433, 492, 681, 1203, 1200, 55, 719,
+ 492, 492, 492, 492, 492, 492, 493, 493, 493, 493,
+ 493, 493, 493, 53, 789, 797, 1433, 494, 1172, 1433,
+
+ 1197, 681, 791, 494, 494, 494, 494, 494, 494, 53,
+ 494, 494, 494, 494, 494, 494, 494, 339, 497, 497,
+ 497, 497, 497, 497, 497, 498, 828, 680, 1274, 499,
+ 1181, 343, 978, 1059, 999, 499, 499, 499, 499, 499,
+ 499, 1433, 689, 690, 690, 690, 690, 690, 690, 692,
+ 693, 693, 693, 693, 693, 693, 55, 343, 503, 504,
+ 504, 504, 504, 504, 504, 504, 505, 1433, 422, 1209,
+ 506, 860, 507, 1055, 55, 1053, 506, 506, 506, 506,
+ 506, 506, 696, 697, 697, 697, 697, 697, 697, 747,
+ 748, 748, 748, 748, 748, 748, 783, 55, 507, 339,
+
+ 510, 510, 510, 510, 510, 510, 510, 498, 1047, 422,
+ 784, 511, 1206, 1433, 1433, 55, 55, 511, 511, 511,
+ 511, 511, 511, 512, 513, 513, 513, 513, 513, 513,
+ 513, 514, 799, 848, 55, 515, 784, 516, 1085, 1433,
+ 1433, 515, 515, 515, 515, 515, 515, 755, 756, 756,
+ 756, 756, 756, 756, 759, 760, 760, 760, 760, 760,
+ 760, 783, 55, 516, 437, 523, 523, 523, 523, 523,
+ 523, 523, 439, 1043, 1041, 1433, 524, 1433, 55, 1035,
+ 55, 785, 524, 524, 524, 524, 524, 524, 525, 526,
+ 526, 526, 526, 526, 526, 786, 55, 886, 422, 527,
+
+ 1088, 1433, 55, 1433, 55, 527, 527, 527, 527, 527,
+ 527, 565, 785, 566, 566, 566, 566, 566, 566, 566,
+ 55, 786, 55, 1203, 566, 1089, 1433, 837, 1031, 55,
+ 566, 566, 566, 566, 566, 566, 567, 568, 568, 568,
+ 568, 568, 568, 568, 1029, 837, 1184, 55, 569, 1187,
+ 570, 1024, 1433, 1002, 569, 569, 569, 569, 569, 569,
+ 767, 768, 768, 768, 768, 768, 768, 770, 771, 771,
+ 771, 771, 771, 771, 833, 55, 570, 567, 569, 569,
+ 569, 569, 569, 569, 569, 1433, 848, 422, 834, 569,
+ 1433, 1200, 55, 55, 1005, 569, 569, 569, 569, 569,
+
+ 569, 406, 572, 572, 572, 572, 572, 572, 572, 860,
+ 55, 1433, 891, 573, 834, 1190, 1433, 1008, 828, 573,
+ 573, 573, 573, 573, 573, 53, 573, 573, 573, 573,
+ 573, 573, 573, 574, 574, 574, 574, 574, 574, 574,
+ 976, 1015, 1020, 1015, 575, 1231, 1239, 1247, 978, 1197,
+ 575, 575, 575, 575, 575, 575, 53, 575, 575, 575,
+ 575, 575, 575, 575, 578, 579, 579, 579, 579, 579,
+ 579, 1231, 1239, 1247, 1433, 580, 1328, 1357, 55, 55,
+ 55, 580, 580, 580, 580, 580, 580, 339, 426, 426,
+ 426, 426, 426, 426, 426, 498, 55, 55, 55, 427,
+
+ 1433, 1361, 1328, 1357, 833, 427, 427, 427, 427, 427,
+ 427, 581, 582, 582, 582, 582, 582, 582, 1433, 1188,
+ 1185, 1186, 583, 422, 55, 55, 1197, 1361, 583, 583,
+ 583, 583, 583, 583, 587, 588, 588, 588, 588, 588,
+ 588, 422, 55, 55, 1433, 589, 422, 1111, 55, 55,
+ 55, 589, 589, 589, 589, 589, 589, 503, 592, 592,
+ 592, 592, 592, 592, 592, 505, 55, 55, 55, 593,
+ 1216, 55, 55, 55, 1092, 593, 593, 593, 593, 593,
+ 593, 594, 595, 595, 595, 595, 595, 595, 422, 55,
+ 55, 55, 596, 1337, 1269, 1209, 55, 1206, 596, 596,
+
+ 596, 596, 596, 596, 512, 604, 604, 604, 604, 604,
+ 604, 604, 514, 1024, 55, 1339, 605, 1338, 1203, 55,
+ 1200, 1200, 605, 605, 605, 605, 605, 605, 606, 607,
+ 607, 607, 607, 607, 607, 422, 1035, 55, 1365, 608,
+ 1369, 1407, 1197, 55, 1203, 608, 608, 608, 608, 608,
+ 608, 437, 614, 614, 614, 614, 614, 614, 614, 439,
+ 1047, 55, 1415, 615, 1365, 1416, 1369, 1407, 1206, 615,
+ 615, 615, 615, 615, 615, 616, 617, 617, 617, 617,
+ 617, 617, 617, 618, 1059, 1092, 976, 619, 1415, 620,
+ 1181, 1416, 1209, 619, 619, 619, 619, 619, 619, 774,
+
+ 775, 775, 775, 775, 775, 775, 690, 690, 690, 690,
+ 690, 690, 690, 55, 842, 620, 644, 644, 644, 644,
+ 644, 644, 644, 1417, 1109, 1418, 1419, 644, 843, 978,
+ 55, 55, 1274, 644, 644, 644, 644, 644, 644, 645,
+ 645, 645, 645, 645, 645, 645, 884, 1179, 55, 1417,
+ 645, 1418, 1419, 1424, 843, 1181, 645, 645, 645, 645,
+ 645, 645, 567, 646, 646, 646, 646, 646, 646, 646,
+ 647, 647, 647, 647, 647, 647, 647, 1179, 1430, 1424,
+ 789, 647, 972, 55, 55, 1433, 970, 647, 647, 647,
+ 647, 647, 647, 406, 649, 649, 649, 649, 649, 649,
+
+ 649, 55, 55, 1061, 1430, 650, 422, 1008, 1049, 422,
+ 1270, 650, 650, 650, 650, 650, 650, 53, 650, 650,
+ 650, 650, 650, 650, 650, 651, 651, 651, 651, 651,
+ 651, 651, 1005, 1037, 422, 1002, 652, 1026, 422, 999,
+ 1017, 422, 652, 652, 652, 652, 652, 652, 53, 652,
+ 652, 652, 652, 652, 652, 652, 503, 655, 655, 655,
+ 655, 655, 655, 655, 656, 55, 842, 844, 657, 1111,
+ 507, 422, 1092, 844, 657, 657, 657, 657, 657, 657,
+ 1433, 845, 1008, 55, 1005, 1002, 999, 1433, 1092, 978,
+ 55, 791, 55, 860, 55, 798, 507, 512, 658, 658,
+
+ 658, 658, 658, 658, 658, 659, 1433, 845, 55, 660,
+ 55, 516, 55, 1433, 55, 660, 660, 660, 660, 660,
+ 660, 806, 803, 1061, 315, 811, 811, 811, 811, 811,
+ 811, 811, 55, 854, 854, 856, 55, 516, 664, 665,
+ 665, 665, 665, 665, 665, 665, 666, 855, 1433, 857,
+ 667, 1084, 668, 1008, 55, 856, 667, 667, 667, 667,
+ 667, 667, 768, 768, 768, 768, 768, 768, 768, 1433,
+ 55, 985, 684, 855, 1433, 857, 970, 856, 668, 503,
+ 671, 671, 671, 671, 671, 671, 671, 656, 55, 854,
+ 971, 672, 848, 1049, 1005, 1433, 1384, 672, 672, 672,
+
+ 672, 672, 672, 673, 674, 674, 674, 674, 674, 674,
+ 674, 675, 673, 844, 842, 676, 971, 677, 837, 1037,
+ 1002, 676, 676, 676, 676, 676, 676, 866, 867, 867,
+ 867, 867, 867, 867, 869, 870, 870, 870, 870, 870,
+ 870, 970, 55, 677, 512, 682, 682, 682, 682, 682,
+ 682, 682, 659, 664, 833, 1433, 683, 828, 1026, 999,
+ 55, 987, 683, 683, 683, 683, 683, 683, 684, 685,
+ 685, 685, 685, 685, 685, 685, 686, 1017, 988, 914,
+ 687, 1433, 688, 899, 55, 55, 687, 687, 687, 687,
+ 687, 687, 873, 874, 874, 874, 874, 874, 874, 1008,
+
+ 1005, 1002, 55, 55, 999, 972, 972, 55, 688, 616,
+ 698, 698, 698, 698, 698, 698, 698, 618, 889, 973,
+ 1433, 699, 1087, 997, 899, 55, 789, 699, 699, 699,
+ 699, 699, 699, 700, 701, 701, 701, 701, 701, 701,
+ 981, 978, 791, 616, 702, 973, 1433, 785, 783, 862,
+ 702, 702, 702, 702, 702, 702, 53, 53, 53, 53,
+ 53, 53, 53, 823, 850, 820, 839, 53, 55, 55,
+ 55, 55, 55, 53, 53, 53, 53, 53, 53, 918,
+ 919, 919, 919, 919, 919, 919, 55, 55, 55, 55,
+ 55, 704, 722, 817, 723, 723, 723, 723, 723, 723,
+
+ 723, 982, 983, 984, 989, 723, 991, 1336, 55, 55,
+ 55, 723, 723, 723, 723, 723, 723, 926, 927, 927,
+ 927, 927, 927, 927, 1020, 1020, 55, 55, 55, 53,
+ 724, 725, 725, 725, 725, 725, 725, 725, 1021, 1433,
+ 1083, 1086, 725, 1191, 830, 914, 899, 823, 725, 725,
+ 725, 725, 725, 725, 930, 931, 931, 931, 931, 931,
+ 931, 820, 817, 899, 1021, 1433, 53, 646, 646, 646,
+ 646, 646, 646, 646, 938, 939, 939, 939, 939, 939,
+ 939, 941, 942, 942, 942, 942, 942, 942, 945, 946,
+ 946, 946, 946, 946, 946, 954, 955, 955, 955, 955,
+
+ 955, 955, 53, 647, 647, 647, 647, 647, 647, 647,
+ 791, 618, 684, 862, 647, 823, 512, 680, 678, 673,
+ 647, 647, 647, 647, 647, 647, 726, 327, 327, 327,
+ 327, 327, 327, 327, 250, 728, 728, 728, 728, 728,
+ 728, 728, 850, 820, 503, 669, 729, 664, 839, 817,
+ 830, 827, 729, 729, 729, 729, 729, 729, 53, 729,
+ 729, 729, 729, 729, 729, 729, 732, 733, 733, 733,
+ 733, 733, 733, 743, 731, 823, 820, 734, 817, 815,
+ 731, 616, 791, 734, 734, 734, 734, 734, 734, 503,
+ 592, 592, 592, 592, 592, 592, 592, 656, 618, 437,
+
+ 612, 593, 610, 686, 659, 675, 1029, 593, 593, 593,
+ 593, 593, 593, 735, 736, 736, 736, 736, 736, 736,
+ 1030, 656, 666, 743, 737, 731, 659, 656, 731, 53,
+ 737, 737, 737, 737, 737, 737, 512, 604, 604, 604,
+ 604, 604, 604, 604, 659, 53, 1030, 53, 605, 718,
+ 53, 53, 712, 1029, 605, 605, 605, 605, 605, 605,
+ 738, 739, 739, 739, 739, 739, 739, 1433, 618, 439,
+ 512, 740, 686, 659, 339, 508, 503, 740, 740, 740,
+ 740, 740, 740, 744, 745, 745, 745, 745, 745, 745,
+ 422, 675, 656, 1433, 746, 666, 663, 586, 577, 659,
+
+ 746, 746, 746, 746, 746, 746, 664, 749, 749, 749,
+ 749, 749, 749, 749, 666, 656, 654, 577, 750, 567,
+ 565, 643, 642, 641, 750, 750, 750, 750, 750, 750,
+ 751, 752, 752, 752, 752, 752, 752, 422, 640, 639,
+ 638, 753, 637, 636, 635, 634, 633, 753, 753, 753,
+ 753, 753, 753, 673, 761, 761, 761, 761, 761, 761,
+ 761, 675, 632, 631, 630, 762, 629, 628, 627, 626,
+ 625, 762, 762, 762, 762, 762, 762, 763, 764, 764,
+ 764, 764, 764, 764, 422, 624, 623, 622, 765, 621,
+ 437, 618, 439, 433, 765, 765, 765, 765, 765, 765,
+
+ 684, 776, 776, 776, 776, 776, 776, 776, 686, 514,
+ 498, 505, 777, 586, 577, 498, 577, 571, 777, 777,
+ 777, 777, 777, 777, 778, 779, 779, 779, 779, 779,
+ 779, 422, 571, 564, 563, 780, 562, 561, 560, 559,
+ 558, 780, 780, 780, 780, 780, 780, 616, 787, 787,
+ 787, 787, 787, 787, 787, 618, 557, 556, 312, 788,
+ 222, 555, 554, 553, 552, 788, 788, 788, 788, 788,
+ 788, 789, 790, 790, 790, 790, 790, 790, 790, 791,
+ 551, 550, 549, 792, 548, 793, 547, 546, 545, 792,
+ 792, 792, 792, 792, 792, 957, 958, 958, 958, 958,
+
+ 958, 958, 961, 962, 962, 962, 962, 962, 962, 1031,
+ 1031, 793, 55, 1041, 807, 807, 807, 807, 807, 807,
+ 807, 544, 541, 1032, 1433, 807, 538, 1042, 537, 536,
+ 55, 807, 807, 807, 807, 807, 807, 808, 808, 808,
+ 808, 808, 808, 808, 535, 534, 533, 532, 808, 1032,
+ 1433, 531, 530, 1042, 808, 808, 808, 808, 808, 808,
+ 809, 810, 810, 810, 810, 810, 810, 529, 439, 262,
+ 422, 811, 339, 55, 514, 498, 505, 811, 811, 811,
+ 811, 811, 811, 250, 812, 812, 812, 812, 812, 812,
+ 812, 55, 422, 502, 419, 813, 413, 498, 496, 413,
+
+ 1383, 813, 813, 813, 813, 813, 813, 53, 813, 813,
+ 813, 813, 813, 813, 813, 664, 816, 816, 816, 816,
+ 816, 816, 816, 817, 405, 399, 483, 818, 482, 668,
+ 481, 480, 479, 818, 818, 818, 818, 818, 818, 867,
+ 867, 867, 867, 867, 867, 867, 939, 939, 939, 939,
+ 939, 939, 939, 1041, 478, 668, 673, 819, 819, 819,
+ 819, 819, 819, 819, 820, 477, 1043, 1433, 821, 476,
+ 677, 475, 1043, 1053, 821, 821, 821, 821, 821, 821,
+ 1044, 474, 473, 472, 471, 468, 1433, 1054, 467, 464,
+ 463, 462, 55, 1433, 1053, 461, 677, 684, 822, 822,
+
+ 822, 822, 822, 822, 822, 823, 1044, 460, 1433, 824,
+ 55, 688, 1433, 1054, 1055, 824, 824, 824, 824, 824,
+ 824, 955, 955, 955, 955, 955, 955, 955, 1056, 1382,
+ 113, 459, 458, 1055, 1433, 1173, 449, 688, 828, 829,
+ 829, 829, 829, 829, 829, 829, 830, 1433, 448, 1174,
+ 831, 447, 832, 446, 1056, 1173, 831, 831, 831, 831,
+ 831, 831, 1065, 1066, 1066, 1066, 1066, 1066, 1066, 1433,
+ 445, 444, 443, 1433, 1175, 1174, 1175, 442, 832, 664,
+ 835, 835, 835, 835, 835, 835, 835, 817, 1176, 260,
+ 1433, 836, 439, 262, 422, 1433, 341, 836, 836, 836,
+
+ 836, 836, 836, 837, 838, 838, 838, 838, 838, 838,
+ 838, 839, 419, 413, 1176, 840, 1433, 841, 413, 406,
+ 406, 840, 840, 840, 840, 840, 840, 1068, 1069, 1069,
+ 1069, 1069, 1069, 1069, 1072, 1073, 1073, 1073, 1073, 1073,
+ 1073, 1219, 398, 841, 673, 846, 846, 846, 846, 846,
+ 846, 846, 820, 391, 390, 1220, 847, 387, 386, 385,
+ 384, 383, 847, 847, 847, 847, 847, 847, 848, 849,
+ 849, 849, 849, 849, 849, 849, 850, 55, 55, 1219,
+ 851, 1220, 852, 382, 381, 380, 851, 851, 851, 851,
+ 851, 851, 379, 1433, 378, 55, 55, 1115, 1116, 1116,
+
+ 1116, 1116, 1116, 1116, 1224, 377, 1080, 1081, 852, 684,
+ 858, 858, 858, 858, 858, 858, 858, 823, 1225, 1433,
+ 376, 859, 375, 374, 373, 372, 371, 859, 859, 859,
+ 859, 859, 859, 860, 861, 861, 861, 861, 861, 861,
+ 861, 862, 55, 1224, 1225, 863, 366, 864, 365, 294,
+ 55, 863, 863, 863, 863, 863, 863, 1433, 364, 363,
+ 55, 1121, 1122, 1122, 1122, 1122, 1122, 1122, 55, 362,
+ 1226, 1082, 361, 864, 789, 875, 875, 875, 875, 875,
+ 875, 875, 791, 1433, 1227, 360, 876, 1411, 359, 353,
+ 262, 1226, 876, 876, 876, 876, 876, 876, 877, 878,
+
+ 878, 878, 878, 878, 878, 1433, 341, 258, 338, 879,
+ 1227, 255, 334, 249, 243, 879, 879, 879, 879, 879,
+ 879, 55, 1232, 892, 892, 892, 892, 892, 892, 892,
+ 135, 1433, 322, 321, 892, 320, 1233, 315, 294, 55,
+ 892, 892, 892, 892, 892, 892, 893, 893, 893, 893,
+ 893, 893, 893, 314, 313, 312, 311, 893, 310, 309,
+ 308, 307, 1233, 893, 893, 893, 893, 893, 893, 571,
+ 894, 894, 894, 894, 894, 894, 894, 306, 305, 304,
+ 303, 895, 302, 404, 301, 300, 297, 895, 895, 895,
+ 895, 895, 895, 1125, 1126, 1126, 1126, 1126, 1126, 1126,
+
+ 1131, 1132, 1132, 1132, 1132, 1132, 1132, 296, 1232, 404,
+ 895, 895, 895, 895, 895, 895, 895, 295, 294, 293,
+ 292, 895, 1433, 291, 290, 289, 288, 895, 895, 895,
+ 895, 895, 895, 250, 896, 896, 896, 896, 896, 896,
+ 896, 287, 286, 285, 284, 897, 283, 282, 1433, 281,
+ 280, 897, 897, 897, 897, 897, 897, 53, 897, 897,
+ 897, 897, 897, 897, 897, 900, 901, 901, 901, 901,
+ 901, 901, 279, 135, 278, 277, 902, 276, 275, 274,
+ 273, 272, 902, 902, 902, 902, 902, 902, 664, 749,
+ 749, 749, 749, 749, 749, 749, 817, 271, 270, 269,
+
+ 750, 268, 267, 266, 265, 1234, 750, 750, 750, 750,
+ 750, 750, 903, 904, 904, 904, 904, 904, 904, 1235,
+ 262, 250, 255, 905, 242, 241, 240, 239, 238, 905,
+ 905, 905, 905, 905, 905, 673, 761, 761, 761, 761,
+ 761, 761, 761, 820, 237, 1235, 236, 762, 235, 234,
+ 233, 230, 1234, 762, 762, 762, 762, 762, 762, 906,
+ 907, 907, 907, 907, 907, 907, 1433, 227, 224, 223,
+ 908, 222, 221, 218, 217, 216, 908, 908, 908, 908,
+ 908, 908, 684, 776, 776, 776, 776, 776, 776, 776,
+ 823, 215, 1433, 214, 777, 213, 212, 211, 210, 1240,
+
+ 777, 777, 777, 777, 777, 777, 909, 910, 910, 910,
+ 910, 910, 910, 1241, 209, 208, 207, 911, 206, 205,
+ 204, 203, 199, 911, 911, 911, 911, 911, 911, 915,
+ 916, 916, 916, 916, 916, 916, 422, 198, 188, 1241,
+ 917, 187, 186, 183, 182, 181, 917, 917, 917, 917,
+ 917, 917, 828, 920, 920, 920, 920, 920, 920, 920,
+ 830, 180, 179, 178, 921, 177, 176, 172, 171, 170,
+ 921, 921, 921, 921, 921, 921, 922, 923, 923, 923,
+ 923, 923, 923, 422, 169, 168, 167, 924, 166, 165,
+ 164, 163, 162, 924, 924, 924, 924, 924, 924, 837,
+
+ 932, 932, 932, 932, 932, 932, 932, 839, 161, 160,
+ 159, 933, 158, 157, 152, 143, 142, 933, 933, 933,
+ 933, 933, 933, 934, 935, 935, 935, 935, 935, 935,
+ 422, 137, 88, 59, 936, 47, 45, 1433, 1433, 1433,
+ 936, 936, 936, 936, 936, 936, 848, 947, 947, 947,
+ 947, 947, 947, 947, 850, 1433, 1433, 1433, 948, 1433,
+ 1433, 1433, 1433, 1433, 948, 948, 948, 948, 948, 948,
+ 949, 950, 950, 950, 950, 950, 950, 422, 1433, 1433,
+ 1433, 951, 1433, 1433, 1433, 1433, 1433, 951, 951, 951,
+ 951, 951, 951, 860, 963, 963, 963, 963, 963, 963,
+
+ 963, 862, 1433, 1433, 1433, 964, 1433, 1433, 1433, 1433,
+ 1433, 964, 964, 964, 964, 964, 964, 965, 966, 966,
+ 966, 966, 966, 966, 422, 1433, 1433, 1433, 967, 1433,
+ 1433, 1433, 1433, 1433, 967, 967, 967, 967, 967, 967,
+ 789, 974, 974, 974, 974, 974, 974, 974, 791, 1433,
+ 1433, 1433, 975, 1433, 1433, 1433, 1433, 1433, 975, 975,
+ 975, 975, 975, 975, 976, 977, 977, 977, 977, 977,
+ 977, 977, 978, 1433, 1433, 1433, 979, 1433, 980, 1433,
+ 1433, 1433, 979, 979, 979, 979, 979, 979, 1134, 1135,
+ 1135, 1135, 1135, 1135, 1135, 1138, 1139, 1139, 1139, 1139,
+
+ 1139, 1139, 1433, 1433, 980, 55, 571, 993, 993, 993,
+ 993, 993, 993, 993, 1433, 1433, 1433, 1433, 994, 1433,
+ 1433, 1433, 1433, 55, 994, 994, 994, 994, 994, 994,
+ 53, 994, 994, 994, 994, 994, 994, 994, 55, 250,
+ 995, 995, 995, 995, 995, 995, 995, 1145, 1146, 1146,
+ 1146, 1146, 1146, 1146, 1433, 1433, 55, 828, 998, 998,
+ 998, 998, 998, 998, 998, 999, 1433, 1433, 1433, 1000,
+ 1433, 832, 1433, 1433, 1433, 1000, 1000, 1000, 1000, 1000,
+ 1000, 1148, 1149, 1149, 1149, 1149, 1149, 1149, 1152, 1153,
+ 1153, 1153, 1153, 1153, 1153, 1433, 1433, 832, 837, 1001,
+
+ 1001, 1001, 1001, 1001, 1001, 1001, 1002, 1433, 1433, 1433,
+ 1003, 1433, 841, 1433, 1433, 1433, 1003, 1003, 1003, 1003,
+ 1003, 1003, 1159, 1160, 1160, 1160, 1160, 1160, 1160, 1162,
+ 1163, 1163, 1163, 1163, 1163, 1163, 1433, 1433, 841, 848,
+ 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1005, 1433, 1433,
+ 1433, 1006, 1433, 852, 1433, 1433, 1433, 1006, 1006, 1006,
+ 1006, 1006, 1006, 1166, 1167, 1167, 1167, 1167, 1167, 1167,
+ 1066, 1066, 1066, 1066, 1066, 1066, 1066, 55, 1433, 852,
+ 860, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1008, 1433,
+ 1240, 1242, 1009, 1433, 864, 55, 1433, 1433, 1009, 1009,
+
+ 1009, 1009, 1009, 1009, 1433, 1243, 1189, 1211, 1212, 1212,
+ 1212, 1212, 1212, 1212, 1433, 1242, 1433, 1433, 1433, 1248,
+ 864, 1011, 1012, 1012, 1012, 1012, 1012, 1012, 1013, 1433,
+ 1433, 1243, 1014, 1249, 1433, 1433, 1433, 1433, 1014, 1014,
+ 1014, 1014, 1014, 1014, 1015, 1016, 1016, 1016, 1016, 1016,
+ 1016, 1016, 1017, 1433, 1433, 1433, 1018, 1433, 1019, 1249,
+ 1433, 1433, 1018, 1018, 1018, 1018, 1018, 1018, 1132, 1132,
+ 1132, 1132, 1132, 1132, 1132, 1146, 1146, 1146, 1146, 1146,
+ 1146, 1146, 1248, 1433, 1019, 828, 1022, 1022, 1022, 1022,
+ 1022, 1022, 1022, 999, 1433, 1433, 1433, 1023, 1433, 1433,
+
+ 1433, 1433, 1433, 1023, 1023, 1023, 1023, 1023, 1023, 1024,
+ 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1026, 1433, 1433,
+ 1433, 1027, 1433, 1028, 1433, 1433, 1250, 1027, 1027, 1027,
+ 1027, 1027, 1027, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
+ 1251, 1433, 1433, 1433, 1433, 1250, 1433, 1282, 1433, 1028,
+ 837, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1002, 1433,
+ 1433, 1283, 1034, 1433, 1433, 1433, 1251, 1433, 1034, 1034,
+ 1034, 1034, 1034, 1034, 1035, 1036, 1036, 1036, 1036, 1036,
+ 1036, 1036, 1037, 1433, 1433, 1433, 1038, 1283, 1039, 1433,
+ 1433, 1433, 1038, 1038, 1038, 1038, 1038, 1038, 1256, 1257,
+
+ 1257, 1257, 1257, 1257, 1257, 1259, 1260, 1260, 1260, 1260,
+ 1260, 1260, 1282, 1433, 1039, 848, 1045, 1045, 1045, 1045,
+ 1045, 1045, 1045, 1005, 1433, 1433, 1433, 1046, 1433, 1433,
+ 1433, 1433, 1433, 1046, 1046, 1046, 1046, 1046, 1046, 1047,
+ 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1049, 1433, 1433,
+ 1433, 1050, 1433, 1051, 1433, 1433, 1433, 1050, 1050, 1050,
+ 1050, 1050, 1050, 1263, 1264, 1264, 1264, 1264, 1264, 1264,
+ 1288, 1289, 1289, 1289, 1289, 1289, 1289, 1329, 1433, 1051,
+ 860, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1008, 1433,
+ 1433, 1330, 1058, 1433, 1433, 1433, 1433, 55, 1058, 1058,
+
+ 1058, 1058, 1058, 1058, 1059, 1060, 1060, 1060, 1060, 1060,
+ 1060, 1060, 1061, 55, 1433, 55, 1062, 1330, 1063, 1433,
+ 1433, 1433, 1062, 1062, 1062, 1062, 1062, 1062, 1271, 1433,
+ 1433, 55, 1293, 1294, 1294, 1294, 1294, 1294, 1294, 1433,
+ 1433, 1329, 1272, 1433, 1063, 976, 1074, 1074, 1074, 1074,
+ 1074, 1074, 1074, 978, 1433, 1433, 1433, 1075, 1433, 1433,
+ 1433, 1433, 1331, 1075, 1075, 1075, 1075, 1075, 1075, 1076,
+ 1077, 1077, 1077, 1077, 1077, 1077, 1332, 1433, 1433, 1433,
+ 1078, 1433, 1433, 1433, 1433, 1433, 1078, 1078, 1078, 1078,
+ 1078, 1078, 55, 571, 1090, 1090, 1090, 1090, 1090, 1090,
+
+ 1090, 1433, 1332, 1433, 1433, 897, 1433, 1433, 1433, 1433,
+ 55, 897, 897, 897, 897, 897, 897, 53, 897, 897,
+ 897, 897, 897, 897, 897, 55, 250, 995, 995, 995,
+ 995, 995, 995, 995, 1296, 1297, 1297, 1297, 1297, 1297,
+ 1297, 1433, 1331, 55, 1093, 1094, 1094, 1094, 1094, 1094,
+ 1094, 1433, 1433, 1433, 1433, 1095, 1433, 1433, 1433, 1433,
+ 1433, 1095, 1095, 1095, 1095, 1095, 1095, 828, 920, 920,
+ 920, 920, 920, 920, 920, 999, 1433, 1433, 1433, 921,
+ 1433, 1433, 1433, 1433, 1354, 921, 921, 921, 921, 921,
+ 921, 1096, 1097, 1097, 1097, 1097, 1097, 1097, 1355, 1433,
+
+ 1433, 1433, 1098, 1433, 1433, 1433, 1433, 1433, 1098, 1098,
+ 1098, 1098, 1098, 1098, 837, 932, 932, 932, 932, 932,
+ 932, 932, 1002, 1433, 1355, 1433, 933, 1433, 1433, 1433,
+ 1433, 1354, 933, 933, 933, 933, 933, 933, 1099, 1100,
+ 1100, 1100, 1100, 1100, 1100, 1433, 1433, 1433, 1433, 1101,
+ 1433, 1433, 1433, 1433, 1433, 1101, 1101, 1101, 1101, 1101,
+ 1101, 848, 947, 947, 947, 947, 947, 947, 947, 1005,
+ 1433, 1433, 1433, 948, 1433, 1433, 1433, 1433, 1358, 948,
+ 948, 948, 948, 948, 948, 1102, 1103, 1103, 1103, 1103,
+ 1103, 1103, 1359, 1433, 1433, 1433, 1104, 1433, 1433, 1433,
+
+ 1433, 1433, 1104, 1104, 1104, 1104, 1104, 1104, 860, 963,
+ 963, 963, 963, 963, 963, 963, 1008, 1433, 1359, 1433,
+ 964, 1433, 1433, 1433, 1433, 1358, 964, 964, 964, 964,
+ 964, 964, 1105, 1106, 1106, 1106, 1106, 1106, 1106, 1433,
+ 1433, 1433, 1433, 1107, 1433, 1433, 1433, 1433, 1433, 1107,
+ 1107, 1107, 1107, 1107, 1107, 1109, 1110, 1110, 1110, 1110,
+ 1110, 1110, 1110, 1111, 1433, 1433, 1433, 1112, 1433, 1113,
+ 1433, 1433, 1433, 1112, 1112, 1112, 1112, 1112, 1112, 1302,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1305, 1306, 1306, 1306,
+ 1306, 1306, 1306, 1362, 1433, 1113, 1015, 1117, 1117, 1117,
+
+ 1117, 1117, 1117, 1117, 1017, 1433, 1433, 1363, 1118, 1433,
+ 1433, 1433, 1433, 1433, 1118, 1118, 1118, 1118, 1118, 1118,
+ 1024, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1026, 1433,
+ 1433, 1433, 1128, 1363, 1433, 1433, 1433, 1433, 1128, 1128,
+ 1128, 1128, 1128, 1128, 1035, 1140, 1140, 1140, 1140, 1140,
+ 1140, 1140, 1037, 1433, 1433, 1433, 1141, 1433, 1433, 1433,
+ 1433, 1433, 1141, 1141, 1141, 1141, 1141, 1141, 1047, 1154,
+ 1154, 1154, 1154, 1154, 1154, 1154, 1049, 1433, 1433, 1433,
+ 1155, 1433, 1433, 1433, 1433, 1433, 1155, 1155, 1155, 1155,
+ 1155, 1155, 1059, 1168, 1168, 1168, 1168, 1168, 1168, 1168,
+
+ 1061, 1433, 1433, 1433, 1169, 1433, 1433, 1433, 1433, 1433,
+ 1169, 1169, 1169, 1169, 1169, 1169, 976, 1177, 1177, 1177,
+ 1177, 1177, 1177, 1177, 978, 1433, 1433, 1433, 1178, 1433,
+ 1433, 1433, 1433, 1433, 1178, 1178, 1178, 1178, 1178, 1178,
+ 1179, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1181, 1433,
+ 1433, 1433, 1182, 1433, 1183, 1433, 1433, 1433, 1182, 1182,
+ 1182, 1182, 1182, 1182, 1311, 1312, 1312, 1312, 1312, 1312,
+ 1312, 1314, 1315, 1315, 1315, 1315, 1315, 1315, 1433, 1433,
+ 1183, 55, 571, 488, 488, 488, 488, 488, 488, 488,
+ 1320, 1321, 1321, 1321, 1321, 1321, 1321, 1433, 1362, 55,
+
+ 1192, 1193, 1193, 1193, 1193, 1193, 1193, 1194, 1433, 1433,
+ 1433, 1195, 1433, 1433, 1433, 1433, 1433, 1195, 1195, 1195,
+ 1195, 1195, 1195, 1015, 1196, 1196, 1196, 1196, 1196, 1196,
+ 1196, 1197, 1433, 1433, 1433, 1198, 1433, 1019, 1433, 1433,
+ 1433, 1198, 1198, 1198, 1198, 1198, 1198, 1323, 1324, 1324,
+ 1324, 1324, 1324, 1324, 1257, 1257, 1257, 1257, 1257, 1257,
+ 1257, 1433, 1433, 1019, 1024, 1199, 1199, 1199, 1199, 1199,
+ 1199, 1199, 1200, 1433, 1433, 1433, 1201, 1433, 1028, 1433,
+ 1433, 1433, 1201, 1201, 1201, 1201, 1201, 1201, 1348, 1349,
+ 1349, 1349, 1349, 1349, 1349, 1294, 1294, 1294, 1294, 1294,
+
+ 1294, 1294, 1433, 1433, 1028, 1035, 1202, 1202, 1202, 1202,
+ 1202, 1202, 1202, 1203, 1433, 1433, 1433, 1204, 1433, 1039,
+ 1433, 1433, 1433, 1204, 1204, 1204, 1204, 1204, 1204, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1312, 1312, 1312, 1312,
+ 1312, 1312, 1312, 1366, 1433, 1039, 1047, 1205, 1205, 1205,
+ 1205, 1205, 1205, 1205, 1206, 1433, 1366, 1367, 1207, 1433,
+ 1051, 1433, 1433, 1433, 1207, 1207, 1207, 1207, 1207, 1207,
+ 1433, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1433, 1433,
+ 1433, 1433, 1433, 1367, 1370, 1433, 1051, 1059, 1208, 1208,
+ 1208, 1208, 1208, 1208, 1208, 1209, 1433, 1370, 1371, 1210,
+
+ 1433, 1063, 1433, 1433, 1433, 1210, 1210, 1210, 1210, 1210,
+ 1210, 1433, 1374, 1375, 1375, 1375, 1375, 1375, 1375, 1433,
+ 1433, 1433, 1433, 1433, 1371, 1386, 1433, 1063, 1109, 1213,
+ 1213, 1213, 1213, 1213, 1213, 1213, 1111, 1433, 1433, 1387,
+ 1214, 1433, 1433, 1433, 1433, 1433, 1214, 1214, 1214, 1214,
+ 1214, 1214, 1015, 1221, 1221, 1221, 1221, 1221, 1221, 1221,
+ 1197, 1433, 1433, 1433, 1222, 1387, 1433, 1433, 1433, 1433,
+ 1222, 1222, 1222, 1222, 1222, 1222, 1024, 1228, 1228, 1228,
+ 1228, 1228, 1228, 1228, 1200, 1433, 1433, 1433, 1229, 1433,
+ 1433, 1433, 1433, 1433, 1229, 1229, 1229, 1229, 1229, 1229,
+
+ 1035, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1203, 1433,
+ 1433, 1433, 1237, 1433, 1433, 1433, 1433, 1433, 1237, 1237,
+ 1237, 1237, 1237, 1237, 1047, 1244, 1244, 1244, 1244, 1244,
+ 1244, 1244, 1206, 1433, 1433, 1433, 1245, 1433, 1433, 1433,
+ 1433, 1433, 1245, 1245, 1245, 1245, 1245, 1245, 1059, 1252,
+ 1252, 1252, 1252, 1252, 1252, 1252, 1209, 1433, 1433, 1433,
+ 1253, 1433, 1433, 1433, 1433, 1433, 1253, 1253, 1253, 1253,
+ 1253, 1253, 1179, 1265, 1265, 1265, 1265, 1265, 1265, 1265,
+ 1181, 1433, 1433, 1433, 1266, 1433, 1433, 1433, 1433, 1433,
+ 1266, 1266, 1266, 1266, 1266, 1266, 1109, 1273, 1273, 1273,
+
+ 1273, 1273, 1273, 1273, 1274, 1433, 1433, 1433, 1275, 1433,
+ 1113, 1433, 1433, 1386, 1275, 1275, 1275, 1275, 1275, 1275,
+ 1377, 1378, 1378, 1378, 1378, 1378, 1378, 1433, 1388, 1389,
+ 1389, 1389, 1389, 1389, 1389, 1433, 1113, 1015, 1117, 1117,
+ 1117, 1117, 1117, 1117, 1117, 1197, 1433, 1433, 1433, 1118,
+ 1433, 1433, 1433, 1433, 1433, 1118, 1118, 1118, 1118, 1118,
+ 1118, 1024, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1200,
+ 1433, 1433, 1433, 1128, 1433, 1433, 1433, 1433, 1433, 1128,
+ 1128, 1128, 1128, 1128, 1128, 1035, 1140, 1140, 1140, 1140,
+ 1140, 1140, 1140, 1203, 1433, 1433, 1433, 1141, 1433, 1433,
+
+ 1433, 1433, 1433, 1141, 1141, 1141, 1141, 1141, 1141, 1047,
+ 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1206, 1433, 1433,
+ 1433, 1155, 1433, 1433, 1433, 1433, 1433, 1155, 1155, 1155,
+ 1155, 1155, 1155, 1059, 1168, 1168, 1168, 1168, 1168, 1168,
+ 1168, 1209, 1433, 1433, 1433, 1169, 1433, 1433, 1433, 1433,
+ 1433, 1169, 1169, 1169, 1169, 1169, 1169, 1109, 1284, 1284,
+ 1284, 1284, 1284, 1284, 1284, 1274, 1433, 1433, 1433, 1285,
+ 1433, 1433, 1433, 1433, 1433, 1285, 1285, 1285, 1285, 1285,
+ 1285, 1179, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1181,
+ 1433, 1433, 1433, 1334, 1433, 1433, 1433, 1433, 1433, 1334,
+
+ 1334, 1334, 1334, 1334, 1334, 1109, 1213, 1213, 1213, 1213,
+ 1213, 1213, 1213, 1274, 1433, 1433, 1433, 1214, 1433, 1433,
+ 1433, 1433, 1433, 1214, 1214, 1214, 1214, 1214, 1214, 1392,
+ 1393, 1393, 1393, 1393, 1393, 1393, 1396, 1397, 1397, 1397,
+ 1397, 1397, 1397, 1400, 1401, 1401, 1401, 1401, 1401, 1401,
+ 1404, 1405, 1405, 1405, 1405, 1405, 1405, 1375, 1375, 1375,
+ 1375, 1375, 1375, 1375, 1408, 1408, 1412, 1413, 1413, 1413,
+ 1413, 1413, 1413, 1433, 1433, 1433, 1433, 1433, 1409, 1433,
+ 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1393, 1393, 1393,
+ 1393, 1393, 1393, 1393, 1397, 1397, 1397, 1397, 1397, 1397,
+
+ 1397, 1433, 1433, 1433, 1409, 1433, 1401, 1401, 1401, 1401,
+ 1401, 1401, 1401, 1405, 1405, 1405, 1405, 1405, 1405, 1405,
+ 1421, 1422, 1422, 1422, 1422, 1422, 1422, 1413, 1413, 1413,
+ 1413, 1413, 1413, 1413, 1422, 1422, 1422, 1422, 1422, 1422,
+ 1422, 46, 1433, 1433, 1433, 1433, 46, 46, 46, 64,
+ 1433, 64, 64, 64, 64, 64, 64, 64, 144, 1433,
+ 144, 151, 151, 151, 254, 254, 254, 263, 263, 263,
+ 333, 333, 333, 336, 336, 336, 337, 337, 337, 344,
+ 344, 344, 342, 342, 342, 348, 348, 348, 352, 1433,
+ 352, 412, 412, 412, 417, 417, 417, 418, 418, 418,
+
+ 427, 427, 427, 431, 1433, 431, 432, 432, 432, 346,
+ 346, 1433, 1433, 346, 436, 436, 436, 440, 440, 440,
+ 336, 336, 336, 495, 495, 495, 499, 499, 499, 500,
+ 500, 500, 501, 501, 501, 344, 344, 344, 506, 506,
+ 506, 425, 425, 1433, 1433, 425, 511, 511, 511, 515,
+ 515, 515, 519, 1433, 519, 520, 520, 520, 524, 524,
+ 524, 528, 1433, 528, 576, 576, 576, 427, 427, 427,
+ 584, 584, 584, 585, 585, 585, 593, 593, 593, 597,
+ 1433, 597, 600, 1433, 600, 601, 601, 601, 605, 605,
+ 605, 609, 1433, 609, 518, 518, 1433, 1433, 518, 522,
+
+ 522, 1433, 1433, 522, 615, 615, 615, 619, 619, 619,
+ 528, 528, 1433, 528, 500, 500, 500, 653, 653, 653,
+ 657, 657, 657, 660, 660, 660, 661, 661, 661, 662,
+ 662, 662, 667, 667, 667, 591, 591, 1433, 1433, 591,
+ 672, 672, 672, 676, 676, 676, 597, 597, 1433, 597,
+ 599, 599, 1433, 1433, 599, 600, 600, 1433, 600, 601,
+ 601, 603, 603, 1433, 1433, 603, 683, 683, 683, 687,
+ 687, 687, 609, 609, 1433, 609, 691, 1433, 691, 694,
+ 1433, 694, 695, 695, 695, 699, 699, 699, 703, 1433,
+ 703, 730, 730, 730, 593, 593, 593, 605, 605, 605,
+
+ 741, 741, 741, 742, 742, 742, 750, 750, 750, 754,
+ 1433, 754, 757, 1433, 757, 758, 758, 758, 762, 762,
+ 762, 766, 1433, 766, 769, 1433, 769, 772, 1433, 772,
+ 773, 773, 773, 777, 777, 777, 781, 1433, 781, 690,
+ 1433, 1433, 690, 691, 691, 1433, 691, 693, 693, 1433,
+ 1433, 693, 694, 694, 1433, 694, 695, 695, 697, 697,
+ 1433, 1433, 697, 788, 788, 788, 792, 792, 792, 703,
+ 703, 1433, 703, 53, 53, 53, 1433, 53, 53, 661,
+ 661, 661, 814, 814, 814, 818, 818, 818, 821, 821,
+ 821, 824, 824, 824, 825, 825, 825, 826, 826, 826,
+
+ 831, 831, 831, 748, 748, 1433, 1433, 748, 836, 836,
+ 836, 840, 840, 840, 754, 754, 1433, 754, 756, 756,
+ 1433, 1433, 756, 757, 757, 1433, 757, 758, 758, 760,
+ 760, 1433, 1433, 760, 847, 847, 847, 851, 851, 851,
+ 766, 766, 1433, 766, 768, 1433, 1433, 768, 769, 769,
+ 1433, 769, 771, 771, 1433, 1433, 771, 772, 772, 1433,
+ 772, 773, 773, 775, 775, 1433, 1433, 775, 859, 859,
+ 859, 863, 863, 863, 781, 781, 1433, 781, 865, 1433,
+ 865, 868, 1433, 868, 871, 1433, 871, 872, 872, 872,
+ 876, 876, 876, 880, 1433, 880, 53, 53, 53, 1433,
+
+ 53, 53, 898, 898, 898, 750, 750, 750, 762, 762,
+ 762, 777, 777, 777, 912, 912, 912, 913, 913, 913,
+ 921, 921, 921, 925, 1433, 925, 928, 1433, 928, 929,
+ 929, 929, 933, 933, 933, 937, 1433, 937, 940, 1433,
+ 940, 943, 1433, 943, 944, 944, 944, 948, 948, 948,
+ 952, 1433, 952, 953, 1433, 953, 956, 1433, 956, 959,
+ 1433, 959, 960, 960, 960, 964, 964, 964, 968, 1433,
+ 968, 865, 1433, 865, 867, 1433, 1433, 867, 868, 868,
+ 1433, 868, 870, 870, 1433, 1433, 870, 871, 871, 1433,
+ 871, 872, 872, 874, 874, 1433, 1433, 874, 975, 975,
+
+ 975, 979, 979, 979, 880, 880, 1433, 880, 53, 53,
+ 53, 1433, 53, 53, 825, 825, 825, 996, 996, 996,
+ 1000, 1000, 1000, 1003, 1003, 1003, 1006, 1006, 1006, 1009,
+ 1009, 1009, 1010, 1010, 1010, 1018, 1018, 1018, 919, 919,
+ 1433, 1433, 919, 1023, 1023, 1023, 1027, 1027, 1027, 925,
+ 925, 1433, 925, 927, 927, 1433, 1433, 927, 928, 928,
+ 1433, 928, 929, 929, 931, 931, 1433, 1433, 931, 1034,
+ 1034, 1034, 1038, 1038, 1038, 937, 937, 1433, 937, 939,
+ 1433, 1433, 939, 940, 940, 1433, 940, 942, 942, 1433,
+ 1433, 942, 943, 943, 1433, 943, 944, 944, 946, 946,
+
+ 1433, 1433, 946, 1046, 1046, 1046, 1050, 1050, 1050, 952,
+ 952, 1433, 952, 953, 1433, 953, 955, 1433, 1433, 955,
+ 956, 956, 1433, 956, 958, 958, 1433, 1433, 958, 959,
+ 959, 1433, 959, 960, 960, 962, 962, 1433, 1433, 962,
+ 1058, 1058, 1058, 1062, 1062, 1062, 968, 968, 1433, 968,
+ 1064, 1433, 1064, 1067, 1433, 1067, 1070, 1433, 1070, 1071,
+ 1071, 1071, 1075, 1075, 1075, 1079, 1433, 1079, 53, 53,
+ 53, 1433, 53, 53, 1091, 1091, 1091, 921, 921, 921,
+ 933, 933, 933, 948, 948, 948, 964, 964, 964, 1108,
+ 1108, 1108, 1114, 1114, 1114, 1112, 1112, 1112, 1119, 1119,
+
+ 1119, 1118, 1118, 1118, 1120, 1433, 1120, 1123, 1433, 1123,
+ 1124, 1124, 1124, 1129, 1129, 1129, 1128, 1128, 1128, 1130,
+ 1433, 1130, 1133, 1433, 1133, 1136, 1433, 1136, 1137, 1137,
+ 1137, 1142, 1142, 1142, 1141, 1141, 1141, 1143, 1433, 1143,
+ 1144, 1433, 1144, 1147, 1433, 1147, 1150, 1433, 1150, 1151,
+ 1151, 1151, 1156, 1156, 1156, 1155, 1155, 1155, 1157, 1433,
+ 1157, 1158, 1433, 1158, 1161, 1433, 1161, 1164, 1433, 1164,
+ 1165, 1165, 1165, 1170, 1170, 1170, 1169, 1169, 1169, 1171,
+ 1433, 1171, 1064, 1433, 1064, 1066, 1433, 1433, 1066, 1067,
+ 1067, 1433, 1067, 1069, 1069, 1433, 1433, 1069, 1070, 1070,
+
+ 1433, 1070, 1071, 1071, 1073, 1073, 1433, 1433, 1073, 1178,
+ 1178, 1178, 1182, 1182, 1182, 1079, 1079, 1433, 1079, 53,
+ 53, 53, 1433, 53, 53, 1010, 1010, 1010, 1198, 1198,
+ 1198, 1201, 1201, 1201, 1204, 1204, 1204, 1207, 1207, 1207,
+ 1210, 1210, 1210, 1215, 1215, 1215, 1214, 1214, 1214, 1217,
+ 1433, 1217, 1218, 1218, 1218, 1116, 1116, 1433, 1433, 1116,
+ 1222, 1222, 1222, 1223, 1223, 1223, 1120, 1120, 1433, 1120,
+ 1122, 1122, 1433, 1433, 1122, 1123, 1123, 1433, 1123, 1124,
+ 1124, 1126, 1126, 1433, 1433, 1126, 1229, 1229, 1229, 1230,
+ 1230, 1230, 1130, 1130, 1433, 1130, 1132, 1433, 1433, 1132,
+
+ 1133, 1133, 1433, 1133, 1135, 1135, 1433, 1433, 1135, 1136,
+ 1136, 1433, 1136, 1137, 1137, 1139, 1139, 1433, 1433, 1139,
+ 1237, 1237, 1237, 1238, 1238, 1238, 1143, 1143, 1433, 1143,
+ 1144, 1433, 1144, 1146, 1433, 1433, 1146, 1147, 1147, 1433,
+ 1147, 1149, 1149, 1433, 1433, 1149, 1150, 1150, 1433, 1150,
+ 1151, 1151, 1153, 1153, 1433, 1433, 1153, 1245, 1245, 1245,
+ 1246, 1246, 1246, 1157, 1157, 1433, 1157, 1158, 1433, 1158,
+ 1160, 1433, 1433, 1160, 1161, 1161, 1433, 1161, 1163, 1163,
+ 1433, 1433, 1163, 1164, 1164, 1433, 1164, 1165, 1165, 1167,
+ 1167, 1433, 1433, 1167, 1253, 1253, 1253, 1254, 1254, 1254,
+
+ 1171, 1171, 1433, 1171, 1255, 1433, 1255, 1258, 1433, 1258,
+ 1261, 1433, 1261, 1262, 1262, 1262, 1267, 1433, 1267, 1266,
+ 1266, 1266, 1268, 1433, 1268, 53, 53, 53, 1433, 53,
+ 53, 1276, 1433, 1276, 1275, 1275, 1275, 1277, 1433, 1277,
+ 1118, 1118, 1118, 1278, 1433, 1278, 1128, 1128, 1128, 1279,
+ 1433, 1279, 1141, 1141, 1141, 1280, 1433, 1280, 1155, 1155,
+ 1155, 1281, 1433, 1281, 1169, 1169, 1169, 1212, 1212, 1433,
+ 1433, 1212, 1285, 1285, 1285, 1286, 1286, 1286, 344, 344,
+ 344, 1217, 1217, 1433, 1217, 1287, 1287, 1287, 1290, 1433,
+ 1290, 1291, 1291, 1291, 1292, 1292, 1292, 1295, 1433, 1295,
+
+ 1298, 1433, 1298, 1299, 1299, 1299, 1300, 1300, 1300, 1301,
+ 1433, 1301, 1304, 1433, 1304, 1307, 1433, 1307, 1308, 1308,
+ 1308, 1309, 1309, 1309, 1310, 1433, 1310, 1313, 1433, 1313,
+ 1316, 1433, 1316, 1317, 1317, 1317, 1318, 1318, 1318, 1319,
+ 1433, 1319, 1322, 1433, 1322, 1325, 1433, 1325, 1326, 1326,
+ 1326, 1327, 1327, 1327, 1255, 1433, 1255, 1257, 1433, 1433,
+ 1257, 1258, 1258, 1433, 1258, 1260, 1260, 1433, 1433, 1260,
+ 1261, 1261, 1433, 1261, 1262, 1262, 1264, 1264, 1433, 1433,
+ 1264, 1334, 1334, 1334, 1335, 1433, 1335, 1268, 1268, 1433,
+ 1268, 53, 53, 53, 1433, 53, 53, 1340, 1340, 1340,
+
+ 1214, 1214, 1214, 1342, 1433, 1342, 1343, 1433, 1343, 1344,
+ 1433, 1344, 1345, 1433, 1345, 1346, 1433, 1346, 1347, 1433,
+ 1347, 1350, 1433, 1350, 1351, 1351, 1351, 1352, 1352, 1352,
+ 1353, 1433, 1353, 1289, 1289, 1433, 1433, 1289, 1290, 1290,
+ 1433, 1290, 1291, 1291, 1356, 1433, 1356, 1294, 1433, 1433,
+ 1294, 1295, 1295, 1433, 1295, 1297, 1297, 1433, 1433, 1297,
+ 1298, 1298, 1433, 1298, 1299, 1299, 1360, 1433, 1360, 1301,
+ 1433, 1301, 1303, 1433, 1433, 1303, 1304, 1304, 1433, 1304,
+ 1306, 1306, 1433, 1433, 1306, 1307, 1307, 1433, 1307, 1308,
+ 1308, 1364, 1433, 1364, 1310, 1433, 1310, 1312, 1433, 1433,
+
+ 1312, 1313, 1313, 1433, 1313, 1315, 1315, 1433, 1433, 1315,
+ 1316, 1316, 1433, 1316, 1317, 1317, 1368, 1433, 1368, 1319,
+ 1433, 1319, 1321, 1433, 1433, 1321, 1322, 1322, 1433, 1322,
+ 1324, 1324, 1433, 1433, 1324, 1325, 1325, 1433, 1325, 1326,
+ 1326, 1372, 1433, 1372, 1373, 1433, 1373, 1376, 1433, 1376,
+ 1379, 1433, 1379, 1380, 1380, 1380, 1381, 1433, 1381, 53,
+ 53, 53, 1433, 53, 53, 1385, 1433, 1385, 1287, 1433,
+ 1287, 1292, 1433, 1292, 1300, 1433, 1300, 1309, 1433, 1309,
+ 1318, 1433, 1318, 1327, 1433, 1327, 1349, 1349, 1433, 1433,
+ 1349, 1350, 1350, 1433, 1350, 1351, 1351, 1341, 1433, 1341,
+
+ 1390, 1433, 1390, 1391, 1433, 1391, 1394, 1433, 1394, 1395,
+ 1433, 1395, 1398, 1433, 1398, 1399, 1433, 1399, 1402, 1433,
+ 1402, 1403, 1433, 1403, 1406, 1433, 1406, 1375, 1433, 1433,
+ 1375, 1378, 1378, 1433, 1433, 1378, 1410, 1433, 1410, 1352,
+ 1433, 1352, 1414, 1433, 1414, 1389, 1433, 1433, 1389, 1393,
+ 1433, 1433, 1393, 1397, 1433, 1433, 1397, 1401, 1433, 1433,
+ 1401, 1405, 1433, 1433, 1405, 1420, 1433, 1420, 1423, 1433,
+ 1423, 1413, 1433, 1433, 1413, 1425, 1433, 1425, 1426, 1433,
+ 1426, 1427, 1433, 1427, 1428, 1433, 1428, 1429, 1433, 1429,
+ 1422, 1433, 1433, 1422, 1431, 1433, 1431, 1432, 1433, 1432,
+
+ 3, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433
+ } ;
+
+static yyconst flex_int16_t yy_chk[7455] =
+ { 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, 4, 7, 15, 4, 7, 4, 7,
+ 9, 4, 7, 9, 34, 9, 17, 17, 9, 19,
+ 19, 4, 7, 34, 24, 27, 27, 1261, 9, 4,
+ 7, 15, 12, 39, 131, 12, 9, 12, 24, 23,
+ 12, 23, 23, 28, 131, 24, 23, 39, 28, 25,
+
+ 12, 23, 25, 29, 39, 23, 25, 23, 12, 14,
+ 14, 14, 14, 14, 14, 14, 14, 14, 14, 29,
+ 91, 1262, 14, 14, 14, 91, 82, 14, 14, 14,
+ 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
+ 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
+ 14, 14, 16, 82, 26, 16, 95, 16, 26, 82,
+ 16, 100, 99, 122, 26, 628, 100, 26, 99, 22,
+ 16, 234, 22, 234, 22, 628, 122, 22, 16, 20,
+ 20, 20, 20, 20, 20, 20, 20, 22, 33, 95,
+ 384, 36, 33, 20, 35, 22, 36, 36, 127, 36,
+
+ 36, 33, 33, 41, 384, 33, 35, 33, 35, 103,
+ 35, 41, 103, 35, 103, 41, 127, 41, 1266, 20,
+ 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
+ 32, 32, 96, 21, 1268, 147, 250, 250, 129, 21,
+ 21, 21, 21, 21, 21, 31, 32, 129, 31, 31,
+ 32, 31, 155, 31, 32, 31, 32, 31, 37, 96,
+ 31, 147, 37, 32, 96, 623, 38, 1274, 313, 627,
+ 37, 623, 38, 313, 38, 37, 38, 37, 155, 235,
+ 38, 44, 38, 38, 44, 205, 44, 627, 381, 44,
+ 62, 62, 62, 62, 62, 62, 62, 63, 205, 44,
+
+ 63, 381, 63, 235, 630, 63, 630, 44, 48, 48,
+ 48, 48, 48, 48, 48, 63, 435, 257, 631, 48,
+ 406, 406, 631, 63, 435, 48, 48, 48, 48, 48,
+ 48, 49, 49, 49, 49, 49, 49, 49, 1275, 325,
+ 1285, 350, 49, 257, 267, 267, 267, 267, 49, 49,
+ 49, 49, 49, 49, 50, 50, 50, 50, 50, 50,
+ 50, 50, 454, 1286, 267, 325, 50, 350, 408, 415,
+ 1290, 454, 50, 50, 50, 50, 50, 50, 52, 52,
+ 52, 52, 52, 52, 52, 52, 54, 54, 54, 54,
+ 54, 54, 54, 421, 408, 415, 329, 54, 529, 529,
+
+ 529, 529, 429, 54, 54, 54, 54, 54, 54, 56,
+ 329, 624, 56, 1291, 56, 345, 624, 56, 346, 421,
+ 56, 56, 56, 56, 56, 56, 56, 56, 429, 345,
+ 1295, 56, 346, 486, 1298, 56, 329, 56, 56, 56,
+ 56, 56, 56, 145, 456, 145, 145, 145, 145, 145,
+ 145, 145, 510, 456, 1299, 345, 145, 526, 346, 486,
+ 510, 632, 145, 145, 145, 145, 145, 145, 146, 146,
+ 146, 146, 146, 146, 146, 146, 520, 571, 571, 632,
+ 146, 579, 146, 526, 520, 1304, 146, 146, 146, 146,
+ 146, 146, 249, 249, 249, 249, 249, 249, 249, 260,
+
+ 260, 260, 260, 260, 260, 260, 424, 579, 146, 148,
+ 148, 148, 148, 148, 148, 148, 148, 582, 588, 1307,
+ 424, 148, 595, 607, 622, 622, 1308, 148, 148, 148,
+ 148, 148, 148, 149, 149, 149, 149, 149, 149, 149,
+ 149, 149, 614, 582, 588, 149, 424, 648, 595, 607,
+ 614, 149, 149, 149, 149, 149, 149, 150, 150, 150,
+ 150, 150, 150, 150, 150, 152, 152, 152, 152, 152,
+ 152, 152, 152, 648, 625, 689, 152, 625, 641, 641,
+ 704, 706, 152, 152, 152, 152, 152, 152, 154, 154,
+ 154, 154, 154, 154, 154, 154, 154, 671, 704, 706,
+
+ 154, 689, 154, 650, 283, 671, 154, 154, 154, 154,
+ 154, 154, 283, 335, 335, 335, 335, 335, 335, 335,
+ 1313, 1316, 425, 633, 490, 283, 707, 718, 154, 243,
+ 243, 243, 243, 243, 243, 243, 425, 633, 490, 650,
+ 243, 283, 705, 1317, 707, 718, 243, 243, 243, 243,
+ 243, 243, 245, 245, 245, 245, 245, 245, 245, 626,
+ 705, 707, 425, 245, 490, 701, 733, 705, 626, 245,
+ 245, 245, 245, 245, 245, 246, 246, 246, 246, 246,
+ 246, 246, 246, 248, 248, 248, 248, 248, 248, 248,
+ 682, 701, 733, 1322, 248, 736, 712, 716, 682, 713,
+
+ 248, 248, 248, 248, 248, 248, 251, 251, 251, 251,
+ 251, 251, 251, 251, 712, 716, 716, 713, 251, 712,
+ 713, 736, 1325, 1326, 251, 251, 251, 251, 251, 251,
+ 253, 253, 253, 253, 253, 253, 253, 253, 256, 256,
+ 256, 256, 256, 256, 256, 256, 256, 787, 318, 517,
+ 256, 1334, 256, 318, 1350, 787, 256, 256, 256, 256,
+ 256, 256, 318, 517, 318, 318, 739, 318, 339, 339,
+ 339, 339, 339, 339, 339, 719, 518, 708, 256, 261,
+ 261, 261, 261, 261, 261, 261, 261, 261, 1351, 517,
+ 518, 261, 739, 719, 1376, 708, 521, 261, 261, 261,
+
+ 261, 261, 261, 262, 262, 262, 262, 262, 262, 262,
+ 521, 1379, 708, 1390, 262, 1394, 518, 714, 1398, 717,
+ 262, 262, 262, 262, 262, 262, 323, 522, 323, 323,
+ 323, 323, 323, 323, 323, 714, 521, 717, 714, 323,
+ 717, 522, 723, 725, 725, 323, 323, 323, 323, 323,
+ 323, 324, 324, 324, 324, 324, 324, 324, 324, 1402,
+ 723, 725, 1406, 324, 1414, 324, 1423, 522, 1258, 324,
+ 324, 324, 324, 324, 324, 405, 405, 405, 405, 405,
+ 405, 405, 433, 433, 433, 433, 433, 433, 433, 590,
+ 640, 324, 326, 326, 326, 326, 326, 326, 326, 326,
+
+ 640, 1254, 745, 590, 326, 752, 764, 794, 1253, 591,
+ 326, 326, 326, 326, 326, 326, 330, 330, 330, 330,
+ 330, 330, 330, 591, 767, 794, 779, 330, 745, 590,
+ 795, 752, 764, 330, 330, 330, 330, 330, 330, 331,
+ 331, 331, 331, 331, 331, 331, 331, 835, 795, 591,
+ 767, 331, 779, 795, 810, 835, 1246, 331, 331, 331,
+ 331, 331, 331, 332, 332, 332, 332, 332, 332, 332,
+ 332, 334, 334, 334, 334, 334, 334, 334, 1245, 846,
+ 810, 1238, 334, 1237, 796, 797, 799, 846, 334, 334,
+ 334, 334, 334, 334, 338, 338, 338, 338, 338, 338,
+
+ 338, 338, 796, 797, 799, 338, 1230, 796, 797, 799,
+ 801, 338, 338, 338, 338, 338, 338, 340, 340, 340,
+ 340, 340, 340, 340, 340, 340, 858, 1229, 801, 340,
+ 866, 802, 804, 801, 858, 340, 340, 340, 340, 340,
+ 340, 341, 341, 341, 341, 341, 341, 341, 341, 802,
+ 804, 878, 341, 804, 802, 806, 866, 885, 341, 341,
+ 341, 341, 341, 341, 347, 347, 347, 347, 347, 347,
+ 347, 347, 347, 806, 1223, 885, 347, 878, 885, 890,
+ 888, 891, 347, 347, 347, 347, 347, 347, 349, 349,
+ 349, 349, 349, 349, 349, 349, 349, 890, 888, 891,
+
+ 349, 901, 349, 888, 904, 890, 349, 349, 349, 349,
+ 349, 349, 437, 437, 437, 437, 437, 437, 437, 503,
+ 503, 503, 503, 503, 503, 503, 1222, 901, 349, 367,
+ 904, 907, 1218, 367, 910, 892, 367, 893, 598, 367,
+ 599, 367, 367, 367, 367, 399, 399, 399, 399, 399,
+ 399, 399, 598, 892, 599, 893, 399, 907, 897, 984,
+ 910, 636, 399, 399, 399, 399, 399, 399, 401, 401,
+ 401, 401, 401, 401, 401, 636, 897, 984, 598, 401,
+ 599, 916, 923, 935, 1217, 401, 401, 401, 401, 401,
+ 401, 402, 402, 402, 402, 402, 402, 402, 402, 404,
+
+ 404, 404, 404, 404, 404, 404, 938, 916, 923, 935,
+ 404, 950, 954, 966, 1216, 992, 404, 404, 404, 404,
+ 404, 404, 407, 407, 407, 407, 407, 407, 407, 407,
+ 1215, 1214, 938, 992, 407, 1210, 407, 950, 954, 966,
+ 407, 407, 407, 407, 407, 407, 508, 508, 508, 508,
+ 508, 508, 508, 512, 512, 512, 512, 512, 512, 512,
+ 709, 602, 407, 409, 409, 409, 409, 409, 409, 409,
+ 1012, 1207, 1065, 1077, 409, 602, 1204, 1201, 709, 639,
+ 409, 409, 409, 409, 409, 409, 410, 410, 410, 410,
+ 410, 410, 410, 639, 974, 709, 1012, 410, 1065, 1077,
+
+ 1198, 602, 974, 410, 410, 410, 410, 410, 410, 411,
+ 411, 411, 411, 411, 411, 411, 411, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 1022, 603, 1195, 414,
+ 1182, 414, 1178, 1171, 1022, 414, 414, 414, 414, 414,
+ 414, 603, 610, 610, 610, 610, 610, 610, 610, 612,
+ 612, 612, 612, 612, 612, 612, 1084, 414, 420, 420,
+ 420, 420, 420, 420, 420, 420, 420, 603, 1170, 1169,
+ 420, 1165, 420, 1164, 1084, 1161, 420, 420, 420, 420,
+ 420, 420, 616, 616, 616, 616, 616, 616, 616, 664,
+ 664, 664, 664, 664, 664, 664, 692, 711, 420, 426,
+
+ 426, 426, 426, 426, 426, 426, 426, 426, 1157, 1156,
+ 692, 426, 1155, 1094, 1097, 711, 987, 426, 426, 426,
+ 426, 426, 426, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 711, 1151, 987, 428, 692, 428, 987, 1094,
+ 1097, 428, 428, 428, 428, 428, 428, 669, 669, 669,
+ 669, 669, 669, 669, 673, 673, 673, 673, 673, 673,
+ 673, 693, 800, 428, 438, 438, 438, 438, 438, 438,
+ 438, 438, 438, 1150, 1147, 693, 438, 1100, 990, 1143,
+ 800, 696, 438, 438, 438, 438, 438, 438, 439, 439,
+ 439, 439, 439, 439, 439, 696, 990, 800, 1142, 439,
+
+ 990, 693, 991, 1100, 1080, 439, 439, 439, 439, 439,
+ 439, 484, 697, 484, 484, 484, 484, 484, 484, 484,
+ 991, 696, 1080, 1141, 484, 991, 697, 1137, 1136, 1083,
+ 484, 484, 484, 484, 484, 484, 485, 485, 485, 485,
+ 485, 485, 485, 485, 1133, 1033, 1080, 1083, 485, 1083,
+ 485, 1130, 697, 1033, 485, 485, 485, 485, 485, 485,
+ 678, 678, 678, 678, 678, 678, 678, 680, 680, 680,
+ 680, 680, 680, 680, 747, 805, 485, 487, 487, 487,
+ 487, 487, 487, 487, 487, 1103, 1045, 1129, 747, 487,
+ 1106, 1128, 1087, 805, 1045, 487, 487, 487, 487, 487,
+
+ 487, 491, 491, 491, 491, 491, 491, 491, 491, 1057,
+ 1087, 1103, 805, 491, 747, 1087, 1106, 1057, 1124, 491,
+ 491, 491, 491, 491, 491, 492, 492, 492, 492, 492,
+ 492, 492, 492, 493, 493, 493, 493, 493, 493, 493,
+ 1177, 1221, 1123, 1120, 493, 1131, 1145, 1159, 1177, 1221,
+ 493, 493, 493, 493, 493, 493, 494, 494, 494, 494,
+ 494, 494, 494, 494, 496, 496, 496, 496, 496, 496,
+ 496, 1131, 1145, 1159, 1193, 496, 1256, 1293, 1081, 1082,
+ 1085, 496, 496, 496, 496, 496, 496, 497, 497, 497,
+ 497, 497, 497, 497, 497, 497, 1081, 1082, 1085, 497,
+
+ 1193, 1302, 1256, 1293, 748, 497, 497, 497, 497, 497,
+ 497, 498, 498, 498, 498, 498, 498, 498, 748, 1085,
+ 1081, 1082, 498, 1119, 1088, 1184, 1118, 1302, 498, 498,
+ 498, 498, 498, 498, 502, 502, 502, 502, 502, 502,
+ 502, 502, 1088, 1184, 748, 502, 1114, 1112, 1185, 1186,
+ 1187, 502, 502, 502, 502, 502, 502, 504, 504, 504,
+ 504, 504, 504, 504, 504, 504, 1185, 1186, 1187, 504,
+ 1111, 1188, 1270, 1272, 1108, 504, 504, 504, 504, 504,
+ 504, 505, 505, 505, 505, 505, 505, 505, 505, 1188,
+ 1270, 1272, 505, 1270, 1188, 1107, 1271, 1104, 505, 505,
+
+ 505, 505, 505, 505, 513, 513, 513, 513, 513, 513,
+ 513, 513, 513, 1228, 1271, 1272, 513, 1271, 1101, 1339,
+ 1098, 1228, 513, 513, 513, 513, 513, 513, 514, 514,
+ 514, 514, 514, 514, 514, 514, 1236, 1339, 1311, 514,
+ 1320, 1374, 1095, 1382, 1236, 514, 514, 514, 514, 514,
+ 514, 523, 523, 523, 523, 523, 523, 523, 523, 523,
+ 1244, 1382, 1388, 523, 1311, 1392, 1320, 1374, 1244, 523,
+ 523, 523, 523, 523, 523, 525, 525, 525, 525, 525,
+ 525, 525, 525, 525, 1252, 1091, 1079, 525, 1388, 525,
+ 1078, 1392, 1252, 525, 525, 525, 525, 525, 525, 684,
+
+ 684, 684, 684, 684, 684, 684, 690, 690, 690, 690,
+ 690, 690, 690, 798, 755, 525, 565, 565, 565, 565,
+ 565, 565, 565, 1396, 1284, 1400, 1404, 565, 755, 1075,
+ 1384, 798, 1284, 565, 565, 565, 565, 565, 565, 567,
+ 567, 567, 567, 567, 567, 567, 798, 1333, 1384, 1396,
+ 567, 1400, 1404, 1412, 755, 1333, 567, 567, 567, 567,
+ 567, 567, 568, 568, 568, 568, 568, 568, 568, 568,
+ 570, 570, 570, 570, 570, 570, 570, 1380, 1421, 1412,
+ 1071, 570, 1070, 1189, 1411, 1380, 1067, 570, 570, 570,
+ 570, 570, 570, 572, 572, 572, 572, 572, 572, 572,
+
+ 572, 1189, 1411, 1062, 1421, 572, 1061, 1058, 1050, 1049,
+ 1189, 572, 572, 572, 572, 572, 572, 573, 573, 573,
+ 573, 573, 573, 573, 573, 574, 574, 574, 574, 574,
+ 574, 574, 1046, 1038, 1037, 1034, 574, 1027, 1026, 1023,
+ 1018, 1017, 574, 574, 574, 574, 574, 574, 575, 575,
+ 575, 575, 575, 575, 575, 575, 578, 578, 578, 578,
+ 578, 578, 578, 578, 578, 710, 756, 759, 578, 1014,
+ 578, 1013, 1010, 760, 578, 578, 578, 578, 578, 578,
+ 756, 759, 1009, 710, 1006, 1003, 1000, 760, 996, 979,
+ 720, 975, 715, 968, 721, 710, 578, 581, 581, 581,
+
+ 581, 581, 581, 581, 581, 581, 756, 759, 720, 581,
+ 715, 581, 721, 760, 986, 581, 581, 581, 581, 581,
+ 581, 720, 715, 967, 721, 727, 727, 727, 727, 727,
+ 727, 727, 986, 770, 771, 774, 884, 581, 587, 587,
+ 587, 587, 587, 587, 587, 587, 587, 770, 771, 774,
+ 587, 986, 587, 964, 884, 775, 587, 587, 587, 587,
+ 587, 587, 768, 768, 768, 768, 768, 768, 768, 775,
+ 1338, 884, 960, 770, 771, 774, 869, 959, 587, 592,
+ 592, 592, 592, 592, 592, 592, 592, 592, 1338, 956,
+ 869, 592, 952, 951, 948, 775, 1338, 592, 592, 592,
+
+ 592, 592, 592, 594, 594, 594, 594, 594, 594, 594,
+ 594, 594, 944, 943, 940, 594, 869, 594, 937, 936,
+ 933, 594, 594, 594, 594, 594, 594, 783, 783, 783,
+ 783, 783, 783, 783, 785, 785, 785, 785, 785, 785,
+ 785, 870, 886, 594, 604, 604, 604, 604, 604, 604,
+ 604, 604, 604, 929, 928, 870, 604, 925, 924, 921,
+ 886, 886, 604, 604, 604, 604, 604, 604, 606, 606,
+ 606, 606, 606, 606, 606, 606, 606, 917, 886, 913,
+ 606, 870, 606, 912, 989, 803, 606, 606, 606, 606,
+ 606, 606, 789, 789, 789, 789, 789, 789, 789, 911,
+
+ 908, 905, 989, 803, 902, 873, 874, 881, 606, 617,
+ 617, 617, 617, 617, 617, 617, 617, 617, 803, 873,
+ 874, 617, 989, 899, 898, 881, 880, 617, 617, 617,
+ 617, 617, 617, 618, 618, 618, 618, 618, 618, 618,
+ 881, 879, 876, 872, 618, 873, 874, 871, 868, 863,
+ 618, 618, 618, 618, 618, 618, 621, 621, 621, 621,
+ 621, 621, 621, 859, 851, 847, 840, 621, 882, 883,
+ 887, 889, 1269, 621, 621, 621, 621, 621, 621, 828,
+ 828, 828, 828, 828, 828, 828, 882, 883, 887, 889,
+ 1269, 621, 644, 836, 644, 644, 644, 644, 644, 644,
+
+ 644, 882, 883, 883, 887, 644, 889, 1269, 985, 988,
+ 1089, 644, 644, 644, 644, 644, 644, 833, 833, 833,
+ 833, 833, 833, 833, 918, 919, 985, 988, 1089, 644,
+ 645, 645, 645, 645, 645, 645, 645, 645, 918, 919,
+ 985, 988, 645, 1089, 831, 826, 825, 824, 645, 645,
+ 645, 645, 645, 645, 837, 837, 837, 837, 837, 837,
+ 837, 821, 818, 814, 918, 919, 645, 646, 646, 646,
+ 646, 646, 646, 646, 842, 842, 842, 842, 842, 842,
+ 842, 844, 844, 844, 844, 844, 844, 844, 848, 848,
+ 848, 848, 848, 848, 848, 854, 854, 854, 854, 854,
+
+ 854, 854, 646, 647, 647, 647, 647, 647, 647, 647,
+ 792, 788, 781, 780, 647, 777, 773, 772, 769, 766,
+ 647, 647, 647, 647, 647, 647, 649, 649, 649, 649,
+ 649, 649, 649, 649, 651, 651, 651, 651, 651, 651,
+ 651, 651, 765, 762, 758, 757, 651, 754, 753, 750,
+ 746, 743, 651, 651, 651, 651, 651, 651, 652, 652,
+ 652, 652, 652, 652, 652, 652, 654, 654, 654, 654,
+ 654, 654, 654, 742, 741, 740, 737, 654, 734, 731,
+ 730, 703, 702, 654, 654, 654, 654, 654, 654, 655,
+ 655, 655, 655, 655, 655, 655, 655, 655, 699, 695,
+
+ 694, 655, 691, 687, 683, 676, 926, 655, 655, 655,
+ 655, 655, 655, 656, 656, 656, 656, 656, 656, 656,
+ 926, 672, 667, 662, 656, 661, 660, 657, 653, 643,
+ 656, 656, 656, 656, 656, 656, 658, 658, 658, 658,
+ 658, 658, 658, 658, 658, 642, 926, 638, 658, 637,
+ 635, 634, 629, 927, 658, 658, 658, 658, 658, 658,
+ 659, 659, 659, 659, 659, 659, 659, 927, 619, 615,
+ 609, 659, 608, 605, 601, 600, 597, 659, 659, 659,
+ 659, 659, 659, 663, 663, 663, 663, 663, 663, 663,
+ 663, 596, 593, 927, 663, 589, 586, 585, 584, 583,
+
+ 663, 663, 663, 663, 663, 663, 665, 665, 665, 665,
+ 665, 665, 665, 665, 665, 580, 577, 576, 665, 569,
+ 566, 564, 560, 556, 665, 665, 665, 665, 665, 665,
+ 666, 666, 666, 666, 666, 666, 666, 666, 555, 554,
+ 553, 666, 549, 548, 546, 545, 544, 666, 666, 666,
+ 666, 666, 666, 674, 674, 674, 674, 674, 674, 674,
+ 674, 674, 543, 542, 541, 674, 540, 539, 538, 537,
+ 536, 674, 674, 674, 674, 674, 674, 675, 675, 675,
+ 675, 675, 675, 675, 675, 535, 532, 531, 675, 530,
+ 528, 527, 524, 519, 675, 675, 675, 675, 675, 675,
+
+ 685, 685, 685, 685, 685, 685, 685, 685, 685, 515,
+ 511, 506, 685, 501, 500, 499, 495, 489, 685, 685,
+ 685, 685, 685, 685, 686, 686, 686, 686, 686, 686,
+ 686, 686, 488, 483, 482, 686, 481, 480, 479, 478,
+ 477, 686, 686, 686, 686, 686, 686, 698, 698, 698,
+ 698, 698, 698, 698, 698, 698, 476, 475, 474, 698,
+ 473, 471, 468, 467, 466, 698, 698, 698, 698, 698,
+ 698, 700, 700, 700, 700, 700, 700, 700, 700, 700,
+ 465, 464, 463, 700, 462, 700, 460, 459, 458, 700,
+ 700, 700, 700, 700, 700, 856, 856, 856, 856, 856,
+
+ 856, 856, 860, 860, 860, 860, 860, 860, 860, 930,
+ 931, 700, 722, 941, 722, 722, 722, 722, 722, 722,
+ 722, 457, 455, 930, 931, 722, 453, 941, 452, 451,
+ 722, 722, 722, 722, 722, 722, 722, 724, 724, 724,
+ 724, 724, 724, 724, 450, 449, 448, 447, 724, 930,
+ 931, 445, 444, 941, 724, 724, 724, 724, 724, 724,
+ 726, 726, 726, 726, 726, 726, 726, 443, 440, 436,
+ 432, 726, 431, 1337, 430, 427, 423, 726, 726, 726,
+ 726, 726, 726, 728, 728, 728, 728, 728, 728, 728,
+ 728, 1337, 422, 419, 418, 728, 417, 416, 413, 412,
+
+ 1337, 728, 728, 728, 728, 728, 728, 729, 729, 729,
+ 729, 729, 729, 729, 729, 732, 732, 732, 732, 732,
+ 732, 732, 732, 732, 403, 400, 398, 732, 397, 732,
+ 396, 395, 394, 732, 732, 732, 732, 732, 732, 867,
+ 867, 867, 867, 867, 867, 867, 939, 939, 939, 939,
+ 939, 939, 939, 942, 393, 732, 735, 735, 735, 735,
+ 735, 735, 735, 735, 735, 392, 945, 942, 735, 391,
+ 735, 390, 946, 957, 735, 735, 735, 735, 735, 735,
+ 945, 389, 388, 387, 385, 383, 946, 957, 382, 380,
+ 379, 376, 1336, 942, 958, 375, 735, 738, 738, 738,
+
+ 738, 738, 738, 738, 738, 738, 945, 373, 958, 738,
+ 1336, 738, 946, 957, 961, 738, 738, 738, 738, 738,
+ 738, 955, 955, 955, 955, 955, 955, 955, 961, 1336,
+ 371, 370, 369, 962, 958, 1068, 366, 738, 744, 744,
+ 744, 744, 744, 744, 744, 744, 744, 962, 365, 1068,
+ 744, 363, 744, 362, 961, 1069, 744, 744, 744, 744,
+ 744, 744, 970, 970, 970, 970, 970, 970, 970, 1069,
+ 361, 360, 358, 962, 1072, 1068, 1073, 353, 744, 749,
+ 749, 749, 749, 749, 749, 749, 749, 749, 1072, 352,
+ 1073, 749, 351, 348, 344, 1069, 342, 749, 749, 749,
+
+ 749, 749, 749, 751, 751, 751, 751, 751, 751, 751,
+ 751, 751, 337, 336, 1072, 751, 1073, 751, 333, 328,
+ 327, 751, 751, 751, 751, 751, 751, 972, 972, 972,
+ 972, 972, 972, 972, 976, 976, 976, 976, 976, 976,
+ 976, 1115, 319, 751, 761, 761, 761, 761, 761, 761,
+ 761, 761, 761, 317, 316, 1115, 761, 311, 309, 307,
+ 306, 305, 761, 761, 761, 761, 761, 761, 763, 763,
+ 763, 763, 763, 763, 763, 763, 763, 981, 982, 1116,
+ 763, 1115, 763, 304, 303, 302, 763, 763, 763, 763,
+ 763, 763, 301, 1116, 299, 981, 982, 1015, 1015, 1015,
+
+ 1015, 1015, 1015, 1015, 1121, 298, 981, 982, 763, 776,
+ 776, 776, 776, 776, 776, 776, 776, 776, 1121, 1116,
+ 297, 776, 292, 289, 288, 287, 284, 776, 776, 776,
+ 776, 776, 776, 778, 778, 778, 778, 778, 778, 778,
+ 778, 778, 983, 1122, 1121, 778, 281, 778, 280, 278,
+ 1383, 778, 778, 778, 778, 778, 778, 1122, 276, 275,
+ 983, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1383, 274,
+ 1125, 983, 272, 778, 790, 790, 790, 790, 790, 790,
+ 790, 790, 790, 1122, 1125, 269, 790, 1383, 268, 266,
+ 263, 1126, 790, 790, 790, 790, 790, 790, 791, 791,
+
+ 791, 791, 791, 791, 791, 1126, 259, 258, 255, 791,
+ 1125, 254, 252, 247, 244, 791, 791, 791, 791, 791,
+ 791, 807, 1134, 807, 807, 807, 807, 807, 807, 807,
+ 242, 1126, 241, 239, 807, 236, 1134, 232, 228, 807,
+ 807, 807, 807, 807, 807, 807, 808, 808, 808, 808,
+ 808, 808, 808, 226, 224, 223, 221, 808, 220, 219,
+ 218, 217, 1134, 808, 808, 808, 808, 808, 808, 809,
+ 809, 809, 809, 809, 809, 809, 809, 216, 215, 213,
+ 211, 809, 209, 809, 208, 206, 204, 809, 809, 809,
+ 809, 809, 809, 1024, 1024, 1024, 1024, 1024, 1024, 1024,
+
+ 1029, 1029, 1029, 1029, 1029, 1029, 1029, 203, 1135, 809,
+ 811, 811, 811, 811, 811, 811, 811, 201, 198, 197,
+ 196, 811, 1135, 194, 192, 191, 188, 811, 811, 811,
+ 811, 811, 811, 812, 812, 812, 812, 812, 812, 812,
+ 812, 187, 185, 184, 183, 812, 182, 181, 1135, 180,
+ 179, 812, 812, 812, 812, 812, 812, 813, 813, 813,
+ 813, 813, 813, 813, 813, 815, 815, 815, 815, 815,
+ 815, 815, 178, 177, 176, 174, 815, 173, 170, 169,
+ 168, 167, 815, 815, 815, 815, 815, 815, 816, 816,
+ 816, 816, 816, 816, 816, 816, 816, 166, 165, 164,
+
+ 816, 162, 159, 158, 157, 1138, 816, 816, 816, 816,
+ 816, 816, 817, 817, 817, 817, 817, 817, 817, 1138,
+ 156, 153, 151, 817, 142, 141, 140, 139, 138, 817,
+ 817, 817, 817, 817, 817, 819, 819, 819, 819, 819,
+ 819, 819, 819, 819, 137, 1138, 136, 819, 134, 133,
+ 132, 130, 1139, 819, 819, 819, 819, 819, 819, 820,
+ 820, 820, 820, 820, 820, 820, 1139, 128, 126, 125,
+ 820, 124, 123, 121, 120, 119, 820, 820, 820, 820,
+ 820, 820, 822, 822, 822, 822, 822, 822, 822, 822,
+ 822, 118, 1139, 117, 822, 116, 114, 112, 111, 1148,
+
+ 822, 822, 822, 822, 822, 822, 823, 823, 823, 823,
+ 823, 823, 823, 1148, 110, 109, 108, 823, 107, 106,
+ 105, 104, 102, 823, 823, 823, 823, 823, 823, 827,
+ 827, 827, 827, 827, 827, 827, 827, 101, 94, 1148,
+ 827, 93, 92, 90, 89, 88, 827, 827, 827, 827,
+ 827, 827, 829, 829, 829, 829, 829, 829, 829, 829,
+ 829, 87, 86, 85, 829, 84, 83, 81, 80, 79,
+ 829, 829, 829, 829, 829, 829, 830, 830, 830, 830,
+ 830, 830, 830, 830, 78, 77, 76, 830, 75, 74,
+ 73, 72, 71, 830, 830, 830, 830, 830, 830, 838,
+
+ 838, 838, 838, 838, 838, 838, 838, 838, 70, 69,
+ 67, 838, 66, 65, 51, 43, 42, 838, 838, 838,
+ 838, 838, 838, 839, 839, 839, 839, 839, 839, 839,
+ 839, 40, 30, 18, 839, 10, 8, 3, 0, 0,
+ 839, 839, 839, 839, 839, 839, 849, 849, 849, 849,
+ 849, 849, 849, 849, 849, 0, 0, 0, 849, 0,
+ 0, 0, 0, 0, 849, 849, 849, 849, 849, 849,
+ 850, 850, 850, 850, 850, 850, 850, 850, 0, 0,
+ 0, 850, 0, 0, 0, 0, 0, 850, 850, 850,
+ 850, 850, 850, 861, 861, 861, 861, 861, 861, 861,
+
+ 861, 861, 0, 0, 0, 861, 0, 0, 0, 0,
+ 0, 861, 861, 861, 861, 861, 861, 862, 862, 862,
+ 862, 862, 862, 862, 862, 0, 0, 0, 862, 0,
+ 0, 0, 0, 0, 862, 862, 862, 862, 862, 862,
+ 875, 875, 875, 875, 875, 875, 875, 875, 875, 0,
+ 0, 0, 875, 0, 0, 0, 0, 0, 875, 875,
+ 875, 875, 875, 875, 877, 877, 877, 877, 877, 877,
+ 877, 877, 877, 0, 0, 0, 877, 0, 877, 0,
+ 0, 0, 877, 877, 877, 877, 877, 877, 1031, 1031,
+ 1031, 1031, 1031, 1031, 1031, 1035, 1035, 1035, 1035, 1035,
+
+ 1035, 1035, 0, 0, 877, 894, 894, 894, 894, 894,
+ 894, 894, 894, 894, 0, 0, 0, 0, 894, 0,
+ 0, 0, 0, 894, 894, 894, 894, 894, 894, 894,
+ 895, 895, 895, 895, 895, 895, 895, 895, 896, 896,
+ 896, 896, 896, 896, 896, 896, 896, 1041, 1041, 1041,
+ 1041, 1041, 1041, 1041, 0, 0, 896, 900, 900, 900,
+ 900, 900, 900, 900, 900, 900, 0, 0, 0, 900,
+ 0, 900, 0, 0, 0, 900, 900, 900, 900, 900,
+ 900, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1047, 1047,
+ 1047, 1047, 1047, 1047, 1047, 0, 0, 900, 903, 903,
+
+ 903, 903, 903, 903, 903, 903, 903, 0, 0, 0,
+ 903, 0, 903, 0, 0, 0, 903, 903, 903, 903,
+ 903, 903, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1055,
+ 1055, 1055, 1055, 1055, 1055, 1055, 0, 0, 903, 906,
+ 906, 906, 906, 906, 906, 906, 906, 906, 0, 0,
+ 0, 906, 0, 906, 0, 0, 0, 906, 906, 906,
+ 906, 906, 906, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
+ 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1086, 0, 906,
+ 909, 909, 909, 909, 909, 909, 909, 909, 909, 0,
+ 1149, 1152, 909, 0, 909, 1086, 0, 0, 909, 909,
+
+ 909, 909, 909, 909, 1149, 1152, 1086, 1109, 1109, 1109,
+ 1109, 1109, 1109, 1109, 0, 1153, 0, 0, 0, 1162,
+ 909, 914, 914, 914, 914, 914, 914, 914, 914, 1153,
+ 1149, 1152, 914, 1162, 0, 0, 0, 0, 914, 914,
+ 914, 914, 914, 914, 915, 915, 915, 915, 915, 915,
+ 915, 915, 915, 0, 0, 1153, 915, 0, 915, 1162,
+ 0, 0, 915, 915, 915, 915, 915, 915, 1132, 1132,
+ 1132, 1132, 1132, 1132, 1132, 1146, 1146, 1146, 1146, 1146,
+ 1146, 1146, 1163, 0, 915, 920, 920, 920, 920, 920,
+ 920, 920, 920, 920, 0, 0, 1163, 920, 0, 0,
+
+ 0, 0, 0, 920, 920, 920, 920, 920, 920, 922,
+ 922, 922, 922, 922, 922, 922, 922, 922, 0, 0,
+ 0, 922, 1163, 922, 0, 0, 1166, 922, 922, 922,
+ 922, 922, 922, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
+ 1166, 0, 0, 0, 0, 1167, 0, 1211, 0, 922,
+ 932, 932, 932, 932, 932, 932, 932, 932, 932, 1167,
+ 0, 1211, 932, 0, 0, 0, 1166, 0, 932, 932,
+ 932, 932, 932, 932, 934, 934, 934, 934, 934, 934,
+ 934, 934, 934, 0, 0, 1167, 934, 1211, 934, 0,
+ 0, 0, 934, 934, 934, 934, 934, 934, 1173, 1173,
+
+ 1173, 1173, 1173, 1173, 1173, 1175, 1175, 1175, 1175, 1175,
+ 1175, 1175, 1212, 0, 934, 947, 947, 947, 947, 947,
+ 947, 947, 947, 947, 0, 0, 1212, 947, 0, 0,
+ 0, 0, 0, 947, 947, 947, 947, 947, 947, 949,
+ 949, 949, 949, 949, 949, 949, 949, 949, 0, 0,
+ 0, 949, 1212, 949, 0, 0, 0, 949, 949, 949,
+ 949, 949, 949, 1179, 1179, 1179, 1179, 1179, 1179, 1179,
+ 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1259, 0, 949,
+ 963, 963, 963, 963, 963, 963, 963, 963, 963, 0,
+ 0, 1259, 963, 0, 0, 0, 0, 1190, 963, 963,
+
+ 963, 963, 963, 963, 965, 965, 965, 965, 965, 965,
+ 965, 965, 965, 1191, 0, 1190, 965, 1259, 965, 0,
+ 0, 0, 965, 965, 965, 965, 965, 965, 1190, 0,
+ 0, 1191, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 0,
+ 0, 1260, 1191, 0, 965, 977, 977, 977, 977, 977,
+ 977, 977, 977, 977, 0, 1260, 0, 977, 0, 0,
+ 0, 0, 1263, 977, 977, 977, 977, 977, 977, 978,
+ 978, 978, 978, 978, 978, 978, 1263, 0, 0, 0,
+ 978, 1260, 0, 0, 0, 0, 978, 978, 978, 978,
+ 978, 978, 993, 993, 993, 993, 993, 993, 993, 993,
+
+ 993, 0, 1263, 0, 0, 993, 0, 0, 0, 0,
+ 993, 993, 993, 993, 993, 993, 993, 994, 994, 994,
+ 994, 994, 994, 994, 994, 995, 995, 995, 995, 995,
+ 995, 995, 995, 995, 1226, 1226, 1226, 1226, 1226, 1226,
+ 1226, 0, 1264, 995, 997, 997, 997, 997, 997, 997,
+ 997, 0, 0, 0, 0, 997, 1264, 0, 0, 0,
+ 0, 997, 997, 997, 997, 997, 997, 998, 998, 998,
+ 998, 998, 998, 998, 998, 998, 0, 0, 0, 998,
+ 0, 0, 1264, 0, 1288, 998, 998, 998, 998, 998,
+ 998, 999, 999, 999, 999, 999, 999, 999, 1288, 0,
+
+ 0, 0, 999, 0, 0, 0, 0, 0, 999, 999,
+ 999, 999, 999, 999, 1001, 1001, 1001, 1001, 1001, 1001,
+ 1001, 1001, 1001, 0, 1288, 0, 1001, 0, 0, 0,
+ 0, 1289, 1001, 1001, 1001, 1001, 1001, 1001, 1002, 1002,
+ 1002, 1002, 1002, 1002, 1002, 1289, 0, 0, 0, 1002,
+ 0, 0, 0, 0, 0, 1002, 1002, 1002, 1002, 1002,
+ 1002, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004,
+ 0, 1289, 0, 1004, 0, 0, 0, 0, 1296, 1004,
+ 1004, 1004, 1004, 1004, 1004, 1005, 1005, 1005, 1005, 1005,
+ 1005, 1005, 1296, 0, 0, 0, 1005, 0, 0, 0,
+
+ 0, 0, 1005, 1005, 1005, 1005, 1005, 1005, 1007, 1007,
+ 1007, 1007, 1007, 1007, 1007, 1007, 1007, 0, 1296, 0,
+ 1007, 0, 0, 0, 0, 1297, 1007, 1007, 1007, 1007,
+ 1007, 1007, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1297,
+ 0, 0, 0, 1008, 0, 0, 0, 0, 0, 1008,
+ 1008, 1008, 1008, 1008, 1008, 1011, 1011, 1011, 1011, 1011,
+ 1011, 1011, 1011, 1011, 0, 1297, 0, 1011, 0, 1011,
+ 0, 0, 0, 1011, 1011, 1011, 1011, 1011, 1011, 1232,
+ 1232, 1232, 1232, 1232, 1232, 1232, 1234, 1234, 1234, 1234,
+ 1234, 1234, 1234, 1305, 0, 1011, 1016, 1016, 1016, 1016,
+
+ 1016, 1016, 1016, 1016, 1016, 0, 0, 1305, 1016, 0,
+ 0, 0, 0, 0, 1016, 1016, 1016, 1016, 1016, 1016,
+ 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 0,
+ 0, 0, 1025, 1305, 0, 0, 0, 0, 1025, 1025,
+ 1025, 1025, 1025, 1025, 1036, 1036, 1036, 1036, 1036, 1036,
+ 1036, 1036, 1036, 0, 0, 0, 1036, 0, 0, 0,
+ 0, 0, 1036, 1036, 1036, 1036, 1036, 1036, 1048, 1048,
+ 1048, 1048, 1048, 1048, 1048, 1048, 1048, 0, 0, 0,
+ 1048, 0, 0, 0, 0, 0, 1048, 1048, 1048, 1048,
+ 1048, 1048, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060,
+
+ 1060, 0, 0, 0, 1060, 0, 0, 0, 0, 0,
+ 1060, 1060, 1060, 1060, 1060, 1060, 1074, 1074, 1074, 1074,
+ 1074, 1074, 1074, 1074, 1074, 0, 0, 0, 1074, 0,
+ 0, 0, 0, 0, 1074, 1074, 1074, 1074, 1074, 1074,
+ 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 0,
+ 0, 0, 1076, 0, 1076, 0, 0, 0, 1076, 1076,
+ 1076, 1076, 1076, 1076, 1240, 1240, 1240, 1240, 1240, 1240,
+ 1240, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 0, 0,
+ 1076, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090,
+ 1248, 1248, 1248, 1248, 1248, 1248, 1248, 0, 1306, 1090,
+
+ 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 0, 0,
+ 0, 1092, 1306, 0, 0, 0, 0, 1092, 1092, 1092,
+ 1092, 1092, 1092, 1093, 1093, 1093, 1093, 1093, 1093, 1093,
+ 1093, 1093, 0, 0, 0, 1093, 0, 1093, 1306, 0,
+ 0, 1093, 1093, 1093, 1093, 1093, 1093, 1250, 1250, 1250,
+ 1250, 1250, 1250, 1250, 1257, 1257, 1257, 1257, 1257, 1257,
+ 1257, 0, 0, 1093, 1096, 1096, 1096, 1096, 1096, 1096,
+ 1096, 1096, 1096, 0, 0, 0, 1096, 0, 1096, 0,
+ 0, 0, 1096, 1096, 1096, 1096, 1096, 1096, 1282, 1282,
+ 1282, 1282, 1282, 1282, 1282, 1294, 1294, 1294, 1294, 1294,
+
+ 1294, 1294, 0, 0, 1096, 1099, 1099, 1099, 1099, 1099,
+ 1099, 1099, 1099, 1099, 0, 0, 0, 1099, 0, 1099,
+ 0, 0, 0, 1099, 1099, 1099, 1099, 1099, 1099, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1312, 1312, 1312, 1312,
+ 1312, 1312, 1312, 1314, 0, 1099, 1102, 1102, 1102, 1102,
+ 1102, 1102, 1102, 1102, 1102, 0, 1315, 1314, 1102, 0,
+ 1102, 0, 0, 0, 1102, 1102, 1102, 1102, 1102, 1102,
+ 1315, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 0, 0,
+ 0, 0, 0, 1314, 1323, 0, 1102, 1105, 1105, 1105,
+ 1105, 1105, 1105, 1105, 1105, 1105, 1315, 1324, 1323, 1105,
+
+ 0, 1105, 0, 0, 0, 1105, 1105, 1105, 1105, 1105,
+ 1105, 1324, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 0,
+ 0, 0, 0, 0, 1323, 1348, 0, 1105, 1110, 1110,
+ 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1324, 0, 1348,
+ 1110, 0, 0, 0, 0, 0, 1110, 1110, 1110, 1110,
+ 1110, 1110, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117,
+ 1117, 0, 0, 0, 1117, 1348, 0, 0, 0, 0,
+ 1117, 1117, 1117, 1117, 1117, 1117, 1127, 1127, 1127, 1127,
+ 1127, 1127, 1127, 1127, 1127, 0, 0, 0, 1127, 0,
+ 0, 0, 0, 0, 1127, 1127, 1127, 1127, 1127, 1127,
+
+ 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 0,
+ 0, 0, 1140, 0, 0, 0, 0, 0, 1140, 1140,
+ 1140, 1140, 1140, 1140, 1154, 1154, 1154, 1154, 1154, 1154,
+ 1154, 1154, 1154, 0, 0, 0, 1154, 0, 0, 0,
+ 0, 0, 1154, 1154, 1154, 1154, 1154, 1154, 1168, 1168,
+ 1168, 1168, 1168, 1168, 1168, 1168, 1168, 0, 0, 0,
+ 1168, 0, 0, 0, 0, 0, 1168, 1168, 1168, 1168,
+ 1168, 1168, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180,
+ 1180, 0, 0, 0, 1180, 0, 0, 0, 0, 0,
+ 1180, 1180, 1180, 1180, 1180, 1180, 1192, 1192, 1192, 1192,
+
+ 1192, 1192, 1192, 1192, 1192, 0, 0, 0, 1192, 0,
+ 1192, 0, 0, 1349, 1192, 1192, 1192, 1192, 1192, 1192,
+ 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1349, 1354, 1354,
+ 1354, 1354, 1354, 1354, 1354, 0, 1192, 1196, 1196, 1196,
+ 1196, 1196, 1196, 1196, 1196, 1196, 0, 0, 0, 1196,
+ 0, 0, 0, 1349, 0, 1196, 1196, 1196, 1196, 1196,
+ 1196, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199,
+ 0, 0, 0, 1199, 0, 0, 0, 0, 0, 1199,
+ 1199, 1199, 1199, 1199, 1199, 1202, 1202, 1202, 1202, 1202,
+ 1202, 1202, 1202, 1202, 0, 0, 0, 1202, 0, 0,
+
+ 0, 0, 0, 1202, 1202, 1202, 1202, 1202, 1202, 1205,
+ 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 0, 0,
+ 0, 1205, 0, 0, 0, 0, 0, 1205, 1205, 1205,
+ 1205, 1205, 1205, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
+ 1208, 1208, 0, 0, 0, 1208, 0, 0, 0, 0,
+ 0, 1208, 1208, 1208, 1208, 1208, 1208, 1213, 1213, 1213,
+ 1213, 1213, 1213, 1213, 1213, 1213, 0, 0, 0, 1213,
+ 0, 0, 0, 0, 0, 1213, 1213, 1213, 1213, 1213,
+ 1213, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265,
+ 0, 0, 0, 1265, 0, 0, 0, 0, 0, 1265,
+
+ 1265, 1265, 1265, 1265, 1265, 1273, 1273, 1273, 1273, 1273,
+ 1273, 1273, 1273, 1273, 0, 0, 0, 1273, 0, 0,
+ 0, 0, 0, 1273, 1273, 1273, 1273, 1273, 1273, 1358,
+ 1358, 1358, 1358, 1358, 1358, 1358, 1362, 1362, 1362, 1362,
+ 1362, 1362, 1362, 1366, 1366, 1366, 1366, 1366, 1366, 1366,
+ 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1375, 1375, 1375,
+ 1375, 1375, 1375, 1375, 1377, 1378, 1386, 1386, 1386, 1386,
+ 1386, 1386, 1386, 0, 0, 0, 0, 0, 1377, 1378,
+ 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1393, 1393, 1393,
+ 1393, 1393, 1393, 1393, 1397, 1397, 1397, 1397, 1397, 1397,
+
+ 1397, 0, 0, 0, 1377, 1378, 1401, 1401, 1401, 1401,
+ 1401, 1401, 1401, 1405, 1405, 1405, 1405, 1405, 1405, 1405,
+ 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1413, 1413, 1413,
+ 1413, 1413, 1413, 1413, 1422, 1422, 1422, 1422, 1422, 1422,
+ 1422, 1434, 0, 0, 0, 0, 1434, 1434, 1434, 1435,
+ 0, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1436, 0,
+ 1436, 1437, 1437, 1437, 1438, 1438, 1438, 1439, 1439, 1439,
+ 1440, 1440, 1440, 1441, 1441, 1441, 1442, 1442, 1442, 1443,
+ 1443, 1443, 1444, 1444, 1444, 1445, 1445, 1445, 1446, 0,
+ 1446, 1447, 1447, 1447, 1448, 1448, 1448, 1449, 1449, 1449,
+
+ 1450, 1450, 1450, 1451, 0, 1451, 1452, 1452, 1452, 1453,
+ 1453, 0, 0, 1453, 1454, 1454, 1454, 1455, 1455, 1455,
+ 1456, 1456, 1456, 1457, 1457, 1457, 1458, 1458, 1458, 1459,
+ 1459, 1459, 1460, 1460, 1460, 1461, 1461, 1461, 1462, 1462,
+ 1462, 1463, 1463, 0, 0, 1463, 1464, 1464, 1464, 1465,
+ 1465, 1465, 1466, 0, 1466, 1467, 1467, 1467, 1468, 1468,
+ 1468, 1469, 0, 1469, 1470, 1470, 1470, 1471, 1471, 1471,
+ 1472, 1472, 1472, 1473, 1473, 1473, 1474, 1474, 1474, 1475,
+ 0, 1475, 1476, 0, 1476, 1477, 1477, 1477, 1478, 1478,
+ 1478, 1479, 0, 1479, 1480, 1480, 0, 0, 1480, 1481,
+
+ 1481, 0, 0, 1481, 1482, 1482, 1482, 1483, 1483, 1483,
+ 1484, 1484, 0, 1484, 1485, 1485, 1485, 1486, 1486, 1486,
+ 1487, 1487, 1487, 1488, 1488, 1488, 1489, 1489, 1489, 1490,
+ 1490, 1490, 1491, 1491, 1491, 1492, 1492, 0, 0, 1492,
+ 1493, 1493, 1493, 1494, 1494, 1494, 1495, 1495, 0, 1495,
+ 1496, 1496, 0, 0, 1496, 1497, 1497, 0, 1497, 1498,
+ 1498, 1499, 1499, 0, 0, 1499, 1500, 1500, 1500, 1501,
+ 1501, 1501, 1502, 1502, 0, 1502, 1503, 0, 1503, 1504,
+ 0, 1504, 1505, 1505, 1505, 1506, 1506, 1506, 1507, 0,
+ 1507, 1508, 1508, 1508, 1509, 1509, 1509, 1510, 1510, 1510,
+
+ 1511, 1511, 1511, 1512, 1512, 1512, 1513, 1513, 1513, 1514,
+ 0, 1514, 1515, 0, 1515, 1516, 1516, 1516, 1517, 1517,
+ 1517, 1518, 0, 1518, 1519, 0, 1519, 1520, 0, 1520,
+ 1521, 1521, 1521, 1522, 1522, 1522, 1523, 0, 1523, 1524,
+ 0, 0, 1524, 1525, 1525, 0, 1525, 1526, 1526, 0,
+ 0, 1526, 1527, 1527, 0, 1527, 1528, 1528, 1529, 1529,
+ 0, 0, 1529, 1530, 1530, 1530, 1531, 1531, 1531, 1532,
+ 1532, 0, 1532, 1533, 1533, 1533, 0, 1533, 1533, 1534,
+ 1534, 1534, 1535, 1535, 1535, 1536, 1536, 1536, 1537, 1537,
+ 1537, 1538, 1538, 1538, 1539, 1539, 1539, 1540, 1540, 1540,
+
+ 1541, 1541, 1541, 1542, 1542, 0, 0, 1542, 1543, 1543,
+ 1543, 1544, 1544, 1544, 1545, 1545, 0, 1545, 1546, 1546,
+ 0, 0, 1546, 1547, 1547, 0, 1547, 1548, 1548, 1549,
+ 1549, 0, 0, 1549, 1550, 1550, 1550, 1551, 1551, 1551,
+ 1552, 1552, 0, 1552, 1553, 0, 0, 1553, 1554, 1554,
+ 0, 1554, 1555, 1555, 0, 0, 1555, 1556, 1556, 0,
+ 1556, 1557, 1557, 1558, 1558, 0, 0, 1558, 1559, 1559,
+ 1559, 1560, 1560, 1560, 1561, 1561, 0, 1561, 1562, 0,
+ 1562, 1563, 0, 1563, 1564, 0, 1564, 1565, 1565, 1565,
+ 1566, 1566, 1566, 1567, 0, 1567, 1568, 1568, 1568, 0,
+
+ 1568, 1568, 1569, 1569, 1569, 1570, 1570, 1570, 1571, 1571,
+ 1571, 1572, 1572, 1572, 1573, 1573, 1573, 1574, 1574, 1574,
+ 1575, 1575, 1575, 1576, 0, 1576, 1577, 0, 1577, 1578,
+ 1578, 1578, 1579, 1579, 1579, 1580, 0, 1580, 1581, 0,
+ 1581, 1582, 0, 1582, 1583, 1583, 1583, 1584, 1584, 1584,
+ 1585, 0, 1585, 1586, 0, 1586, 1587, 0, 1587, 1588,
+ 0, 1588, 1589, 1589, 1589, 1590, 1590, 1590, 1591, 0,
+ 1591, 1592, 0, 1592, 1593, 0, 0, 1593, 1594, 1594,
+ 0, 1594, 1595, 1595, 0, 0, 1595, 1596, 1596, 0,
+ 1596, 1597, 1597, 1598, 1598, 0, 0, 1598, 1599, 1599,
+
+ 1599, 1600, 1600, 1600, 1601, 1601, 0, 1601, 1602, 1602,
+ 1602, 0, 1602, 1602, 1603, 1603, 1603, 1604, 1604, 1604,
+ 1605, 1605, 1605, 1606, 1606, 1606, 1607, 1607, 1607, 1608,
+ 1608, 1608, 1609, 1609, 1609, 1610, 1610, 1610, 1611, 1611,
+ 0, 0, 1611, 1612, 1612, 1612, 1613, 1613, 1613, 1614,
+ 1614, 0, 1614, 1615, 1615, 0, 0, 1615, 1616, 1616,
+ 0, 1616, 1617, 1617, 1618, 1618, 0, 0, 1618, 1619,
+ 1619, 1619, 1620, 1620, 1620, 1621, 1621, 0, 1621, 1622,
+ 0, 0, 1622, 1623, 1623, 0, 1623, 1624, 1624, 0,
+ 0, 1624, 1625, 1625, 0, 1625, 1626, 1626, 1627, 1627,
+
+ 0, 0, 1627, 1628, 1628, 1628, 1629, 1629, 1629, 1630,
+ 1630, 0, 1630, 1631, 0, 1631, 1632, 0, 0, 1632,
+ 1633, 1633, 0, 1633, 1634, 1634, 0, 0, 1634, 1635,
+ 1635, 0, 1635, 1636, 1636, 1637, 1637, 0, 0, 1637,
+ 1638, 1638, 1638, 1639, 1639, 1639, 1640, 1640, 0, 1640,
+ 1641, 0, 1641, 1642, 0, 1642, 1643, 0, 1643, 1644,
+ 1644, 1644, 1645, 1645, 1645, 1646, 0, 1646, 1647, 1647,
+ 1647, 0, 1647, 1647, 1648, 1648, 1648, 1649, 1649, 1649,
+ 1650, 1650, 1650, 1651, 1651, 1651, 1652, 1652, 1652, 1653,
+ 1653, 1653, 1654, 1654, 1654, 1655, 1655, 1655, 1656, 1656,
+
+ 1656, 1657, 1657, 1657, 1658, 0, 1658, 1659, 0, 1659,
+ 1660, 1660, 1660, 1661, 1661, 1661, 1662, 1662, 1662, 1663,
+ 0, 1663, 1664, 0, 1664, 1665, 0, 1665, 1666, 1666,
+ 1666, 1667, 1667, 1667, 1668, 1668, 1668, 1669, 0, 1669,
+ 1670, 0, 1670, 1671, 0, 1671, 1672, 0, 1672, 1673,
+ 1673, 1673, 1674, 1674, 1674, 1675, 1675, 1675, 1676, 0,
+ 1676, 1677, 0, 1677, 1678, 0, 1678, 1679, 0, 1679,
+ 1680, 1680, 1680, 1681, 1681, 1681, 1682, 1682, 1682, 1683,
+ 0, 1683, 1684, 0, 1684, 1685, 0, 0, 1685, 1686,
+ 1686, 0, 1686, 1687, 1687, 0, 0, 1687, 1688, 1688,
+
+ 0, 1688, 1689, 1689, 1690, 1690, 0, 0, 1690, 1691,
+ 1691, 1691, 1692, 1692, 1692, 1693, 1693, 0, 1693, 1694,
+ 1694, 1694, 0, 1694, 1694, 1695, 1695, 1695, 1696, 1696,
+ 1696, 1697, 1697, 1697, 1698, 1698, 1698, 1699, 1699, 1699,
+ 1700, 1700, 1700, 1701, 1701, 1701, 1702, 1702, 1702, 1703,
+ 0, 1703, 1704, 1704, 1704, 1705, 1705, 0, 0, 1705,
+ 1706, 1706, 1706, 1707, 1707, 1707, 1708, 1708, 0, 1708,
+ 1709, 1709, 0, 0, 1709, 1710, 1710, 0, 1710, 1711,
+ 1711, 1712, 1712, 0, 0, 1712, 1713, 1713, 1713, 1714,
+ 1714, 1714, 1715, 1715, 0, 1715, 1716, 0, 0, 1716,
+
+ 1717, 1717, 0, 1717, 1718, 1718, 0, 0, 1718, 1719,
+ 1719, 0, 1719, 1720, 1720, 1721, 1721, 0, 0, 1721,
+ 1722, 1722, 1722, 1723, 1723, 1723, 1724, 1724, 0, 1724,
+ 1725, 0, 1725, 1726, 0, 0, 1726, 1727, 1727, 0,
+ 1727, 1728, 1728, 0, 0, 1728, 1729, 1729, 0, 1729,
+ 1730, 1730, 1731, 1731, 0, 0, 1731, 1732, 1732, 1732,
+ 1733, 1733, 1733, 1734, 1734, 0, 1734, 1735, 0, 1735,
+ 1736, 0, 0, 1736, 1737, 1737, 0, 1737, 1738, 1738,
+ 0, 0, 1738, 1739, 1739, 0, 1739, 1740, 1740, 1741,
+ 1741, 0, 0, 1741, 1742, 1742, 1742, 1743, 1743, 1743,
+
+ 1744, 1744, 0, 1744, 1745, 0, 1745, 1746, 0, 1746,
+ 1747, 0, 1747, 1748, 1748, 1748, 1749, 0, 1749, 1750,
+ 1750, 1750, 1751, 0, 1751, 1752, 1752, 1752, 0, 1752,
+ 1752, 1753, 0, 1753, 1754, 1754, 1754, 1755, 0, 1755,
+ 1756, 1756, 1756, 1757, 0, 1757, 1758, 1758, 1758, 1759,
+ 0, 1759, 1760, 1760, 1760, 1761, 0, 1761, 1762, 1762,
+ 1762, 1763, 0, 1763, 1764, 1764, 1764, 1765, 1765, 0,
+ 0, 1765, 1766, 1766, 1766, 1767, 1767, 1767, 1768, 1768,
+ 1768, 1769, 1769, 0, 1769, 1770, 1770, 1770, 1771, 0,
+ 1771, 1772, 1772, 1772, 1773, 1773, 1773, 1774, 0, 1774,
+
+ 1775, 0, 1775, 1776, 1776, 1776, 1777, 1777, 1777, 1778,
+ 0, 1778, 1779, 0, 1779, 1780, 0, 1780, 1781, 1781,
+ 1781, 1782, 1782, 1782, 1783, 0, 1783, 1784, 0, 1784,
+ 1785, 0, 1785, 1786, 1786, 1786, 1787, 1787, 1787, 1788,
+ 0, 1788, 1789, 0, 1789, 1790, 0, 1790, 1791, 1791,
+ 1791, 1792, 1792, 1792, 1793, 0, 1793, 1794, 0, 0,
+ 1794, 1795, 1795, 0, 1795, 1796, 1796, 0, 0, 1796,
+ 1797, 1797, 0, 1797, 1798, 1798, 1799, 1799, 0, 0,
+ 1799, 1800, 1800, 1800, 1801, 0, 1801, 1802, 1802, 0,
+ 1802, 1803, 1803, 1803, 0, 1803, 1803, 1804, 1804, 1804,
+
+ 1805, 1805, 1805, 1806, 0, 1806, 1807, 0, 1807, 1808,
+ 0, 1808, 1809, 0, 1809, 1810, 0, 1810, 1811, 0,
+ 1811, 1812, 0, 1812, 1813, 1813, 1813, 1814, 1814, 1814,
+ 1815, 0, 1815, 1816, 1816, 0, 0, 1816, 1817, 1817,
+ 0, 1817, 1818, 1818, 1819, 0, 1819, 1820, 0, 0,
+ 1820, 1821, 1821, 0, 1821, 1822, 1822, 0, 0, 1822,
+ 1823, 1823, 0, 1823, 1824, 1824, 1825, 0, 1825, 1826,
+ 0, 1826, 1827, 0, 0, 1827, 1828, 1828, 0, 1828,
+ 1829, 1829, 0, 0, 1829, 1830, 1830, 0, 1830, 1831,
+ 1831, 1832, 0, 1832, 1833, 0, 1833, 1834, 0, 0,
+
+ 1834, 1835, 1835, 0, 1835, 1836, 1836, 0, 0, 1836,
+ 1837, 1837, 0, 1837, 1838, 1838, 1839, 0, 1839, 1840,
+ 0, 1840, 1841, 0, 0, 1841, 1842, 1842, 0, 1842,
+ 1843, 1843, 0, 0, 1843, 1844, 1844, 0, 1844, 1845,
+ 1845, 1846, 0, 1846, 1847, 0, 1847, 1848, 0, 1848,
+ 1849, 0, 1849, 1850, 1850, 1850, 1851, 0, 1851, 1852,
+ 1852, 1852, 0, 1852, 1852, 1853, 0, 1853, 1854, 0,
+ 1854, 1855, 0, 1855, 1856, 0, 1856, 1857, 0, 1857,
+ 1858, 0, 1858, 1859, 0, 1859, 1860, 1860, 0, 0,
+ 1860, 1861, 1861, 0, 1861, 1862, 1862, 1863, 0, 1863,
+
+ 1864, 0, 1864, 1865, 0, 1865, 1866, 0, 1866, 1867,
+ 0, 1867, 1868, 0, 1868, 1869, 0, 1869, 1870, 0,
+ 1870, 1871, 0, 1871, 1872, 0, 1872, 1873, 0, 0,
+ 1873, 1874, 1874, 0, 0, 1874, 1875, 0, 1875, 1876,
+ 0, 1876, 1877, 0, 1877, 1878, 0, 0, 1878, 1879,
+ 0, 0, 1879, 1880, 0, 0, 1880, 1881, 0, 0,
+ 1881, 1882, 0, 0, 1882, 1883, 0, 1883, 1884, 0,
+ 1884, 1885, 0, 0, 1885, 1886, 0, 1886, 1887, 0,
+ 1887, 1888, 0, 1888, 1889, 0, 1889, 1890, 0, 1890,
+ 1891, 0, 0, 1891, 1892, 0, 1892, 1893, 0, 1893,
+
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433,
+ 1433, 1433, 1433, 1433
+ } ;
+
+static yy_state_type yy_last_accepting_state;
+static char *yy_last_accepting_cpos;
+
+extern int pcap__flex_debug;
+int pcap__flex_debug = 0;
+
+/* 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 *pcap_text;
+#line 1 "scanner.l"
+#line 2 "scanner.l"
+/*
+ * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
+ * The Regents of the University of California. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that: (1) source code distributions
+ * retain the above copyright notice and this paragraph in its entirety, (2)
+ * distributions including binary code include the above copyright notice and
+ * this paragraph in its entirety in the documentation or other materials
+ * provided with the distribution, and (3) all advertising materials mentioning
+ * features or use of this software display the following acknowledgement:
+ * ``This product includes software developed by the University of California,
+ * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
+ * the University nor the names of its contributors may be used to endorse
+ * or promote products derived from this software without specific prior
+ * written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
+#ifndef lint
+static const char rcsid[] _U_ =
+ "@(#) $Header: /tcpdump/master/libpcap/scanner.l,v 1.110.2.2 2008/02/06 10:21:47 guy Exp $ (LBL)";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include
+#include
+
+#include "pcap-int.h"
+
+#include "gencode.h"
+#ifdef INET6
+#ifdef WIN32
+#include
+
+#ifdef __MINGW32__
+#include "IP6_misc.h"
+#endif
+#else /* WIN32 */
+#include /* for "struct sockaddr" in "struct addrinfo" */
+#include /* for "struct addrinfo" */
+#endif /* WIN32 */
+
+/* Workaround for AIX 4.3 */
+#if !defined(AI_NUMERICHOST)
+#define AI_NUMERICHOST 0x04
+#endif
+#endif /*INET6*/
+#include
+#include "tokdefs.h"
+
+#ifdef HAVE_OS_PROTO_H
+#include "os-proto.h"
+#endif
+
+static int stoi(char *);
+static inline int xdtoi(int);
+
+#ifdef FLEX_SCANNER
+#define YY_NO_UNPUT
+static YY_BUFFER_STATE in_buffer;
+#else
+static char *in_buffer;
+
+#undef getc
+#define getc(fp) (*in_buffer == 0 ? EOF : *in_buffer++)
+#endif
+
+#define yylval pcap_lval
+extern YYSTYPE yylval;
+
+#line 2762 "scanner.c"
+
+#define INITIAL 0
+
+#ifndef YY_NO_UNISTD_H
+/* Special case for "unistd.h", since it is non-ANSI. We include it way
+ * down here because we want the user's section 1 to have been scanned first.
+ * The user has a chance to override it with an option.
+ */
+#include
+#endif
+
+#ifndef YY_EXTRA_TYPE
+#define YY_EXTRA_TYPE void *
+#endif
+
+static int yy_init_globals (void );
+
+/* Accessor methods to globals.
+ These are made visible to non-reentrant scanners for convenience. */
+
+int pcap_lex_destroy (void );
+
+int pcap_get_debug (void );
+
+void pcap_set_debug (int debug_flag );
+
+YY_EXTRA_TYPE pcap_get_extra (void );
+
+void pcap_set_extra (YY_EXTRA_TYPE user_defined );
+
+/* Macros after this point can all be overridden by user definitions in
+ * section 1.
+ */
+
+#ifndef YY_SKIP_YYWRAP
+#ifdef __cplusplus
+extern "C" int pcap_wrap (void );
+#else
+extern int pcap_wrap (void );
+#endif
+#endif
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char *,yyconst char *,int );
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * );
+#endif
+
+#ifndef YY_NO_INPUT
+
+#ifdef __cplusplus
+static int yyinput (void );
+#else
+static int input (void );
+#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 fwrite( pcap_text, pcap_leng, 1, pcap_out )
+#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_LVALUE->yy_is_interactive ) \
+ { \
+ int c = '*'; \
+ int n; \
+ for ( n = 0; n < max_size && \
+ (c = getc( pcap_in )) != EOF && c != '\n'; ++n ) \
+ buf[n] = (char) c; \
+ if ( c == '\n' ) \
+ buf[n++] = (char) c; \
+ if ( c == EOF && ferror( pcap_in ) ) \
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
+ result = n; \
+ } \
+ else \
+ { \
+ errno=0; \
+ while ( (result = fread(buf, 1, max_size, pcap_in))==0 && ferror(pcap_in)) \
+ { \
+ if( errno != EINTR) \
+ { \
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
+ break; \
+ } \
+ errno=0; \
+ clearerr(pcap_in); \
+ } \
+ }\
+\
+
+#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
+
+/* end tables serialization structures and prototypes */
+
+/* Default declaration of generated scanner - a define so the user can
+ * easily add parameters.
+ */
+#ifndef YY_DECL
+#define YY_DECL_IS_OURS 1
+
+extern int pcap_lex (void);
+
+#define YY_DECL int pcap_lex (void)
+#endif /* !YY_DECL */
+
+/* Code executed at the beginning of each rule, after pcap_text and pcap_leng
+ * 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
+
+/** The main scanner function which does all the work.
+ */
+YY_DECL
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp, *yy_bp;
+ register int yy_act;
+
+#line 174 "scanner.l"
+
+#line 2928 "scanner.c"
+
+ if ( !(yy_init) )
+ {
+ (yy_init) = 1;
+
+#ifdef YY_USER_INIT
+ YY_USER_INIT;
+#endif
+
+ if ( ! (yy_start) )
+ (yy_start) = 1; /* first start state */
+
+ if ( ! pcap_in )
+ pcap_in = stdin;
+
+ if ( ! pcap_out )
+ pcap_out = stdout;
+
+ if ( ! YY_CURRENT_BUFFER ) {
+ pcap_ensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ pcap__create_buffer(pcap_in,YY_BUF_SIZE );
+ }
+
+ pcap__load_buffer_state( );
+ }
+
+ while ( 1 ) /* loops until end-of-file is reached */
+ {
+ yy_cp = (yy_c_buf_p);
+
+ /* Support of pcap_text. */
+ *yy_cp = (yy_hold_char);
+
+ /* yy_bp points to the position in yy_ch_buf of the start of
+ * the current run.
+ */
+ yy_bp = yy_cp;
+
+ yy_current_state = (yy_start);
+yy_match:
+ 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 >= 1434 )
+ 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] != 7401 );
+
+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 175 "scanner.l"
+return DST;
+ YY_BREAK
+case 2:
+YY_RULE_SETUP
+#line 176 "scanner.l"
+return SRC;
+ YY_BREAK
+case 3:
+YY_RULE_SETUP
+#line 178 "scanner.l"
+return LINK;
+ YY_BREAK
+case 4:
+YY_RULE_SETUP
+#line 179 "scanner.l"
+return LINK;
+ YY_BREAK
+case 5:
+YY_RULE_SETUP
+#line 180 "scanner.l"
+return ARP;
+ YY_BREAK
+case 6:
+YY_RULE_SETUP
+#line 181 "scanner.l"
+return RARP;
+ YY_BREAK
+case 7:
+YY_RULE_SETUP
+#line 182 "scanner.l"
+return IP;
+ YY_BREAK
+case 8:
+YY_RULE_SETUP
+#line 183 "scanner.l"
+return SCTP;
+ YY_BREAK
+case 9:
+YY_RULE_SETUP
+#line 184 "scanner.l"
+return TCP;
+ YY_BREAK
+case 10:
+YY_RULE_SETUP
+#line 185 "scanner.l"
+return UDP;
+ YY_BREAK
+case 11:
+YY_RULE_SETUP
+#line 186 "scanner.l"
+return ICMP;
+ YY_BREAK
+case 12:
+YY_RULE_SETUP
+#line 187 "scanner.l"
+return IGMP;
+ YY_BREAK
+case 13:
+YY_RULE_SETUP
+#line 188 "scanner.l"
+return IGRP;
+ YY_BREAK
+case 14:
+YY_RULE_SETUP
+#line 189 "scanner.l"
+return PIM;
+ YY_BREAK
+case 15:
+YY_RULE_SETUP
+#line 190 "scanner.l"
+return VRRP;
+ YY_BREAK
+case 16:
+YY_RULE_SETUP
+#line 191 "scanner.l"
+return RADIO;
+ YY_BREAK
+case 17:
+YY_RULE_SETUP
+#line 193 "scanner.l"
+{
+#ifdef INET6
+ return IPV6;
+#else
+ bpf_error("%s not supported", pcap_text);
+#endif
+ }
+ YY_BREAK
+case 18:
+YY_RULE_SETUP
+#line 200 "scanner.l"
+{
+#ifdef INET6
+ return ICMPV6;
+#else
+ bpf_error("%s not supported", pcap_text);
+#endif
+ }
+ YY_BREAK
+case 19:
+YY_RULE_SETUP
+#line 207 "scanner.l"
+return AH;
+ YY_BREAK
+case 20:
+YY_RULE_SETUP
+#line 208 "scanner.l"
+return ESP;
+ YY_BREAK
+case 21:
+YY_RULE_SETUP
+#line 210 "scanner.l"
+return ATALK;
+ YY_BREAK
+case 22:
+YY_RULE_SETUP
+#line 211 "scanner.l"
+return AARP;
+ YY_BREAK
+case 23:
+YY_RULE_SETUP
+#line 212 "scanner.l"
+return DECNET;
+ YY_BREAK
+case 24:
+YY_RULE_SETUP
+#line 213 "scanner.l"
+return LAT;
+ YY_BREAK
+case 25:
+YY_RULE_SETUP
+#line 214 "scanner.l"
+return SCA;
+ YY_BREAK
+case 26:
+YY_RULE_SETUP
+#line 215 "scanner.l"
+return MOPRC;
+ YY_BREAK
+case 27:
+YY_RULE_SETUP
+#line 216 "scanner.l"
+return MOPDL;
+ YY_BREAK
+case 28:
+YY_RULE_SETUP
+#line 218 "scanner.l"
+return ISO;
+ YY_BREAK
+case 29:
+YY_RULE_SETUP
+#line 219 "scanner.l"
+return ESIS;
+ YY_BREAK
+case 30:
+YY_RULE_SETUP
+#line 220 "scanner.l"
+return ESIS;
+ YY_BREAK
+case 31:
+YY_RULE_SETUP
+#line 221 "scanner.l"
+return ISIS;
+ YY_BREAK
+case 32:
+YY_RULE_SETUP
+#line 222 "scanner.l"
+return ISIS;
+ YY_BREAK
+case 33:
+YY_RULE_SETUP
+#line 223 "scanner.l"
+return L1;
+ YY_BREAK
+case 34:
+YY_RULE_SETUP
+#line 224 "scanner.l"
+return L2;
+ YY_BREAK
+case 35:
+YY_RULE_SETUP
+#line 225 "scanner.l"
+return IIH;
+ YY_BREAK
+case 36:
+YY_RULE_SETUP
+#line 226 "scanner.l"
+return LSP;
+ YY_BREAK
+case 37:
+YY_RULE_SETUP
+#line 227 "scanner.l"
+return SNP;
+ YY_BREAK
+case 38:
+YY_RULE_SETUP
+#line 228 "scanner.l"
+return CSNP;
+ YY_BREAK
+case 39:
+YY_RULE_SETUP
+#line 229 "scanner.l"
+return PSNP;
+ YY_BREAK
+case 40:
+YY_RULE_SETUP
+#line 231 "scanner.l"
+return CLNP;
+ YY_BREAK
+case 41:
+YY_RULE_SETUP
+#line 233 "scanner.l"
+return STP;
+ YY_BREAK
+case 42:
+YY_RULE_SETUP
+#line 235 "scanner.l"
+return IPX;
+ YY_BREAK
+case 43:
+YY_RULE_SETUP
+#line 237 "scanner.l"
+return NETBEUI;
+ YY_BREAK
+case 44:
+YY_RULE_SETUP
+#line 239 "scanner.l"
+return HOST;
+ YY_BREAK
+case 45:
+YY_RULE_SETUP
+#line 240 "scanner.l"
+return NET;
+ YY_BREAK
+case 46:
+YY_RULE_SETUP
+#line 241 "scanner.l"
+return NETMASK;
+ YY_BREAK
+case 47:
+YY_RULE_SETUP
+#line 242 "scanner.l"
+return PORT;
+ YY_BREAK
+case 48:
+YY_RULE_SETUP
+#line 243 "scanner.l"
+return PORTRANGE;
+ YY_BREAK
+case 49:
+YY_RULE_SETUP
+#line 244 "scanner.l"
+return PROTO;
+ YY_BREAK
+case 50:
+YY_RULE_SETUP
+#line 245 "scanner.l"
+{
+#ifdef NO_PROTOCHAIN
+ bpf_error("%s not supported", pcap_text);
+#else
+ return PROTOCHAIN;
+#endif
+ }
+ YY_BREAK
+case 51:
+YY_RULE_SETUP
+#line 253 "scanner.l"
+return GATEWAY;
+ YY_BREAK
+case 52:
+YY_RULE_SETUP
+#line 255 "scanner.l"
+return TYPE;
+ YY_BREAK
+case 53:
+YY_RULE_SETUP
+#line 256 "scanner.l"
+return SUBTYPE;
+ YY_BREAK
+case 54:
+YY_RULE_SETUP
+#line 257 "scanner.l"
+return DIR;
+ YY_BREAK
+case 55:
+YY_RULE_SETUP
+#line 258 "scanner.l"
+return ADDR1;
+ YY_BREAK
+case 56:
+YY_RULE_SETUP
+#line 259 "scanner.l"
+return ADDR2;
+ YY_BREAK
+case 57:
+YY_RULE_SETUP
+#line 260 "scanner.l"
+return ADDR3;
+ YY_BREAK
+case 58:
+YY_RULE_SETUP
+#line 261 "scanner.l"
+return ADDR4;
+ YY_BREAK
+case 59:
+YY_RULE_SETUP
+#line 263 "scanner.l"
+return LESS;
+ YY_BREAK
+case 60:
+YY_RULE_SETUP
+#line 264 "scanner.l"
+return GREATER;
+ YY_BREAK
+case 61:
+YY_RULE_SETUP
+#line 265 "scanner.l"
+return CBYTE;
+ YY_BREAK
+case 62:
+YY_RULE_SETUP
+#line 266 "scanner.l"
+return TK_BROADCAST;
+ YY_BREAK
+case 63:
+YY_RULE_SETUP
+#line 267 "scanner.l"
+return TK_MULTICAST;
+ YY_BREAK
+case 64:
+YY_RULE_SETUP
+#line 269 "scanner.l"
+return AND;
+ YY_BREAK
+case 65:
+YY_RULE_SETUP
+#line 270 "scanner.l"
+return OR;
+ YY_BREAK
+case 66:
+YY_RULE_SETUP
+#line 271 "scanner.l"
+return '!';
+ YY_BREAK
+case 67:
+YY_RULE_SETUP
+#line 273 "scanner.l"
+return LEN;
+ YY_BREAK
+case 68:
+YY_RULE_SETUP
+#line 274 "scanner.l"
+return INBOUND;
+ YY_BREAK
+case 69:
+YY_RULE_SETUP
+#line 275 "scanner.l"
+return OUTBOUND;
+ YY_BREAK
+case 70:
+YY_RULE_SETUP
+#line 277 "scanner.l"
+return VLAN;
+ YY_BREAK
+case 71:
+YY_RULE_SETUP
+#line 278 "scanner.l"
+return MPLS;
+ YY_BREAK
+case 72:
+YY_RULE_SETUP
+#line 279 "scanner.l"
+return PPPOED;
+ YY_BREAK
+case 73:
+YY_RULE_SETUP
+#line 280 "scanner.l"
+return PPPOES;
+ YY_BREAK
+case 74:
+YY_RULE_SETUP
+#line 282 "scanner.l"
+return LANE;
+ YY_BREAK
+case 75:
+YY_RULE_SETUP
+#line 283 "scanner.l"
+return LLC;
+ YY_BREAK
+case 76:
+YY_RULE_SETUP
+#line 284 "scanner.l"
+return METAC;
+ YY_BREAK
+case 77:
+YY_RULE_SETUP
+#line 285 "scanner.l"
+return BCC;
+ YY_BREAK
+case 78:
+YY_RULE_SETUP
+#line 286 "scanner.l"
+return OAM;
+ YY_BREAK
+case 79:
+YY_RULE_SETUP
+#line 287 "scanner.l"
+return OAMF4;
+ YY_BREAK
+case 80:
+YY_RULE_SETUP
+#line 288 "scanner.l"
+return OAMF4EC;
+ YY_BREAK
+case 81:
+YY_RULE_SETUP
+#line 289 "scanner.l"
+return OAMF4SC;
+ YY_BREAK
+case 82:
+YY_RULE_SETUP
+#line 290 "scanner.l"
+return SC;
+ YY_BREAK
+case 83:
+YY_RULE_SETUP
+#line 291 "scanner.l"
+return ILMIC;
+ YY_BREAK
+case 84:
+YY_RULE_SETUP
+#line 292 "scanner.l"
+return VPI;
+ YY_BREAK
+case 85:
+YY_RULE_SETUP
+#line 293 "scanner.l"
+return VCI;
+ YY_BREAK
+case 86:
+YY_RULE_SETUP
+#line 294 "scanner.l"
+return CONNECTMSG;
+ YY_BREAK
+case 87:
+YY_RULE_SETUP
+#line 295 "scanner.l"
+return METACONNECT;
+ YY_BREAK
+case 88:
+YY_RULE_SETUP
+#line 297 "scanner.l"
+return PF_IFNAME;
+ YY_BREAK
+case 89:
+YY_RULE_SETUP
+#line 298 "scanner.l"
+return PF_RSET;
+ YY_BREAK
+case 90:
+YY_RULE_SETUP
+#line 299 "scanner.l"
+return PF_RNR;
+ YY_BREAK
+case 91:
+YY_RULE_SETUP
+#line 300 "scanner.l"
+return PF_SRNR;
+ YY_BREAK
+case 92:
+YY_RULE_SETUP
+#line 301 "scanner.l"
+return PF_REASON;
+ YY_BREAK
+case 93:
+YY_RULE_SETUP
+#line 302 "scanner.l"
+return PF_ACTION;
+ YY_BREAK
+case 94:
+YY_RULE_SETUP
+#line 304 "scanner.l"
+return FISU;
+ YY_BREAK
+case 95:
+YY_RULE_SETUP
+#line 305 "scanner.l"
+return LSSU;
+ YY_BREAK
+case 96:
+YY_RULE_SETUP
+#line 306 "scanner.l"
+return LSSU;
+ YY_BREAK
+case 97:
+YY_RULE_SETUP
+#line 307 "scanner.l"
+return MSU;
+ YY_BREAK
+case 98:
+YY_RULE_SETUP
+#line 308 "scanner.l"
+return SIO;
+ YY_BREAK
+case 99:
+YY_RULE_SETUP
+#line 309 "scanner.l"
+return OPC;
+ YY_BREAK
+case 100:
+YY_RULE_SETUP
+#line 310 "scanner.l"
+return DPC;
+ YY_BREAK
+case 101:
+YY_RULE_SETUP
+#line 311 "scanner.l"
+return SLS;
+ YY_BREAK
+case 102:
+/* rule 102 can match eol */
+YY_RULE_SETUP
+#line 313 "scanner.l"
+;
+ YY_BREAK
+case 103:
+YY_RULE_SETUP
+#line 314 "scanner.l"
+return pcap_text[0];
+ YY_BREAK
+case 104:
+YY_RULE_SETUP
+#line 315 "scanner.l"
+return GEQ;
+ YY_BREAK
+case 105:
+YY_RULE_SETUP
+#line 316 "scanner.l"
+return LEQ;
+ YY_BREAK
+case 106:
+YY_RULE_SETUP
+#line 317 "scanner.l"
+return NEQ;
+ YY_BREAK
+case 107:
+YY_RULE_SETUP
+#line 318 "scanner.l"
+return '=';
+ YY_BREAK
+case 108:
+YY_RULE_SETUP
+#line 319 "scanner.l"
+return LSH;
+ YY_BREAK
+case 109:
+YY_RULE_SETUP
+#line 320 "scanner.l"
+return RSH;
+ YY_BREAK
+case 110:
+YY_RULE_SETUP
+#line 321 "scanner.l"
+{ yylval.e = pcap_ether_aton(((char *)pcap_text)+1);
+ return AID; }
+ YY_BREAK
+case 111:
+YY_RULE_SETUP
+#line 323 "scanner.l"
+{ yylval.e = pcap_ether_aton((char *)pcap_text);
+ return EID; }
+ YY_BREAK
+case 112:
+YY_RULE_SETUP
+#line 325 "scanner.l"
+{ yylval.i = stoi((char *)pcap_text); return NUM; }
+ YY_BREAK
+case 113:
+YY_RULE_SETUP
+#line 326 "scanner.l"
+{
+ yylval.s = sdup((char *)pcap_text); return HID; }
+ YY_BREAK
+case 114:
+YY_RULE_SETUP
+#line 328 "scanner.l"
+{
+#ifdef INET6
+ struct addrinfo hints, *res;
+ memset(&hints, 0, sizeof(hints));
+ hints.ai_family = AF_INET6;
+ hints.ai_flags = AI_NUMERICHOST;
+ if (getaddrinfo(pcap_text, NULL, &hints, &res))
+ bpf_error("bogus IPv6 address %s", pcap_text);
+ else {
+ yylval.s = sdup((char *)pcap_text); return HID6;
+ }
+#else
+ bpf_error("IPv6 address %s not supported", pcap_text);
+#endif /*INET6*/
+ }
+ YY_BREAK
+case 115:
+YY_RULE_SETUP
+#line 343 "scanner.l"
+{ bpf_error("bogus ethernet address %s", pcap_text); }
+ YY_BREAK
+case 116:
+YY_RULE_SETUP
+#line 344 "scanner.l"
+{ yylval.i = 0; return NUM; }
+ YY_BREAK
+case 117:
+YY_RULE_SETUP
+#line 345 "scanner.l"
+{ yylval.i = 1; return NUM; }
+ YY_BREAK
+case 118:
+YY_RULE_SETUP
+#line 346 "scanner.l"
+{ yylval.i = 0; return NUM; }
+ YY_BREAK
+case 119:
+YY_RULE_SETUP
+#line 347 "scanner.l"
+{ yylval.i = 3; return NUM; }
+ YY_BREAK
+case 120:
+YY_RULE_SETUP
+#line 348 "scanner.l"
+{ yylval.i = 4; return NUM; }
+ YY_BREAK
+case 121:
+YY_RULE_SETUP
+#line 349 "scanner.l"
+{ yylval.i = 5; return NUM; }
+ YY_BREAK
+case 122:
+YY_RULE_SETUP
+#line 350 "scanner.l"
+{ yylval.i = 8; return NUM; }
+ YY_BREAK
+case 123:
+YY_RULE_SETUP
+#line 351 "scanner.l"
+{ yylval.i = 9; return NUM; }
+ YY_BREAK
+case 124:
+YY_RULE_SETUP
+#line 352 "scanner.l"
+{ yylval.i = 10; return NUM; }
+ YY_BREAK
+case 125:
+YY_RULE_SETUP
+#line 353 "scanner.l"
+{ yylval.i = 11; return NUM; }
+ YY_BREAK
+case 126:
+YY_RULE_SETUP
+#line 354 "scanner.l"
+{ yylval.i = 12; return NUM; }
+ YY_BREAK
+case 127:
+YY_RULE_SETUP
+#line 355 "scanner.l"
+{ yylval.i = 13; return NUM; }
+ YY_BREAK
+case 128:
+YY_RULE_SETUP
+#line 356 "scanner.l"
+{ yylval.i = 14; return NUM; }
+ YY_BREAK
+case 129:
+YY_RULE_SETUP
+#line 357 "scanner.l"
+{ yylval.i = 15; return NUM; }
+ YY_BREAK
+case 130:
+YY_RULE_SETUP
+#line 358 "scanner.l"
+{ yylval.i = 16; return NUM; }
+ YY_BREAK
+case 131:
+YY_RULE_SETUP
+#line 359 "scanner.l"
+{ yylval.i = 17; return NUM; }
+ YY_BREAK
+case 132:
+YY_RULE_SETUP
+#line 360 "scanner.l"
+{ yylval.i = 18; return NUM; }
+ YY_BREAK
+case 133:
+YY_RULE_SETUP
+#line 361 "scanner.l"
+{ yylval.i = 13; return NUM; }
+ YY_BREAK
+case 134:
+YY_RULE_SETUP
+#line 362 "scanner.l"
+{ yylval.i = 0x01; return NUM; }
+ YY_BREAK
+case 135:
+YY_RULE_SETUP
+#line 363 "scanner.l"
+{ yylval.i = 0x02; return NUM; }
+ YY_BREAK
+case 136:
+YY_RULE_SETUP
+#line 364 "scanner.l"
+{ yylval.i = 0x04; return NUM; }
+ YY_BREAK
+case 137:
+YY_RULE_SETUP
+#line 365 "scanner.l"
+{ yylval.i = 0x08; return NUM; }
+ YY_BREAK
+case 138:
+YY_RULE_SETUP
+#line 366 "scanner.l"
+{ yylval.i = 0x10; return NUM; }
+ YY_BREAK
+case 139:
+YY_RULE_SETUP
+#line 367 "scanner.l"
+{ yylval.i = 0x20; return NUM; }
+ YY_BREAK
+case 140:
+YY_RULE_SETUP
+#line 368 "scanner.l"
+{
+ yylval.s = sdup((char *)pcap_text); return ID; }
+ YY_BREAK
+case 141:
+YY_RULE_SETUP
+#line 370 "scanner.l"
+{ yylval.s = sdup((char *)pcap_text + 1); return ID; }
+ YY_BREAK
+case 142:
+YY_RULE_SETUP
+#line 371 "scanner.l"
+{
+ bpf_error("illegal token: %s", pcap_text); }
+ YY_BREAK
+case 143:
+YY_RULE_SETUP
+#line 373 "scanner.l"
+{ bpf_error("illegal char '%c'", *pcap_text); }
+ YY_BREAK
+case 144:
+YY_RULE_SETUP
+#line 374 "scanner.l"
+ECHO;
+ YY_BREAK
+#line 3769 "scanner.c"
+case YY_STATE_EOF(INITIAL):
+ 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_LVALUE->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 pcap_in at a new source and called
+ * pcap_lex(). 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_LVALUE->yy_n_chars;
+ YY_CURRENT_BUFFER_LVALUE->yy_input_file = pcap_in;
+ YY_CURRENT_BUFFER_LVALUE->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_LVALUE->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 ( pcap_wrap( ) )
+ {
+ /* Note: because we've taken care in
+ * yy_get_next_buffer() to have set up
+ * pcap_text, 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_LVALUE->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 pcap_lex */
+
+/* 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 (void)
+{
+ register char *dest = YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--end of buffer missed" );
+
+ if ( YY_CURRENT_BUFFER_LVALUE->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_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
+ /* don't do the read, it's not guaranteed to return an EOF,
+ * just force an EOF
+ */
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
+
+ else
+ {
+ int num_to_read =
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
+
+ while ( num_to_read <= 0 )
+ { /* Not enough room in the buffer - grow it. */
+
+ /* 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. */
+ pcap_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_LVALUE->yy_buf_size -
+ number_to_move - 1;
+
+ }
+
+ if ( num_to_read > YY_READ_BUF_SIZE )
+ num_to_read = YY_READ_BUF_SIZE;
+
+ /* Read in more data. */
+ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
+ (yy_n_chars), (size_t) num_to_read );
+
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ if ( (yy_n_chars) == 0 )
+ {
+ if ( number_to_move == YY_MORE_ADJ )
+ {
+ ret_val = EOB_ACT_END_OF_FILE;
+ pcap_restart(pcap_in );
+ }
+
+ else
+ {
+ ret_val = EOB_ACT_LAST_MATCH;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
+ YY_BUFFER_EOF_PENDING;
+ }
+ }
+
+ else
+ ret_val = EOB_ACT_CONTINUE_SCAN;
+
+ if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
+ /* Extend the array by 50%, plus the number we really need. */
+ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) pcap_realloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
+ if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
+ }
+
+ (yy_n_chars) += number_to_move;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
+
+ (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->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 (void)
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp;
+
+ yy_current_state = (yy_start);
+
+ for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
+ {
+ 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 >= 1434 )
+ 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 );
+ */
+ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
+{
+ 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 >= 1434 )
+ 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 == 1433);
+
+ return yy_is_jam ? 0 : yy_current_state;
+}
+
+#ifndef YY_NO_INPUT
+#ifdef __cplusplus
+ static int yyinput (void)
+#else
+ static int input (void)
+#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_LVALUE->yy_ch_buf[(yy_n_chars)] )
+ /* This was really a NUL. */
+ *(yy_c_buf_p) = '\0';
+
+ else
+ { /* need more input */
+ int offset = (yy_c_buf_p) - (yytext_ptr);
+ ++(yy_c_buf_p);
+
+ switch ( yy_get_next_buffer( ) )
+ {
+ case EOB_ACT_LAST_MATCH:
+ /* This happens because yy_g_n_b()
+ * sees that we've accumulated a
+ * token and flags that we need to
+ * try matching the token before
+ * proceeding. But for input(),
+ * there's no matching to consider.
+ * So convert the EOB_ACT_LAST_MATCH
+ * to EOB_ACT_END_OF_FILE.
+ */
+
+ /* Reset buffer status. */
+ pcap_restart(pcap_in );
+
+ /*FALLTHROUGH*/
+
+ case EOB_ACT_END_OF_FILE:
+ {
+ if ( pcap_wrap( ) )
+ return EOF;
+
+ if ( ! (yy_did_buffer_switch_on_eof) )
+ YY_NEW_FILE;
+#ifdef __cplusplus
+ return yyinput();
+#else
+ return input();
+#endif
+ }
+
+ case EOB_ACT_CONTINUE_SCAN:
+ (yy_c_buf_p) = (yytext_ptr) + offset;
+ break;
+ }
+ }
+ }
+
+ c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
+ *(yy_c_buf_p) = '\0'; /* preserve pcap_text */
+ (yy_hold_char) = *++(yy_c_buf_p);
+
+ return c;
+}
+#endif /* ifndef YY_NO_INPUT */
+
+/** Immediately switch to a different input stream.
+ * @param input_file A readable stream.
+ *
+ * @note This function does not reset the start condition to @c INITIAL .
+ */
+ void pcap_restart (FILE * input_file )
+{
+
+ if ( ! YY_CURRENT_BUFFER ){
+ pcap_ensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ pcap__create_buffer(pcap_in,YY_BUF_SIZE );
+ }
+
+ pcap__init_buffer(YY_CURRENT_BUFFER,input_file );
+ pcap__load_buffer_state( );
+}
+
+/** Switch to a different input buffer.
+ * @param new_buffer The new input buffer.
+ *
+ */
+ void pcap__switch_to_buffer (YY_BUFFER_STATE new_buffer )
+{
+
+ /* TODO. We should be able to replace this entire function body
+ * with
+ * pcap_pop_buffer_state();
+ * pcap_push_buffer_state(new_buffer);
+ */
+ pcap_ensure_buffer_stack ();
+ 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_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+ pcap__load_buffer_state( );
+
+ /* We don't actually know whether we did this switch during
+ * EOF (pcap_wrap()) processing, but the only time this flag
+ * is looked at is after pcap_wrap() is called, so it's safe
+ * to go ahead and always set it.
+ */
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+static void pcap__load_buffer_state (void)
+{
+ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
+ pcap_in = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
+ (yy_hold_char) = *(yy_c_buf_p);
+}
+
+/** Allocate and initialize an input buffer state.
+ * @param file A readable stream.
+ * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
+ *
+ * @return the allocated buffer state.
+ */
+ YY_BUFFER_STATE pcap__create_buffer (FILE * file, int size )
+{
+ YY_BUFFER_STATE b;
+
+ b = (YY_BUFFER_STATE) pcap_alloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap__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 *) pcap_alloc(b->yy_buf_size + 2 );
+ if ( ! b->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap__create_buffer()" );
+
+ b->yy_is_our_buffer = 1;
+
+ pcap__init_buffer(b,file );
+
+ return b;
+}
+
+/** Destroy the buffer.
+ * @param b a buffer created with pcap__create_buffer()
+ *
+ */
+ void pcap__delete_buffer (YY_BUFFER_STATE b )
+{
+
+ if ( ! b )
+ return;
+
+ if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
+ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
+
+ if ( b->yy_is_our_buffer )
+ pcap_free((void *) b->yy_ch_buf );
+
+ pcap_free((void *) b );
+}
+
+#ifndef __cplusplus
+extern int isatty (int );
+#endif /* __cplusplus */
+
+/* Initializes or reinitializes a buffer.
+ * This function is sometimes called more than once on the same buffer,
+ * such as during a pcap_restart() or at EOF.
+ */
+ static void pcap__init_buffer (YY_BUFFER_STATE b, FILE * file )
+
+{
+ int oerrno = errno;
+
+ pcap__flush_buffer(b );
+
+ b->yy_input_file = file;
+ b->yy_fill_buffer = 1;
+
+ /* If b is the current buffer, then pcap__init_buffer was _probably_
+ * called from pcap_restart() or through yy_get_next_buffer.
+ * In that case, we don't want to reset the lineno or column.
+ */
+ if (b != YY_CURRENT_BUFFER){
+ b->yy_bs_lineno = 1;
+ b->yy_bs_column = 0;
+ }
+
+ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
+
+ errno = oerrno;
+}
+
+/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
+ * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
+ *
+ */
+ void pcap__flush_buffer (YY_BUFFER_STATE b )
+{
+ if ( ! b )
+ return;
+
+ b->yy_n_chars = 0;
+
+ /* We always need two end-of-buffer characters. The first causes
+ * a transition to the end-of-buffer state. The second causes
+ * a jam in that state.
+ */
+ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
+ b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
+
+ b->yy_buf_pos = &b->yy_ch_buf[0];
+
+ b->yy_at_bol = 1;
+ b->yy_buffer_status = YY_BUFFER_NEW;
+
+ if ( b == YY_CURRENT_BUFFER )
+ pcap__load_buffer_state( );
+}
+
+/** Pushes the new state onto the stack. The new state becomes
+ * the current state. This function will allocate the stack
+ * if necessary.
+ * @param new_buffer The new state.
+ *
+ */
+void pcap_push_buffer_state (YY_BUFFER_STATE new_buffer )
+{
+ if (new_buffer == NULL)
+ return;
+
+ pcap_ensure_buffer_stack();
+
+ /* This block is copied from pcap__switch_to_buffer. */
+ if ( YY_CURRENT_BUFFER )
+ {
+ /* Flush out information for old buffer. */
+ *(yy_c_buf_p) = (yy_hold_char);
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ /* Only push if top exists. Otherwise, replace top. */
+ if (YY_CURRENT_BUFFER)
+ (yy_buffer_stack_top)++;
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+
+ /* copied from pcap__switch_to_buffer. */
+ pcap__load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+/** Removes and deletes the top of the stack, if present.
+ * The next element becomes the new top.
+ *
+ */
+void pcap_pop_buffer_state (void)
+{
+ if (!YY_CURRENT_BUFFER)
+ return;
+
+ pcap__delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ if ((yy_buffer_stack_top) > 0)
+ --(yy_buffer_stack_top);
+
+ if (YY_CURRENT_BUFFER) {
+ pcap__load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+ }
+}
+
+/* Allocates the stack if it does not exist.
+ * Guarantees space for at least one push.
+ */
+static void pcap_ensure_buffer_stack (void)
+{
+ int num_to_alloc;
+
+ if (!(yy_buffer_stack)) {
+
+ /* First allocation is just for 2 elements, since we don't know if this
+ * scanner will even need a stack. We use 2 instead of 1 to avoid an
+ * immediate realloc on the next call.
+ */
+ num_to_alloc = 1;
+ (yy_buffer_stack) = (struct yy_buffer_state**)pcap_alloc
+ (num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap_ensure_buffer_stack()" );
+
+ memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
+
+ (yy_buffer_stack_max) = num_to_alloc;
+ (yy_buffer_stack_top) = 0;
+ return;
+ }
+
+ if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
+
+ /* Increase the buffer to prepare for a possible push. */
+ int grow_size = 8 /* arbitrary grow size */;
+
+ num_to_alloc = (yy_buffer_stack_max) + grow_size;
+ (yy_buffer_stack) = (struct yy_buffer_state**)pcap_realloc
+ ((yy_buffer_stack),
+ num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap_ensure_buffer_stack()" );
+
+ /* zero only the new slots.*/
+ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
+ (yy_buffer_stack_max) = num_to_alloc;
+ }
+}
+
+/** Setup the input buffer state to scan directly from a user-specified character buffer.
+ * @param base the character buffer
+ * @param size the size in bytes of the character buffer
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE pcap__scan_buffer (char * base, yy_size_t size )
+{
+ 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) pcap_alloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap__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;
+
+ pcap__switch_to_buffer(b );
+
+ return b;
+}
+
+/** Setup the input buffer state to scan a string. The next call to pcap_lex() will
+ * scan from a @e copy of @a str.
+ * @param yystr a NUL-terminated string to scan
+ *
+ * @return the newly allocated buffer state object.
+ * @note If you want to scan bytes that may contain NUL values, then use
+ * pcap__scan_bytes() instead.
+ */
+YY_BUFFER_STATE pcap__scan_string (yyconst char * yystr )
+{
+
+ return pcap__scan_bytes(yystr,strlen(yystr) );
+}
+
+/** Setup the input buffer state to scan the given bytes. The next call to pcap_lex() will
+ * scan from a @e copy of @a bytes.
+ * @param bytes the byte buffer to scan
+ * @param len the number of bytes in the buffer pointed to by @a bytes.
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE pcap__scan_bytes (yyconst char * yybytes, int _yybytes_len )
+{
+ YY_BUFFER_STATE b;
+ char *buf;
+ yy_size_t n;
+ int i;
+
+ /* Get memory for full buffer, including space for trailing EOB's. */
+ n = _yybytes_len + 2;
+ buf = (char *) pcap_alloc(n );
+ if ( ! buf )
+ YY_FATAL_ERROR( "out of dynamic memory in pcap__scan_bytes()" );
+
+ for ( i = 0; i < _yybytes_len; ++i )
+ buf[i] = yybytes[i];
+
+ buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
+
+ b = pcap__scan_buffer(buf,n );
+ if ( ! b )
+ YY_FATAL_ERROR( "bad buffer in pcap__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;
+}
+
+#ifndef YY_EXIT_FAILURE
+#define YY_EXIT_FAILURE 2
+#endif
+
+static void yy_fatal_error (yyconst char* msg )
+{
+ (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 pcap_text. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ pcap_text[pcap_leng] = (yy_hold_char); \
+ (yy_c_buf_p) = pcap_text + yyless_macro_arg; \
+ (yy_hold_char) = *(yy_c_buf_p); \
+ *(yy_c_buf_p) = '\0'; \
+ pcap_leng = yyless_macro_arg; \
+ } \
+ while ( 0 )
+
+/* Accessor methods (get/set functions) to struct members. */
+
+/** Get the current token.
+ *
+ */
+
+int pcap_get_debug (void)
+{
+ return pcap__flex_debug;
+}
+
+void pcap_set_debug (int bdebug )
+{
+ pcap__flex_debug = bdebug ;
+}
+
+static int yy_init_globals (void)
+{
+ /* Initialization is the same as for the non-reentrant scanner.
+ * This function is called from pcap_lex_destroy(), so don't allocate here.
+ */
+
+ (yy_buffer_stack) = 0;
+ (yy_buffer_stack_top) = 0;
+ (yy_buffer_stack_max) = 0;
+ (yy_c_buf_p) = (char *) 0;
+ (yy_init) = 0;
+ (yy_start) = 0;
+
+/* Defined in main.c */
+#ifdef YY_STDINIT
+ pcap_in = stdin;
+ pcap_out = stdout;
+#else
+ pcap_in = (FILE *) 0;
+ pcap_out = (FILE *) 0;
+#endif
+
+ /* For future reference: Set errno on error, since we are called by
+ * pcap_lex_init()
+ */
+ return 0;
+}
+
+/* pcap_lex_destroy is for both reentrant and non-reentrant scanners. */
+int pcap_lex_destroy (void)
+{
+
+ /* Pop the buffer stack, destroying each element. */
+ while(YY_CURRENT_BUFFER){
+ pcap__delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ pcap_pop_buffer_state();
+ }
+
+ /* Destroy the stack itself. */
+ pcap_free((yy_buffer_stack) );
+ (yy_buffer_stack) = NULL;
+
+ /* Reset the globals. This is important in a non-reentrant scanner so the next time
+ * pcap_lex() is called, initialization will occur. */
+ yy_init_globals( );
+
+ return 0;
+}
+
+/*
+ * Internal utility routines.
+ */
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
+{
+ register int i;
+ for ( i = 0; i < n; ++i )
+ s1[i] = s2[i];
+}
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * s )
+{
+ register int n;
+ for ( n = 0; s[n]; ++n )
+ ;
+
+ return n;
+}
+#endif
+
+void *pcap_alloc (yy_size_t size )
+{
+ return (void *) malloc( size );
+}
+
+void *pcap_realloc (void * ptr, yy_size_t size )
+{
+ /* 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 );
+}
+
+void pcap_free (void * ptr )
+{
+ free( (char *) ptr ); /* see pcap_realloc() for (char *) cast */
+}
+
+#define YYTABLES_NAME "yytables"
+
+#line 374 "scanner.l"
+
+
+void
+lex_init(buf)
+ const char *buf;
+{
+#ifdef FLEX_SCANNER
+ in_buffer = pcap__scan_string(buf);
+#else
+ in_buffer = buf;
+#endif
+}
+
+/*
+ * Do any cleanup necessary after parsing.
+ */
+void
+lex_cleanup()
+{
+#ifdef FLEX_SCANNER
+ if (in_buffer != NULL)
+ pcap__delete_buffer(in_buffer);
+ in_buffer = NULL;
+#endif
+}
+
+/*
+ * Also define a pcap_wrap. Note that if we're using flex, it will
+ * define a macro to map this identifier to pcap_wrap.
+ */
+int
+pcap_wrap()
+{
+ return 1;
+}
+
+/* Hex digit to integer. */
+static inline int
+xdtoi(c)
+ register int c;
+{
+ if (isdigit(c))
+ return c - '0';
+ else if (islower(c))
+ return c - 'a' + 10;
+ else
+ return c - 'A' + 10;
+}
+
+/*
+ * Convert string to integer. Just like atoi(), but checks for
+ * preceding 0x or 0 and uses hex or octal instead of decimal.
+ */
+static int
+stoi(s)
+ char *s;
+{
+ int base = 10;
+ int n = 0;
+
+ if (*s == '0') {
+ if (s[1] == 'x' || s[1] == 'X') {
+ s += 2;
+ base = 16;
+ }
+ else {
+ base = 8;
+ s += 1;
+ }
+ }
+ while (*s)
+ n = n * base + xdtoi(*s++);
+
+ return n;
+}
+
diff --git a/libpcap/scanner.h b/libpcap/scanner.h
new file mode 100644
index 000000000..934ca4ccf
--- /dev/null
+++ b/libpcap/scanner.h
@@ -0,0 +1,6 @@
+/* This is generated by runlex.sh. Do not edit it. */
+
+#ifndef YY_DECL
+#define YY_DECL int yylex(void)
+#endif
+YY_DECL;
diff --git a/libpcap/tokdefs.h b/libpcap/tokdefs.h
new file mode 100644
index 000000000..bf67e9ddd
--- /dev/null
+++ b/libpcap/tokdefs.h
@@ -0,0 +1,298 @@
+
+/* A Bison parser, made by GNU Bison 2.4.1. */
+
+/* Skeleton interface for Bison's Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+ Free Software Foundation, Inc.
+
+ This program 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ 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 program. If not, see . */
+
+/* As a special exception, you may create a larger work that contains
+ part or all of the Bison parser skeleton and distribute that work
+ under terms of your choice, so long as that work isn't itself a
+ parser generator using the skeleton or a modified version thereof
+ as a parser skeleton. Alternatively, if you modify or redistribute
+ the parser skeleton itself, you may (at your option) remove this
+ special exception, which will cause the skeleton and the resulting
+ Bison output files to be licensed under the GNU General Public
+ License without this special exception.
+
+ This special exception was added by the Free Software Foundation in
+ version 2.2 of Bison. */
+
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ DST = 258,
+ SRC = 259,
+ HOST = 260,
+ GATEWAY = 261,
+ NET = 262,
+ NETMASK = 263,
+ PORT = 264,
+ PORTRANGE = 265,
+ LESS = 266,
+ GREATER = 267,
+ PROTO = 268,
+ PROTOCHAIN = 269,
+ CBYTE = 270,
+ ARP = 271,
+ RARP = 272,
+ IP = 273,
+ SCTP = 274,
+ TCP = 275,
+ UDP = 276,
+ ICMP = 277,
+ IGMP = 278,
+ IGRP = 279,
+ PIM = 280,
+ VRRP = 281,
+ ATALK = 282,
+ AARP = 283,
+ DECNET = 284,
+ LAT = 285,
+ SCA = 286,
+ MOPRC = 287,
+ MOPDL = 288,
+ TK_BROADCAST = 289,
+ TK_MULTICAST = 290,
+ NUM = 291,
+ INBOUND = 292,
+ OUTBOUND = 293,
+ PF_IFNAME = 294,
+ PF_RSET = 295,
+ PF_RNR = 296,
+ PF_SRNR = 297,
+ PF_REASON = 298,
+ PF_ACTION = 299,
+ TYPE = 300,
+ SUBTYPE = 301,
+ DIR = 302,
+ ADDR1 = 303,
+ ADDR2 = 304,
+ ADDR3 = 305,
+ ADDR4 = 306,
+ LINK = 307,
+ GEQ = 308,
+ LEQ = 309,
+ NEQ = 310,
+ ID = 311,
+ EID = 312,
+ HID = 313,
+ HID6 = 314,
+ AID = 315,
+ LSH = 316,
+ RSH = 317,
+ LEN = 318,
+ IPV6 = 319,
+ ICMPV6 = 320,
+ AH = 321,
+ ESP = 322,
+ VLAN = 323,
+ MPLS = 324,
+ PPPOED = 325,
+ PPPOES = 326,
+ ISO = 327,
+ ESIS = 328,
+ CLNP = 329,
+ ISIS = 330,
+ L1 = 331,
+ L2 = 332,
+ IIH = 333,
+ LSP = 334,
+ SNP = 335,
+ CSNP = 336,
+ PSNP = 337,
+ STP = 338,
+ IPX = 339,
+ NETBEUI = 340,
+ LANE = 341,
+ LLC = 342,
+ METAC = 343,
+ BCC = 344,
+ SC = 345,
+ ILMIC = 346,
+ OAMF4EC = 347,
+ OAMF4SC = 348,
+ OAM = 349,
+ OAMF4 = 350,
+ CONNECTMSG = 351,
+ METACONNECT = 352,
+ VPI = 353,
+ VCI = 354,
+ RADIO = 355,
+ FISU = 356,
+ LSSU = 357,
+ MSU = 358,
+ SIO = 359,
+ OPC = 360,
+ DPC = 361,
+ SLS = 362,
+ AND = 363,
+ OR = 364,
+ UMINUS = 365
+ };
+#endif
+/* Tokens. */
+#define DST 258
+#define SRC 259
+#define HOST 260
+#define GATEWAY 261
+#define NET 262
+#define NETMASK 263
+#define PORT 264
+#define PORTRANGE 265
+#define LESS 266
+#define GREATER 267
+#define PROTO 268
+#define PROTOCHAIN 269
+#define CBYTE 270
+#define ARP 271
+#define RARP 272
+#define IP 273
+#define SCTP 274
+#define TCP 275
+#define UDP 276
+#define ICMP 277
+#define IGMP 278
+#define IGRP 279
+#define PIM 280
+#define VRRP 281
+#define ATALK 282
+#define AARP 283
+#define DECNET 284
+#define LAT 285
+#define SCA 286
+#define MOPRC 287
+#define MOPDL 288
+#define TK_BROADCAST 289
+#define TK_MULTICAST 290
+#define NUM 291
+#define INBOUND 292
+#define OUTBOUND 293
+#define PF_IFNAME 294
+#define PF_RSET 295
+#define PF_RNR 296
+#define PF_SRNR 297
+#define PF_REASON 298
+#define PF_ACTION 299
+#define TYPE 300
+#define SUBTYPE 301
+#define DIR 302
+#define ADDR1 303
+#define ADDR2 304
+#define ADDR3 305
+#define ADDR4 306
+#define LINK 307
+#define GEQ 308
+#define LEQ 309
+#define NEQ 310
+#define ID 311
+#define EID 312
+#define HID 313
+#define HID6 314
+#define AID 315
+#define LSH 316
+#define RSH 317
+#define LEN 318
+#define IPV6 319
+#define ICMPV6 320
+#define AH 321
+#define ESP 322
+#define VLAN 323
+#define MPLS 324
+#define PPPOED 325
+#define PPPOES 326
+#define ISO 327
+#define ESIS 328
+#define CLNP 329
+#define ISIS 330
+#define L1 331
+#define L2 332
+#define IIH 333
+#define LSP 334
+#define SNP 335
+#define CSNP 336
+#define PSNP 337
+#define STP 338
+#define IPX 339
+#define NETBEUI 340
+#define LANE 341
+#define LLC 342
+#define METAC 343
+#define BCC 344
+#define SC 345
+#define ILMIC 346
+#define OAMF4EC 347
+#define OAMF4SC 348
+#define OAM 349
+#define OAMF4 350
+#define CONNECTMSG 351
+#define METACONNECT 352
+#define VPI 353
+#define VCI 354
+#define RADIO 355
+#define FISU 356
+#define LSSU 357
+#define MSU 358
+#define SIO 359
+#define OPC 360
+#define DPC 361
+#define SLS 362
+#define AND 363
+#define OR 364
+#define UMINUS 365
+
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+/* Line 1676 of yacc.c */
+#line 241 "grammar.y"
+
+ int i;
+ bpf_u_int32 h;
+ u_char *e;
+ char *s;
+ struct stmt *stmt;
+ struct arth *a;
+ struct {
+ struct qual q;
+ int atmfieldtype;
+ int mtp3fieldtype;
+ struct block *b;
+ } blk;
+ struct block *rblk;
+
+
+
+/* Line 1676 of yacc.c */
+#line 290 "y.tab.h"
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+extern YYSTYPE pcap_lval;
+
+