Los archivos binarios /tmp/l_yOJezYkn/basic256-0.9.6.32/BASIC256 y /tmp/bK9BrixW2N/basic256-0.9.6.48/BASIC256 son distintos diff -Nru basic256-0.9.6.32/BASIC256.nsi basic256-0.9.6.48/BASIC256.nsi --- basic256-0.9.6.32/BASIC256.nsi 2010-08-17 20:53:18.000000000 +0200 +++ basic256-0.9.6.48/BASIC256.nsi 2010-11-03 16:50:27.000000000 +0100 @@ -14,8 +14,8 @@ var customImageHandle Function .onInit - StrCpy $VERSION "0.9.6.32" - StrCpy $VERSIONDATE "2010-08-17" + StrCpy $VERSION "0.9.6.48" + StrCpy $VERSIONDATE "2010-11-03" FunctionEnd Function customPage @@ -91,6 +91,7 @@ File .\release\QtWebKit4.dll File .\release\QtXmlPatterns4.dll File .\release\sqlite3.dll + File .\release\inpout32.dll File ChangeLog File CONTRIBUTORS File license.txt @@ -142,6 +143,7 @@ Delete $INSTDIR\QtWebKit4.dll Delete $INSTDIR\QtXmlPatterns4.dll Delete $INSTDIR\sqlite3.dll + Delete $INSTDIR\inpout32.dll Delete $INSTDIR\ChangeLog Delete $INSTDIR\CONTRIBUTORS Delete $INSTDIR\license.txt diff -Nru basic256-0.9.6.32/BASIC256.pro basic256-0.9.6.48/BASIC256.pro --- basic256-0.9.6.32/BASIC256.pro 2010-08-17 04:10:41.000000000 +0200 +++ basic256-0.9.6.48/BASIC256.pro 2010-11-01 16:09:00.000000000 +0100 @@ -27,10 +27,16 @@ LIBS += -lole32 \ -lsapi \ -lws2_32 \ + -linpout32 \ -lwinmm -} else { +} + +unix:!macx { + ## this is the LINUX (unix-non-mac) + DEFINES += LINUX + ## for the SAY command (LINUX) you need to choose one TTS engine - uncomment the one desired ## espeak library (causes problems with sound statement in 0.9.5i under ubuntu 9.10 - suggest flite) DEFINES += LINUX_ESPEAK @@ -52,9 +58,6 @@ LIBS += -lSDL LIBS += -lSDL_mixer - ## original - problematic LINUX sound - #DEFINES += LINUX_DSPSOUND - ## rules for make install examplesDiceFiles.files = ./Examples/dice/*.kbs \ ./Examples/dice/*.wav @@ -86,6 +89,25 @@ target.path = /usr/local/bin INSTALLS += target +} + +macx { + # macintosh + DEFINES += MACX + + DEFINES += MACX_SAY + + ICON = resources/basic256.icns + + LIBS += -L/opt/local/lib + INCLUDEPATH += /opt/local/include + + ## include libraries for SDL audio for wav and sound output + DEFINES += USESDL + LIBS += -lSDL + LIBS += -lSDL_mixer + + } exists( ./LEX/Makefile ) { @@ -116,6 +138,8 @@ HEADERS += Version.h HEADERS += EditSyntaxHighlighter.h HEADERS += Stack.h +HEADERS += PreferencesWin.h +HEADERS += md5.h SOURCES += LEX/lex.yy.c SOURCES += LEX/basicParse.tab.c @@ -136,3 +160,6 @@ SOURCES += DocumentationWin.cpp SOURCES += EditSyntaxHighlighter.cpp SOURCES += Stack.cpp +SOURCES += PreferencesWin.cpp +SOURCES += md5.cpp + diff -Nru basic256-0.9.6.32/BasicEdit.cpp basic256-0.9.6.48/BasicEdit.cpp --- basic256-0.9.6.32/BasicEdit.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/BasicEdit.cpp 2010-11-01 16:09:00.000000000 +0100 @@ -28,14 +28,16 @@ using namespace std; #include "BasicEdit.h" +#include "Settings.h" BasicEdit::BasicEdit(QMainWindow *mw) { QFont f; + QSettings settings(SETTINGSORG, SETTINGSAPP); mainwin = mw; f.setFamily("Sans"); f.setFixedPitch(true); - f.setPointSize(10); + f.setPointSize(settings.value(SETTINGSFONTSIZE, SETTINGSFONTSIZEDEFAULT).toInt()); setFont(f); currentMaxLine = 10; currentLine = 1; @@ -74,6 +76,8 @@ f.setFixedPitch(true); f.setPointSize(pointSize); setFont(f); + QSettings settings(SETTINGSORG, SETTINGSAPP); + settings.setValue(SETTINGSFONTSIZE, pointSize); } void @@ -189,10 +193,37 @@ mainwin->setWindowTitle(fi.fileName() + tr(" - BASIC-256")); QDir::setCurrent(fi.absolutePath()); codeChanged = false; + addFileToRecentList(filename); } } } +void BasicEdit::addFileToRecentList(QString fn) { + // keep list of recently open or saved files + // put file name at position 0 on list + QSettings settings(SETTINGSORG, SETTINGSAPP); + settings.beginGroup(SETTINGSGROUPHIST); + // if program is at top then do nothing + if (settings.value(QString::number(0), "").toString() != fn) { + // find end of scootdown + int e; + for(e=1; e=1; i--) { + settings.setValue(QString::number(i), settings.value(QString::number(i-1), "")); + } + settings.setValue(QString::number(0), fn); + } + settings.endGroup(); + + // print out for debugging + //settings.beginGroup(SETTINGSGROUPHIST); + //for (int i=0; isetWindowTitle(fi.fileName() + tr(" - BASIC-256")); QDir::setCurrent(fi.absolutePath()); codeChanged = false; + addFileToRecentList(s); } } diff -Nru basic256-0.9.6.32/BasicEdit.h basic256-0.9.6.48/BasicEdit.h --- basic256-0.9.6.32/BasicEdit.h 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/BasicEdit.h 2010-09-13 17:24:14.000000000 +0200 @@ -49,6 +49,16 @@ void fontMedium(); void fontLarge(); void fontHuge(); + void loadRecent0(); + void loadRecent1(); + void loadRecent2(); + void loadRecent3(); + void loadRecent4(); + void loadRecent5(); + void loadRecent6(); + void loadRecent7(); + void loadRecent8(); + protected: void keyPressEvent(QKeyEvent *); @@ -61,6 +71,9 @@ int linePos; QString filename; void changeFontSize(unsigned int); + void addFileToRecentList(QString); + void loadRecent(int); + }; diff -Nru basic256-0.9.6.32/BasicGraph.cpp basic256-0.9.6.48/BasicGraph.cpp --- basic256-0.9.6.32/BasicGraph.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/BasicGraph.cpp 2010-08-30 18:49:15.000000000 +0200 @@ -31,8 +31,8 @@ #include "BasicGraph.h" #include "MainWindow.h" -QMutex keymutex; -int currentKey; +extern QMutex keymutex; +extern int currentKey; BasicGraph::BasicGraph(BasicOutput *o) { @@ -103,6 +103,7 @@ clickY = mouseY = e->y() - gtop; clickB = mouseB = e->buttons(); } + setFocus(); } bool BasicGraph::initActions(QMenu * vMenu, ToolBar * vToolBar) diff -Nru basic256-0.9.6.32/BasicOutput.cpp basic256-0.9.6.48/BasicOutput.cpp --- basic256-0.9.6.32/BasicOutput.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/BasicOutput.cpp 2010-11-01 16:09:00.000000000 +0100 @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include @@ -25,12 +26,18 @@ #include #include +#include "Settings.h" #include "BasicOutput.h" +extern QMutex keymutex; +extern int currentKey; + BasicOutput::BasicOutput( ) : QTextEdit () { setFocusPolicy(Qt::StrongFocus); gettingInput = false; + QSettings settings(SETTINGSORG, SETTINGSAPP); + changeFontSize(settings.value(SETTINGSFONTSIZE, SETTINGSFONTSIZEDEFAULT).toInt()); } @@ -81,7 +88,10 @@ e->accept(); if (!gettingInput) { - QTextEdit::keyPressEvent(e); + keymutex.lock(); + currentKey = e->key(); + keymutex.unlock(); + //QTextEdit::keyPressEvent(e); } else { diff -Nru basic256-0.9.6.32/ByteCodes.h basic256-0.9.6.48/ByteCodes.h --- basic256-0.9.6.32/ByteCodes.h 2010-08-17 04:10:41.000000000 +0200 +++ basic256-0.9.6.48/ByteCodes.h 2010-10-18 21:34:33.000000000 +0200 @@ -247,6 +247,17 @@ #define OP_NETWRITE 0x22 #define OP_NETCLOSE 0x23 #define OP_NETDATA 0x24 +#define OP_NETADDRESS 0x25 +#define OP_KILL 0x26 +#define OP_MD5 0x27 +#define OP_SETSETTING 0x28 +#define OP_GETSETTING 0x29 +#define OP_PORTIN 0x2a +#define OP_PORTOUT 0x2b +#define OP_BINARYOR 0x2c +#define OP_BINARYAND 0x2d +#define OP_BINARYNOT 0x2e +#define OP_IMGSAVE 0x2f diff -Nru basic256-0.9.6.32/ChangeLog basic256-0.9.6.48/ChangeLog --- basic256-0.9.6.32/ChangeLog 2010-08-17 05:01:55.000000000 +0200 +++ basic256-0.9.6.48/ChangeLog 2010-11-03 16:24:11.000000000 +0100 @@ -1,3 +1,63 @@ +2010-11-03 j.m.reneau 0.9.6.48 + * removed mutex from say statement - eliminate frezing after speech + +2010-10-25 j.m.reneau 0.9.6.47 + * initial MAC port - tested help & preferences + * added Mac Icon + * added logic to save font size as a preference + +2010-10-24 j.m.reneau 0.9.6.46 + * initial MAC port - tested sound, say, playwav, database, + and networking + +2010-10-17 j.m.reneau 0.9.6.45 + * added IMGSAVE statement to save graphics area as a .png or other qt supported file type + +2010-10-15 j.m.reneau 0.9.6.44 + * forces locale to "C" so that decimal mark '.' will always work + +2010-10-11 j.m.reneau 0.9.6.43 + * fixed seek statement + +2010-09-21 j.m.reneau 0.9.6.42 + * tested inpout32 with Windows7-x64 and Vista-x32 and changed compiling instructions + +2010-09-20 j.m.reneau 0.9.6.41 + * finished and tested PORTIN/PORTOUT statements for parallel port control (WINDOWS ONLY) + * added preference settings to allow or disable PORTIN/PORTOUT statements + * added three new operators &, | and ~ - bitwise and or and not that work with integers + +2010-09-19 j.m.reneau 0.9.6.40 + * INCOMPLETE - Code to start adding PORTIN/PORTOUT statementf for parallel port control + +2010-09-14 j.m.reneau 0.9.6.39 + * fixed SYSTEM statement to use mutex to wait correctly + * added preference settings to allow or disable system, get/setsetting + + +2010-09-12 j.m.reneau 0.9.6.38 + * added GETSETTING and SETSETTING for persistant application storage to the registery/config folder + +2010-09-12 j.m.reneau 0.9.6.37 + * Created password protected preferences dialog - nothing on it yet except the password + * added MD5 function to return a hex string digest for a string + +2010-09-11 j.m.reneau 0.9.6.36 + * added settings to restore IDE and help to size and location when re-opened + * added list of 9 most recently opened or saved items for quick open on file menu + +2010-09-08 j.m.reneau 0.9.6.35 + * Added NETADDRESS to return the local IPv4 address as a string + +2010-09-06 j.m.reneau 0.9.6.34 + * Added kill statement to delete a file from the file system + +2010-08-22 j.m.reneau 0.9.6.33 + * fixed problem with focus effecting "key" statement - if focus was ever lost from + - graphics window - key statement would stop working. added key trap to BasicOutput + - and logic to allow BasicGraph to regain focus + * syntax highliter updated for a few misses commands + 2010-08-16 j.m.reneau 0.9.6.31 * fixed linux to compile again after changes in 0.9.6.30 * removed most of the errors from LEX/basicParse.y diff -Nru basic256-0.9.6.32/COMPILING.txt basic256-0.9.6.48/COMPILING.txt --- basic256-0.9.6.32/COMPILING.txt 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/COMPILING.txt 2010-10-25 14:45:16.000000000 +0200 @@ -1,56 +1,72 @@ - -To compile, you'll need the open source version of QT4, GNU flex and bison. -Specifcally for LINUX you will need: -* FLite or Espeak development libraries -* sqlite3 database development libraries -* SDL and SDL_mixer development libraries -* g++ compiler and base development libraries - -Specifically for Windows you will need: -* mingw c++ compiler for Win32 - - be sure to edit your system environment path to include the \bin folder -* qt sdk - - if you download the qt 4.6 SDK mingw is included in the download with the path \2010.04\mingw - - you should use this mingw as it links with QT without version errors - - be sure to edit your system environment path to include the nnnn.nn\qt\bin folder -* gtk win32 bundle headers and libraries from http://www.gtk.org/download-windows.html -* the gretl development headers need to be added to mingw they are in a file called mingw-extra.zip - and can be found at http://ricardo.ecn.wfu.edu/pub/gretl/winbuild/ -* sqlite development libraries and headers need to be installed and downloaded - - use the *amalgation* zip file and copy the *.h files into MinGW/include - - download the windows dll xip file, extract files into MinGW/lib, and run the following - dlltool -D sqlite3.dll -d sqlite3.def -l libsqlite3dll.a - - you will also need to place the sqlite.dll file in the project/trunk/debug - and project/trunk/release folders. - -Build Windows MINGW and LINUX: - - open a command window (cmd) - type "make clean" and hit enter - type "qmake" and hit enter - type "make" and hit enter + +To compile, you'll need the open source version of QT4, GNU flex and bison. +Specifcally for LINUX you will need: +* FLite or Espeak development libraries +* sqlite3 database development libraries +* SDL and SDL_mixer development libraries +* g++ compiler and base development libraries + +Specifically for Windows you will need: +* mingw c++ compiler for Win32 + - be sure to edit your system environment path to include the \bin folder +* qt sdk + - if you download the qt 4.6 SDK mingw is included in the download with the path \2010.04\mingw + - you should use this mingw as it links with QT without version errors + - be sure to edit your system environment path to include the nnnn.nn\qt\bin folder +* gtk win32 bundle headers and libraries from http://www.gtk.org/download-windows.html +* the gretl development headers need to be added to mingw they are in a file called mingw-extra.zip + and can be found at http://ricardo.ecn.wfu.edu/pub/gretl/winbuild/ +* sqlite development libraries and headers need to be installed and downloaded + - use the *amalgation* zip file and copy the *.h files into MinGW/include + - download the windows dll xip file, extract files into MinGW/lib, and run the following + dlltool -D sqlite3.dll -d sqlite3.def -l libsqlite3dll.a + - you will also need to place the sqlite.dll file in the project/trunk/debug + and project/trunk/release folders. +* inpout32.dll + - download version 1.2 from http://www.highrez.co.uk/Downloads/InpOut32/default.htm + - copy the file inpout32.dll into MinGW/lib + - you will also need to place the inpout32.dll and inpout32.sys fileg in the project/trunk/debug + and project/trunk/release folders. - You'll see an executable called BASIC256 either in this directory or in a "debug" directory, depending on your version of QT. - - linux: "make install" will install translations, help and binary You can then create a - launcher to "BASIC256" or "BASIC256 -l locale". - - windows (observed under vista business sp2): make will not work because of Microsoft's command - line length issue. A possible work around would be to use 'msys'. It gives a unix like - shell to work from without the problem. - -Release Build (Windows): - To build a nice WIN32 installer use the nullsoft scriptable install system file - 2.39 or better) called BASIC256.nsi. You must build a release copy of BASCI256. - - You must also copy the QtCore4.dll, QtGui4.dll, sqlite3.dll, and mingwm10.dll to the release - folder before testing the build or running the installer script. Under QT 4.5.3 - be sure to use the dlls from C:\Qt\nnnn.nn\qt\bin and not the ones from C:\Qt\nnnn.nn\bin. - - make clean - qmake -config release - make release - - then run the NSIS script - - +For MAC 10.6.4 + - QT + - XCode (from apple) + - MACPorts (Porticus front end is handy) + - sqlite3 + - flex + - libsdl_dev + - libsdl_dev-framework + - libsdl_mixer + - libsdl_mixer-framework + +Build Windows MINGW, LINUX, and MACX (g++): + + open a command window (cmd) + type "make clean" and hit enter + type "qmake" and hit enter - for MACX "qmake -spec macx-g++" + type "make" and hit enter + + You'll see an executable called BASIC256 either in this directory or in a "debug" directory, depending on your version of QT. + + linux: "make install" will install translations, help and binary You can then create a + launcher to "BASIC256" or "BASIC256 -l locale". + + windows (observed under vista business sp2): make will not work because of Microsoft's command + line length issue. A possible work around would be to use 'msys'. It gives a unix like + shell to work from without the problem. + +Release Build (Windows): + To build a nice WIN32 installer use the nullsoft scriptable install system file + 2.39 or better) called BASIC256.nsi. You must build a release copy of BASCI256. + + You must also copy the QtCore4.dll, QtGui4.dll, sqlite3.dll, and mingwm10.dll to the release + folder before testing the build or running the installer script. Under QT 4.5.3 + be sure to use the dlls from C:\Qt\nnnn.nn\qt\bin and not the ones from C:\Qt\nnnn.nn\bin. + + make clean + qmake -config release + make release + + then run the NSIS script + + diff -Nru basic256-0.9.6.32/CONTRIBUTORS basic256-0.9.6.48/CONTRIBUTORS --- basic256-0.9.6.32/CONTRIBUTORS 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/CONTRIBUTORS 2010-09-22 22:54:50.000000000 +0200 @@ -13,3 +13,5 @@ Immo-Gert Birn German Ferry Hendrikx Dutch Damir Shayhutdinov Russian +Sergey Lupin Russian + diff -Nru basic256-0.9.6.32/debian/changelog basic256-0.9.6.48/debian/changelog --- basic256-0.9.6.32/debian/changelog 2010-10-21 00:39:18.000000000 +0200 +++ basic256-0.9.6.48/debian/changelog 2010-11-24 10:56:01.000000000 +0100 @@ -1,3 +1,19 @@ +basic256 (0.9.6.48-1ubuntu1) natty; urgency=low + + * Merge from debian unstable (LP: #680841). Remaining changes: + - debian/control: Build-Depend on libqtwebkit-dev. It has separated from + libqt-dev. Fixes FTBFS + + -- Angel Abad Wed, 24 Nov 2010 10:52:48 +0100 + +basic256 (0.9.6.48-1) unstable; urgency=low + + * Imported Upstream version 0.9.6.48 + * Refreshed patches + * Turn on DM-Upload-Allowed + + -- Ryan Kavanagh Tue, 16 Nov 2010 12:14:42 -0500 + basic256 (0.9.6.32-1ubuntu1) natty; urgency=low * debian/control: Build-Depend on libqtwebkit-dev. It has separated from diff -Nru basic256-0.9.6.32/debian/control basic256-0.9.6.48/debian/control --- basic256-0.9.6.32/debian/control 2010-10-21 00:37:57.000000000 +0200 +++ basic256-0.9.6.48/debian/control 2010-11-24 08:03:48.000000000 +0100 @@ -17,6 +17,7 @@ Homepage: http://www.basic256.org/ Vcs-Browser: http://git.debian.org/?p=collab-maint/basic256.git Vcs-Git: git://git.debian.org/collab-maint/basic256.git +DM-Upload-Allowed: yes Package: basic256 Architecture: any diff -Nru basic256-0.9.6.32/debian/patches/01_usr_bin.diff basic256-0.9.6.48/debian/patches/01_usr_bin.diff --- basic256-0.9.6.32/debian/patches/01_usr_bin.diff 2010-08-30 02:48:43.000000000 +0200 +++ basic256-0.9.6.48/debian/patches/01_usr_bin.diff 2010-11-24 08:03:49.000000000 +0100 @@ -2,9 +2,9 @@ # Description: Use /usr/bin, not /usr/local/bin Index: basic256/BASIC256.pro =================================================================== ---- basic256.orig/BASIC256.pro 2010-08-12 22:23:37.179663966 -0400 -+++ basic256/BASIC256.pro 2010-08-12 22:23:43.778487421 -0400 -@@ -79,7 +79,7 @@ +--- basic256.orig/BASIC256.pro 2010-11-16 12:07:02.870181279 -0500 ++++ basic256/BASIC256.pro 2010-11-16 12:08:24.715175192 -0500 +@@ -86,7 +86,7 @@ transFiles.files = ./Translations/*.qm transFiles.path = /usr/share/basic256 INSTALLS += transFiles @@ -12,4 +12,4 @@ + target.path = /usr/bin INSTALLS += target - } + } diff -Nru basic256-0.9.6.32/debian/patches/03_examples.diff basic256-0.9.6.48/debian/patches/03_examples.diff --- basic256-0.9.6.32/debian/patches/03_examples.diff 2010-08-30 02:50:47.000000000 +0200 +++ basic256-0.9.6.48/debian/patches/03_examples.diff 2010-11-24 08:03:49.000000000 +0100 @@ -2,9 +2,9 @@ # Description: use dh_installexamples to install examples, not the Makefiles. Index: basic256/BASIC256.pro =================================================================== ---- basic256.orig/BASIC256.pro 2010-08-29 20:49:01.000000000 -0400 -+++ basic256/BASIC256.pro 2010-08-29 20:50:45.736869594 -0400 -@@ -59,27 +59,27 @@ +--- basic256.orig/BASIC256.pro 2010-11-16 12:08:29.867180746 -0500 ++++ basic256/BASIC256.pro 2010-11-16 12:08:32.534201052 -0500 +@@ -62,27 +62,27 @@ examplesDiceFiles.files = ./Examples/dice/*.kbs \ ./Examples/dice/*.wav examplesDiceFiles.path = /usr/share/basic256/Examples/dice diff -Nru basic256-0.9.6.32/debian/patches/04_portable_sound.diff basic256-0.9.6.48/debian/patches/04_portable_sound.diff --- basic256-0.9.6.32/debian/patches/04_portable_sound.diff 2010-08-30 02:48:43.000000000 +0200 +++ basic256-0.9.6.48/debian/patches/04_portable_sound.diff 2010-11-24 08:03:49.000000000 +0100 @@ -2,14 +2,16 @@ # Description: Don't FTBFS on kfreebsd, (Closes: #594164) Index: basic256/RunController.cpp =================================================================== ---- basic256.orig/RunController.cpp 2010-08-24 07:49:15.138281252 -0400 -+++ basic256/RunController.cpp 2010-08-24 07:50:25.342281808 -0400 -@@ -52,7 +52,7 @@ - #include - #include - #include +--- basic256.orig/RunController.cpp 2010-11-16 12:11:10.475177212 -0500 ++++ basic256/RunController.cpp 2010-11-16 12:12:30.110187731 -0500 +@@ -48,7 +48,9 @@ + #endif + + #ifdef LINUX - #include ++ // sys/soundcard.h instead of linux/soundcard.h in Debian so that we don't ++ // FTBFS on kfreebsd (See Debian bug #594164). + #include #endif - #ifdef USEQSOUND + diff -Nru basic256-0.9.6.32/DocumentationWin.cpp basic256-0.9.6.48/DocumentationWin.cpp --- basic256-0.9.6.32/DocumentationWin.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/DocumentationWin.cpp 2010-09-13 17:24:14.000000000 +0200 @@ -27,7 +27,10 @@ { //QString localecode = ((MainWindow *) parent)->localecode; - resize(700,500); + // position where it was last on screen + QSettings settings(SETTINGSORG, SETTINGSAPP); + resize(settings.value(SETTINGSDOCSIZE, QSize(700, 500)).toSize()); + move(settings.value(SETTINGSDOCPOS, QPoint(150, 150)).toPoint()); docs = new QWebView(); @@ -47,3 +50,11 @@ } +void DocumentationWin::closeEvent(QCloseEvent *e) { + // save current screen posision + QSettings settings(SETTINGSORG, SETTINGSAPP); + settings.setValue(SETTINGSDOCSIZE, size()); + settings.setValue(SETTINGSDOCPOS, pos()); + +} + diff -Nru basic256-0.9.6.32/DocumentationWin.h basic256-0.9.6.48/DocumentationWin.h --- basic256-0.9.6.32/DocumentationWin.h 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/DocumentationWin.h 2010-09-13 17:24:14.000000000 +0200 @@ -38,6 +38,7 @@ Q_OBJECT; public: DocumentationWin(QWidget * parent); + void closeEvent(QCloseEvent *); private slots: diff -Nru basic256-0.9.6.32/EditSyntaxHighlighter.cpp basic256-0.9.6.48/EditSyntaxHighlighter.cpp --- basic256-0.9.6.32/EditSyntaxHighlighter.cpp 2010-08-17 17:21:09.000000000 +0200 +++ basic256-0.9.6.48/EditSyntaxHighlighter.cpp 2010-09-13 17:24:14.000000000 +0200 @@ -101,6 +101,7 @@ << "\\b[Dd][Bb][Oo][Pp][Ee][Nn][Ss][Ee][Tt]\\b" // dbopenset << "\\b[Dd][Bb][Rr][Oo][Ww]\\b" // dbrow << "\\b[Dd][Bb][Ss][Tt][Rr][Ii][Nn][Gg]\\b" // dbstring + << "\\b[Dd][Ee][Gg][Rr][Ee][Ee][Ss]\\b" // degrees << "\\b[Dd][Ii][Mm]\\b" // dim << "\\b[Dd][Oo]\\b" // do << "\\b[Ee][Ll][Ss][Ee]\\b" // else @@ -113,6 +114,7 @@ << "\\b[Ff][Ll][Oo][Oo][Rr]\\b" // floor << "\\b[Ff][Oo][Rr]\\b" // for << "\\b[Gg][Ee][Tt][Cc][Oo][Ll][Oo][Rr]\\b" // getcolor + << "\\b[Gg][Ee][Tt][Ss][Ee][Tt][Tt][Ii][Nn][Gg]\\b" // getsetting << "\\b[Gg][Ee][Tt][Ss][Ll][Ii][Cc][Ee]\\b" // getslice << "\\b[Gg][Oo][Ss][Uu][Bb]\\b" // gosub << "\\b[Gg][Oo][Tt][Oo]\\b" // goto @@ -125,6 +127,7 @@ << "\\b[Ii][Nn][Pp][Uu][Tt]\\b" // input << "\\b[Ii][Nn][Ss][Tt][Rr]\\b" // instr << "\\b[Kk][Ee][Yy]\\b" // key + << "\\b[Kk][Ii][Ll][Ll]\\b" // kill << "\\b[Ll][Aa][Ss][Tt][Ee][Rr][Rr][Oo][Rr]\\b" // lasterror << "\\b[Ll][Aa][Ss][Tt][Ee][Rr][Rr][Oo][Rr][Ee][Xx][Tt][Rr][Aa]\\b" // lasterrorextra << "\\b[Ll][Aa][Ss][Tt][Ee][Rr][Rr][Oo][Rr][Ll][Ii][Nn][Ee]\\b" // lasterrorline @@ -133,12 +136,14 @@ << "\\b[Ll][Ii][Nn][Ee]\\b" // line << "\\b[Ll][Ee][Nn][Gg][Tt][Hh]\\b" // length << "\\b[Ll][Oo][Ww][Ee][Rr]\\b" // lower + << "\\b[Mm][Dd][5]\\b" // md5 << "\\b[Mm][Ii][Dd]\\b" // mid << "\\b[Mm][Ii][Nn][Uu][Tt][Ee]\\b" // minute << "\\b[Mm][Oo][Nn][Tt][Hh]\\b" // month << "\\b[Mm][Oo][Uu][Ss][Ee][Bb]\\b" // mouseb << "\\b[Mm][Oo][Uu][Ss][Ee][Xx]\\b" // mousex << "\\b[Mm][Oo][Uu][Ss][Ee][Yy]\\b" // mousey + << "\\b[Nn][Ee][Tt][Aa][Dd][Dd][Rr][Ee][Ss][Ss]\\b" // netaddress << "\\b[Nn][Ee][Tt][Cc][Ll][Oo][Ss][Ee]\\b" // netclose << "\\b[Nn][Ee][Tt][Cc][Oo][Nn][Nn][Ee][Cc][Tt]\\b" // netconnect << "\\b[Nn][Ee][Tt][Dd][Aa][Tt][Aa]\\b" // netdata @@ -158,6 +163,7 @@ << "\\b[Pp][Oo][Ll][Yy]\\b" // poly << "\\b[Pp][Rr][Ii][Nn][Tt]\\b" // print << "\\b[Pp][Uu][Tt][Ss][Ll][Ii][Cc][Ee]\\b" // putslice + << "\\b[Rr][Aa][Dd][Ii][Aa][Nn][Ss]\\b" // radians << "\\b[Rr][Aa][Nn][Dd]\\b" // rand << "\\b[Rr][Ee][Aa][Dd]\\b" // read << "\\b[Rr][Ee][Aa][Dd][Ll][Ii][Nn][Ee]\\b" // readline @@ -170,6 +176,7 @@ << "\\b[Ss][Aa][Yy]\\b" // say << "\\b[Ss][Ee][Cc][Oo][Nn][Dd]\\b" // second << "\\b[Ss][Ee][Ee][Kk]\\b" // seek + << "\\b[Ss][Ee][Tt][Ss][Ee][Tt][Tt][Ii][Nn][Gg]\\b" // setsetting << "\\b[Ss][Ii][Nn]\\b" // sin << "\\b[Ss][Ii][Zz][Ee]\\b" // size << "\\b[Ss][Pp][Rr][Ii][Ee][Cc][Oo][Ll][Ll][Ii][Dd][Ee]\\b" // spritedcollide diff -Nru basic256-0.9.6.32/Examples/basic256_icon.kbs basic256-0.9.6.48/Examples/basic256_icon.kbs --- basic256-0.9.6.32/Examples/basic256_icon.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/Examples/basic256_icon.kbs 2010-11-01 16:09:00.000000000 +0100 @@ -0,0 +1,46 @@ +print "Generate BASIC256 icon" + +graphsize 512, 512 + +rem set up initial ball position and speed +x = 20 * graphheight / 300 +y = 100 * graphheight / 300 +r = 20 +rw = 3 +yvel = -1.0 * graphheight / 300 +xvel = 1.10 * graphwidth / 300 +yacc = .0098 * graphwidth / 300 + +fastgraphics +color darkblue +rect 0,0,graphwidth, graphheight + +loop1: +rem change the downward velocity according to the acceleration +yvel = yvel + yacc + +rem calculate new position +y = y + yvel +x = x + xvel + +rem check for collisions +if y > graphheight - r - 1 then yvel = -0.9 * yvel : y = graphheight - r - 1 : xvel = xvel * 0.9 +if x > graphwidth - r - 1 then xvel = -xvel : x = graphwidth - r - 1 +if x < r then xvel = -xvel : x = r + +rem draw the ball +gosub drawBall +if xvel * xvel < 0.0001 then + refresh + end +end if +goto loop1 + +drawBall: +color darkgray +circle x, y, r +color gray +circle x, y, r - rw +if rand < .01 then refresh +return + diff -Nru basic256-0.9.6.32/Examples/testing/testimagesave.kbs basic256-0.9.6.48/Examples/testing/testimagesave.kbs --- basic256-0.9.6.32/Examples/testing/testimagesave.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/Examples/testing/testimagesave.kbs 2010-10-18 21:34:33.000000000 +0200 @@ -0,0 +1,12 @@ +for t = 0 to 100 + color rand()*256, rand()* 256, rand()*256 + rect rand()*graphwidth, rand()*graphheight,rand()*graphwidth, rand()*graphheight +next t +imgsave "testimgsave1.png" +imgsave "testimgsave2.png", "png" +imgsave "testimgsave3.jpg", "jpg" +imgsave("testimgsave4.png") +imgsave("testimgsave5.png", "png") +imgsave("testimgsave6.jpg", "jpg") +imgsave("testimgsave7.gif", "gif") + diff -Nru basic256-0.9.6.32/Interpreter.cpp basic256-0.9.6.48/Interpreter.cpp --- basic256-0.9.6.32/Interpreter.cpp 2010-08-17 17:21:09.000000000 +0200 +++ basic256-0.9.6.48/Interpreter.cpp 2010-11-03 16:22:30.000000000 +0100 @@ -29,12 +29,16 @@ #ifdef WIN32 #include typedef int socklen_t; + #else #include #include #include #include #include + #include + #include + #include #endif #include @@ -50,15 +54,25 @@ #include "LEX/basicParse.tab.h" #include "ByteCodes.h" #include "Interpreter.h" +#include "md5.h" +#include "Settings.h" + +QMutex keymutex; +int currentKey; extern QMutex mutex; -extern QMutex keymutex; extern QMutex debugmutex; -extern int currentKey; extern QWaitCondition waitCond; extern QWaitCondition waitDebugCond; extern QWaitCondition waitInput; +#ifdef WIN32 + extern "C" { + unsigned char Inp32(short int); + void Out32(short int, unsigned char); + } +#endif + #define POP2 stackval *one = stack.pop(); stackval *two = stack.pop(); extern "C" { @@ -258,6 +272,12 @@ case ERROR_NETSOCKNUMBER: errormessage = tr(ERROR_NETSOCKNUMBER_MESSAGE); break; + case ERROR_PERMISSION: + errormessage = tr(ERROR_PERMISSION_MESSAGE); + break; + case ERROR_IMAGESAVETYPE: + errormessage = tr(ERROR_IMAGESAVETYPE_MESSAGE); + break; // put new messages here case ERROR_NOTIMPLEMENTED: errormessage = tr(ERROR_NOTIMPLEMENTED_MESSAGE); @@ -1129,11 +1149,11 @@ { // move file pointer to a specific loaction in file op++; + long pos = stack.popint(); int fn = stack.popint(); if (fn<0||fn>=NUMFILES) { errornum = ERROR_FILENUMBER; } else { - long pos = stack.popint(); if (stream[fn] == NULL) { errornum = ERROR_FILENOTOPEN; @@ -2207,10 +2227,7 @@ { op++; char *temp = stack.popstring(); - //mutex.lock(); emit(speakWords(QString::fromUtf8(temp))); - //waitCond.wait(&mutex); - //mutex.unlock(); free(temp); } break; @@ -2219,10 +2236,16 @@ { op++; char *temp = stack.popstring(); - //mutex.lock(); - emit(system(temp)); - //waitCond.wait(&mutex); - //mutex.unlock(); + + QSettings settings(SETTINGSORG, SETTINGSAPP); + if(settings.value(SETTINGSALLOWSYSTEM, SETTINGSALLOWSYSTEMDEFAULT).toBool()) { + mutex.lock(); + emit(executeSystem(temp)); + waitCond.wait(&mutex); + mutex.unlock(); + } else { + errornum = ERROR_PERMISSION; + } free(temp); } break; @@ -3617,6 +3640,197 @@ } break; + case OP_NETADDRESS: + { + op++; + // get first non "lo" ip4 address + #ifdef WIN32 + char szHostname[100]; + HOSTENT *pHostEnt; + int nAdapter = 0; + struct sockaddr_in sAddr; + gethostname( szHostname, sizeof( szHostname )); + pHostEnt = gethostbyname( szHostname ); + memcpy ( &sAddr.sin_addr.s_addr, pHostEnt->h_addr_list[nAdapter], pHostEnt->h_length); + stack.push(strdup(inet_ntoa(sAddr.sin_addr))); + #else + bool good = false; + struct ifaddrs *myaddrs, *ifa; + void *in_addr; + char buf[64]; + if(getifaddrs(&myaddrs) != 0) { + errornum = ERROR_NETNONE; + } else { + for (ifa = myaddrs; ifa != NULL && !good; ifa = ifa->ifa_next) { + if (ifa->ifa_addr == NULL) continue; + if (!(ifa->ifa_flags & IFF_UP)) continue; + if (ifa->ifa_addr->sa_family == AF_INET && strcmp(ifa->ifa_name, "lo") !=0 ) { + struct sockaddr_in *s4 = (struct sockaddr_in *)ifa->ifa_addr; + in_addr = &s4->sin_addr; + if (inet_ntop(ifa->ifa_addr->sa_family, in_addr, buf, sizeof(buf))) { + stack.push(strdup(buf)); + good = true; + } + } + } + freeifaddrs(myaddrs); + } + if (!good) { + // on error give local loopback + stack.push(strdup("127.0.0.1")); + } + #endif + } + break; + + case OP_KILL: + { + op++; + char *name = stack.popstring(); + if(!QFile::remove(QString::fromUtf8(name))) { + errornum = ERROR_FILEOPEN; + } + free(name); + } + break; + + case OP_MD5: + { + op++; + char *stuff = stack.popstring(); + stack.push(MD5(stuff).hexdigest()); + free(stuff); + } + break; + + case OP_SETSETTING: + { + op++; + char *stuff = stack.popstring(); + char *key = stack.popstring(); + char *app = stack.popstring(); + QSettings settings(SETTINGSORG, SETTINGSAPP); + if(settings.value(SETTINGSALLOWSETTING, SETTINGSALLOWSETTINGDEFAULT).toBool()) { + settings.beginGroup(SETTINGSGROUPUSER); + settings.beginGroup(app); + settings.setValue(key, stuff); + settings.endGroup(); + settings.endGroup(); + } else { + errornum = ERROR_PERMISSION; + } + free(stuff); + free(key); + free(app); + } + break; + + case OP_GETSETTING: + { + op++; + char *key = stack.popstring(); + char *app = stack.popstring(); + QSettings settings(SETTINGSORG, SETTINGSAPP); + if(settings.value(SETTINGSALLOWSETTING, SETTINGSALLOWSETTINGDEFAULT).toBool()) { + settings.beginGroup(SETTINGSGROUPUSER); + settings.beginGroup(app); + stack.push(strdup(settings.value(key, "").toString().toUtf8().data())); + settings.endGroup(); + settings.endGroup(); + } else { + errornum = ERROR_PERMISSION; + } + free(key); + free(app); + } + break; + + + case OP_PORTOUT: + { + op++; + int data = stack.popint(); + int port = stack.popint(); + QSettings settings(SETTINGSORG, SETTINGSAPP); + if(settings.value(SETTINGSALLOWPORT, SETTINGSALLOWPORTDEFAULT).toBool()) { + #ifdef WIN32 + Out32(port, data); + #else + errornum = ERROR_NOTIMPLEMENTED; + #endif + } else { + errornum = ERROR_PERMISSION; + } + } + break; + + case OP_PORTIN: + { + op++; + int data=0; + int port = stack.popint(); + QSettings settings(SETTINGSORG, SETTINGSAPP); + if(settings.value(SETTINGSALLOWPORT, SETTINGSALLOWPORTDEFAULT).toBool()) { + #ifdef WIN32 + data = Inp32(port); + #else + errornum = ERROR_NOTIMPLEMENTED; + #endif + } else { + errornum = ERROR_PERMISSION; + } + stack.push(data); + } + break; + + case OP_BINARYOR: + { + op++; + int a = stack.popint(); + int b = stack.popint(); + stack.push(a|b); + } + break; + + case OP_BINARYAND: + { + op++; + int a = stack.popint(); + int b = stack.popint(); + stack.push(a&b); + } + break; + + case OP_BINARYNOT: + { + op++; + int a = stack.popint(); + stack.push(~a); + } + break; + + case OP_IMGSAVE: + { + // Image Save - Save image + char *type = stack.popstring(); + char *file = stack.popstring(); + QStringList validtypes; + validtypes << "BMP" << "bmp" << "JPG" << "jpg" << "JPEG" << "jpeg" << "PNG" << "png"; + if (validtypes.indexOf(QString(type))!=-1) { + image->save(QString::fromUtf8(file), type); + } else { + errornum = ERROR_IMAGESAVETYPE; + } + free(file); + free(type); + } + break; + + + + + + diff -Nru basic256-0.9.6.32/Interpreter.h basic256-0.9.6.48/Interpreter.h --- basic256-0.9.6.32/Interpreter.h 2010-08-17 04:10:41.000000000 +0200 +++ basic256-0.9.6.48/Interpreter.h 2010-10-18 21:34:33.000000000 +0200 @@ -125,6 +125,10 @@ #define ERROR_NETACCEPT_MESSAGE "Unable to accept network connection." #define ERROR_NETSOCKNUMBER 45 #define ERROR_NETSOCKNUMBER_MESSAGE "Invalid Socket Number" +#define ERROR_PERMISSION 46 +#define ERROR_PERMISSION_MESSAGE "You do not have permission to use this statement/function." +#define ERROR_IMAGESAVETYPE 47 +#define ERROR_IMAGESAVETYPE_MESSAGE "Invalid image save type." // #define ERROR_NOTIMPLEMENTED 9999 #define ERROR_NOTIMPLEMENTED_MESSAGE "Feature not implemented in this environment." @@ -223,7 +227,7 @@ void getKey(); void playSounds(int, int*); void setVolume(int); - void system(char*); + void executeSystem(char*); void speakWords(QString); void playWAV(QString); void waitWAV(); diff -Nru basic256-0.9.6.32/LEX/basicParse.l basic256-0.9.6.48/LEX/basicParse.l --- basic256-0.9.6.32/LEX/basicParse.l 2010-08-17 04:10:41.000000000 +0200 +++ basic256-0.9.6.48/LEX/basicParse.l 2010-10-18 21:34:33.000000000 +0200 @@ -236,6 +236,14 @@ netread [Nn][Ee][Tt][Rr][Ee][Aa][Dd] netclose [Nn][Ee][Tt][Cc][Ll][Oo][Ss][Ee] netdata [Nn][Ee][Tt][Dd][Aa][Tt][Aa] +netaddress [Nn][Ee][Tt][Aa][Dd][Dd][Rr][Ee][Ss][Ss] +kill [Kk][Ii][Ll][Ll] +md5 [Mm][Dd][5] +getsetting [Gg][Ee][Tt][Ss][Ee][Tt][Tt][Ii][Nn][Gg] +setsetting [Ss][Ee][Tt][Ss][Ee][Tt][Tt][Ii][Nn][Gg] +portin [Pp][Oo][Rr][Tt][Ii][Nn] +portout [Pp][Oo][Rr][Tt][Oo][Uu][Tt] +imgsave [Ii][Mm][Gg][Ss][Aa][Vv][Ee] %% @@ -399,6 +407,7 @@ {getslice} { count(); return B256GETSLICE; } {putslice} { count(); return B256PUTSLICE; } {imgload} { count(); return B256IMGLOAD; } +{imgsave} { count(); return B256IMGSAVE; } {spritedim} { count(); return B256SPRITEDIM; } {spriteload} { count(); return B256SPRITELOAD; } {spriteslice} { count(); return B256SPRITESLICE; } @@ -448,6 +457,13 @@ {netread} { count(); return B256NETREAD; } {netclose} { count(); return B256NETCLOSE; } {netdata} { count(); return B256NETDATA; } +{netaddress} { count(); return B256NETADDRESS; } +{kill} { count(); return B256KILL; } +{md5} { count(); return B256MD5; } +{getsetting} { count(); return B256GETSETTING; } +{setsetting} { count(); return B256SETSETTING; } +{portin} { count(); return B256PORTIN; } +{portout} { count(); return B256PORTOUT; } {rem} { count(); return '\n'; } {remeol} { count(); return '\n'; } {remalt} { count(); return '\n'; } @@ -460,6 +476,9 @@ "*" { count(); return '*'; } "\\" { count(); return B256INTDIV; } "\%" { count(); return B256MOD; } +"|" { count(); return B256BINARYOR; } +"&" { count(); return B256BINARYAND; } +"~" { count(); return B256BINARYNOT; } "/" { count(); return '/'; } "^" { count(); return '^'; } "=" { count(); return '='; } diff -Nru basic256-0.9.6.32/LEX/basicParse.output basic256-0.9.6.48/LEX/basicParse.output --- basic256-0.9.6.32/LEX/basicParse.output 2010-08-17 04:56:08.000000000 +0200 +++ basic256-0.9.6.48/LEX/basicParse.output 1970-01-01 01:00:00.000000000 +0100 @@ -1,45843 +0,0 @@ -Terminals unused in grammar - - B256REM - B256NOP - B256LINENUM - B256NEWVAR - B256COLOR - - -State 517 conflicts: 1 shift/reduce - - -Grammar - - 0 $accept: program $end - - 1 program: validline '\n' - 2 | validline '\n' program - - 3 validline: label validstatement - 4 | validstatement - - 5 label: B256LABEL - - 6 validstatement: compoundifstmt - 7 | ifstmt - 8 | elsestmt - 9 | endifstmt - 10 | whilestmt - 11 | endwhilestmt - 12 | dostmt - 13 | untilstmt - 14 | compoundstmt - 15 | /* empty */ - - 16 compoundifstmt: ifexpr B256THEN compoundstmt - - 17 ifstmt: ifexpr B256THEN - - 18 elsestmt: B256ELSE - - 19 endifexpr: B256ENDIF - 20 | B256END B256IF - - 21 endifstmt: endifexpr - - 22 whilestmt: B256WHILE floatexpr - - 23 endwhileexpr: B256ENDWHILE - 24 | B256END B256WHILE - - 25 endwhilestmt: endwhileexpr - - 26 dostmt: B256DO - - 27 untilstmt: B256UNTIL floatexpr - - 28 compoundstmt: statement - 29 | compoundstmt ':' statement - - 30 statement: gotostmt - 31 | gosubstmt - 32 | offerrorstmt - 33 | onerrorstmt - 34 | returnstmt - 35 | printstmt - 36 | plotstmt - 37 | circlestmt - 38 | rectstmt - 39 | polystmt - 40 | stampstmt - 41 | linestmt - 42 | numassign - 43 | stringassign - 44 | forstmt - 45 | nextstmt - 46 | colorstmt - 47 | inputstmt - 48 | endstmt - 49 | clearstmt - 50 | refreshstmt - 51 | fastgraphicsstmt - 52 | graphsizestmt - 53 | dimstmt - 54 | redimstmt - 55 | pausestmt - 56 | arrayassign - 57 | strarrayassign - 58 | openstmt - 59 | writestmt - 60 | writelinestmt - 61 | closestmt - 62 | resetstmt - 63 | soundstmt - 64 | textstmt - 65 | fontstmt - 66 | saystmt - 67 | systemstmt - 68 | volumestmt - 69 | wavplaystmt - 70 | wavstopstmt - 71 | wavwaitstmt - 72 | putslicestmt - 73 | imgloadstmt - 74 | spritedimstmt - 75 | spriteloadstmt - 76 | spriteslicestmt - 77 | spriteplacestmt - 78 | spritemovestmt - 79 | spritehidestmt - 80 | spriteshowstmt - 81 | seekstmt - 82 | clickclearstmt - 83 | changedirstmt - 84 | decimalstmt - 85 | dbopenstmt - 86 | dbclosestmt - 87 | dbexecutestmt - 88 | dbopensetstmt - 89 | dbclosesetstmt - 90 | netlistenstmt - 91 | netconnectstmt - 92 | netwritestmt - 93 | netclosestmt - - 94 dimstmt: B256DIM B256VARIABLE floatexpr - 95 | B256DIM B256STRINGVAR floatexpr - 96 | B256DIM B256VARIABLE '(' floatexpr ',' floatexpr ')' - 97 | B256DIM B256STRINGVAR '(' floatexpr ',' floatexpr ')' - - 98 redimstmt: B256REDIM B256VARIABLE floatexpr - 99 | B256REDIM B256STRINGVAR floatexpr - 100 | B256REDIM B256VARIABLE '(' floatexpr ',' floatexpr ')' - 101 | B256REDIM B256STRINGVAR '(' floatexpr ',' floatexpr ')' - - 102 pausestmt: B256PAUSE floatexpr - - 103 clearstmt: B256CLS - 104 | B256CLG - - 105 fastgraphicsstmt: B256FASTGRAPHICS - - 106 graphsizestmt: B256GRAPHSIZE floatexpr ',' floatexpr - 107 | B256GRAPHSIZE '(' floatexpr ',' floatexpr ')' - - 108 refreshstmt: B256REFRESH - - 109 endstmt: B256END - - 110 ifexpr: B256IF floatexpr - - 111 strarrayassign: B256STRINGVAR '[' floatexpr ']' '=' stringexpr - 112 | B256STRINGVAR '[' floatexpr ',' floatexpr ']' '=' stringexpr - 113 | B256STRINGVAR '=' immediatestrlist - - 114 arrayassign: B256VARIABLE '[' floatexpr ']' '=' floatexpr - 115 | B256VARIABLE '[' floatexpr ',' floatexpr ']' '=' floatexpr - 116 | B256VARIABLE '=' immediatelist - - 117 numassign: B256VARIABLE '=' floatexpr - - 118 stringassign: B256STRINGVAR '=' stringexpr - - 119 forstmt: B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr - 120 | B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr B256STEP floatexpr - - 121 nextstmt: B256NEXT B256VARIABLE - - 122 gotostmt: B256GOTO B256VARIABLE - - 123 gosubstmt: B256GOSUB B256VARIABLE - - 124 offerrorstmt: B256OFFERROR - - 125 onerrorstmt: B256ONERROR B256VARIABLE - - 126 returnstmt: B256RETURN - - 127 colorstmt: B256SETCOLOR floatexpr ',' floatexpr ',' floatexpr - 128 | B256SETCOLOR '(' floatexpr ',' floatexpr ',' floatexpr ')' - 129 | B256SETCOLOR floatexpr - - 130 soundstmt: B256SOUND '(' B256VARIABLE ')' - 131 | B256SOUND B256VARIABLE - 132 | B256SOUND immediatelist - 133 | B256SOUND '(' floatexpr ',' floatexpr ')' - 134 | B256SOUND floatexpr ',' floatexpr - - 135 plotstmt: B256PLOT floatexpr ',' floatexpr - 136 | B256PLOT '(' floatexpr ',' floatexpr ')' - - 137 linestmt: B256LINE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 138 | B256LINE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - 139 circlestmt: B256CIRCLE floatexpr ',' floatexpr ',' floatexpr - 140 | B256CIRCLE '(' floatexpr ',' floatexpr ',' floatexpr ')' - - 141 rectstmt: B256RECT floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 142 | B256RECT '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - 143 textstmt: B256TEXT floatexpr ',' floatexpr ',' stringexpr - 144 | B256TEXT '(' floatexpr ',' floatexpr ',' stringexpr ')' - 145 | B256TEXT floatexpr ',' floatexpr ',' floatexpr - 146 | B256TEXT '(' floatexpr ',' floatexpr ',' floatexpr ')' - - 147 fontstmt: B256FONT stringexpr ',' floatexpr ',' floatexpr - 148 | B256FONT '(' stringexpr ',' floatexpr ',' floatexpr ')' - - 149 saystmt: B256SAY stringexpr - 150 | B256SAY floatexpr - - 151 systemstmt: B256SYSTEM stringexpr - - 152 volumestmt: B256VOLUME floatexpr - - 153 polystmt: B256POLY B256VARIABLE - 154 | B256POLY '(' B256VARIABLE ')' - 155 | B256POLY immediatelist - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 157 | B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 158 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - 159 | B256STAMP floatexpr ',' floatexpr ',' B256VARIABLE - 160 | B256STAMP '(' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 161 | B256STAMP floatexpr ',' floatexpr ',' immediatelist - 162 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 163 | B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 164 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - - 165 openstmt: B256OPEN stringexpr - 166 | B256OPEN '(' floatexpr ',' stringexpr ')' - 167 | B256OPEN floatexpr ',' stringexpr - - 168 writestmt: B256WRITE stringexpr - 169 | B256WRITE '(' floatexpr ',' stringexpr ')' - 170 | B256WRITE floatexpr ',' stringexpr - - 171 writelinestmt: B256WRITELINE stringexpr - 172 | B256WRITELINE '(' floatexpr ',' stringexpr ')' - 173 | B256WRITELINE floatexpr ',' stringexpr - - 174 closestmt: B256CLOSE - 175 | B256CLOSE '(' ')' - 176 | B256CLOSE floatexpr - - 177 resetstmt: B256RESET - 178 | B256RESET '(' ')' - 179 | B256RESET floatexpr - - 180 seekstmt: B256SEEK floatexpr - 181 | B256SEEK '(' floatexpr ',' floatexpr ')' - 182 | B256SEEK floatexpr ',' floatexpr - - 183 inputstmt: inputexpr ',' B256STRINGVAR - 184 | inputexpr ',' B256STRINGVAR '[' floatexpr ']' - 185 | inputexpr ',' B256VARIABLE - 186 | inputexpr ',' B256VARIABLE '[' floatexpr ']' - 187 | B256INPUT B256STRINGVAR - 188 | B256INPUT B256STRINGVAR '[' floatexpr ']' - 189 | B256INPUT B256STRINGVAR '[' floatexpr ',' floatexpr ']' - 190 | B256INPUT B256VARIABLE - 191 | B256INPUT B256VARIABLE '[' floatexpr ']' - 192 | B256INPUT B256VARIABLE '[' floatexpr ',' floatexpr ']' - - 193 inputexpr: B256INPUT stringexpr - - 194 printstmt: B256PRINT - 195 | B256PRINT stringexpr - 196 | B256PRINT floatexpr - 197 | B256PRINT stringexpr ';' - 198 | B256PRINT floatexpr ';' - - 199 wavplaystmt: B256WAVPLAY stringexpr - - 200 wavstopstmt: B256WAVSTOP - 201 | B256WAVSTOP '(' ')' - - 202 wavwaitstmt: B256WAVWAIT - 203 | B256WAVWAIT '(' ')' - - 204 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr - 205 | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ')' - 206 | B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr ',' floatexpr - 207 | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr ')' - - 208 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' stringexpr - 209 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' stringexpr ')' - 210 | B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - 211 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - 212 | B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - 213 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - - 214 spritedimstmt: B256SPRITEDIM floatexpr - - 215 spriteloadstmt: B256SPRITELOAD floatexpr ',' stringexpr - 216 | B256SPRITELOAD '(' floatexpr ',' stringexpr ')' - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 218 | B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr ',' floatexpr ',' floatexpr - 220 | B256SPRITEPLACE '(' floatexpr ',' floatexpr ',' floatexpr ')' - - 221 spritemovestmt: B256SPRITEMOVE floatexpr ',' floatexpr ',' floatexpr - 222 | B256SPRITELOAD '(' floatexpr ',' floatexpr ',' floatexpr ')' - - 223 spritehidestmt: B256SPRITEHIDE floatexpr - - 224 spriteshowstmt: B256SPRITESHOW floatexpr - - 225 clickclearstmt: B256CLICKCLEAR - 226 | B256CLICKCLEAR '(' ')' - - 227 changedirstmt: B256CHANGEDIR stringexpr - - 228 decimalstmt: B256DECIMAL floatexpr - - 229 dbopenstmt: B256DBOPEN stringexpr - - 230 dbclosestmt: B256DBCLOSE - 231 | B256DBCLOSE '(' ')' - - 232 dbexecutestmt: B256DBEXECUTE stringexpr - - 233 dbopensetstmt: B256DBOPENSET stringexpr - - 234 dbclosesetstmt: B256DBCLOSESET - 235 | B256DBCLOSESET '(' ')' - - 236 netlistenstmt: B256NETLISTEN floatexpr - 237 | B256NETLISTEN '(' floatexpr ',' floatexpr ')' - 238 | B256NETLISTEN floatexpr ',' floatexpr - - 239 netconnectstmt: B256NETCONNECT stringexpr ',' floatexpr - 240 | B256NETCONNECT '(' stringexpr ',' floatexpr ')' - 241 | B256NETCONNECT floatexpr ',' stringexpr ',' floatexpr - 242 | B256NETCONNECT '(' floatexpr ',' stringexpr ',' floatexpr ')' - - 243 netwritestmt: B256NETWRITE stringexpr - 244 | B256NETWRITE '(' floatexpr ',' stringexpr ')' - 245 | B256NETWRITE floatexpr ',' stringexpr - - 246 netclosestmt: B256NETCLOSE - 247 | B256NETCLOSE '(' ')' - 248 | B256NETCLOSE floatexpr - - 249 immediatestrlist: '{' stringlist '}' - - 250 immediatelist: '{' floatlist '}' - - 251 floatlist: floatexpr - 252 | floatexpr ',' floatlist - - 253 floatexpr: '(' floatexpr ')' - 254 | floatexpr '+' floatexpr - 255 | floatexpr '-' floatexpr - 256 | floatexpr '*' floatexpr - 257 | floatexpr B256MOD floatexpr - 258 | floatexpr B256INTDIV floatexpr - 259 | floatexpr '/' floatexpr - 260 | floatexpr '^' floatexpr - 261 | '-' floatexpr - 262 | floatexpr B256AND floatexpr - 263 | floatexpr B256OR floatexpr - 264 | floatexpr B256XOR floatexpr - 265 | B256NOT floatexpr - 266 | stringexpr '=' stringexpr - 267 | stringexpr B256NE stringexpr - 268 | stringexpr '<' stringexpr - 269 | stringexpr '>' stringexpr - 270 | stringexpr B256GTE stringexpr - 271 | stringexpr B256LTE stringexpr - 272 | floatexpr '=' floatexpr - 273 | floatexpr B256NE floatexpr - 274 | floatexpr '<' floatexpr - 275 | floatexpr '>' floatexpr - 276 | floatexpr B256GTE floatexpr - 277 | floatexpr B256LTE floatexpr - 278 | B256FLOAT - 279 | B256INTEGER - 280 | B256VARIABLE '[' '?' ']' - 281 | B256STRINGVAR '[' '?' ']' - 282 | B256VARIABLE '[' '?' ',' ']' - 283 | B256STRINGVAR '[' '?' ',' ']' - 284 | B256VARIABLE '[' ',' '?' ']' - 285 | B256STRINGVAR '[' ',' '?' ']' - 286 | B256VARIABLE '[' floatexpr ']' - 287 | B256VARIABLE '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE - 289 | B256TOINT '(' floatexpr ')' - 290 | B256TOINT '(' stringexpr ')' - 291 | B256TOFLOAT '(' floatexpr ')' - 292 | B256TOFLOAT '(' stringexpr ')' - 293 | B256LENGTH '(' stringexpr ')' - 294 | B256ASC '(' stringexpr ')' - 295 | B256INSTR '(' stringexpr ',' stringexpr ')' - 296 | B256CEIL '(' floatexpr ')' - 297 | B256FLOOR '(' floatexpr ')' - 298 | B256SIN '(' floatexpr ')' - 299 | B256COS '(' floatexpr ')' - 300 | B256TAN '(' floatexpr ')' - 301 | B256ASIN '(' floatexpr ')' - 302 | B256ACOS '(' floatexpr ')' - 303 | B256ATAN '(' floatexpr ')' - 304 | B256DEGREES '(' floatexpr ')' - 305 | B256RADIANS '(' floatexpr ')' - 306 | B256LOG '(' floatexpr ')' - 307 | B256LOGTEN '(' floatexpr ')' - 308 | B256ABS '(' floatexpr ')' - 309 | B256RAND - 310 | B256RAND '(' ')' - 311 | B256PI - 312 | B256PI '(' ')' - 313 | B256BOOLTRUE - 314 | B256BOOLTRUE '(' ')' - 315 | B256BOOLFALSE - 316 | B256BOOLFALSE '(' ')' - 317 | B256BOOLEOF - 318 | B256BOOLEOF '(' ')' - 319 | B256BOOLEOF '(' floatexpr ')' - 320 | B256EXISTS '(' stringexpr ')' - 321 | B256YEAR - 322 | B256YEAR '(' ')' - 323 | B256MONTH - 324 | B256MONTH '(' ')' - 325 | B256DAY - 326 | B256DAY '(' ')' - 327 | B256HOUR - 328 | B256HOUR '(' ')' - 329 | B256MINUTE - 330 | B256MINUTE '(' ')' - 331 | B256SECOND - 332 | B256SECOND '(' ')' - 333 | B256GRAPHWIDTH - 334 | B256GRAPHWIDTH '(' ')' - 335 | B256GRAPHHEIGHT - 336 | B256GRAPHHEIGHT '(' ')' - 337 | B256SIZE - 338 | B256SIZE '(' ')' - 339 | B256SIZE '(' floatexpr ')' - 340 | B256KEY - 341 | B256KEY '(' ')' - 342 | B256MOUSEX - 343 | B256MOUSEX '(' ')' - 344 | B256MOUSEY - 345 | B256MOUSEY '(' ')' - 346 | B256MOUSEB - 347 | B256MOUSEB '(' ')' - 348 | B256CLICKX - 349 | B256CLICKX '(' ')' - 350 | B256CLICKY - 351 | B256CLICKY '(' ')' - 352 | B256CLICKB - 353 | B256CLICKB '(' ')' - 354 | B256CLEAR - 355 | B256CLEAR '(' ')' - 356 | B256BLACK - 357 | B256BLACK '(' ')' - 358 | B256WHITE - 359 | B256WHITE '(' ')' - 360 | B256RED - 361 | B256RED '(' ')' - 362 | B256DARKRED - 363 | B256DARKRED '(' ')' - 364 | B256GREEN - 365 | B256GREEN '(' ')' - 366 | B256DARKGREEN - 367 | B256DARKGREEN '(' ')' - 368 | B256BLUE - 369 | B256BLUE '(' ')' - 370 | B256DARKBLUE - 371 | B256DARKBLUE '(' ')' - 372 | B256CYAN - 373 | B256CYAN '(' ')' - 374 | B256DARKCYAN - 375 | B256DARKCYAN '(' ')' - 376 | B256PURPLE - 377 | B256PURPLE '(' ')' - 378 | B256DARKPURPLE - 379 | B256DARKPURPLE '(' ')' - 380 | B256YELLOW - 381 | B256YELLOW '(' ')' - 382 | B256DARKYELLOW - 383 | B256DARKYELLOW '(' ')' - 384 | B256ORANGE - 385 | B256ORANGE '(' ')' - 386 | B256DARKORANGE - 387 | B256DARKORANGE '(' ')' - 388 | B256GREY - 389 | B256GREY '(' ')' - 390 | B256DARKGREY - 391 | B256DARKGREY '(' ')' - 392 | B256PIXEL '(' floatexpr ',' floatexpr ')' - 393 | B256RGB '(' floatexpr ',' floatexpr ',' floatexpr ')' - 394 | B256GETCOLOR - 395 | B256GETCOLOR '(' ')' - 396 | B256SPRITECOLLIDE '(' floatexpr ',' floatexpr ')' - 397 | B256SPRITEX '(' floatexpr ')' - 398 | B256SPRITEY '(' floatexpr ')' - 399 | B256SPRITEH '(' floatexpr ')' - 400 | B256SPRITEW '(' floatexpr ')' - 401 | B256SPRITEV '(' floatexpr ')' - 402 | B256DBROW '(' ')' - 403 | B256DBINT '(' floatexpr ')' - 404 | B256DBFLOAT '(' floatexpr ')' - 405 | B256LASTERROR - 406 | B256LASTERROR '(' ')' - 407 | B256LASTERRORLINE - 408 | B256LASTERRORLINE '(' ')' - 409 | B256NETDATA - 410 | B256NETDATA '(' ')' - 411 | B256NETDATA '(' floatexpr ')' - - 412 stringlist: stringexpr - 413 | stringexpr ',' stringlist - - 414 stringexpr: '(' stringexpr ')' - 415 | stringexpr '+' stringexpr - 416 | floatexpr '+' stringexpr - 417 | stringexpr '+' floatexpr - 418 | B256STRING - 419 | B256STRINGVAR '[' floatexpr ']' - 420 | B256STRINGVAR '[' floatexpr ',' floatexpr ']' - 421 | B256STRINGVAR - 422 | B256CHR '(' floatexpr ')' - 423 | B256TOSTRING '(' floatexpr ')' - 424 | B256UPPER '(' stringexpr ')' - 425 | B256LOWER '(' stringexpr ')' - 426 | B256MID '(' stringexpr ',' floatexpr ',' floatexpr ')' - 427 | B256LEFT '(' stringexpr ',' floatexpr ')' - 428 | B256RIGHT '(' stringexpr ',' floatexpr ')' - 429 | B256GETSLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - 430 | B256READ - 431 | B256READ '(' ')' - 432 | B256READ '(' floatexpr ')' - 433 | B256READLINE - 434 | B256READLINE '(' ')' - 435 | B256READLINE '(' floatexpr ')' - 436 | B256CURRENTDIR - 437 | B256CURRENTDIR '(' ')' - 438 | B256DBSTRING '(' floatexpr ')' - 439 | B256LASTERRORMESSAGE - 440 | B256LASTERRORMESSAGE '(' ')' - 441 | B256LASTERROREXTRA - 442 | B256LASTERROREXTRA '(' ')' - 443 | B256NETREAD - 444 | B256NETREAD '(' ')' - 445 | B256NETREAD '(' floatexpr ')' - - -Terminals, with rules where they appear - -$end (0) 0 -'\n' (10) 1 2 -'(' (40) 96 97 100 101 107 128 130 133 136 138 140 142 144 146 148 - 154 157 160 163 166 169 172 175 178 181 201 203 205 207 209 211 - 213 216 218 220 222 226 231 235 237 240 242 244 247 253 289 290 - 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 - 307 308 310 312 314 316 318 319 320 322 324 326 328 330 332 334 - 336 338 339 341 343 345 347 349 351 353 355 357 359 361 363 365 - 367 369 371 373 375 377 379 381 383 385 387 389 391 392 393 395 - 396 397 398 399 400 401 402 403 404 406 408 410 411 414 422 423 - 424 425 426 427 428 429 431 432 434 435 437 438 440 442 444 445 -')' (41) 96 97 100 101 107 128 130 133 136 138 140 142 144 146 148 - 154 157 160 163 166 169 172 175 178 181 201 203 205 207 209 211 - 213 216 218 220 222 226 231 235 237 240 242 244 247 253 289 290 - 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 - 307 308 310 312 314 316 318 319 320 322 324 326 328 330 332 334 - 336 338 339 341 343 345 347 349 351 353 355 357 359 361 363 365 - 367 369 371 373 375 377 379 381 383 385 387 389 391 392 393 395 - 396 397 398 399 400 401 402 403 404 406 408 410 411 414 422 423 - 424 425 426 427 428 429 431 432 434 435 437 438 440 442 444 445 -'*' (42) 256 -'+' (43) 254 415 416 417 -',' (44) 96 97 100 101 106 107 112 115 127 128 133 134 135 136 137 - 138 139 140 141 142 143 144 145 146 147 148 156 157 158 159 160 - 161 162 163 164 166 167 169 170 172 173 181 182 183 184 185 186 - 189 192 204 205 206 207 208 209 210 211 212 213 215 216 217 218 - 219 220 221 222 237 238 239 240 241 242 244 245 252 282 283 284 - 285 287 295 392 393 396 413 420 426 427 428 429 -'-' (45) 255 261 -'/' (47) 259 -':' (58) 29 -';' (59) 197 198 -'<' (60) 268 274 -'=' (61) 111 112 113 114 115 116 117 118 119 120 266 272 -'>' (62) 269 275 -'?' (63) 280 281 282 283 284 285 -'[' (91) 111 112 114 115 184 186 188 189 191 192 280 281 282 283 284 - 285 286 287 419 420 -']' (93) 111 112 114 115 184 186 188 189 191 192 280 281 282 283 284 - 285 286 287 419 420 -'^' (94) 260 -'{' (123) 249 250 -'}' (125) 249 250 -error (256) -B256PRINT (258) 194 195 196 197 198 -B256INPUT (259) 187 188 189 190 191 192 193 -B256KEY (260) 340 341 -B256PIXEL (261) 392 -B256RGB (262) 393 -B256PLOT (263) 135 136 -B256CIRCLE (264) 139 140 -B256RECT (265) 141 142 -B256POLY (266) 153 154 155 -B256STAMP (267) 156 157 158 159 160 161 162 163 164 -B256LINE (268) 137 138 -B256FASTGRAPHICS (269) 105 -B256GRAPHSIZE (270) 106 107 -B256REFRESH (271) 108 -B256CLS (272) 103 -B256CLG (273) 104 -B256IF (274) 20 110 -B256THEN (275) 16 17 -B256ELSE (276) 18 -B256ENDIF (277) 19 -B256WHILE (278) 22 24 -B256ENDWHILE (279) 23 -B256DO (280) 26 -B256UNTIL (281) 27 -B256FOR (282) 119 120 -B256TO (283) 119 120 -B256STEP (284) 120 -B256NEXT (285) 121 -B256OPEN (286) 165 166 167 -B256READ (287) 430 431 432 -B256WRITE (288) 168 169 170 -B256CLOSE (289) 174 175 176 -B256RESET (290) 177 178 179 -B256GOTO (291) 122 -B256GOSUB (292) 123 -B256RETURN (293) 126 -B256REM (294) -B256END (295) 20 24 109 -B256SETCOLOR (296) 127 128 129 -B256GTE (297) 270 276 -B256LTE (298) 271 277 -B256NE (299) 267 273 -B256DIM (300) 94 95 96 97 -B256REDIM (301) 98 99 100 101 -B256NOP (302) -B256TOINT (303) 289 290 -B256TOSTRING (304) 423 -B256LENGTH (305) 293 -B256MID (306) 426 -B256LEFT (307) 427 -B256RIGHT (308) 428 -B256UPPER (309) 424 -B256LOWER (310) 425 -B256INSTR (311) 295 -B256CEIL (312) 296 -B256FLOOR (313) 297 -B256RAND (314) 309 310 -B256SIN (315) 298 -B256COS (316) 299 -B256TAN (317) 300 -B256ASIN (318) 301 -B256ACOS (319) 302 -B256ATAN (320) 303 -B256ABS (321) 308 -B256PI (322) 311 312 -B256DEGREES (323) 304 -B256RADIANS (324) 305 -B256LOG (325) 306 -B256LOGTEN (326) 307 -B256AND (327) 262 -B256OR (328) 263 -B256XOR (329) 264 -B256NOT (330) 265 -B256PAUSE (331) 102 -B256SOUND (332) 130 131 132 133 134 -B256ASC (333) 294 -B256CHR (334) 422 -B256TOFLOAT (335) 291 292 -B256READLINE (336) 433 434 435 -B256WRITELINE (337) 171 172 173 -B256BOOLEOF (338) 317 318 319 -B256MOD (339) 257 -B256INTDIV (340) 258 -B256YEAR (341) 321 322 -B256MONTH (342) 323 324 -B256DAY (343) 325 326 -B256HOUR (344) 327 328 -B256MINUTE (345) 329 330 -B256SECOND (346) 331 332 -B256TEXT (347) 143 144 145 146 -B256FONT (348) 147 148 -B256SAY (349) 149 150 -B256SYSTEM (350) 151 -B256VOLUME (351) 152 -B256GRAPHWIDTH (352) 333 334 -B256GRAPHHEIGHT (353) 335 336 -B256GETSLICE (354) 429 -B256PUTSLICE (355) 204 205 206 207 -B256IMGLOAD (356) 208 209 210 211 212 213 -B256SPRITEDIM (357) 214 -B256SPRITELOAD (358) 215 216 222 -B256SPRITESLICE (359) 217 218 -B256SPRITEMOVE (360) 221 -B256SPRITEHIDE (361) 223 -B256SPRITESHOW (362) 224 -B256SPRITEPLACE (363) 219 220 -B256SPRITECOLLIDE (364) 396 -B256SPRITEX (365) 397 -B256SPRITEY (366) 398 -B256SPRITEH (367) 399 -B256SPRITEW (368) 400 -B256SPRITEV (369) 401 -B256WAVPLAY (370) 199 -B256WAVSTOP (371) 200 201 -B256WAVWAIT (372) 202 203 -B256SIZE (373) 337 338 339 -B256SEEK (374) 180 181 182 -B256EXISTS (375) 320 -B256BOOLTRUE (376) 313 314 -B256BOOLFALSE (377) 315 316 -B256MOUSEX (378) 342 343 -B256MOUSEY (379) 344 345 -B256MOUSEB (380) 346 347 -B256CLICKCLEAR (381) 225 226 -B256CLICKX (382) 348 349 -B256CLICKY (383) 350 351 -B256CLICKB (384) 352 353 -B256GETCOLOR (385) 394 395 -B256CLEAR (386) 354 355 -B256BLACK (387) 356 357 -B256WHITE (388) 358 359 -B256RED (389) 360 361 -B256DARKRED (390) 362 363 -B256GREEN (391) 364 365 -B256DARKGREEN (392) 366 367 -B256BLUE (393) 368 369 -B256DARKBLUE (394) 370 371 -B256CYAN (395) 372 373 -B256DARKCYAN (396) 374 375 -B256PURPLE (397) 376 377 -B256DARKPURPLE (398) 378 379 -B256YELLOW (399) 380 381 -B256DARKYELLOW (400) 382 383 -B256ORANGE (401) 384 385 -B256DARKORANGE (402) 386 387 -B256GREY (403) 388 389 -B256DARKGREY (404) 390 391 -B256CHANGEDIR (405) 227 -B256CURRENTDIR (406) 436 437 -B256DECIMAL (407) 228 -B256DBOPEN (408) 229 -B256DBCLOSE (409) 230 231 -B256DBEXECUTE (410) 232 -B256DBOPENSET (411) 233 -B256DBCLOSESET (412) 234 235 -B256DBROW (413) 402 -B256DBINT (414) 403 -B256DBFLOAT (415) 404 -B256DBSTRING (416) 438 -B256ONERROR (417) 125 -B256OFFERROR (418) 124 -B256LASTERROR (419) 405 406 -B256LASTERRORMESSAGE (420) 439 440 -B256LASTERRORLINE (421) 407 408 -B256LASTERROREXTRA (422) 441 442 -B256NETLISTEN (423) 236 237 238 -B256NETCONNECT (424) 239 240 241 242 -B256NETREAD (425) 443 444 445 -B256NETWRITE (426) 243 244 245 -B256NETCLOSE (427) 246 247 248 -B256NETDATA (428) 409 410 411 -B256LINENUM (429) -B256INTEGER (430) 279 -B256FLOAT (431) 278 -B256STRING (432) 418 -B256VARIABLE (433) 94 96 98 100 114 115 116 117 119 120 121 122 123 - 125 130 131 153 154 156 157 159 160 162 163 185 186 190 191 192 - 280 282 284 286 287 288 -B256STRINGVAR (434) 95 97 99 101 111 112 113 118 183 184 187 188 189 - 281 283 285 419 420 421 -B256NEWVAR (435) -B256COLOR (436) -B256LABEL (437) 5 -B256UMINUS (438) - - -Nonterminals, with rules where they appear - -$accept (203) - on left: 0 -program (204) - on left: 1 2, on right: 0 2 -validline (205) - on left: 3 4, on right: 1 2 -label (206) - on left: 5, on right: 3 -validstatement (207) - on left: 6 7 8 9 10 11 12 13 14 15, on right: 3 4 -compoundifstmt (208) - on left: 16, on right: 6 -ifstmt (209) - on left: 17, on right: 7 -elsestmt (210) - on left: 18, on right: 8 -endifexpr (211) - on left: 19 20, on right: 21 -endifstmt (212) - on left: 21, on right: 9 -whilestmt (213) - on left: 22, on right: 10 -endwhileexpr (214) - on left: 23 24, on right: 25 -endwhilestmt (215) - on left: 25, on right: 11 -dostmt (216) - on left: 26, on right: 12 -untilstmt (217) - on left: 27, on right: 13 -compoundstmt (218) - on left: 28 29, on right: 14 16 29 -statement (219) - on left: 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, on right: 28 29 -dimstmt (220) - on left: 94 95 96 97, on right: 53 -redimstmt (221) - on left: 98 99 100 101, on right: 54 -pausestmt (222) - on left: 102, on right: 55 -clearstmt (223) - on left: 103 104, on right: 49 -fastgraphicsstmt (224) - on left: 105, on right: 51 -graphsizestmt (225) - on left: 106 107, on right: 52 -refreshstmt (226) - on left: 108, on right: 50 -endstmt (227) - on left: 109, on right: 48 -ifexpr (228) - on left: 110, on right: 16 17 -strarrayassign (229) - on left: 111 112 113, on right: 57 -arrayassign (230) - on left: 114 115 116, on right: 56 -numassign (231) - on left: 117, on right: 42 -stringassign (232) - on left: 118, on right: 43 -forstmt (233) - on left: 119 120, on right: 44 -nextstmt (234) - on left: 121, on right: 45 -gotostmt (235) - on left: 122, on right: 30 -gosubstmt (236) - on left: 123, on right: 31 -offerrorstmt (237) - on left: 124, on right: 32 -onerrorstmt (238) - on left: 125, on right: 33 -returnstmt (239) - on left: 126, on right: 34 -colorstmt (240) - on left: 127 128 129, on right: 46 -soundstmt (241) - on left: 130 131 132 133 134, on right: 63 -plotstmt (242) - on left: 135 136, on right: 36 -linestmt (243) - on left: 137 138, on right: 41 -circlestmt (244) - on left: 139 140, on right: 37 -rectstmt (245) - on left: 141 142, on right: 38 -textstmt (246) - on left: 143 144 145 146, on right: 64 -fontstmt (247) - on left: 147 148, on right: 65 -saystmt (248) - on left: 149 150, on right: 66 -systemstmt (249) - on left: 151, on right: 67 -volumestmt (250) - on left: 152, on right: 68 -polystmt (251) - on left: 153 154 155, on right: 39 -stampstmt (252) - on left: 156 157 158 159 160 161 162 163 164, on right: 40 -openstmt (253) - on left: 165 166 167, on right: 58 -writestmt (254) - on left: 168 169 170, on right: 59 -writelinestmt (255) - on left: 171 172 173, on right: 60 -closestmt (256) - on left: 174 175 176, on right: 61 -resetstmt (257) - on left: 177 178 179, on right: 62 -seekstmt (258) - on left: 180 181 182, on right: 81 -inputstmt (259) - on left: 183 184 185 186 187 188 189 190 191 192, on right: 47 -inputexpr (260) - on left: 193, on right: 183 184 185 186 -printstmt (261) - on left: 194 195 196 197 198, on right: 35 -wavplaystmt (262) - on left: 199, on right: 69 -wavstopstmt (263) - on left: 200 201, on right: 70 -wavwaitstmt (264) - on left: 202 203, on right: 71 -putslicestmt (265) - on left: 204 205 206 207, on right: 72 -imgloadstmt (266) - on left: 208 209 210 211 212 213, on right: 73 -spritedimstmt (267) - on left: 214, on right: 74 -spriteloadstmt (268) - on left: 215 216, on right: 75 -spriteslicestmt (269) - on left: 217 218, on right: 76 -spriteplacestmt (270) - on left: 219 220, on right: 77 -spritemovestmt (271) - on left: 221 222, on right: 78 -spritehidestmt (272) - on left: 223, on right: 79 -spriteshowstmt (273) - on left: 224, on right: 80 -clickclearstmt (274) - on left: 225 226, on right: 82 -changedirstmt (275) - on left: 227, on right: 83 -decimalstmt (276) - on left: 228, on right: 84 -dbopenstmt (277) - on left: 229, on right: 85 -dbclosestmt (278) - on left: 230 231, on right: 86 -dbexecutestmt (279) - on left: 232, on right: 87 -dbopensetstmt (280) - on left: 233, on right: 88 -dbclosesetstmt (281) - on left: 234 235, on right: 89 -netlistenstmt (282) - on left: 236 237 238, on right: 90 -netconnectstmt (283) - on left: 239 240 241 242, on right: 91 -netwritestmt (284) - on left: 243 244 245, on right: 92 -netclosestmt (285) - on left: 246 247 248, on right: 93 -immediatestrlist (286) - on left: 249, on right: 113 -immediatelist (287) - on left: 250, on right: 116 132 155 158 161 164 -floatlist (288) - on left: 251 252, on right: 250 252 -floatexpr (289) - on left: 253 254 255 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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 - 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 - 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 - 411, on right: 22 27 94 95 96 97 98 99 100 101 102 106 107 110 - 111 112 114 115 117 119 120 127 128 129 133 134 135 136 137 138 - 139 140 141 142 143 144 145 146 147 148 150 152 156 157 158 159 - 160 161 162 163 164 166 167 169 170 172 173 176 179 180 181 182 - 184 186 188 189 191 192 196 198 204 205 206 207 208 209 210 211 - 212 213 214 215 216 217 218 219 220 221 222 223 224 228 236 237 - 238 239 240 241 242 244 245 248 251 252 253 254 255 256 257 258 - 259 260 261 262 263 264 265 272 273 274 275 276 277 286 287 289 - 291 296 297 298 299 300 301 302 303 304 305 306 307 308 319 339 - 392 393 396 397 398 399 400 401 403 404 411 416 417 419 420 422 - 423 426 427 428 429 432 435 438 445 -stringlist (290) - on left: 412 413, on right: 249 413 -stringexpr (291) - on left: 414 415 416 417 418 419 420 421 422 423 424 425 426 427 - 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 - 444 445, on right: 111 112 118 143 144 147 148 149 151 165 166 - 167 168 169 170 171 172 173 193 195 197 199 204 205 206 207 208 - 209 210 211 212 213 215 216 227 229 232 233 239 240 241 242 243 - 244 245 266 267 268 269 270 271 290 292 293 294 295 320 412 413 - 414 415 416 417 424 425 426 427 428 - - -state 0 - - 0 $accept: . program $end - - B256PRINT shift, and go to state 1 - B256INPUT shift, and go to state 2 - B256PLOT shift, and go to state 3 - B256CIRCLE shift, and go to state 4 - B256RECT shift, and go to state 5 - B256POLY shift, and go to state 6 - B256STAMP shift, and go to state 7 - B256LINE shift, and go to state 8 - B256FASTGRAPHICS shift, and go to state 9 - B256GRAPHSIZE shift, and go to state 10 - B256REFRESH shift, and go to state 11 - B256CLS shift, and go to state 12 - B256CLG shift, and go to state 13 - B256IF shift, and go to state 14 - B256ELSE shift, and go to state 15 - B256ENDIF shift, and go to state 16 - B256WHILE shift, and go to state 17 - B256ENDWHILE shift, and go to state 18 - B256DO shift, and go to state 19 - B256UNTIL shift, and go to state 20 - B256FOR shift, and go to state 21 - B256NEXT shift, and go to state 22 - B256OPEN shift, and go to state 23 - B256WRITE shift, and go to state 24 - B256CLOSE shift, and go to state 25 - B256RESET shift, and go to state 26 - B256GOTO shift, and go to state 27 - B256GOSUB shift, and go to state 28 - B256RETURN shift, and go to state 29 - B256END shift, and go to state 30 - B256SETCOLOR shift, and go to state 31 - B256DIM shift, and go to state 32 - B256REDIM shift, and go to state 33 - B256PAUSE shift, and go to state 34 - B256SOUND shift, and go to state 35 - B256WRITELINE shift, and go to state 36 - B256TEXT shift, and go to state 37 - B256FONT shift, and go to state 38 - B256SAY shift, and go to state 39 - B256SYSTEM shift, and go to state 40 - B256VOLUME shift, and go to state 41 - B256PUTSLICE shift, and go to state 42 - B256IMGLOAD shift, and go to state 43 - B256SPRITEDIM shift, and go to state 44 - B256SPRITELOAD shift, and go to state 45 - B256SPRITESLICE shift, and go to state 46 - B256SPRITEMOVE shift, and go to state 47 - B256SPRITEHIDE shift, and go to state 48 - B256SPRITESHOW shift, and go to state 49 - B256SPRITEPLACE shift, and go to state 50 - B256WAVPLAY shift, and go to state 51 - B256WAVSTOP shift, and go to state 52 - B256WAVWAIT shift, and go to state 53 - B256SEEK shift, and go to state 54 - B256CLICKCLEAR shift, and go to state 55 - B256CHANGEDIR shift, and go to state 56 - B256DECIMAL shift, and go to state 57 - B256DBOPEN shift, and go to state 58 - B256DBCLOSE shift, and go to state 59 - B256DBEXECUTE shift, and go to state 60 - B256DBOPENSET shift, and go to state 61 - B256DBCLOSESET shift, and go to state 62 - B256ONERROR shift, and go to state 63 - B256OFFERROR shift, and go to state 64 - B256NETLISTEN shift, and go to state 65 - B256NETCONNECT shift, and go to state 66 - B256NETWRITE shift, and go to state 67 - B256NETCLOSE shift, and go to state 68 - B256VARIABLE shift, and go to state 69 - B256STRINGVAR shift, and go to state 70 - B256LABEL shift, and go to state 71 - - $default reduce using rule 15 (validstatement) - - program go to state 72 - validline go to state 73 - label go to state 74 - validstatement go to state 75 - compoundifstmt go to state 76 - ifstmt go to state 77 - elsestmt go to state 78 - endifexpr go to state 79 - endifstmt go to state 80 - whilestmt go to state 81 - endwhileexpr go to state 82 - endwhilestmt go to state 83 - dostmt go to state 84 - untilstmt go to state 85 - compoundstmt go to state 86 - statement go to state 87 - dimstmt go to state 88 - redimstmt go to state 89 - pausestmt go to state 90 - clearstmt go to state 91 - fastgraphicsstmt go to state 92 - graphsizestmt go to state 93 - refreshstmt go to state 94 - endstmt go to state 95 - ifexpr go to state 96 - strarrayassign go to state 97 - arrayassign go to state 98 - numassign go to state 99 - stringassign go to state 100 - forstmt go to state 101 - nextstmt go to state 102 - gotostmt go to state 103 - gosubstmt go to state 104 - offerrorstmt go to state 105 - onerrorstmt go to state 106 - returnstmt go to state 107 - colorstmt go to state 108 - soundstmt go to state 109 - plotstmt go to state 110 - linestmt go to state 111 - circlestmt go to state 112 - rectstmt go to state 113 - textstmt go to state 114 - fontstmt go to state 115 - saystmt go to state 116 - systemstmt go to state 117 - volumestmt go to state 118 - polystmt go to state 119 - stampstmt go to state 120 - openstmt go to state 121 - writestmt go to state 122 - writelinestmt go to state 123 - closestmt go to state 124 - resetstmt go to state 125 - seekstmt go to state 126 - inputstmt go to state 127 - inputexpr go to state 128 - printstmt go to state 129 - wavplaystmt go to state 130 - wavstopstmt go to state 131 - wavwaitstmt go to state 132 - putslicestmt go to state 133 - imgloadstmt go to state 134 - spritedimstmt go to state 135 - spriteloadstmt go to state 136 - spriteslicestmt go to state 137 - spriteplacestmt go to state 138 - spritemovestmt go to state 139 - spritehidestmt go to state 140 - spriteshowstmt go to state 141 - clickclearstmt go to state 142 - changedirstmt go to state 143 - decimalstmt go to state 144 - dbopenstmt go to state 145 - dbclosestmt go to state 146 - dbexecutestmt go to state 147 - dbopensetstmt go to state 148 - dbclosesetstmt go to state 149 - netlistenstmt go to state 150 - netconnectstmt go to state 151 - netwritestmt go to state 152 - netclosestmt go to state 153 - - -state 1 - - 194 printstmt: B256PRINT . - 195 | B256PRINT . stringexpr - 196 | B256PRINT . floatexpr - 197 | B256PRINT . stringexpr ';' - 198 | B256PRINT . floatexpr ';' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - $default reduce using rule 194 (printstmt) - - floatexpr go to state 251 - stringexpr go to state 252 - - -state 2 - - 187 inputstmt: B256INPUT . B256STRINGVAR - 188 | B256INPUT . B256STRINGVAR '[' floatexpr ']' - 189 | B256INPUT . B256STRINGVAR '[' floatexpr ',' floatexpr ']' - 190 | B256INPUT . B256VARIABLE - 191 | B256INPUT . B256VARIABLE '[' floatexpr ']' - 192 | B256INPUT . B256VARIABLE '[' floatexpr ',' floatexpr ']' - 193 inputexpr: B256INPUT . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 253 - B256STRINGVAR shift, and go to state 254 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 256 - - -state 3 - - 135 plotstmt: B256PLOT . floatexpr ',' floatexpr - 136 | B256PLOT . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 257 - - floatexpr go to state 258 - stringexpr go to state 259 - - -state 4 - - 139 circlestmt: B256CIRCLE . floatexpr ',' floatexpr ',' floatexpr - 140 | B256CIRCLE . '(' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 260 - - floatexpr go to state 261 - stringexpr go to state 259 - - -state 5 - - 141 rectstmt: B256RECT . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 142 | B256RECT . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 262 - - floatexpr go to state 263 - stringexpr go to state 259 - - -state 6 - - 153 polystmt: B256POLY . B256VARIABLE - 154 | B256POLY . '(' B256VARIABLE ')' - 155 | B256POLY . immediatelist - - B256VARIABLE shift, and go to state 264 - '(' shift, and go to state 265 - '{' shift, and go to state 266 - - immediatelist go to state 267 - - -state 7 - - 156 stampstmt: B256STAMP . floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 157 | B256STAMP . '(' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 158 | B256STAMP . floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - 159 | B256STAMP . floatexpr ',' floatexpr ',' B256VARIABLE - 160 | B256STAMP . '(' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 161 | B256STAMP . floatexpr ',' floatexpr ',' immediatelist - 162 | B256STAMP . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 163 | B256STAMP . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 164 | B256STAMP . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 268 - - floatexpr go to state 269 - stringexpr go to state 259 - - -state 8 - - 137 linestmt: B256LINE . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 138 | B256LINE . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 270 - - floatexpr go to state 271 - stringexpr go to state 259 - - -state 9 - - 105 fastgraphicsstmt: B256FASTGRAPHICS . - - $default reduce using rule 105 (fastgraphicsstmt) - - -state 10 - - 106 graphsizestmt: B256GRAPHSIZE . floatexpr ',' floatexpr - 107 | B256GRAPHSIZE . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 272 - - floatexpr go to state 273 - stringexpr go to state 259 - - -state 11 - - 108 refreshstmt: B256REFRESH . - - $default reduce using rule 108 (refreshstmt) - - -state 12 - - 103 clearstmt: B256CLS . - - $default reduce using rule 103 (clearstmt) - - -state 13 - - 104 clearstmt: B256CLG . - - $default reduce using rule 104 (clearstmt) - - -state 14 - - 110 ifexpr: B256IF . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 274 - stringexpr go to state 259 - - -state 15 - - 18 elsestmt: B256ELSE . - - $default reduce using rule 18 (elsestmt) - - -state 16 - - 19 endifexpr: B256ENDIF . - - $default reduce using rule 19 (endifexpr) - - -state 17 - - 22 whilestmt: B256WHILE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 275 - stringexpr go to state 259 - - -state 18 - - 23 endwhileexpr: B256ENDWHILE . - - $default reduce using rule 23 (endwhileexpr) - - -state 19 - - 26 dostmt: B256DO . - - $default reduce using rule 26 (dostmt) - - -state 20 - - 27 untilstmt: B256UNTIL . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 276 - stringexpr go to state 259 - - -state 21 - - 119 forstmt: B256FOR . B256VARIABLE '=' floatexpr B256TO floatexpr - 120 | B256FOR . B256VARIABLE '=' floatexpr B256TO floatexpr B256STEP floatexpr - - B256VARIABLE shift, and go to state 277 - - -state 22 - - 121 nextstmt: B256NEXT . B256VARIABLE - - B256VARIABLE shift, and go to state 278 - - -state 23 - - 165 openstmt: B256OPEN . stringexpr - 166 | B256OPEN . '(' floatexpr ',' stringexpr ')' - 167 | B256OPEN . floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 279 - - floatexpr go to state 280 - stringexpr go to state 281 - - -state 24 - - 168 writestmt: B256WRITE . stringexpr - 169 | B256WRITE . '(' floatexpr ',' stringexpr ')' - 170 | B256WRITE . floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 282 - - floatexpr go to state 283 - stringexpr go to state 284 - - -state 25 - - 174 closestmt: B256CLOSE . - 175 | B256CLOSE . '(' ')' - 176 | B256CLOSE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 285 - - $default reduce using rule 174 (closestmt) - - floatexpr go to state 286 - stringexpr go to state 259 - - -state 26 - - 177 resetstmt: B256RESET . - 178 | B256RESET . '(' ')' - 179 | B256RESET . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 287 - - $default reduce using rule 177 (resetstmt) - - floatexpr go to state 288 - stringexpr go to state 259 - - -state 27 - - 122 gotostmt: B256GOTO . B256VARIABLE - - B256VARIABLE shift, and go to state 289 - - -state 28 - - 123 gosubstmt: B256GOSUB . B256VARIABLE - - B256VARIABLE shift, and go to state 290 - - -state 29 - - 126 returnstmt: B256RETURN . - - $default reduce using rule 126 (returnstmt) - - -state 30 - - 20 endifexpr: B256END . B256IF - 24 endwhileexpr: B256END . B256WHILE - 109 endstmt: B256END . - - B256IF shift, and go to state 291 - B256WHILE shift, and go to state 292 - - $default reduce using rule 109 (endstmt) - - -state 31 - - 127 colorstmt: B256SETCOLOR . floatexpr ',' floatexpr ',' floatexpr - 128 | B256SETCOLOR . '(' floatexpr ',' floatexpr ',' floatexpr ')' - 129 | B256SETCOLOR . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 293 - - floatexpr go to state 294 - stringexpr go to state 259 - - -state 32 - - 94 dimstmt: B256DIM . B256VARIABLE floatexpr - 95 | B256DIM . B256STRINGVAR floatexpr - 96 | B256DIM . B256VARIABLE '(' floatexpr ',' floatexpr ')' - 97 | B256DIM . B256STRINGVAR '(' floatexpr ',' floatexpr ')' - - B256VARIABLE shift, and go to state 295 - B256STRINGVAR shift, and go to state 296 - - -state 33 - - 98 redimstmt: B256REDIM . B256VARIABLE floatexpr - 99 | B256REDIM . B256STRINGVAR floatexpr - 100 | B256REDIM . B256VARIABLE '(' floatexpr ',' floatexpr ')' - 101 | B256REDIM . B256STRINGVAR '(' floatexpr ',' floatexpr ')' - - B256VARIABLE shift, and go to state 297 - B256STRINGVAR shift, and go to state 298 - - -state 34 - - 102 pausestmt: B256PAUSE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 299 - stringexpr go to state 259 - - -state 35 - - 130 soundstmt: B256SOUND . '(' B256VARIABLE ')' - 131 | B256SOUND . B256VARIABLE - 132 | B256SOUND . immediatelist - 133 | B256SOUND . '(' floatexpr ',' floatexpr ')' - 134 | B256SOUND . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 300 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 301 - '{' shift, and go to state 266 - - immediatelist go to state 302 - floatexpr go to state 303 - stringexpr go to state 259 - - -state 36 - - 171 writelinestmt: B256WRITELINE . stringexpr - 172 | B256WRITELINE . '(' floatexpr ',' stringexpr ')' - 173 | B256WRITELINE . floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 304 - - floatexpr go to state 305 - stringexpr go to state 306 - - -state 37 - - 143 textstmt: B256TEXT . floatexpr ',' floatexpr ',' stringexpr - 144 | B256TEXT . '(' floatexpr ',' floatexpr ',' stringexpr ')' - 145 | B256TEXT . floatexpr ',' floatexpr ',' floatexpr - 146 | B256TEXT . '(' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 307 - - floatexpr go to state 308 - stringexpr go to state 259 - - -state 38 - - 147 fontstmt: B256FONT . stringexpr ',' floatexpr ',' floatexpr - 148 | B256FONT . '(' stringexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 309 - - floatexpr go to state 255 - stringexpr go to state 310 - - -state 39 - - 149 saystmt: B256SAY . stringexpr - 150 | B256SAY . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 311 - stringexpr go to state 312 - - -state 40 - - 151 systemstmt: B256SYSTEM . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 313 - - -state 41 - - 152 volumestmt: B256VOLUME . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 314 - stringexpr go to state 259 - - -state 42 - - 204 putslicestmt: B256PUTSLICE . floatexpr ',' floatexpr ',' stringexpr - 205 | B256PUTSLICE . '(' floatexpr ',' floatexpr ',' stringexpr ')' - 206 | B256PUTSLICE . floatexpr ',' floatexpr ',' stringexpr ',' floatexpr - 207 | B256PUTSLICE . '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 315 - - floatexpr go to state 316 - stringexpr go to state 259 - - -state 43 - - 208 imgloadstmt: B256IMGLOAD . floatexpr ',' floatexpr ',' stringexpr - 209 | B256IMGLOAD . '(' floatexpr ',' floatexpr ',' stringexpr ')' - 210 | B256IMGLOAD . floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - 211 | B256IMGLOAD . '(' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - 212 | B256IMGLOAD . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - 213 | B256IMGLOAD . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 317 - - floatexpr go to state 318 - stringexpr go to state 259 - - -state 44 - - 214 spritedimstmt: B256SPRITEDIM . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 319 - stringexpr go to state 259 - - -state 45 - - 215 spriteloadstmt: B256SPRITELOAD . floatexpr ',' stringexpr - 216 | B256SPRITELOAD . '(' floatexpr ',' stringexpr ')' - 222 spritemovestmt: B256SPRITELOAD . '(' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 320 - - floatexpr go to state 321 - stringexpr go to state 259 - - -state 46 - - 217 spriteslicestmt: B256SPRITESLICE . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 218 | B256SPRITESLICE . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 322 - - floatexpr go to state 323 - stringexpr go to state 259 - - -state 47 - - 221 spritemovestmt: B256SPRITEMOVE . floatexpr ',' floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 324 - stringexpr go to state 259 - - -state 48 - - 223 spritehidestmt: B256SPRITEHIDE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 325 - stringexpr go to state 259 - - -state 49 - - 224 spriteshowstmt: B256SPRITESHOW . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 326 - stringexpr go to state 259 - - -state 50 - - 219 spriteplacestmt: B256SPRITEPLACE . floatexpr ',' floatexpr ',' floatexpr - 220 | B256SPRITEPLACE . '(' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 327 - - floatexpr go to state 328 - stringexpr go to state 259 - - -state 51 - - 199 wavplaystmt: B256WAVPLAY . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 329 - - -state 52 - - 200 wavstopstmt: B256WAVSTOP . - 201 | B256WAVSTOP . '(' ')' - - '(' shift, and go to state 330 - - $default reduce using rule 200 (wavstopstmt) - - -state 53 - - 202 wavwaitstmt: B256WAVWAIT . - 203 | B256WAVWAIT . '(' ')' - - '(' shift, and go to state 331 - - $default reduce using rule 202 (wavwaitstmt) - - -state 54 - - 180 seekstmt: B256SEEK . floatexpr - 181 | B256SEEK . '(' floatexpr ',' floatexpr ')' - 182 | B256SEEK . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 332 - - floatexpr go to state 333 - stringexpr go to state 259 - - -state 55 - - 225 clickclearstmt: B256CLICKCLEAR . - 226 | B256CLICKCLEAR . '(' ')' - - '(' shift, and go to state 334 - - $default reduce using rule 225 (clickclearstmt) - - -state 56 - - 227 changedirstmt: B256CHANGEDIR . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 335 - - -state 57 - - 228 decimalstmt: B256DECIMAL . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 336 - stringexpr go to state 259 - - -state 58 - - 229 dbopenstmt: B256DBOPEN . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 337 - - -state 59 - - 230 dbclosestmt: B256DBCLOSE . - 231 | B256DBCLOSE . '(' ')' - - '(' shift, and go to state 338 - - $default reduce using rule 230 (dbclosestmt) - - -state 60 - - 232 dbexecutestmt: B256DBEXECUTE . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 339 - - -state 61 - - 233 dbopensetstmt: B256DBOPENSET . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 340 - - -state 62 - - 234 dbclosesetstmt: B256DBCLOSESET . - 235 | B256DBCLOSESET . '(' ')' - - '(' shift, and go to state 341 - - $default reduce using rule 234 (dbclosesetstmt) - - -state 63 - - 125 onerrorstmt: B256ONERROR . B256VARIABLE - - B256VARIABLE shift, and go to state 342 - - -state 64 - - 124 offerrorstmt: B256OFFERROR . - - $default reduce using rule 124 (offerrorstmt) - - -state 65 - - 236 netlistenstmt: B256NETLISTEN . floatexpr - 237 | B256NETLISTEN . '(' floatexpr ',' floatexpr ')' - 238 | B256NETLISTEN . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 343 - - floatexpr go to state 344 - stringexpr go to state 259 - - -state 66 - - 239 netconnectstmt: B256NETCONNECT . stringexpr ',' floatexpr - 240 | B256NETCONNECT . '(' stringexpr ',' floatexpr ')' - 241 | B256NETCONNECT . floatexpr ',' stringexpr ',' floatexpr - 242 | B256NETCONNECT . '(' floatexpr ',' stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 345 - - floatexpr go to state 346 - stringexpr go to state 347 - - -state 67 - - 243 netwritestmt: B256NETWRITE . stringexpr - 244 | B256NETWRITE . '(' floatexpr ',' stringexpr ')' - 245 | B256NETWRITE . floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 348 - - floatexpr go to state 349 - stringexpr go to state 350 - - -state 68 - - 246 netclosestmt: B256NETCLOSE . - 247 | B256NETCLOSE . '(' ')' - 248 | B256NETCLOSE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 351 - - $default reduce using rule 246 (netclosestmt) - - floatexpr go to state 352 - stringexpr go to state 259 - - -state 69 - - 114 arrayassign: B256VARIABLE . '[' floatexpr ']' '=' floatexpr - 115 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' '=' floatexpr - 116 | B256VARIABLE . '=' immediatelist - 117 numassign: B256VARIABLE . '=' floatexpr - - '=' shift, and go to state 353 - '[' shift, and go to state 354 - - -state 70 - - 111 strarrayassign: B256STRINGVAR . '[' floatexpr ']' '=' stringexpr - 112 | B256STRINGVAR . '[' floatexpr ',' floatexpr ']' '=' stringexpr - 113 | B256STRINGVAR . '=' immediatestrlist - 118 stringassign: B256STRINGVAR . '=' stringexpr - - '=' shift, and go to state 355 - '[' shift, and go to state 356 - - -state 71 - - 5 label: B256LABEL . - - $default reduce using rule 5 (label) - - -state 72 - - 0 $accept: program . $end - - $end shift, and go to state 357 - - -state 73 - - 1 program: validline . '\n' - 2 | validline . '\n' program - - '\n' shift, and go to state 358 - - -state 74 - - 3 validline: label . validstatement - - B256PRINT shift, and go to state 1 - B256INPUT shift, and go to state 2 - B256PLOT shift, and go to state 3 - B256CIRCLE shift, and go to state 4 - B256RECT shift, and go to state 5 - B256POLY shift, and go to state 6 - B256STAMP shift, and go to state 7 - B256LINE shift, and go to state 8 - B256FASTGRAPHICS shift, and go to state 9 - B256GRAPHSIZE shift, and go to state 10 - B256REFRESH shift, and go to state 11 - B256CLS shift, and go to state 12 - B256CLG shift, and go to state 13 - B256IF shift, and go to state 14 - B256ELSE shift, and go to state 15 - B256ENDIF shift, and go to state 16 - B256WHILE shift, and go to state 17 - B256ENDWHILE shift, and go to state 18 - B256DO shift, and go to state 19 - B256UNTIL shift, and go to state 20 - B256FOR shift, and go to state 21 - B256NEXT shift, and go to state 22 - B256OPEN shift, and go to state 23 - B256WRITE shift, and go to state 24 - B256CLOSE shift, and go to state 25 - B256RESET shift, and go to state 26 - B256GOTO shift, and go to state 27 - B256GOSUB shift, and go to state 28 - B256RETURN shift, and go to state 29 - B256END shift, and go to state 30 - B256SETCOLOR shift, and go to state 31 - B256DIM shift, and go to state 32 - B256REDIM shift, and go to state 33 - B256PAUSE shift, and go to state 34 - B256SOUND shift, and go to state 35 - B256WRITELINE shift, and go to state 36 - B256TEXT shift, and go to state 37 - B256FONT shift, and go to state 38 - B256SAY shift, and go to state 39 - B256SYSTEM shift, and go to state 40 - B256VOLUME shift, and go to state 41 - B256PUTSLICE shift, and go to state 42 - B256IMGLOAD shift, and go to state 43 - B256SPRITEDIM shift, and go to state 44 - B256SPRITELOAD shift, and go to state 45 - B256SPRITESLICE shift, and go to state 46 - B256SPRITEMOVE shift, and go to state 47 - B256SPRITEHIDE shift, and go to state 48 - B256SPRITESHOW shift, and go to state 49 - B256SPRITEPLACE shift, and go to state 50 - B256WAVPLAY shift, and go to state 51 - B256WAVSTOP shift, and go to state 52 - B256WAVWAIT shift, and go to state 53 - B256SEEK shift, and go to state 54 - B256CLICKCLEAR shift, and go to state 55 - B256CHANGEDIR shift, and go to state 56 - B256DECIMAL shift, and go to state 57 - B256DBOPEN shift, and go to state 58 - B256DBCLOSE shift, and go to state 59 - B256DBEXECUTE shift, and go to state 60 - B256DBOPENSET shift, and go to state 61 - B256DBCLOSESET shift, and go to state 62 - B256ONERROR shift, and go to state 63 - B256OFFERROR shift, and go to state 64 - B256NETLISTEN shift, and go to state 65 - B256NETCONNECT shift, and go to state 66 - B256NETWRITE shift, and go to state 67 - B256NETCLOSE shift, and go to state 68 - B256VARIABLE shift, and go to state 69 - B256STRINGVAR shift, and go to state 70 - - $default reduce using rule 15 (validstatement) - - validstatement go to state 359 - compoundifstmt go to state 76 - ifstmt go to state 77 - elsestmt go to state 78 - endifexpr go to state 79 - endifstmt go to state 80 - whilestmt go to state 81 - endwhileexpr go to state 82 - endwhilestmt go to state 83 - dostmt go to state 84 - untilstmt go to state 85 - compoundstmt go to state 86 - statement go to state 87 - dimstmt go to state 88 - redimstmt go to state 89 - pausestmt go to state 90 - clearstmt go to state 91 - fastgraphicsstmt go to state 92 - graphsizestmt go to state 93 - refreshstmt go to state 94 - endstmt go to state 95 - ifexpr go to state 96 - strarrayassign go to state 97 - arrayassign go to state 98 - numassign go to state 99 - stringassign go to state 100 - forstmt go to state 101 - nextstmt go to state 102 - gotostmt go to state 103 - gosubstmt go to state 104 - offerrorstmt go to state 105 - onerrorstmt go to state 106 - returnstmt go to state 107 - colorstmt go to state 108 - soundstmt go to state 109 - plotstmt go to state 110 - linestmt go to state 111 - circlestmt go to state 112 - rectstmt go to state 113 - textstmt go to state 114 - fontstmt go to state 115 - saystmt go to state 116 - systemstmt go to state 117 - volumestmt go to state 118 - polystmt go to state 119 - stampstmt go to state 120 - openstmt go to state 121 - writestmt go to state 122 - writelinestmt go to state 123 - closestmt go to state 124 - resetstmt go to state 125 - seekstmt go to state 126 - inputstmt go to state 127 - inputexpr go to state 128 - printstmt go to state 129 - wavplaystmt go to state 130 - wavstopstmt go to state 131 - wavwaitstmt go to state 132 - putslicestmt go to state 133 - imgloadstmt go to state 134 - spritedimstmt go to state 135 - spriteloadstmt go to state 136 - spriteslicestmt go to state 137 - spriteplacestmt go to state 138 - spritemovestmt go to state 139 - spritehidestmt go to state 140 - spriteshowstmt go to state 141 - clickclearstmt go to state 142 - changedirstmt go to state 143 - decimalstmt go to state 144 - dbopenstmt go to state 145 - dbclosestmt go to state 146 - dbexecutestmt go to state 147 - dbopensetstmt go to state 148 - dbclosesetstmt go to state 149 - netlistenstmt go to state 150 - netconnectstmt go to state 151 - netwritestmt go to state 152 - netclosestmt go to state 153 - - -state 75 - - 4 validline: validstatement . - - $default reduce using rule 4 (validline) - - -state 76 - - 6 validstatement: compoundifstmt . - - $default reduce using rule 6 (validstatement) - - -state 77 - - 7 validstatement: ifstmt . - - $default reduce using rule 7 (validstatement) - - -state 78 - - 8 validstatement: elsestmt . - - $default reduce using rule 8 (validstatement) - - -state 79 - - 21 endifstmt: endifexpr . - - $default reduce using rule 21 (endifstmt) - - -state 80 - - 9 validstatement: endifstmt . - - $default reduce using rule 9 (validstatement) - - -state 81 - - 10 validstatement: whilestmt . - - $default reduce using rule 10 (validstatement) - - -state 82 - - 25 endwhilestmt: endwhileexpr . - - $default reduce using rule 25 (endwhilestmt) - - -state 83 - - 11 validstatement: endwhilestmt . - - $default reduce using rule 11 (validstatement) - - -state 84 - - 12 validstatement: dostmt . - - $default reduce using rule 12 (validstatement) - - -state 85 - - 13 validstatement: untilstmt . - - $default reduce using rule 13 (validstatement) - - -state 86 - - 14 validstatement: compoundstmt . - 29 compoundstmt: compoundstmt . ':' statement - - ':' shift, and go to state 360 - - $default reduce using rule 14 (validstatement) - - -state 87 - - 28 compoundstmt: statement . - - $default reduce using rule 28 (compoundstmt) - - -state 88 - - 53 statement: dimstmt . - - $default reduce using rule 53 (statement) - - -state 89 - - 54 statement: redimstmt . - - $default reduce using rule 54 (statement) - - -state 90 - - 55 statement: pausestmt . - - $default reduce using rule 55 (statement) - - -state 91 - - 49 statement: clearstmt . - - $default reduce using rule 49 (statement) - - -state 92 - - 51 statement: fastgraphicsstmt . - - $default reduce using rule 51 (statement) - - -state 93 - - 52 statement: graphsizestmt . - - $default reduce using rule 52 (statement) - - -state 94 - - 50 statement: refreshstmt . - - $default reduce using rule 50 (statement) - - -state 95 - - 48 statement: endstmt . - - $default reduce using rule 48 (statement) - - -state 96 - - 16 compoundifstmt: ifexpr . B256THEN compoundstmt - 17 ifstmt: ifexpr . B256THEN - - B256THEN shift, and go to state 361 - - -state 97 - - 57 statement: strarrayassign . - - $default reduce using rule 57 (statement) - - -state 98 - - 56 statement: arrayassign . - - $default reduce using rule 56 (statement) - - -state 99 - - 42 statement: numassign . - - $default reduce using rule 42 (statement) - - -state 100 - - 43 statement: stringassign . - - $default reduce using rule 43 (statement) - - -state 101 - - 44 statement: forstmt . - - $default reduce using rule 44 (statement) - - -state 102 - - 45 statement: nextstmt . - - $default reduce using rule 45 (statement) - - -state 103 - - 30 statement: gotostmt . - - $default reduce using rule 30 (statement) - - -state 104 - - 31 statement: gosubstmt . - - $default reduce using rule 31 (statement) - - -state 105 - - 32 statement: offerrorstmt . - - $default reduce using rule 32 (statement) - - -state 106 - - 33 statement: onerrorstmt . - - $default reduce using rule 33 (statement) - - -state 107 - - 34 statement: returnstmt . - - $default reduce using rule 34 (statement) - - -state 108 - - 46 statement: colorstmt . - - $default reduce using rule 46 (statement) - - -state 109 - - 63 statement: soundstmt . - - $default reduce using rule 63 (statement) - - -state 110 - - 36 statement: plotstmt . - - $default reduce using rule 36 (statement) - - -state 111 - - 41 statement: linestmt . - - $default reduce using rule 41 (statement) - - -state 112 - - 37 statement: circlestmt . - - $default reduce using rule 37 (statement) - - -state 113 - - 38 statement: rectstmt . - - $default reduce using rule 38 (statement) - - -state 114 - - 64 statement: textstmt . - - $default reduce using rule 64 (statement) - - -state 115 - - 65 statement: fontstmt . - - $default reduce using rule 65 (statement) - - -state 116 - - 66 statement: saystmt . - - $default reduce using rule 66 (statement) - - -state 117 - - 67 statement: systemstmt . - - $default reduce using rule 67 (statement) - - -state 118 - - 68 statement: volumestmt . - - $default reduce using rule 68 (statement) - - -state 119 - - 39 statement: polystmt . - - $default reduce using rule 39 (statement) - - -state 120 - - 40 statement: stampstmt . - - $default reduce using rule 40 (statement) - - -state 121 - - 58 statement: openstmt . - - $default reduce using rule 58 (statement) - - -state 122 - - 59 statement: writestmt . - - $default reduce using rule 59 (statement) - - -state 123 - - 60 statement: writelinestmt . - - $default reduce using rule 60 (statement) - - -state 124 - - 61 statement: closestmt . - - $default reduce using rule 61 (statement) - - -state 125 - - 62 statement: resetstmt . - - $default reduce using rule 62 (statement) - - -state 126 - - 81 statement: seekstmt . - - $default reduce using rule 81 (statement) - - -state 127 - - 47 statement: inputstmt . - - $default reduce using rule 47 (statement) - - -state 128 - - 183 inputstmt: inputexpr . ',' B256STRINGVAR - 184 | inputexpr . ',' B256STRINGVAR '[' floatexpr ']' - 185 | inputexpr . ',' B256VARIABLE - 186 | inputexpr . ',' B256VARIABLE '[' floatexpr ']' - - ',' shift, and go to state 362 - - -state 129 - - 35 statement: printstmt . - - $default reduce using rule 35 (statement) - - -state 130 - - 69 statement: wavplaystmt . - - $default reduce using rule 69 (statement) - - -state 131 - - 70 statement: wavstopstmt . - - $default reduce using rule 70 (statement) - - -state 132 - - 71 statement: wavwaitstmt . - - $default reduce using rule 71 (statement) - - -state 133 - - 72 statement: putslicestmt . - - $default reduce using rule 72 (statement) - - -state 134 - - 73 statement: imgloadstmt . - - $default reduce using rule 73 (statement) - - -state 135 - - 74 statement: spritedimstmt . - - $default reduce using rule 74 (statement) - - -state 136 - - 75 statement: spriteloadstmt . - - $default reduce using rule 75 (statement) - - -state 137 - - 76 statement: spriteslicestmt . - - $default reduce using rule 76 (statement) - - -state 138 - - 77 statement: spriteplacestmt . - - $default reduce using rule 77 (statement) - - -state 139 - - 78 statement: spritemovestmt . - - $default reduce using rule 78 (statement) - - -state 140 - - 79 statement: spritehidestmt . - - $default reduce using rule 79 (statement) - - -state 141 - - 80 statement: spriteshowstmt . - - $default reduce using rule 80 (statement) - - -state 142 - - 82 statement: clickclearstmt . - - $default reduce using rule 82 (statement) - - -state 143 - - 83 statement: changedirstmt . - - $default reduce using rule 83 (statement) - - -state 144 - - 84 statement: decimalstmt . - - $default reduce using rule 84 (statement) - - -state 145 - - 85 statement: dbopenstmt . - - $default reduce using rule 85 (statement) - - -state 146 - - 86 statement: dbclosestmt . - - $default reduce using rule 86 (statement) - - -state 147 - - 87 statement: dbexecutestmt . - - $default reduce using rule 87 (statement) - - -state 148 - - 88 statement: dbopensetstmt . - - $default reduce using rule 88 (statement) - - -state 149 - - 89 statement: dbclosesetstmt . - - $default reduce using rule 89 (statement) - - -state 150 - - 90 statement: netlistenstmt . - - $default reduce using rule 90 (statement) - - -state 151 - - 91 statement: netconnectstmt . - - $default reduce using rule 91 (statement) - - -state 152 - - 92 statement: netwritestmt . - - $default reduce using rule 92 (statement) - - -state 153 - - 93 statement: netclosestmt . - - $default reduce using rule 93 (statement) - - -state 154 - - 340 floatexpr: B256KEY . - 341 | B256KEY . '(' ')' - - '(' shift, and go to state 363 - - $default reduce using rule 340 (floatexpr) - - -state 155 - - 392 floatexpr: B256PIXEL . '(' floatexpr ',' floatexpr ')' - - '(' shift, and go to state 364 - - -state 156 - - 393 floatexpr: B256RGB . '(' floatexpr ',' floatexpr ',' floatexpr ')' - - '(' shift, and go to state 365 - - -state 157 - - 430 stringexpr: B256READ . - 431 | B256READ . '(' ')' - 432 | B256READ . '(' floatexpr ')' - - '(' shift, and go to state 366 - - $default reduce using rule 430 (stringexpr) - - -state 158 - - 289 floatexpr: B256TOINT . '(' floatexpr ')' - 290 | B256TOINT . '(' stringexpr ')' - - '(' shift, and go to state 367 - - -state 159 - - 423 stringexpr: B256TOSTRING . '(' floatexpr ')' - - '(' shift, and go to state 368 - - -state 160 - - 293 floatexpr: B256LENGTH . '(' stringexpr ')' - - '(' shift, and go to state 369 - - -state 161 - - 426 stringexpr: B256MID . '(' stringexpr ',' floatexpr ',' floatexpr ')' - - '(' shift, and go to state 370 - - -state 162 - - 427 stringexpr: B256LEFT . '(' stringexpr ',' floatexpr ')' - - '(' shift, and go to state 371 - - -state 163 - - 428 stringexpr: B256RIGHT . '(' stringexpr ',' floatexpr ')' - - '(' shift, and go to state 372 - - -state 164 - - 424 stringexpr: B256UPPER . '(' stringexpr ')' - - '(' shift, and go to state 373 - - -state 165 - - 425 stringexpr: B256LOWER . '(' stringexpr ')' - - '(' shift, and go to state 374 - - -state 166 - - 295 floatexpr: B256INSTR . '(' stringexpr ',' stringexpr ')' - - '(' shift, and go to state 375 - - -state 167 - - 296 floatexpr: B256CEIL . '(' floatexpr ')' - - '(' shift, and go to state 376 - - -state 168 - - 297 floatexpr: B256FLOOR . '(' floatexpr ')' - - '(' shift, and go to state 377 - - -state 169 - - 309 floatexpr: B256RAND . - 310 | B256RAND . '(' ')' - - '(' shift, and go to state 378 - - $default reduce using rule 309 (floatexpr) - - -state 170 - - 298 floatexpr: B256SIN . '(' floatexpr ')' - - '(' shift, and go to state 379 - - -state 171 - - 299 floatexpr: B256COS . '(' floatexpr ')' - - '(' shift, and go to state 380 - - -state 172 - - 300 floatexpr: B256TAN . '(' floatexpr ')' - - '(' shift, and go to state 381 - - -state 173 - - 301 floatexpr: B256ASIN . '(' floatexpr ')' - - '(' shift, and go to state 382 - - -state 174 - - 302 floatexpr: B256ACOS . '(' floatexpr ')' - - '(' shift, and go to state 383 - - -state 175 - - 303 floatexpr: B256ATAN . '(' floatexpr ')' - - '(' shift, and go to state 384 - - -state 176 - - 308 floatexpr: B256ABS . '(' floatexpr ')' - - '(' shift, and go to state 385 - - -state 177 - - 311 floatexpr: B256PI . - 312 | B256PI . '(' ')' - - '(' shift, and go to state 386 - - $default reduce using rule 311 (floatexpr) - - -state 178 - - 304 floatexpr: B256DEGREES . '(' floatexpr ')' - - '(' shift, and go to state 387 - - -state 179 - - 305 floatexpr: B256RADIANS . '(' floatexpr ')' - - '(' shift, and go to state 388 - - -state 180 - - 306 floatexpr: B256LOG . '(' floatexpr ')' - - '(' shift, and go to state 389 - - -state 181 - - 307 floatexpr: B256LOGTEN . '(' floatexpr ')' - - '(' shift, and go to state 390 - - -state 182 - - 265 floatexpr: B256NOT . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 391 - stringexpr go to state 259 - - -state 183 - - 294 floatexpr: B256ASC . '(' stringexpr ')' - - '(' shift, and go to state 392 - - -state 184 - - 422 stringexpr: B256CHR . '(' floatexpr ')' - - '(' shift, and go to state 393 - - -state 185 - - 291 floatexpr: B256TOFLOAT . '(' floatexpr ')' - 292 | B256TOFLOAT . '(' stringexpr ')' - - '(' shift, and go to state 394 - - -state 186 - - 433 stringexpr: B256READLINE . - 434 | B256READLINE . '(' ')' - 435 | B256READLINE . '(' floatexpr ')' - - '(' shift, and go to state 395 - - $default reduce using rule 433 (stringexpr) - - -state 187 - - 317 floatexpr: B256BOOLEOF . - 318 | B256BOOLEOF . '(' ')' - 319 | B256BOOLEOF . '(' floatexpr ')' - - '(' shift, and go to state 396 - - $default reduce using rule 317 (floatexpr) - - -state 188 - - 321 floatexpr: B256YEAR . - 322 | B256YEAR . '(' ')' - - '(' shift, and go to state 397 - - $default reduce using rule 321 (floatexpr) - - -state 189 - - 323 floatexpr: B256MONTH . - 324 | B256MONTH . '(' ')' - - '(' shift, and go to state 398 - - $default reduce using rule 323 (floatexpr) - - -state 190 - - 325 floatexpr: B256DAY . - 326 | B256DAY . '(' ')' - - '(' shift, and go to state 399 - - $default reduce using rule 325 (floatexpr) - - -state 191 - - 327 floatexpr: B256HOUR . - 328 | B256HOUR . '(' ')' - - '(' shift, and go to state 400 - - $default reduce using rule 327 (floatexpr) - - -state 192 - - 329 floatexpr: B256MINUTE . - 330 | B256MINUTE . '(' ')' - - '(' shift, and go to state 401 - - $default reduce using rule 329 (floatexpr) - - -state 193 - - 331 floatexpr: B256SECOND . - 332 | B256SECOND . '(' ')' - - '(' shift, and go to state 402 - - $default reduce using rule 331 (floatexpr) - - -state 194 - - 333 floatexpr: B256GRAPHWIDTH . - 334 | B256GRAPHWIDTH . '(' ')' - - '(' shift, and go to state 403 - - $default reduce using rule 333 (floatexpr) - - -state 195 - - 335 floatexpr: B256GRAPHHEIGHT . - 336 | B256GRAPHHEIGHT . '(' ')' - - '(' shift, and go to state 404 - - $default reduce using rule 335 (floatexpr) - - -state 196 - - 429 stringexpr: B256GETSLICE . '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - '(' shift, and go to state 405 - - -state 197 - - 396 floatexpr: B256SPRITECOLLIDE . '(' floatexpr ',' floatexpr ')' - - '(' shift, and go to state 406 - - -state 198 - - 397 floatexpr: B256SPRITEX . '(' floatexpr ')' - - '(' shift, and go to state 407 - - -state 199 - - 398 floatexpr: B256SPRITEY . '(' floatexpr ')' - - '(' shift, and go to state 408 - - -state 200 - - 399 floatexpr: B256SPRITEH . '(' floatexpr ')' - - '(' shift, and go to state 409 - - -state 201 - - 400 floatexpr: B256SPRITEW . '(' floatexpr ')' - - '(' shift, and go to state 410 - - -state 202 - - 401 floatexpr: B256SPRITEV . '(' floatexpr ')' - - '(' shift, and go to state 411 - - -state 203 - - 337 floatexpr: B256SIZE . - 338 | B256SIZE . '(' ')' - 339 | B256SIZE . '(' floatexpr ')' - - '(' shift, and go to state 412 - - $default reduce using rule 337 (floatexpr) - - -state 204 - - 320 floatexpr: B256EXISTS . '(' stringexpr ')' - - '(' shift, and go to state 413 - - -state 205 - - 313 floatexpr: B256BOOLTRUE . - 314 | B256BOOLTRUE . '(' ')' - - '(' shift, and go to state 414 - - $default reduce using rule 313 (floatexpr) - - -state 206 - - 315 floatexpr: B256BOOLFALSE . - 316 | B256BOOLFALSE . '(' ')' - - '(' shift, and go to state 415 - - $default reduce using rule 315 (floatexpr) - - -state 207 - - 342 floatexpr: B256MOUSEX . - 343 | B256MOUSEX . '(' ')' - - '(' shift, and go to state 416 - - $default reduce using rule 342 (floatexpr) - - -state 208 - - 344 floatexpr: B256MOUSEY . - 345 | B256MOUSEY . '(' ')' - - '(' shift, and go to state 417 - - $default reduce using rule 344 (floatexpr) - - -state 209 - - 346 floatexpr: B256MOUSEB . - 347 | B256MOUSEB . '(' ')' - - '(' shift, and go to state 418 - - $default reduce using rule 346 (floatexpr) - - -state 210 - - 348 floatexpr: B256CLICKX . - 349 | B256CLICKX . '(' ')' - - '(' shift, and go to state 419 - - $default reduce using rule 348 (floatexpr) - - -state 211 - - 350 floatexpr: B256CLICKY . - 351 | B256CLICKY . '(' ')' - - '(' shift, and go to state 420 - - $default reduce using rule 350 (floatexpr) - - -state 212 - - 352 floatexpr: B256CLICKB . - 353 | B256CLICKB . '(' ')' - - '(' shift, and go to state 421 - - $default reduce using rule 352 (floatexpr) - - -state 213 - - 394 floatexpr: B256GETCOLOR . - 395 | B256GETCOLOR . '(' ')' - - '(' shift, and go to state 422 - - $default reduce using rule 394 (floatexpr) - - -state 214 - - 354 floatexpr: B256CLEAR . - 355 | B256CLEAR . '(' ')' - - '(' shift, and go to state 423 - - $default reduce using rule 354 (floatexpr) - - -state 215 - - 356 floatexpr: B256BLACK . - 357 | B256BLACK . '(' ')' - - '(' shift, and go to state 424 - - $default reduce using rule 356 (floatexpr) - - -state 216 - - 358 floatexpr: B256WHITE . - 359 | B256WHITE . '(' ')' - - '(' shift, and go to state 425 - - $default reduce using rule 358 (floatexpr) - - -state 217 - - 360 floatexpr: B256RED . - 361 | B256RED . '(' ')' - - '(' shift, and go to state 426 - - $default reduce using rule 360 (floatexpr) - - -state 218 - - 362 floatexpr: B256DARKRED . - 363 | B256DARKRED . '(' ')' - - '(' shift, and go to state 427 - - $default reduce using rule 362 (floatexpr) - - -state 219 - - 364 floatexpr: B256GREEN . - 365 | B256GREEN . '(' ')' - - '(' shift, and go to state 428 - - $default reduce using rule 364 (floatexpr) - - -state 220 - - 366 floatexpr: B256DARKGREEN . - 367 | B256DARKGREEN . '(' ')' - - '(' shift, and go to state 429 - - $default reduce using rule 366 (floatexpr) - - -state 221 - - 368 floatexpr: B256BLUE . - 369 | B256BLUE . '(' ')' - - '(' shift, and go to state 430 - - $default reduce using rule 368 (floatexpr) - - -state 222 - - 370 floatexpr: B256DARKBLUE . - 371 | B256DARKBLUE . '(' ')' - - '(' shift, and go to state 431 - - $default reduce using rule 370 (floatexpr) - - -state 223 - - 372 floatexpr: B256CYAN . - 373 | B256CYAN . '(' ')' - - '(' shift, and go to state 432 - - $default reduce using rule 372 (floatexpr) - - -state 224 - - 374 floatexpr: B256DARKCYAN . - 375 | B256DARKCYAN . '(' ')' - - '(' shift, and go to state 433 - - $default reduce using rule 374 (floatexpr) - - -state 225 - - 376 floatexpr: B256PURPLE . - 377 | B256PURPLE . '(' ')' - - '(' shift, and go to state 434 - - $default reduce using rule 376 (floatexpr) - - -state 226 - - 378 floatexpr: B256DARKPURPLE . - 379 | B256DARKPURPLE . '(' ')' - - '(' shift, and go to state 435 - - $default reduce using rule 378 (floatexpr) - - -state 227 - - 380 floatexpr: B256YELLOW . - 381 | B256YELLOW . '(' ')' - - '(' shift, and go to state 436 - - $default reduce using rule 380 (floatexpr) - - -state 228 - - 382 floatexpr: B256DARKYELLOW . - 383 | B256DARKYELLOW . '(' ')' - - '(' shift, and go to state 437 - - $default reduce using rule 382 (floatexpr) - - -state 229 - - 384 floatexpr: B256ORANGE . - 385 | B256ORANGE . '(' ')' - - '(' shift, and go to state 438 - - $default reduce using rule 384 (floatexpr) - - -state 230 - - 386 floatexpr: B256DARKORANGE . - 387 | B256DARKORANGE . '(' ')' - - '(' shift, and go to state 439 - - $default reduce using rule 386 (floatexpr) - - -state 231 - - 388 floatexpr: B256GREY . - 389 | B256GREY . '(' ')' - - '(' shift, and go to state 440 - - $default reduce using rule 388 (floatexpr) - - -state 232 - - 390 floatexpr: B256DARKGREY . - 391 | B256DARKGREY . '(' ')' - - '(' shift, and go to state 441 - - $default reduce using rule 390 (floatexpr) - - -state 233 - - 436 stringexpr: B256CURRENTDIR . - 437 | B256CURRENTDIR . '(' ')' - - '(' shift, and go to state 442 - - $default reduce using rule 436 (stringexpr) - - -state 234 - - 402 floatexpr: B256DBROW . '(' ')' - - '(' shift, and go to state 443 - - -state 235 - - 403 floatexpr: B256DBINT . '(' floatexpr ')' - - '(' shift, and go to state 444 - - -state 236 - - 404 floatexpr: B256DBFLOAT . '(' floatexpr ')' - - '(' shift, and go to state 445 - - -state 237 - - 438 stringexpr: B256DBSTRING . '(' floatexpr ')' - - '(' shift, and go to state 446 - - -state 238 - - 405 floatexpr: B256LASTERROR . - 406 | B256LASTERROR . '(' ')' - - '(' shift, and go to state 447 - - $default reduce using rule 405 (floatexpr) - - -state 239 - - 439 stringexpr: B256LASTERRORMESSAGE . - 440 | B256LASTERRORMESSAGE . '(' ')' - - '(' shift, and go to state 448 - - $default reduce using rule 439 (stringexpr) - - -state 240 - - 407 floatexpr: B256LASTERRORLINE . - 408 | B256LASTERRORLINE . '(' ')' - - '(' shift, and go to state 449 - - $default reduce using rule 407 (floatexpr) - - -state 241 - - 441 stringexpr: B256LASTERROREXTRA . - 442 | B256LASTERROREXTRA . '(' ')' - - '(' shift, and go to state 450 - - $default reduce using rule 441 (stringexpr) - - -state 242 - - 443 stringexpr: B256NETREAD . - 444 | B256NETREAD . '(' ')' - 445 | B256NETREAD . '(' floatexpr ')' - - '(' shift, and go to state 451 - - $default reduce using rule 443 (stringexpr) - - -state 243 - - 409 floatexpr: B256NETDATA . - 410 | B256NETDATA . '(' ')' - 411 | B256NETDATA . '(' floatexpr ')' - - '(' shift, and go to state 452 - - $default reduce using rule 409 (floatexpr) - - -state 244 - - 279 floatexpr: B256INTEGER . - - $default reduce using rule 279 (floatexpr) - - -state 245 - - 278 floatexpr: B256FLOAT . - - $default reduce using rule 278 (floatexpr) - - -state 246 - - 418 stringexpr: B256STRING . - - $default reduce using rule 418 (stringexpr) - - -state 247 - - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - '[' shift, and go to state 453 - - $default reduce using rule 288 (floatexpr) - - -state 248 - - 281 floatexpr: B256STRINGVAR . '[' '?' ']' - 283 | B256STRINGVAR . '[' '?' ',' ']' - 285 | B256STRINGVAR . '[' ',' '?' ']' - 419 stringexpr: B256STRINGVAR . '[' floatexpr ']' - 420 | B256STRINGVAR . '[' floatexpr ',' floatexpr ']' - 421 | B256STRINGVAR . - - '[' shift, and go to state 454 - - $default reduce using rule 421 (stringexpr) - - -state 249 - - 261 floatexpr: '-' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 455 - stringexpr go to state 259 - - -state 250 - - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 456 - stringexpr go to state 457 - - -state 251 - - 196 printstmt: B256PRINT floatexpr . - 198 | B256PRINT floatexpr . ';' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ';' shift, and go to state 474 - - $default reduce using rule 196 (printstmt) - - -state 252 - - 195 printstmt: B256PRINT stringexpr . - 197 | B256PRINT stringexpr . ';' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ';' shift, and go to state 482 - - $default reduce using rule 195 (printstmt) - - -state 253 - - 190 inputstmt: B256INPUT B256VARIABLE . - 191 | B256INPUT B256VARIABLE . '[' floatexpr ']' - 192 | B256INPUT B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - '[' shift, and go to state 483 - - '\n' reduce using rule 190 (inputstmt) - ':' reduce using rule 190 (inputstmt) - $default reduce using rule 288 (floatexpr) - - -state 254 - - 187 inputstmt: B256INPUT B256STRINGVAR . - 188 | B256INPUT B256STRINGVAR . '[' floatexpr ']' - 189 | B256INPUT B256STRINGVAR . '[' floatexpr ',' floatexpr ']' - 281 floatexpr: B256STRINGVAR . '[' '?' ']' - 283 | B256STRINGVAR . '[' '?' ',' ']' - 285 | B256STRINGVAR . '[' ',' '?' ']' - 419 stringexpr: B256STRINGVAR . '[' floatexpr ']' - 420 | B256STRINGVAR . '[' floatexpr ',' floatexpr ']' - 421 | B256STRINGVAR . - - '[' shift, and go to state 484 - - '\n' reduce using rule 187 (inputstmt) - ':' reduce using rule 187 (inputstmt) - $default reduce using rule 421 (stringexpr) - - -state 255 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - -state 256 - - 193 inputexpr: B256INPUT stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 193 (inputexpr) - - -state 257 - - 136 plotstmt: B256PLOT '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 485 - stringexpr go to state 457 - - -state 258 - - 135 plotstmt: B256PLOT floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 486 - - -state 259 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - -state 260 - - 140 circlestmt: B256CIRCLE '(' . floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 487 - stringexpr go to state 457 - - -state 261 - - 139 circlestmt: B256CIRCLE floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 488 - - -state 262 - - 142 rectstmt: B256RECT '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 489 - stringexpr go to state 457 - - -state 263 - - 141 rectstmt: B256RECT floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 490 - - -state 264 - - 153 polystmt: B256POLY B256VARIABLE . - - $default reduce using rule 153 (polystmt) - - -state 265 - - 154 polystmt: B256POLY '(' . B256VARIABLE ')' - - B256VARIABLE shift, and go to state 491 - - -state 266 - - 250 immediatelist: '{' . floatlist '}' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatlist go to state 492 - floatexpr go to state 493 - stringexpr go to state 259 - - -state 267 - - 155 polystmt: B256POLY immediatelist . - - $default reduce using rule 155 (polystmt) - - -state 268 - - 157 stampstmt: B256STAMP '(' . floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 160 | B256STAMP '(' . floatexpr ',' floatexpr ',' B256VARIABLE ')' - 163 | B256STAMP '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 494 - stringexpr go to state 457 - - -state 269 - - 156 stampstmt: B256STAMP floatexpr . ',' floatexpr ',' floatexpr ',' B256VARIABLE - 158 | B256STAMP floatexpr . ',' floatexpr ',' floatexpr ',' immediatelist - 159 | B256STAMP floatexpr . ',' floatexpr ',' B256VARIABLE - 161 | B256STAMP floatexpr . ',' floatexpr ',' immediatelist - 162 | B256STAMP floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 495 - - -state 270 - - 138 linestmt: B256LINE '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 496 - stringexpr go to state 457 - - -state 271 - - 137 linestmt: B256LINE floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 497 - - -state 272 - - 107 graphsizestmt: B256GRAPHSIZE '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 498 - stringexpr go to state 457 - - -state 273 - - 106 graphsizestmt: B256GRAPHSIZE floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 499 - - -state 274 - - 110 ifexpr: B256IF floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 110 (ifexpr) - - -state 275 - - 22 whilestmt: B256WHILE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 22 (whilestmt) - - -state 276 - - 27 untilstmt: B256UNTIL floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 27 (untilstmt) - - -state 277 - - 119 forstmt: B256FOR B256VARIABLE . '=' floatexpr B256TO floatexpr - 120 | B256FOR B256VARIABLE . '=' floatexpr B256TO floatexpr B256STEP floatexpr - - '=' shift, and go to state 500 - - -state 278 - - 121 nextstmt: B256NEXT B256VARIABLE . - - $default reduce using rule 121 (nextstmt) - - -state 279 - - 166 openstmt: B256OPEN '(' . floatexpr ',' stringexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 501 - stringexpr go to state 457 - - -state 280 - - 167 openstmt: B256OPEN floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 502 - - -state 281 - - 165 openstmt: B256OPEN stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 165 (openstmt) - - -state 282 - - 169 writestmt: B256WRITE '(' . floatexpr ',' stringexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 503 - stringexpr go to state 457 - - -state 283 - - 170 writestmt: B256WRITE floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 504 - - -state 284 - - 168 writestmt: B256WRITE stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 168 (writestmt) - - -state 285 - - 175 closestmt: B256CLOSE '(' . ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 505 - - floatexpr go to state 456 - stringexpr go to state 457 - - -state 286 - - 176 closestmt: B256CLOSE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 176 (closestmt) - - -state 287 - - 178 resetstmt: B256RESET '(' . ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 506 - - floatexpr go to state 456 - stringexpr go to state 457 - - -state 288 - - 179 resetstmt: B256RESET floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 179 (resetstmt) - - -state 289 - - 122 gotostmt: B256GOTO B256VARIABLE . - - $default reduce using rule 122 (gotostmt) - - -state 290 - - 123 gosubstmt: B256GOSUB B256VARIABLE . - - $default reduce using rule 123 (gosubstmt) - - -state 291 - - 20 endifexpr: B256END B256IF . - - $default reduce using rule 20 (endifexpr) - - -state 292 - - 24 endwhileexpr: B256END B256WHILE . - - $default reduce using rule 24 (endwhileexpr) - - -state 293 - - 128 colorstmt: B256SETCOLOR '(' . floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 507 - stringexpr go to state 457 - - -state 294 - - 127 colorstmt: B256SETCOLOR floatexpr . ',' floatexpr ',' floatexpr - 129 | B256SETCOLOR floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 508 - - $default reduce using rule 129 (colorstmt) - - -state 295 - - 94 dimstmt: B256DIM B256VARIABLE . floatexpr - 96 | B256DIM B256VARIABLE . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 509 - - floatexpr go to state 510 - stringexpr go to state 259 - - -state 296 - - 95 dimstmt: B256DIM B256STRINGVAR . floatexpr - 97 | B256DIM B256STRINGVAR . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 511 - - floatexpr go to state 512 - stringexpr go to state 259 - - -state 297 - - 98 redimstmt: B256REDIM B256VARIABLE . floatexpr - 100 | B256REDIM B256VARIABLE . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 513 - - floatexpr go to state 514 - stringexpr go to state 259 - - -state 298 - - 99 redimstmt: B256REDIM B256STRINGVAR . floatexpr - 101 | B256REDIM B256STRINGVAR . '(' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 515 - - floatexpr go to state 516 - stringexpr go to state 259 - - -state 299 - - 102 pausestmt: B256PAUSE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 102 (pausestmt) - - -state 300 - - 131 soundstmt: B256SOUND B256VARIABLE . - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - '[' shift, and go to state 453 - - '\n' reduce using rule 131 (soundstmt) - ':' reduce using rule 131 (soundstmt) - $default reduce using rule 288 (floatexpr) - - -state 301 - - 130 soundstmt: B256SOUND '(' . B256VARIABLE ')' - 133 | B256SOUND '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 517 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 518 - stringexpr go to state 457 - - -state 302 - - 132 soundstmt: B256SOUND immediatelist . - - $default reduce using rule 132 (soundstmt) - - -state 303 - - 134 soundstmt: B256SOUND floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 519 - - -state 304 - - 172 writelinestmt: B256WRITELINE '(' . floatexpr ',' stringexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 520 - stringexpr go to state 457 - - -state 305 - - 173 writelinestmt: B256WRITELINE floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 521 - - -state 306 - - 171 writelinestmt: B256WRITELINE stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 171 (writelinestmt) - - -state 307 - - 144 textstmt: B256TEXT '(' . floatexpr ',' floatexpr ',' stringexpr ')' - 146 | B256TEXT '(' . floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 522 - stringexpr go to state 457 - - -state 308 - - 143 textstmt: B256TEXT floatexpr . ',' floatexpr ',' stringexpr - 145 | B256TEXT floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 523 - - -state 309 - - 148 fontstmt: B256FONT '(' . stringexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 456 - stringexpr go to state 524 - - -state 310 - - 147 fontstmt: B256FONT stringexpr . ',' floatexpr ',' floatexpr - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 525 - - -state 311 - - 150 saystmt: B256SAY floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 150 (saystmt) - - -state 312 - - 149 saystmt: B256SAY stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 149 (saystmt) - - -state 313 - - 151 systemstmt: B256SYSTEM stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 151 (systemstmt) - - -state 314 - - 152 volumestmt: B256VOLUME floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 152 (volumestmt) - - -state 315 - - 205 putslicestmt: B256PUTSLICE '(' . floatexpr ',' floatexpr ',' stringexpr ')' - 207 | B256PUTSLICE '(' . floatexpr ',' floatexpr ',' stringexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 526 - stringexpr go to state 457 - - -state 316 - - 204 putslicestmt: B256PUTSLICE floatexpr . ',' floatexpr ',' stringexpr - 206 | B256PUTSLICE floatexpr . ',' floatexpr ',' stringexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 527 - - -state 317 - - 209 imgloadstmt: B256IMGLOAD '(' . floatexpr ',' floatexpr ',' stringexpr ')' - 211 | B256IMGLOAD '(' . floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - 213 | B256IMGLOAD '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 528 - stringexpr go to state 457 - - -state 318 - - 208 imgloadstmt: B256IMGLOAD floatexpr . ',' floatexpr ',' stringexpr - 210 | B256IMGLOAD floatexpr . ',' floatexpr ',' floatexpr ',' stringexpr - 212 | B256IMGLOAD floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 529 - - -state 319 - - 214 spritedimstmt: B256SPRITEDIM floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 214 (spritedimstmt) - - -state 320 - - 216 spriteloadstmt: B256SPRITELOAD '(' . floatexpr ',' stringexpr ')' - 222 spritemovestmt: B256SPRITELOAD '(' . floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 530 - stringexpr go to state 457 - - -state 321 - - 215 spriteloadstmt: B256SPRITELOAD floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 531 - - -state 322 - - 218 spriteslicestmt: B256SPRITESLICE '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 532 - stringexpr go to state 457 - - -state 323 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 533 - - -state 324 - - 221 spritemovestmt: B256SPRITEMOVE floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 534 - - -state 325 - - 223 spritehidestmt: B256SPRITEHIDE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 223 (spritehidestmt) - - -state 326 - - 224 spriteshowstmt: B256SPRITESHOW floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 224 (spriteshowstmt) - - -state 327 - - 220 spriteplacestmt: B256SPRITEPLACE '(' . floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 535 - stringexpr go to state 457 - - -state 328 - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 536 - - -state 329 - - 199 wavplaystmt: B256WAVPLAY stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 199 (wavplaystmt) - - -state 330 - - 201 wavstopstmt: B256WAVSTOP '(' . ')' - - ')' shift, and go to state 537 - - -state 331 - - 203 wavwaitstmt: B256WAVWAIT '(' . ')' - - ')' shift, and go to state 538 - - -state 332 - - 181 seekstmt: B256SEEK '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 539 - stringexpr go to state 457 - - -state 333 - - 180 seekstmt: B256SEEK floatexpr . - 182 | B256SEEK floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 540 - - $default reduce using rule 180 (seekstmt) - - -state 334 - - 226 clickclearstmt: B256CLICKCLEAR '(' . ')' - - ')' shift, and go to state 541 - - -state 335 - - 227 changedirstmt: B256CHANGEDIR stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 227 (changedirstmt) - - -state 336 - - 228 decimalstmt: B256DECIMAL floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 228 (decimalstmt) - - -state 337 - - 229 dbopenstmt: B256DBOPEN stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 229 (dbopenstmt) - - -state 338 - - 231 dbclosestmt: B256DBCLOSE '(' . ')' - - ')' shift, and go to state 542 - - -state 339 - - 232 dbexecutestmt: B256DBEXECUTE stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 232 (dbexecutestmt) - - -state 340 - - 233 dbopensetstmt: B256DBOPENSET stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 233 (dbopensetstmt) - - -state 341 - - 235 dbclosesetstmt: B256DBCLOSESET '(' . ')' - - ')' shift, and go to state 543 - - -state 342 - - 125 onerrorstmt: B256ONERROR B256VARIABLE . - - $default reduce using rule 125 (onerrorstmt) - - -state 343 - - 237 netlistenstmt: B256NETLISTEN '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 544 - stringexpr go to state 457 - - -state 344 - - 236 netlistenstmt: B256NETLISTEN floatexpr . - 238 | B256NETLISTEN floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 545 - - $default reduce using rule 236 (netlistenstmt) - - -state 345 - - 240 netconnectstmt: B256NETCONNECT '(' . stringexpr ',' floatexpr ')' - 242 | B256NETCONNECT '(' . floatexpr ',' stringexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 546 - stringexpr go to state 547 - - -state 346 - - 241 netconnectstmt: B256NETCONNECT floatexpr . ',' stringexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 548 - - -state 347 - - 239 netconnectstmt: B256NETCONNECT stringexpr . ',' floatexpr - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 549 - - -state 348 - - 244 netwritestmt: B256NETWRITE '(' . floatexpr ',' stringexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 550 - stringexpr go to state 457 - - -state 349 - - 245 netwritestmt: B256NETWRITE floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 551 - - -state 350 - - 243 netwritestmt: B256NETWRITE stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 243 (netwritestmt) - - -state 351 - - 247 netclosestmt: B256NETCLOSE '(' . ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 552 - - floatexpr go to state 456 - stringexpr go to state 457 - - -state 352 - - 248 netclosestmt: B256NETCLOSE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 248 (netclosestmt) - - -state 353 - - 116 arrayassign: B256VARIABLE '=' . immediatelist - 117 numassign: B256VARIABLE '=' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - '{' shift, and go to state 266 - - immediatelist go to state 553 - floatexpr go to state 554 - stringexpr go to state 259 - - -state 354 - - 114 arrayassign: B256VARIABLE '[' . floatexpr ']' '=' floatexpr - 115 | B256VARIABLE '[' . floatexpr ',' floatexpr ']' '=' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 555 - stringexpr go to state 259 - - -state 355 - - 113 strarrayassign: B256STRINGVAR '=' . immediatestrlist - 118 stringassign: B256STRINGVAR '=' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - '{' shift, and go to state 556 - - immediatestrlist go to state 557 - floatexpr go to state 255 - stringexpr go to state 558 - - -state 356 - - 111 strarrayassign: B256STRINGVAR '[' . floatexpr ']' '=' stringexpr - 112 | B256STRINGVAR '[' . floatexpr ',' floatexpr ']' '=' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 559 - stringexpr go to state 259 - - -state 357 - - 0 $accept: program $end . - - $default accept - - -state 358 - - 1 program: validline '\n' . - 2 | validline '\n' . program - - B256PRINT shift, and go to state 1 - B256INPUT shift, and go to state 2 - B256PLOT shift, and go to state 3 - B256CIRCLE shift, and go to state 4 - B256RECT shift, and go to state 5 - B256POLY shift, and go to state 6 - B256STAMP shift, and go to state 7 - B256LINE shift, and go to state 8 - B256FASTGRAPHICS shift, and go to state 9 - B256GRAPHSIZE shift, and go to state 10 - B256REFRESH shift, and go to state 11 - B256CLS shift, and go to state 12 - B256CLG shift, and go to state 13 - B256IF shift, and go to state 14 - B256ELSE shift, and go to state 15 - B256ENDIF shift, and go to state 16 - B256WHILE shift, and go to state 17 - B256ENDWHILE shift, and go to state 18 - B256DO shift, and go to state 19 - B256UNTIL shift, and go to state 20 - B256FOR shift, and go to state 21 - B256NEXT shift, and go to state 22 - B256OPEN shift, and go to state 23 - B256WRITE shift, and go to state 24 - B256CLOSE shift, and go to state 25 - B256RESET shift, and go to state 26 - B256GOTO shift, and go to state 27 - B256GOSUB shift, and go to state 28 - B256RETURN shift, and go to state 29 - B256END shift, and go to state 30 - B256SETCOLOR shift, and go to state 31 - B256DIM shift, and go to state 32 - B256REDIM shift, and go to state 33 - B256PAUSE shift, and go to state 34 - B256SOUND shift, and go to state 35 - B256WRITELINE shift, and go to state 36 - B256TEXT shift, and go to state 37 - B256FONT shift, and go to state 38 - B256SAY shift, and go to state 39 - B256SYSTEM shift, and go to state 40 - B256VOLUME shift, and go to state 41 - B256PUTSLICE shift, and go to state 42 - B256IMGLOAD shift, and go to state 43 - B256SPRITEDIM shift, and go to state 44 - B256SPRITELOAD shift, and go to state 45 - B256SPRITESLICE shift, and go to state 46 - B256SPRITEMOVE shift, and go to state 47 - B256SPRITEHIDE shift, and go to state 48 - B256SPRITESHOW shift, and go to state 49 - B256SPRITEPLACE shift, and go to state 50 - B256WAVPLAY shift, and go to state 51 - B256WAVSTOP shift, and go to state 52 - B256WAVWAIT shift, and go to state 53 - B256SEEK shift, and go to state 54 - B256CLICKCLEAR shift, and go to state 55 - B256CHANGEDIR shift, and go to state 56 - B256DECIMAL shift, and go to state 57 - B256DBOPEN shift, and go to state 58 - B256DBCLOSE shift, and go to state 59 - B256DBEXECUTE shift, and go to state 60 - B256DBOPENSET shift, and go to state 61 - B256DBCLOSESET shift, and go to state 62 - B256ONERROR shift, and go to state 63 - B256OFFERROR shift, and go to state 64 - B256NETLISTEN shift, and go to state 65 - B256NETCONNECT shift, and go to state 66 - B256NETWRITE shift, and go to state 67 - B256NETCLOSE shift, and go to state 68 - B256VARIABLE shift, and go to state 69 - B256STRINGVAR shift, and go to state 70 - B256LABEL shift, and go to state 71 - - '\n' reduce using rule 15 (validstatement) - $default reduce using rule 1 (program) - - program go to state 560 - validline go to state 73 - label go to state 74 - validstatement go to state 75 - compoundifstmt go to state 76 - ifstmt go to state 77 - elsestmt go to state 78 - endifexpr go to state 79 - endifstmt go to state 80 - whilestmt go to state 81 - endwhileexpr go to state 82 - endwhilestmt go to state 83 - dostmt go to state 84 - untilstmt go to state 85 - compoundstmt go to state 86 - statement go to state 87 - dimstmt go to state 88 - redimstmt go to state 89 - pausestmt go to state 90 - clearstmt go to state 91 - fastgraphicsstmt go to state 92 - graphsizestmt go to state 93 - refreshstmt go to state 94 - endstmt go to state 95 - ifexpr go to state 96 - strarrayassign go to state 97 - arrayassign go to state 98 - numassign go to state 99 - stringassign go to state 100 - forstmt go to state 101 - nextstmt go to state 102 - gotostmt go to state 103 - gosubstmt go to state 104 - offerrorstmt go to state 105 - onerrorstmt go to state 106 - returnstmt go to state 107 - colorstmt go to state 108 - soundstmt go to state 109 - plotstmt go to state 110 - linestmt go to state 111 - circlestmt go to state 112 - rectstmt go to state 113 - textstmt go to state 114 - fontstmt go to state 115 - saystmt go to state 116 - systemstmt go to state 117 - volumestmt go to state 118 - polystmt go to state 119 - stampstmt go to state 120 - openstmt go to state 121 - writestmt go to state 122 - writelinestmt go to state 123 - closestmt go to state 124 - resetstmt go to state 125 - seekstmt go to state 126 - inputstmt go to state 127 - inputexpr go to state 128 - printstmt go to state 129 - wavplaystmt go to state 130 - wavstopstmt go to state 131 - wavwaitstmt go to state 132 - putslicestmt go to state 133 - imgloadstmt go to state 134 - spritedimstmt go to state 135 - spriteloadstmt go to state 136 - spriteslicestmt go to state 137 - spriteplacestmt go to state 138 - spritemovestmt go to state 139 - spritehidestmt go to state 140 - spriteshowstmt go to state 141 - clickclearstmt go to state 142 - changedirstmt go to state 143 - decimalstmt go to state 144 - dbopenstmt go to state 145 - dbclosestmt go to state 146 - dbexecutestmt go to state 147 - dbopensetstmt go to state 148 - dbclosesetstmt go to state 149 - netlistenstmt go to state 150 - netconnectstmt go to state 151 - netwritestmt go to state 152 - netclosestmt go to state 153 - - -state 359 - - 3 validline: label validstatement . - - $default reduce using rule 3 (validline) - - -state 360 - - 29 compoundstmt: compoundstmt ':' . statement - - B256PRINT shift, and go to state 1 - B256INPUT shift, and go to state 2 - B256PLOT shift, and go to state 3 - B256CIRCLE shift, and go to state 4 - B256RECT shift, and go to state 5 - B256POLY shift, and go to state 6 - B256STAMP shift, and go to state 7 - B256LINE shift, and go to state 8 - B256FASTGRAPHICS shift, and go to state 9 - B256GRAPHSIZE shift, and go to state 10 - B256REFRESH shift, and go to state 11 - B256CLS shift, and go to state 12 - B256CLG shift, and go to state 13 - B256FOR shift, and go to state 21 - B256NEXT shift, and go to state 22 - B256OPEN shift, and go to state 23 - B256WRITE shift, and go to state 24 - B256CLOSE shift, and go to state 25 - B256RESET shift, and go to state 26 - B256GOTO shift, and go to state 27 - B256GOSUB shift, and go to state 28 - B256RETURN shift, and go to state 29 - B256END shift, and go to state 561 - B256SETCOLOR shift, and go to state 31 - B256DIM shift, and go to state 32 - B256REDIM shift, and go to state 33 - B256PAUSE shift, and go to state 34 - B256SOUND shift, and go to state 35 - B256WRITELINE shift, and go to state 36 - B256TEXT shift, and go to state 37 - B256FONT shift, and go to state 38 - B256SAY shift, and go to state 39 - B256SYSTEM shift, and go to state 40 - B256VOLUME shift, and go to state 41 - B256PUTSLICE shift, and go to state 42 - B256IMGLOAD shift, and go to state 43 - B256SPRITEDIM shift, and go to state 44 - B256SPRITELOAD shift, and go to state 45 - B256SPRITESLICE shift, and go to state 46 - B256SPRITEMOVE shift, and go to state 47 - B256SPRITEHIDE shift, and go to state 48 - B256SPRITESHOW shift, and go to state 49 - B256SPRITEPLACE shift, and go to state 50 - B256WAVPLAY shift, and go to state 51 - B256WAVSTOP shift, and go to state 52 - B256WAVWAIT shift, and go to state 53 - B256SEEK shift, and go to state 54 - B256CLICKCLEAR shift, and go to state 55 - B256CHANGEDIR shift, and go to state 56 - B256DECIMAL shift, and go to state 57 - B256DBOPEN shift, and go to state 58 - B256DBCLOSE shift, and go to state 59 - B256DBEXECUTE shift, and go to state 60 - B256DBOPENSET shift, and go to state 61 - B256DBCLOSESET shift, and go to state 62 - B256ONERROR shift, and go to state 63 - B256OFFERROR shift, and go to state 64 - B256NETLISTEN shift, and go to state 65 - B256NETCONNECT shift, and go to state 66 - B256NETWRITE shift, and go to state 67 - B256NETCLOSE shift, and go to state 68 - B256VARIABLE shift, and go to state 69 - B256STRINGVAR shift, and go to state 70 - - statement go to state 562 - dimstmt go to state 88 - redimstmt go to state 89 - pausestmt go to state 90 - clearstmt go to state 91 - fastgraphicsstmt go to state 92 - graphsizestmt go to state 93 - refreshstmt go to state 94 - endstmt go to state 95 - strarrayassign go to state 97 - arrayassign go to state 98 - numassign go to state 99 - stringassign go to state 100 - forstmt go to state 101 - nextstmt go to state 102 - gotostmt go to state 103 - gosubstmt go to state 104 - offerrorstmt go to state 105 - onerrorstmt go to state 106 - returnstmt go to state 107 - colorstmt go to state 108 - soundstmt go to state 109 - plotstmt go to state 110 - linestmt go to state 111 - circlestmt go to state 112 - rectstmt go to state 113 - textstmt go to state 114 - fontstmt go to state 115 - saystmt go to state 116 - systemstmt go to state 117 - volumestmt go to state 118 - polystmt go to state 119 - stampstmt go to state 120 - openstmt go to state 121 - writestmt go to state 122 - writelinestmt go to state 123 - closestmt go to state 124 - resetstmt go to state 125 - seekstmt go to state 126 - inputstmt go to state 127 - inputexpr go to state 128 - printstmt go to state 129 - wavplaystmt go to state 130 - wavstopstmt go to state 131 - wavwaitstmt go to state 132 - putslicestmt go to state 133 - imgloadstmt go to state 134 - spritedimstmt go to state 135 - spriteloadstmt go to state 136 - spriteslicestmt go to state 137 - spriteplacestmt go to state 138 - spritemovestmt go to state 139 - spritehidestmt go to state 140 - spriteshowstmt go to state 141 - clickclearstmt go to state 142 - changedirstmt go to state 143 - decimalstmt go to state 144 - dbopenstmt go to state 145 - dbclosestmt go to state 146 - dbexecutestmt go to state 147 - dbopensetstmt go to state 148 - dbclosesetstmt go to state 149 - netlistenstmt go to state 150 - netconnectstmt go to state 151 - netwritestmt go to state 152 - netclosestmt go to state 153 - - -state 361 - - 16 compoundifstmt: ifexpr B256THEN . compoundstmt - 17 ifstmt: ifexpr B256THEN . - - B256PRINT shift, and go to state 1 - B256INPUT shift, and go to state 2 - B256PLOT shift, and go to state 3 - B256CIRCLE shift, and go to state 4 - B256RECT shift, and go to state 5 - B256POLY shift, and go to state 6 - B256STAMP shift, and go to state 7 - B256LINE shift, and go to state 8 - B256FASTGRAPHICS shift, and go to state 9 - B256GRAPHSIZE shift, and go to state 10 - B256REFRESH shift, and go to state 11 - B256CLS shift, and go to state 12 - B256CLG shift, and go to state 13 - B256FOR shift, and go to state 21 - B256NEXT shift, and go to state 22 - B256OPEN shift, and go to state 23 - B256WRITE shift, and go to state 24 - B256CLOSE shift, and go to state 25 - B256RESET shift, and go to state 26 - B256GOTO shift, and go to state 27 - B256GOSUB shift, and go to state 28 - B256RETURN shift, and go to state 29 - B256END shift, and go to state 561 - B256SETCOLOR shift, and go to state 31 - B256DIM shift, and go to state 32 - B256REDIM shift, and go to state 33 - B256PAUSE shift, and go to state 34 - B256SOUND shift, and go to state 35 - B256WRITELINE shift, and go to state 36 - B256TEXT shift, and go to state 37 - B256FONT shift, and go to state 38 - B256SAY shift, and go to state 39 - B256SYSTEM shift, and go to state 40 - B256VOLUME shift, and go to state 41 - B256PUTSLICE shift, and go to state 42 - B256IMGLOAD shift, and go to state 43 - B256SPRITEDIM shift, and go to state 44 - B256SPRITELOAD shift, and go to state 45 - B256SPRITESLICE shift, and go to state 46 - B256SPRITEMOVE shift, and go to state 47 - B256SPRITEHIDE shift, and go to state 48 - B256SPRITESHOW shift, and go to state 49 - B256SPRITEPLACE shift, and go to state 50 - B256WAVPLAY shift, and go to state 51 - B256WAVSTOP shift, and go to state 52 - B256WAVWAIT shift, and go to state 53 - B256SEEK shift, and go to state 54 - B256CLICKCLEAR shift, and go to state 55 - B256CHANGEDIR shift, and go to state 56 - B256DECIMAL shift, and go to state 57 - B256DBOPEN shift, and go to state 58 - B256DBCLOSE shift, and go to state 59 - B256DBEXECUTE shift, and go to state 60 - B256DBOPENSET shift, and go to state 61 - B256DBCLOSESET shift, and go to state 62 - B256ONERROR shift, and go to state 63 - B256OFFERROR shift, and go to state 64 - B256NETLISTEN shift, and go to state 65 - B256NETCONNECT shift, and go to state 66 - B256NETWRITE shift, and go to state 67 - B256NETCLOSE shift, and go to state 68 - B256VARIABLE shift, and go to state 69 - B256STRINGVAR shift, and go to state 70 - - $default reduce using rule 17 (ifstmt) - - compoundstmt go to state 563 - statement go to state 87 - dimstmt go to state 88 - redimstmt go to state 89 - pausestmt go to state 90 - clearstmt go to state 91 - fastgraphicsstmt go to state 92 - graphsizestmt go to state 93 - refreshstmt go to state 94 - endstmt go to state 95 - strarrayassign go to state 97 - arrayassign go to state 98 - numassign go to state 99 - stringassign go to state 100 - forstmt go to state 101 - nextstmt go to state 102 - gotostmt go to state 103 - gosubstmt go to state 104 - offerrorstmt go to state 105 - onerrorstmt go to state 106 - returnstmt go to state 107 - colorstmt go to state 108 - soundstmt go to state 109 - plotstmt go to state 110 - linestmt go to state 111 - circlestmt go to state 112 - rectstmt go to state 113 - textstmt go to state 114 - fontstmt go to state 115 - saystmt go to state 116 - systemstmt go to state 117 - volumestmt go to state 118 - polystmt go to state 119 - stampstmt go to state 120 - openstmt go to state 121 - writestmt go to state 122 - writelinestmt go to state 123 - closestmt go to state 124 - resetstmt go to state 125 - seekstmt go to state 126 - inputstmt go to state 127 - inputexpr go to state 128 - printstmt go to state 129 - wavplaystmt go to state 130 - wavstopstmt go to state 131 - wavwaitstmt go to state 132 - putslicestmt go to state 133 - imgloadstmt go to state 134 - spritedimstmt go to state 135 - spriteloadstmt go to state 136 - spriteslicestmt go to state 137 - spriteplacestmt go to state 138 - spritemovestmt go to state 139 - spritehidestmt go to state 140 - spriteshowstmt go to state 141 - clickclearstmt go to state 142 - changedirstmt go to state 143 - decimalstmt go to state 144 - dbopenstmt go to state 145 - dbclosestmt go to state 146 - dbexecutestmt go to state 147 - dbopensetstmt go to state 148 - dbclosesetstmt go to state 149 - netlistenstmt go to state 150 - netconnectstmt go to state 151 - netwritestmt go to state 152 - netclosestmt go to state 153 - - -state 362 - - 183 inputstmt: inputexpr ',' . B256STRINGVAR - 184 | inputexpr ',' . B256STRINGVAR '[' floatexpr ']' - 185 | inputexpr ',' . B256VARIABLE - 186 | inputexpr ',' . B256VARIABLE '[' floatexpr ']' - - B256VARIABLE shift, and go to state 564 - B256STRINGVAR shift, and go to state 565 - - -state 363 - - 341 floatexpr: B256KEY '(' . ')' - - ')' shift, and go to state 566 - - -state 364 - - 392 floatexpr: B256PIXEL '(' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 567 - stringexpr go to state 259 - - -state 365 - - 393 floatexpr: B256RGB '(' . floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 568 - stringexpr go to state 259 - - -state 366 - - 431 stringexpr: B256READ '(' . ')' - 432 | B256READ '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 569 - - floatexpr go to state 570 - stringexpr go to state 259 - - -state 367 - - 289 floatexpr: B256TOINT '(' . floatexpr ')' - 290 | B256TOINT '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 571 - stringexpr go to state 572 - - -state 368 - - 423 stringexpr: B256TOSTRING '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 573 - stringexpr go to state 259 - - -state 369 - - 293 floatexpr: B256LENGTH '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 574 - - -state 370 - - 426 stringexpr: B256MID '(' . stringexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 575 - - -state 371 - - 427 stringexpr: B256LEFT '(' . stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 576 - - -state 372 - - 428 stringexpr: B256RIGHT '(' . stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 577 - - -state 373 - - 424 stringexpr: B256UPPER '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 578 - - -state 374 - - 425 stringexpr: B256LOWER '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 579 - - -state 375 - - 295 floatexpr: B256INSTR '(' . stringexpr ',' stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 580 - - -state 376 - - 296 floatexpr: B256CEIL '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 581 - stringexpr go to state 259 - - -state 377 - - 297 floatexpr: B256FLOOR '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 582 - stringexpr go to state 259 - - -state 378 - - 310 floatexpr: B256RAND '(' . ')' - - ')' shift, and go to state 583 - - -state 379 - - 298 floatexpr: B256SIN '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 584 - stringexpr go to state 259 - - -state 380 - - 299 floatexpr: B256COS '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 585 - stringexpr go to state 259 - - -state 381 - - 300 floatexpr: B256TAN '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 586 - stringexpr go to state 259 - - -state 382 - - 301 floatexpr: B256ASIN '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 587 - stringexpr go to state 259 - - -state 383 - - 302 floatexpr: B256ACOS '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 588 - stringexpr go to state 259 - - -state 384 - - 303 floatexpr: B256ATAN '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 589 - stringexpr go to state 259 - - -state 385 - - 308 floatexpr: B256ABS '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 590 - stringexpr go to state 259 - - -state 386 - - 312 floatexpr: B256PI '(' . ')' - - ')' shift, and go to state 591 - - -state 387 - - 304 floatexpr: B256DEGREES '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 592 - stringexpr go to state 259 - - -state 388 - - 305 floatexpr: B256RADIANS '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 593 - stringexpr go to state 259 - - -state 389 - - 306 floatexpr: B256LOG '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 594 - stringexpr go to state 259 - - -state 390 - - 307 floatexpr: B256LOGTEN '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 595 - stringexpr go to state 259 - - -state 391 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 265 | B256NOT floatexpr . - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 265 (floatexpr) - - -state 392 - - 294 floatexpr: B256ASC '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 596 - - -state 393 - - 422 stringexpr: B256CHR '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 597 - stringexpr go to state 259 - - -state 394 - - 291 floatexpr: B256TOFLOAT '(' . floatexpr ')' - 292 | B256TOFLOAT '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 598 - stringexpr go to state 599 - - -state 395 - - 434 stringexpr: B256READLINE '(' . ')' - 435 | B256READLINE '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 600 - - floatexpr go to state 601 - stringexpr go to state 259 - - -state 396 - - 318 floatexpr: B256BOOLEOF '(' . ')' - 319 | B256BOOLEOF '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 602 - - floatexpr go to state 603 - stringexpr go to state 259 - - -state 397 - - 322 floatexpr: B256YEAR '(' . ')' - - ')' shift, and go to state 604 - - -state 398 - - 324 floatexpr: B256MONTH '(' . ')' - - ')' shift, and go to state 605 - - -state 399 - - 326 floatexpr: B256DAY '(' . ')' - - ')' shift, and go to state 606 - - -state 400 - - 328 floatexpr: B256HOUR '(' . ')' - - ')' shift, and go to state 607 - - -state 401 - - 330 floatexpr: B256MINUTE '(' . ')' - - ')' shift, and go to state 608 - - -state 402 - - 332 floatexpr: B256SECOND '(' . ')' - - ')' shift, and go to state 609 - - -state 403 - - 334 floatexpr: B256GRAPHWIDTH '(' . ')' - - ')' shift, and go to state 610 - - -state 404 - - 336 floatexpr: B256GRAPHHEIGHT '(' . ')' - - ')' shift, and go to state 611 - - -state 405 - - 429 stringexpr: B256GETSLICE '(' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 612 - stringexpr go to state 259 - - -state 406 - - 396 floatexpr: B256SPRITECOLLIDE '(' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 613 - stringexpr go to state 259 - - -state 407 - - 397 floatexpr: B256SPRITEX '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 614 - stringexpr go to state 259 - - -state 408 - - 398 floatexpr: B256SPRITEY '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 615 - stringexpr go to state 259 - - -state 409 - - 399 floatexpr: B256SPRITEH '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 616 - stringexpr go to state 259 - - -state 410 - - 400 floatexpr: B256SPRITEW '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 617 - stringexpr go to state 259 - - -state 411 - - 401 floatexpr: B256SPRITEV '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 618 - stringexpr go to state 259 - - -state 412 - - 338 floatexpr: B256SIZE '(' . ')' - 339 | B256SIZE '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 619 - - floatexpr go to state 620 - stringexpr go to state 259 - - -state 413 - - 320 floatexpr: B256EXISTS '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 621 - - -state 414 - - 314 floatexpr: B256BOOLTRUE '(' . ')' - - ')' shift, and go to state 622 - - -state 415 - - 316 floatexpr: B256BOOLFALSE '(' . ')' - - ')' shift, and go to state 623 - - -state 416 - - 343 floatexpr: B256MOUSEX '(' . ')' - - ')' shift, and go to state 624 - - -state 417 - - 345 floatexpr: B256MOUSEY '(' . ')' - - ')' shift, and go to state 625 - - -state 418 - - 347 floatexpr: B256MOUSEB '(' . ')' - - ')' shift, and go to state 626 - - -state 419 - - 349 floatexpr: B256CLICKX '(' . ')' - - ')' shift, and go to state 627 - - -state 420 - - 351 floatexpr: B256CLICKY '(' . ')' - - ')' shift, and go to state 628 - - -state 421 - - 353 floatexpr: B256CLICKB '(' . ')' - - ')' shift, and go to state 629 - - -state 422 - - 395 floatexpr: B256GETCOLOR '(' . ')' - - ')' shift, and go to state 630 - - -state 423 - - 355 floatexpr: B256CLEAR '(' . ')' - - ')' shift, and go to state 631 - - -state 424 - - 357 floatexpr: B256BLACK '(' . ')' - - ')' shift, and go to state 632 - - -state 425 - - 359 floatexpr: B256WHITE '(' . ')' - - ')' shift, and go to state 633 - - -state 426 - - 361 floatexpr: B256RED '(' . ')' - - ')' shift, and go to state 634 - - -state 427 - - 363 floatexpr: B256DARKRED '(' . ')' - - ')' shift, and go to state 635 - - -state 428 - - 365 floatexpr: B256GREEN '(' . ')' - - ')' shift, and go to state 636 - - -state 429 - - 367 floatexpr: B256DARKGREEN '(' . ')' - - ')' shift, and go to state 637 - - -state 430 - - 369 floatexpr: B256BLUE '(' . ')' - - ')' shift, and go to state 638 - - -state 431 - - 371 floatexpr: B256DARKBLUE '(' . ')' - - ')' shift, and go to state 639 - - -state 432 - - 373 floatexpr: B256CYAN '(' . ')' - - ')' shift, and go to state 640 - - -state 433 - - 375 floatexpr: B256DARKCYAN '(' . ')' - - ')' shift, and go to state 641 - - -state 434 - - 377 floatexpr: B256PURPLE '(' . ')' - - ')' shift, and go to state 642 - - -state 435 - - 379 floatexpr: B256DARKPURPLE '(' . ')' - - ')' shift, and go to state 643 - - -state 436 - - 381 floatexpr: B256YELLOW '(' . ')' - - ')' shift, and go to state 644 - - -state 437 - - 383 floatexpr: B256DARKYELLOW '(' . ')' - - ')' shift, and go to state 645 - - -state 438 - - 385 floatexpr: B256ORANGE '(' . ')' - - ')' shift, and go to state 646 - - -state 439 - - 387 floatexpr: B256DARKORANGE '(' . ')' - - ')' shift, and go to state 647 - - -state 440 - - 389 floatexpr: B256GREY '(' . ')' - - ')' shift, and go to state 648 - - -state 441 - - 391 floatexpr: B256DARKGREY '(' . ')' - - ')' shift, and go to state 649 - - -state 442 - - 437 stringexpr: B256CURRENTDIR '(' . ')' - - ')' shift, and go to state 650 - - -state 443 - - 402 floatexpr: B256DBROW '(' . ')' - - ')' shift, and go to state 651 - - -state 444 - - 403 floatexpr: B256DBINT '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 652 - stringexpr go to state 259 - - -state 445 - - 404 floatexpr: B256DBFLOAT '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 653 - stringexpr go to state 259 - - -state 446 - - 438 stringexpr: B256DBSTRING '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 654 - stringexpr go to state 259 - - -state 447 - - 406 floatexpr: B256LASTERROR '(' . ')' - - ')' shift, and go to state 655 - - -state 448 - - 440 stringexpr: B256LASTERRORMESSAGE '(' . ')' - - ')' shift, and go to state 656 - - -state 449 - - 408 floatexpr: B256LASTERRORLINE '(' . ')' - - ')' shift, and go to state 657 - - -state 450 - - 442 stringexpr: B256LASTERROREXTRA '(' . ')' - - ')' shift, and go to state 658 - - -state 451 - - 444 stringexpr: B256NETREAD '(' . ')' - 445 | B256NETREAD '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 659 - - floatexpr go to state 660 - stringexpr go to state 259 - - -state 452 - - 410 floatexpr: B256NETDATA '(' . ')' - 411 | B256NETDATA '(' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ')' shift, and go to state 661 - - floatexpr go to state 662 - stringexpr go to state 259 - - -state 453 - - 280 floatexpr: B256VARIABLE '[' . '?' ']' - 282 | B256VARIABLE '[' . '?' ',' ']' - 284 | B256VARIABLE '[' . ',' '?' ']' - 286 | B256VARIABLE '[' . floatexpr ']' - 287 | B256VARIABLE '[' . floatexpr ',' floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ',' shift, and go to state 663 - '?' shift, and go to state 664 - - floatexpr go to state 665 - stringexpr go to state 259 - - -state 454 - - 281 floatexpr: B256STRINGVAR '[' . '?' ']' - 283 | B256STRINGVAR '[' . '?' ',' ']' - 285 | B256STRINGVAR '[' . ',' '?' ']' - 419 stringexpr: B256STRINGVAR '[' . floatexpr ']' - 420 | B256STRINGVAR '[' . floatexpr ',' floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ',' shift, and go to state 666 - '?' shift, and go to state 667 - - floatexpr go to state 668 - stringexpr go to state 259 - - -state 455 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 261 | '-' floatexpr . - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 261 (floatexpr) - - -state 456 - - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 669 - - -state 457 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 414 stringexpr: '(' stringexpr . ')' - 415 | stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 670 - - -state 458 - - 276 floatexpr: floatexpr B256GTE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 671 - stringexpr go to state 259 - - -state 459 - - 277 floatexpr: floatexpr B256LTE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 672 - stringexpr go to state 259 - - -state 460 - - 273 floatexpr: floatexpr B256NE . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 673 - stringexpr go to state 259 - - -state 461 - - 262 floatexpr: floatexpr B256AND . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 674 - stringexpr go to state 259 - - -state 462 - - 263 floatexpr: floatexpr B256OR . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 675 - stringexpr go to state 259 - - -state 463 - - 264 floatexpr: floatexpr B256XOR . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 676 - stringexpr go to state 259 - - -state 464 - - 257 floatexpr: floatexpr B256MOD . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 677 - stringexpr go to state 259 - - -state 465 - - 258 floatexpr: floatexpr B256INTDIV . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 678 - stringexpr go to state 259 - - -state 466 - - 274 floatexpr: floatexpr '<' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 679 - stringexpr go to state 259 - - -state 467 - - 275 floatexpr: floatexpr '>' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 680 - stringexpr go to state 259 - - -state 468 - - 272 floatexpr: floatexpr '=' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 681 - stringexpr go to state 259 - - -state 469 - - 255 floatexpr: floatexpr '-' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 682 - stringexpr go to state 259 - - -state 470 - - 254 floatexpr: floatexpr '+' . floatexpr - 416 stringexpr: floatexpr '+' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 683 - stringexpr go to state 684 - - -state 471 - - 256 floatexpr: floatexpr '*' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 685 - stringexpr go to state 259 - - -state 472 - - 259 floatexpr: floatexpr '/' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 686 - stringexpr go to state 259 - - -state 473 - - 260 floatexpr: floatexpr '^' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 687 - stringexpr go to state 259 - - -state 474 - - 198 printstmt: B256PRINT floatexpr ';' . - - $default reduce using rule 198 (printstmt) - - -state 475 - - 270 floatexpr: stringexpr B256GTE . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 688 - - -state 476 - - 271 floatexpr: stringexpr B256LTE . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 689 - - -state 477 - - 267 floatexpr: stringexpr B256NE . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 690 - - -state 478 - - 268 floatexpr: stringexpr '<' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 691 - - -state 479 - - 269 floatexpr: stringexpr '>' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 692 - - -state 480 - - 266 floatexpr: stringexpr '=' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 693 - - -state 481 - - 415 stringexpr: stringexpr '+' . stringexpr - 417 | stringexpr '+' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 694 - stringexpr go to state 695 - - -state 482 - - 197 printstmt: B256PRINT stringexpr ';' . - - $default reduce using rule 197 (printstmt) - - -state 483 - - 191 inputstmt: B256INPUT B256VARIABLE '[' . floatexpr ']' - 192 | B256INPUT B256VARIABLE '[' . floatexpr ',' floatexpr ']' - 280 floatexpr: B256VARIABLE '[' . '?' ']' - 282 | B256VARIABLE '[' . '?' ',' ']' - 284 | B256VARIABLE '[' . ',' '?' ']' - 286 | B256VARIABLE '[' . floatexpr ']' - 287 | B256VARIABLE '[' . floatexpr ',' floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ',' shift, and go to state 663 - '?' shift, and go to state 664 - - floatexpr go to state 696 - stringexpr go to state 259 - - -state 484 - - 188 inputstmt: B256INPUT B256STRINGVAR '[' . floatexpr ']' - 189 | B256INPUT B256STRINGVAR '[' . floatexpr ',' floatexpr ']' - 281 floatexpr: B256STRINGVAR '[' . '?' ']' - 283 | B256STRINGVAR '[' . '?' ',' ']' - 285 | B256STRINGVAR '[' . ',' '?' ']' - 419 stringexpr: B256STRINGVAR '[' . floatexpr ']' - 420 | B256STRINGVAR '[' . floatexpr ',' floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - ',' shift, and go to state 666 - '?' shift, and go to state 667 - - floatexpr go to state 697 - stringexpr go to state 259 - - -state 485 - - 136 plotstmt: B256PLOT '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 698 - ')' shift, and go to state 669 - - -state 486 - - 135 plotstmt: B256PLOT floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 699 - stringexpr go to state 259 - - -state 487 - - 140 circlestmt: B256CIRCLE '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 700 - ')' shift, and go to state 669 - - -state 488 - - 139 circlestmt: B256CIRCLE floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 701 - stringexpr go to state 259 - - -state 489 - - 142 rectstmt: B256RECT '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 702 - ')' shift, and go to state 669 - - -state 490 - - 141 rectstmt: B256RECT floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 703 - stringexpr go to state 259 - - -state 491 - - 154 polystmt: B256POLY '(' B256VARIABLE . ')' - - ')' shift, and go to state 704 - - -state 492 - - 250 immediatelist: '{' floatlist . '}' - - '}' shift, and go to state 705 - - -state 493 - - 251 floatlist: floatexpr . - 252 | floatexpr . ',' floatlist - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 706 - - $default reduce using rule 251 (floatlist) - - -state 494 - - 157 stampstmt: B256STAMP '(' floatexpr . ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 160 | B256STAMP '(' floatexpr . ',' floatexpr ',' B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 707 - ')' shift, and go to state 669 - - -state 495 - - 156 stampstmt: B256STAMP floatexpr ',' . floatexpr ',' floatexpr ',' B256VARIABLE - 158 | B256STAMP floatexpr ',' . floatexpr ',' floatexpr ',' immediatelist - 159 | B256STAMP floatexpr ',' . floatexpr ',' B256VARIABLE - 161 | B256STAMP floatexpr ',' . floatexpr ',' immediatelist - 162 | B256STAMP floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' immediatelist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 708 - stringexpr go to state 259 - - -state 496 - - 138 linestmt: B256LINE '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 709 - ')' shift, and go to state 669 - - -state 497 - - 137 linestmt: B256LINE floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 710 - stringexpr go to state 259 - - -state 498 - - 107 graphsizestmt: B256GRAPHSIZE '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 711 - ')' shift, and go to state 669 - - -state 499 - - 106 graphsizestmt: B256GRAPHSIZE floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 712 - stringexpr go to state 259 - - -state 500 - - 119 forstmt: B256FOR B256VARIABLE '=' . floatexpr B256TO floatexpr - 120 | B256FOR B256VARIABLE '=' . floatexpr B256TO floatexpr B256STEP floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 713 - stringexpr go to state 259 - - -state 501 - - 166 openstmt: B256OPEN '(' floatexpr . ',' stringexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 714 - ')' shift, and go to state 669 - - -state 502 - - 167 openstmt: B256OPEN floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 715 - - -state 503 - - 169 writestmt: B256WRITE '(' floatexpr . ',' stringexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 716 - ')' shift, and go to state 669 - - -state 504 - - 170 writestmt: B256WRITE floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 717 - - -state 505 - - 175 closestmt: B256CLOSE '(' ')' . - - $default reduce using rule 175 (closestmt) - - -state 506 - - 178 resetstmt: B256RESET '(' ')' . - - $default reduce using rule 178 (resetstmt) - - -state 507 - - 128 colorstmt: B256SETCOLOR '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 718 - ')' shift, and go to state 669 - - -state 508 - - 127 colorstmt: B256SETCOLOR floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 719 - stringexpr go to state 259 - - -state 509 - - 96 dimstmt: B256DIM B256VARIABLE '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 720 - stringexpr go to state 457 - - -state 510 - - 94 dimstmt: B256DIM B256VARIABLE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 94 (dimstmt) - - -state 511 - - 97 dimstmt: B256DIM B256STRINGVAR '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 721 - stringexpr go to state 457 - - -state 512 - - 95 dimstmt: B256DIM B256STRINGVAR floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 95 (dimstmt) - - -state 513 - - 100 redimstmt: B256REDIM B256VARIABLE '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 722 - stringexpr go to state 457 - - -state 514 - - 98 redimstmt: B256REDIM B256VARIABLE floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 98 (redimstmt) - - -state 515 - - 101 redimstmt: B256REDIM B256STRINGVAR '(' . floatexpr ',' floatexpr ')' - 253 floatexpr: '(' . floatexpr ')' - 414 stringexpr: '(' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 723 - stringexpr go to state 457 - - -state 516 - - 99 redimstmt: B256REDIM B256STRINGVAR floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 99 (redimstmt) - - -state 517 - - 130 soundstmt: B256SOUND '(' B256VARIABLE . ')' - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - ')' shift, and go to state 724 - '[' shift, and go to state 453 - - ')' [reduce using rule 288 (floatexpr)] - $default reduce using rule 288 (floatexpr) - - -state 518 - - 133 soundstmt: B256SOUND '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 725 - ')' shift, and go to state 669 - - -state 519 - - 134 soundstmt: B256SOUND floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 726 - stringexpr go to state 259 - - -state 520 - - 172 writelinestmt: B256WRITELINE '(' floatexpr . ',' stringexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 727 - ')' shift, and go to state 669 - - -state 521 - - 173 writelinestmt: B256WRITELINE floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 728 - - -state 522 - - 144 textstmt: B256TEXT '(' floatexpr . ',' floatexpr ',' stringexpr ')' - 146 | B256TEXT '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 729 - ')' shift, and go to state 669 - - -state 523 - - 143 textstmt: B256TEXT floatexpr ',' . floatexpr ',' stringexpr - 145 | B256TEXT floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 730 - stringexpr go to state 259 - - -state 524 - - 148 fontstmt: B256FONT '(' stringexpr . ',' floatexpr ',' floatexpr ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 414 stringexpr: '(' stringexpr . ')' - 415 | stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 731 - ')' shift, and go to state 670 - - -state 525 - - 147 fontstmt: B256FONT stringexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 732 - stringexpr go to state 259 - - -state 526 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr . ',' floatexpr ',' stringexpr ')' - 207 | B256PUTSLICE '(' floatexpr . ',' floatexpr ',' stringexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 733 - ')' shift, and go to state 669 - - -state 527 - - 204 putslicestmt: B256PUTSLICE floatexpr ',' . floatexpr ',' stringexpr - 206 | B256PUTSLICE floatexpr ',' . floatexpr ',' stringexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 734 - stringexpr go to state 259 - - -state 528 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr . ',' floatexpr ',' stringexpr ')' - 211 | B256IMGLOAD '(' floatexpr . ',' floatexpr ',' floatexpr ',' stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 735 - ')' shift, and go to state 669 - - -state 529 - - 208 imgloadstmt: B256IMGLOAD floatexpr ',' . floatexpr ',' stringexpr - 210 | B256IMGLOAD floatexpr ',' . floatexpr ',' floatexpr ',' stringexpr - 212 | B256IMGLOAD floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 736 - stringexpr go to state 259 - - -state 530 - - 216 spriteloadstmt: B256SPRITELOAD '(' floatexpr . ',' stringexpr ')' - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 737 - ')' shift, and go to state 669 - - -state 531 - - 215 spriteloadstmt: B256SPRITELOAD floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 738 - - -state 532 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 739 - ')' shift, and go to state 669 - - -state 533 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 740 - stringexpr go to state 259 - - -state 534 - - 221 spritemovestmt: B256SPRITEMOVE floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 741 - stringexpr go to state 259 - - -state 535 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 742 - ')' shift, and go to state 669 - - -state 536 - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 743 - stringexpr go to state 259 - - -state 537 - - 201 wavstopstmt: B256WAVSTOP '(' ')' . - - $default reduce using rule 201 (wavstopstmt) - - -state 538 - - 203 wavwaitstmt: B256WAVWAIT '(' ')' . - - $default reduce using rule 203 (wavwaitstmt) - - -state 539 - - 181 seekstmt: B256SEEK '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 744 - ')' shift, and go to state 669 - - -state 540 - - 182 seekstmt: B256SEEK floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 745 - stringexpr go to state 259 - - -state 541 - - 226 clickclearstmt: B256CLICKCLEAR '(' ')' . - - $default reduce using rule 226 (clickclearstmt) - - -state 542 - - 231 dbclosestmt: B256DBCLOSE '(' ')' . - - $default reduce using rule 231 (dbclosestmt) - - -state 543 - - 235 dbclosesetstmt: B256DBCLOSESET '(' ')' . - - $default reduce using rule 235 (dbclosesetstmt) - - -state 544 - - 237 netlistenstmt: B256NETLISTEN '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 746 - ')' shift, and go to state 669 - - -state 545 - - 238 netlistenstmt: B256NETLISTEN floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 747 - stringexpr go to state 259 - - -state 546 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr . ',' stringexpr ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 748 - ')' shift, and go to state 669 - - -state 547 - - 240 netconnectstmt: B256NETCONNECT '(' stringexpr . ',' floatexpr ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 414 stringexpr: '(' stringexpr . ')' - 415 | stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 749 - ')' shift, and go to state 670 - - -state 548 - - 241 netconnectstmt: B256NETCONNECT floatexpr ',' . stringexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 750 - - -state 549 - - 239 netconnectstmt: B256NETCONNECT stringexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 751 - stringexpr go to state 259 - - -state 550 - - 244 netwritestmt: B256NETWRITE '(' floatexpr . ',' stringexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 752 - ')' shift, and go to state 669 - - -state 551 - - 245 netwritestmt: B256NETWRITE floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 753 - - -state 552 - - 247 netclosestmt: B256NETCLOSE '(' ')' . - - $default reduce using rule 247 (netclosestmt) - - -state 553 - - 116 arrayassign: B256VARIABLE '=' immediatelist . - - $default reduce using rule 116 (arrayassign) - - -state 554 - - 117 numassign: B256VARIABLE '=' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 117 (numassign) - - -state 555 - - 114 arrayassign: B256VARIABLE '[' floatexpr . ']' '=' floatexpr - 115 | B256VARIABLE '[' floatexpr . ',' floatexpr ']' '=' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 754 - ']' shift, and go to state 755 - - -state 556 - - 249 immediatestrlist: '{' . stringlist '}' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringlist go to state 756 - stringexpr go to state 757 - - -state 557 - - 113 strarrayassign: B256STRINGVAR '=' immediatestrlist . - - $default reduce using rule 113 (strarrayassign) - - -state 558 - - 118 stringassign: B256STRINGVAR '=' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 118 (stringassign) - - -state 559 - - 111 strarrayassign: B256STRINGVAR '[' floatexpr . ']' '=' stringexpr - 112 | B256STRINGVAR '[' floatexpr . ',' floatexpr ']' '=' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 758 - ']' shift, and go to state 759 - - -state 560 - - 2 program: validline '\n' program . - - $default reduce using rule 2 (program) - - -state 561 - - 109 endstmt: B256END . - - $default reduce using rule 109 (endstmt) - - -state 562 - - 29 compoundstmt: compoundstmt ':' statement . - - $default reduce using rule 29 (compoundstmt) - - -state 563 - - 16 compoundifstmt: ifexpr B256THEN compoundstmt . - 29 compoundstmt: compoundstmt . ':' statement - - ':' shift, and go to state 360 - - $default reduce using rule 16 (compoundifstmt) - - -state 564 - - 185 inputstmt: inputexpr ',' B256VARIABLE . - 186 | inputexpr ',' B256VARIABLE . '[' floatexpr ']' - - '[' shift, and go to state 760 - - $default reduce using rule 185 (inputstmt) - - -state 565 - - 183 inputstmt: inputexpr ',' B256STRINGVAR . - 184 | inputexpr ',' B256STRINGVAR . '[' floatexpr ']' - - '[' shift, and go to state 761 - - $default reduce using rule 183 (inputstmt) - - -state 566 - - 341 floatexpr: B256KEY '(' ')' . - - $default reduce using rule 341 (floatexpr) - - -state 567 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 392 | B256PIXEL '(' floatexpr . ',' floatexpr ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 762 - - -state 568 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 393 | B256RGB '(' floatexpr . ',' floatexpr ',' floatexpr ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 763 - - -state 569 - - 431 stringexpr: B256READ '(' ')' . - - $default reduce using rule 431 (stringexpr) - - -state 570 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 432 | B256READ '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 764 - - -state 571 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 289 | B256TOINT '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 765 - - -state 572 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 290 | B256TOINT '(' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 766 - - -state 573 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 423 | B256TOSTRING '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 767 - - -state 574 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 293 | B256LENGTH '(' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 768 - - -state 575 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - 426 | B256MID '(' stringexpr . ',' floatexpr ',' floatexpr ')' - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 769 - - -state 576 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - 427 | B256LEFT '(' stringexpr . ',' floatexpr ')' - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 770 - - -state 577 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - 428 | B256RIGHT '(' stringexpr . ',' floatexpr ')' - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 771 - - -state 578 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - 424 | B256UPPER '(' stringexpr . ')' - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 772 - - -state 579 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - 425 | B256LOWER '(' stringexpr . ')' - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 773 - - -state 580 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 295 | B256INSTR '(' stringexpr . ',' stringexpr ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 774 - - -state 581 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 296 | B256CEIL '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 775 - - -state 582 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 297 | B256FLOOR '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 776 - - -state 583 - - 310 floatexpr: B256RAND '(' ')' . - - $default reduce using rule 310 (floatexpr) - - -state 584 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 298 | B256SIN '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 777 - - -state 585 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 299 | B256COS '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 778 - - -state 586 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 300 | B256TAN '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 779 - - -state 587 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 301 | B256ASIN '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 780 - - -state 588 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 302 | B256ACOS '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 781 - - -state 589 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 303 | B256ATAN '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 782 - - -state 590 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 308 | B256ABS '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 783 - - -state 591 - - 312 floatexpr: B256PI '(' ')' . - - $default reduce using rule 312 (floatexpr) - - -state 592 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 304 | B256DEGREES '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 784 - - -state 593 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 305 | B256RADIANS '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 785 - - -state 594 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 306 | B256LOG '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 786 - - -state 595 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 307 | B256LOGTEN '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 787 - - -state 596 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 294 | B256ASC '(' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 788 - - -state 597 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 422 | B256CHR '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 789 - - -state 598 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 291 | B256TOFLOAT '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 790 - - -state 599 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 292 | B256TOFLOAT '(' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 791 - - -state 600 - - 434 stringexpr: B256READLINE '(' ')' . - - $default reduce using rule 434 (stringexpr) - - -state 601 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 435 | B256READLINE '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 792 - - -state 602 - - 318 floatexpr: B256BOOLEOF '(' ')' . - - $default reduce using rule 318 (floatexpr) - - -state 603 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 319 | B256BOOLEOF '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 793 - - -state 604 - - 322 floatexpr: B256YEAR '(' ')' . - - $default reduce using rule 322 (floatexpr) - - -state 605 - - 324 floatexpr: B256MONTH '(' ')' . - - $default reduce using rule 324 (floatexpr) - - -state 606 - - 326 floatexpr: B256DAY '(' ')' . - - $default reduce using rule 326 (floatexpr) - - -state 607 - - 328 floatexpr: B256HOUR '(' ')' . - - $default reduce using rule 328 (floatexpr) - - -state 608 - - 330 floatexpr: B256MINUTE '(' ')' . - - $default reduce using rule 330 (floatexpr) - - -state 609 - - 332 floatexpr: B256SECOND '(' ')' . - - $default reduce using rule 332 (floatexpr) - - -state 610 - - 334 floatexpr: B256GRAPHWIDTH '(' ')' . - - $default reduce using rule 334 (floatexpr) - - -state 611 - - 336 floatexpr: B256GRAPHHEIGHT '(' ')' . - - $default reduce using rule 336 (floatexpr) - - -state 612 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 429 | B256GETSLICE '(' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 794 - - -state 613 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 396 | B256SPRITECOLLIDE '(' floatexpr . ',' floatexpr ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 795 - - -state 614 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 397 | B256SPRITEX '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 796 - - -state 615 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 398 | B256SPRITEY '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 797 - - -state 616 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 399 | B256SPRITEH '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 798 - - -state 617 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 400 | B256SPRITEW '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 799 - - -state 618 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 401 | B256SPRITEV '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 800 - - -state 619 - - 338 floatexpr: B256SIZE '(' ')' . - - $default reduce using rule 338 (floatexpr) - - -state 620 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 339 | B256SIZE '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 801 - - -state 621 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 320 | B256EXISTS '(' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 802 - - -state 622 - - 314 floatexpr: B256BOOLTRUE '(' ')' . - - $default reduce using rule 314 (floatexpr) - - -state 623 - - 316 floatexpr: B256BOOLFALSE '(' ')' . - - $default reduce using rule 316 (floatexpr) - - -state 624 - - 343 floatexpr: B256MOUSEX '(' ')' . - - $default reduce using rule 343 (floatexpr) - - -state 625 - - 345 floatexpr: B256MOUSEY '(' ')' . - - $default reduce using rule 345 (floatexpr) - - -state 626 - - 347 floatexpr: B256MOUSEB '(' ')' . - - $default reduce using rule 347 (floatexpr) - - -state 627 - - 349 floatexpr: B256CLICKX '(' ')' . - - $default reduce using rule 349 (floatexpr) - - -state 628 - - 351 floatexpr: B256CLICKY '(' ')' . - - $default reduce using rule 351 (floatexpr) - - -state 629 - - 353 floatexpr: B256CLICKB '(' ')' . - - $default reduce using rule 353 (floatexpr) - - -state 630 - - 395 floatexpr: B256GETCOLOR '(' ')' . - - $default reduce using rule 395 (floatexpr) - - -state 631 - - 355 floatexpr: B256CLEAR '(' ')' . - - $default reduce using rule 355 (floatexpr) - - -state 632 - - 357 floatexpr: B256BLACK '(' ')' . - - $default reduce using rule 357 (floatexpr) - - -state 633 - - 359 floatexpr: B256WHITE '(' ')' . - - $default reduce using rule 359 (floatexpr) - - -state 634 - - 361 floatexpr: B256RED '(' ')' . - - $default reduce using rule 361 (floatexpr) - - -state 635 - - 363 floatexpr: B256DARKRED '(' ')' . - - $default reduce using rule 363 (floatexpr) - - -state 636 - - 365 floatexpr: B256GREEN '(' ')' . - - $default reduce using rule 365 (floatexpr) - - -state 637 - - 367 floatexpr: B256DARKGREEN '(' ')' . - - $default reduce using rule 367 (floatexpr) - - -state 638 - - 369 floatexpr: B256BLUE '(' ')' . - - $default reduce using rule 369 (floatexpr) - - -state 639 - - 371 floatexpr: B256DARKBLUE '(' ')' . - - $default reduce using rule 371 (floatexpr) - - -state 640 - - 373 floatexpr: B256CYAN '(' ')' . - - $default reduce using rule 373 (floatexpr) - - -state 641 - - 375 floatexpr: B256DARKCYAN '(' ')' . - - $default reduce using rule 375 (floatexpr) - - -state 642 - - 377 floatexpr: B256PURPLE '(' ')' . - - $default reduce using rule 377 (floatexpr) - - -state 643 - - 379 floatexpr: B256DARKPURPLE '(' ')' . - - $default reduce using rule 379 (floatexpr) - - -state 644 - - 381 floatexpr: B256YELLOW '(' ')' . - - $default reduce using rule 381 (floatexpr) - - -state 645 - - 383 floatexpr: B256DARKYELLOW '(' ')' . - - $default reduce using rule 383 (floatexpr) - - -state 646 - - 385 floatexpr: B256ORANGE '(' ')' . - - $default reduce using rule 385 (floatexpr) - - -state 647 - - 387 floatexpr: B256DARKORANGE '(' ')' . - - $default reduce using rule 387 (floatexpr) - - -state 648 - - 389 floatexpr: B256GREY '(' ')' . - - $default reduce using rule 389 (floatexpr) - - -state 649 - - 391 floatexpr: B256DARKGREY '(' ')' . - - $default reduce using rule 391 (floatexpr) - - -state 650 - - 437 stringexpr: B256CURRENTDIR '(' ')' . - - $default reduce using rule 437 (stringexpr) - - -state 651 - - 402 floatexpr: B256DBROW '(' ')' . - - $default reduce using rule 402 (floatexpr) - - -state 652 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 403 | B256DBINT '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 803 - - -state 653 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 404 | B256DBFLOAT '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 804 - - -state 654 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 438 | B256DBSTRING '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 805 - - -state 655 - - 406 floatexpr: B256LASTERROR '(' ')' . - - $default reduce using rule 406 (floatexpr) - - -state 656 - - 440 stringexpr: B256LASTERRORMESSAGE '(' ')' . - - $default reduce using rule 440 (stringexpr) - - -state 657 - - 408 floatexpr: B256LASTERRORLINE '(' ')' . - - $default reduce using rule 408 (floatexpr) - - -state 658 - - 442 stringexpr: B256LASTERROREXTRA '(' ')' . - - $default reduce using rule 442 (stringexpr) - - -state 659 - - 444 stringexpr: B256NETREAD '(' ')' . - - $default reduce using rule 444 (stringexpr) - - -state 660 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 445 | B256NETREAD '(' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 806 - - -state 661 - - 410 floatexpr: B256NETDATA '(' ')' . - - $default reduce using rule 410 (floatexpr) - - -state 662 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 411 | B256NETDATA '(' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 807 - - -state 663 - - 284 floatexpr: B256VARIABLE '[' ',' . '?' ']' - - '?' shift, and go to state 808 - - -state 664 - - 280 floatexpr: B256VARIABLE '[' '?' . ']' - 282 | B256VARIABLE '[' '?' . ',' ']' - - ',' shift, and go to state 809 - ']' shift, and go to state 810 - - -state 665 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 286 | B256VARIABLE '[' floatexpr . ']' - 287 | B256VARIABLE '[' floatexpr . ',' floatexpr ']' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 811 - ']' shift, and go to state 812 - - -state 666 - - 285 floatexpr: B256STRINGVAR '[' ',' . '?' ']' - - '?' shift, and go to state 813 - - -state 667 - - 281 floatexpr: B256STRINGVAR '[' '?' . ']' - 283 | B256STRINGVAR '[' '?' . ',' ']' - - ',' shift, and go to state 814 - ']' shift, and go to state 815 - - -state 668 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 419 | B256STRINGVAR '[' floatexpr . ']' - 420 | B256STRINGVAR '[' floatexpr . ',' floatexpr ']' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 816 - ']' shift, and go to state 817 - - -state 669 - - 253 floatexpr: '(' floatexpr ')' . - - $default reduce using rule 253 (floatexpr) - - -state 670 - - 414 stringexpr: '(' stringexpr ')' . - - $default reduce using rule 414 (stringexpr) - - -state 671 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 276 | floatexpr B256GTE floatexpr . - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 276 (floatexpr) - - -state 672 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 277 | floatexpr B256LTE floatexpr . - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 277 (floatexpr) - - -state 673 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 273 | floatexpr B256NE floatexpr . - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 273 (floatexpr) - - -state 674 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 262 | floatexpr B256AND floatexpr . - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 262 (floatexpr) - - -state 675 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 263 | floatexpr B256OR floatexpr . - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 263 (floatexpr) - - -state 676 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 264 | floatexpr B256XOR floatexpr . - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 264 (floatexpr) - - -state 677 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 257 | floatexpr B256MOD floatexpr . - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 257 (floatexpr) - - -state 678 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 258 | floatexpr B256INTDIV floatexpr . - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 258 (floatexpr) - - -state 679 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 274 | floatexpr '<' floatexpr . - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 274 (floatexpr) - - -state 680 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 275 | floatexpr '>' floatexpr . - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 275 (floatexpr) - - -state 681 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 272 | floatexpr '=' floatexpr . - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 272 (floatexpr) - - -state 682 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 255 | floatexpr '-' floatexpr . - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 255 (floatexpr) - - -state 683 - - 254 floatexpr: floatexpr . '+' floatexpr - 254 | floatexpr '+' floatexpr . - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 254 (floatexpr) - - -state 684 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 416 | floatexpr '+' stringexpr . - 417 | stringexpr . '+' floatexpr - - $default reduce using rule 416 (stringexpr) - - -state 685 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 256 | floatexpr '*' floatexpr . - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 256 (floatexpr) - - -state 686 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 259 | floatexpr '/' floatexpr . - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - '^' shift, and go to state 473 - - $default reduce using rule 259 (floatexpr) - - -state 687 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 260 | floatexpr '^' floatexpr . - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - $default reduce using rule 260 (floatexpr) - - -state 688 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 270 | stringexpr B256GTE stringexpr . - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 270 (floatexpr) - - -state 689 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 271 | stringexpr B256LTE stringexpr . - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 271 (floatexpr) - - -state 690 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 267 | stringexpr B256NE stringexpr . - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 267 (floatexpr) - - -state 691 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 268 | stringexpr '<' stringexpr . - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 268 (floatexpr) - - -state 692 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 269 | stringexpr '>' stringexpr . - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 269 (floatexpr) - - -state 693 - - 266 floatexpr: stringexpr . '=' stringexpr - 266 | stringexpr '=' stringexpr . - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - '+' shift, and go to state 481 - - $default reduce using rule 266 (floatexpr) - - -state 694 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 417 | stringexpr '+' floatexpr . - - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 417 (stringexpr) - - -state 695 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 415 | stringexpr '+' stringexpr . - 417 | stringexpr . '+' floatexpr - - $default reduce using rule 415 (stringexpr) - - -state 696 - - 191 inputstmt: B256INPUT B256VARIABLE '[' floatexpr . ']' - 192 | B256INPUT B256VARIABLE '[' floatexpr . ',' floatexpr ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 286 | B256VARIABLE '[' floatexpr . ']' - 287 | B256VARIABLE '[' floatexpr . ',' floatexpr ']' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 818 - ']' shift, and go to state 819 - - -state 697 - - 188 inputstmt: B256INPUT B256STRINGVAR '[' floatexpr . ']' - 189 | B256INPUT B256STRINGVAR '[' floatexpr . ',' floatexpr ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 419 | B256STRINGVAR '[' floatexpr . ']' - 420 | B256STRINGVAR '[' floatexpr . ',' floatexpr ']' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 820 - ']' shift, and go to state 821 - - -state 698 - - 136 plotstmt: B256PLOT '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 822 - stringexpr go to state 259 - - -state 699 - - 135 plotstmt: B256PLOT floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 135 (plotstmt) - - -state 700 - - 140 circlestmt: B256CIRCLE '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 823 - stringexpr go to state 259 - - -state 701 - - 139 circlestmt: B256CIRCLE floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 824 - - -state 702 - - 142 rectstmt: B256RECT '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 825 - stringexpr go to state 259 - - -state 703 - - 141 rectstmt: B256RECT floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 826 - - -state 704 - - 154 polystmt: B256POLY '(' B256VARIABLE ')' . - - $default reduce using rule 154 (polystmt) - - -state 705 - - 250 immediatelist: '{' floatlist '}' . - - $default reduce using rule 250 (immediatelist) - - -state 706 - - 252 floatlist: floatexpr ',' . floatlist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatlist go to state 827 - floatexpr go to state 493 - stringexpr go to state 259 - - -state 707 - - 157 stampstmt: B256STAMP '(' floatexpr ',' . floatexpr ',' floatexpr ',' B256VARIABLE ')' - 160 | B256STAMP '(' floatexpr ',' . floatexpr ',' B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 828 - stringexpr go to state 259 - - -state 708 - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr . ',' floatexpr ',' B256VARIABLE - 158 | B256STAMP floatexpr ',' floatexpr . ',' floatexpr ',' immediatelist - 159 | B256STAMP floatexpr ',' floatexpr . ',' B256VARIABLE - 161 | B256STAMP floatexpr ',' floatexpr . ',' immediatelist - 162 | B256STAMP floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' immediatelist - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 829 - - -state 709 - - 138 linestmt: B256LINE '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 830 - stringexpr go to state 259 - - -state 710 - - 137 linestmt: B256LINE floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 831 - - -state 711 - - 107 graphsizestmt: B256GRAPHSIZE '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 832 - stringexpr go to state 259 - - -state 712 - - 106 graphsizestmt: B256GRAPHSIZE floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 106 (graphsizestmt) - - -state 713 - - 119 forstmt: B256FOR B256VARIABLE '=' floatexpr . B256TO floatexpr - 120 | B256FOR B256VARIABLE '=' floatexpr . B256TO floatexpr B256STEP floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256TO shift, and go to state 833 - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - -state 714 - - 166 openstmt: B256OPEN '(' floatexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 834 - - -state 715 - - 167 openstmt: B256OPEN floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 167 (openstmt) - - -state 716 - - 169 writestmt: B256WRITE '(' floatexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 835 - - -state 717 - - 170 writestmt: B256WRITE floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 170 (writestmt) - - -state 718 - - 128 colorstmt: B256SETCOLOR '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 836 - stringexpr go to state 259 - - -state 719 - - 127 colorstmt: B256SETCOLOR floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 837 - - -state 720 - - 96 dimstmt: B256DIM B256VARIABLE '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 838 - ')' shift, and go to state 669 - - -state 721 - - 97 dimstmt: B256DIM B256STRINGVAR '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 839 - ')' shift, and go to state 669 - - -state 722 - - 100 redimstmt: B256REDIM B256VARIABLE '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 840 - ')' shift, and go to state 669 - - -state 723 - - 101 redimstmt: B256REDIM B256STRINGVAR '(' floatexpr . ',' floatexpr ')' - 253 floatexpr: '(' floatexpr . ')' - 254 | floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 841 - ')' shift, and go to state 669 - - -state 724 - - 130 soundstmt: B256SOUND '(' B256VARIABLE ')' . - - $default reduce using rule 130 (soundstmt) - - -state 725 - - 133 soundstmt: B256SOUND '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 842 - stringexpr go to state 259 - - -state 726 - - 134 soundstmt: B256SOUND floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 134 (soundstmt) - - -state 727 - - 172 writelinestmt: B256WRITELINE '(' floatexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 843 - - -state 728 - - 173 writelinestmt: B256WRITELINE floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 173 (writelinestmt) - - -state 729 - - 144 textstmt: B256TEXT '(' floatexpr ',' . floatexpr ',' stringexpr ')' - 146 | B256TEXT '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 844 - stringexpr go to state 259 - - -state 730 - - 143 textstmt: B256TEXT floatexpr ',' floatexpr . ',' stringexpr - 145 | B256TEXT floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 845 - - -state 731 - - 148 fontstmt: B256FONT '(' stringexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 846 - stringexpr go to state 259 - - -state 732 - - 147 fontstmt: B256FONT stringexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 847 - - -state 733 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr ',' . floatexpr ',' stringexpr ')' - 207 | B256PUTSLICE '(' floatexpr ',' . floatexpr ',' stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 848 - stringexpr go to state 259 - - -state 734 - - 204 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr . ',' stringexpr - 206 | B256PUTSLICE floatexpr ',' floatexpr . ',' stringexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 849 - - -state 735 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr ',' . floatexpr ',' stringexpr ')' - 211 | B256IMGLOAD '(' floatexpr ',' . floatexpr ',' floatexpr ',' stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 850 - stringexpr go to state 259 - - -state 736 - - 208 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr . ',' stringexpr - 210 | B256IMGLOAD floatexpr ',' floatexpr . ',' floatexpr ',' stringexpr - 212 | B256IMGLOAD floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 851 - - -state 737 - - 216 spriteloadstmt: B256SPRITELOAD '(' floatexpr ',' . stringexpr ')' - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 852 - stringexpr go to state 853 - - -state 738 - - 215 spriteloadstmt: B256SPRITELOAD floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 215 (spriteloadstmt) - - -state 739 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 854 - stringexpr go to state 259 - - -state 740 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 855 - - -state 741 - - 221 spritemovestmt: B256SPRITEMOVE floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 856 - - -state 742 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 857 - stringexpr go to state 259 - - -state 743 - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 858 - - -state 744 - - 181 seekstmt: B256SEEK '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 859 - stringexpr go to state 259 - - -state 745 - - 182 seekstmt: B256SEEK floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 182 (seekstmt) - - -state 746 - - 237 netlistenstmt: B256NETLISTEN '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 860 - stringexpr go to state 259 - - -state 747 - - 238 netlistenstmt: B256NETLISTEN floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 238 (netlistenstmt) - - -state 748 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr ',' . stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 861 - - -state 749 - - 240 netconnectstmt: B256NETCONNECT '(' stringexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 862 - stringexpr go to state 259 - - -state 750 - - 241 netconnectstmt: B256NETCONNECT floatexpr ',' stringexpr . ',' floatexpr - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 863 - - -state 751 - - 239 netconnectstmt: B256NETCONNECT stringexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 239 (netconnectstmt) - - -state 752 - - 244 netwritestmt: B256NETWRITE '(' floatexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 864 - - -state 753 - - 245 netwritestmt: B256NETWRITE floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 245 (netwritestmt) - - -state 754 - - 115 arrayassign: B256VARIABLE '[' floatexpr ',' . floatexpr ']' '=' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 865 - stringexpr go to state 259 - - -state 755 - - 114 arrayassign: B256VARIABLE '[' floatexpr ']' . '=' floatexpr - - '=' shift, and go to state 866 - - -state 756 - - 249 immediatestrlist: '{' stringlist . '}' - - '}' shift, and go to state 867 - - -state 757 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 412 stringlist: stringexpr . - 413 | stringexpr . ',' stringlist - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 868 - - $default reduce using rule 412 (stringlist) - - -state 758 - - 112 strarrayassign: B256STRINGVAR '[' floatexpr ',' . floatexpr ']' '=' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 869 - stringexpr go to state 259 - - -state 759 - - 111 strarrayassign: B256STRINGVAR '[' floatexpr ']' . '=' stringexpr - - '=' shift, and go to state 870 - - -state 760 - - 186 inputstmt: inputexpr ',' B256VARIABLE '[' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 871 - stringexpr go to state 259 - - -state 761 - - 184 inputstmt: inputexpr ',' B256STRINGVAR '[' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 872 - stringexpr go to state 259 - - -state 762 - - 392 floatexpr: B256PIXEL '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 873 - stringexpr go to state 259 - - -state 763 - - 393 floatexpr: B256RGB '(' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 874 - stringexpr go to state 259 - - -state 764 - - 432 stringexpr: B256READ '(' floatexpr ')' . - - $default reduce using rule 432 (stringexpr) - - -state 765 - - 289 floatexpr: B256TOINT '(' floatexpr ')' . - - $default reduce using rule 289 (floatexpr) - - -state 766 - - 290 floatexpr: B256TOINT '(' stringexpr ')' . - - $default reduce using rule 290 (floatexpr) - - -state 767 - - 423 stringexpr: B256TOSTRING '(' floatexpr ')' . - - $default reduce using rule 423 (stringexpr) - - -state 768 - - 293 floatexpr: B256LENGTH '(' stringexpr ')' . - - $default reduce using rule 293 (floatexpr) - - -state 769 - - 426 stringexpr: B256MID '(' stringexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 875 - stringexpr go to state 259 - - -state 770 - - 427 stringexpr: B256LEFT '(' stringexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 876 - stringexpr go to state 259 - - -state 771 - - 428 stringexpr: B256RIGHT '(' stringexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 877 - stringexpr go to state 259 - - -state 772 - - 424 stringexpr: B256UPPER '(' stringexpr ')' . - - $default reduce using rule 424 (stringexpr) - - -state 773 - - 425 stringexpr: B256LOWER '(' stringexpr ')' . - - $default reduce using rule 425 (stringexpr) - - -state 774 - - 295 floatexpr: B256INSTR '(' stringexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 878 - - -state 775 - - 296 floatexpr: B256CEIL '(' floatexpr ')' . - - $default reduce using rule 296 (floatexpr) - - -state 776 - - 297 floatexpr: B256FLOOR '(' floatexpr ')' . - - $default reduce using rule 297 (floatexpr) - - -state 777 - - 298 floatexpr: B256SIN '(' floatexpr ')' . - - $default reduce using rule 298 (floatexpr) - - -state 778 - - 299 floatexpr: B256COS '(' floatexpr ')' . - - $default reduce using rule 299 (floatexpr) - - -state 779 - - 300 floatexpr: B256TAN '(' floatexpr ')' . - - $default reduce using rule 300 (floatexpr) - - -state 780 - - 301 floatexpr: B256ASIN '(' floatexpr ')' . - - $default reduce using rule 301 (floatexpr) - - -state 781 - - 302 floatexpr: B256ACOS '(' floatexpr ')' . - - $default reduce using rule 302 (floatexpr) - - -state 782 - - 303 floatexpr: B256ATAN '(' floatexpr ')' . - - $default reduce using rule 303 (floatexpr) - - -state 783 - - 308 floatexpr: B256ABS '(' floatexpr ')' . - - $default reduce using rule 308 (floatexpr) - - -state 784 - - 304 floatexpr: B256DEGREES '(' floatexpr ')' . - - $default reduce using rule 304 (floatexpr) - - -state 785 - - 305 floatexpr: B256RADIANS '(' floatexpr ')' . - - $default reduce using rule 305 (floatexpr) - - -state 786 - - 306 floatexpr: B256LOG '(' floatexpr ')' . - - $default reduce using rule 306 (floatexpr) - - -state 787 - - 307 floatexpr: B256LOGTEN '(' floatexpr ')' . - - $default reduce using rule 307 (floatexpr) - - -state 788 - - 294 floatexpr: B256ASC '(' stringexpr ')' . - - $default reduce using rule 294 (floatexpr) - - -state 789 - - 422 stringexpr: B256CHR '(' floatexpr ')' . - - $default reduce using rule 422 (stringexpr) - - -state 790 - - 291 floatexpr: B256TOFLOAT '(' floatexpr ')' . - - $default reduce using rule 291 (floatexpr) - - -state 791 - - 292 floatexpr: B256TOFLOAT '(' stringexpr ')' . - - $default reduce using rule 292 (floatexpr) - - -state 792 - - 435 stringexpr: B256READLINE '(' floatexpr ')' . - - $default reduce using rule 435 (stringexpr) - - -state 793 - - 319 floatexpr: B256BOOLEOF '(' floatexpr ')' . - - $default reduce using rule 319 (floatexpr) - - -state 794 - - 429 stringexpr: B256GETSLICE '(' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 879 - stringexpr go to state 259 - - -state 795 - - 396 floatexpr: B256SPRITECOLLIDE '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 880 - stringexpr go to state 259 - - -state 796 - - 397 floatexpr: B256SPRITEX '(' floatexpr ')' . - - $default reduce using rule 397 (floatexpr) - - -state 797 - - 398 floatexpr: B256SPRITEY '(' floatexpr ')' . - - $default reduce using rule 398 (floatexpr) - - -state 798 - - 399 floatexpr: B256SPRITEH '(' floatexpr ')' . - - $default reduce using rule 399 (floatexpr) - - -state 799 - - 400 floatexpr: B256SPRITEW '(' floatexpr ')' . - - $default reduce using rule 400 (floatexpr) - - -state 800 - - 401 floatexpr: B256SPRITEV '(' floatexpr ')' . - - $default reduce using rule 401 (floatexpr) - - -state 801 - - 339 floatexpr: B256SIZE '(' floatexpr ')' . - - $default reduce using rule 339 (floatexpr) - - -state 802 - - 320 floatexpr: B256EXISTS '(' stringexpr ')' . - - $default reduce using rule 320 (floatexpr) - - -state 803 - - 403 floatexpr: B256DBINT '(' floatexpr ')' . - - $default reduce using rule 403 (floatexpr) - - -state 804 - - 404 floatexpr: B256DBFLOAT '(' floatexpr ')' . - - $default reduce using rule 404 (floatexpr) - - -state 805 - - 438 stringexpr: B256DBSTRING '(' floatexpr ')' . - - $default reduce using rule 438 (stringexpr) - - -state 806 - - 445 stringexpr: B256NETREAD '(' floatexpr ')' . - - $default reduce using rule 445 (stringexpr) - - -state 807 - - 411 floatexpr: B256NETDATA '(' floatexpr ')' . - - $default reduce using rule 411 (floatexpr) - - -state 808 - - 284 floatexpr: B256VARIABLE '[' ',' '?' . ']' - - ']' shift, and go to state 881 - - -state 809 - - 282 floatexpr: B256VARIABLE '[' '?' ',' . ']' - - ']' shift, and go to state 882 - - -state 810 - - 280 floatexpr: B256VARIABLE '[' '?' ']' . - - $default reduce using rule 280 (floatexpr) - - -state 811 - - 287 floatexpr: B256VARIABLE '[' floatexpr ',' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 883 - stringexpr go to state 259 - - -state 812 - - 286 floatexpr: B256VARIABLE '[' floatexpr ']' . - - $default reduce using rule 286 (floatexpr) - - -state 813 - - 285 floatexpr: B256STRINGVAR '[' ',' '?' . ']' - - ']' shift, and go to state 884 - - -state 814 - - 283 floatexpr: B256STRINGVAR '[' '?' ',' . ']' - - ']' shift, and go to state 885 - - -state 815 - - 281 floatexpr: B256STRINGVAR '[' '?' ']' . - - $default reduce using rule 281 (floatexpr) - - -state 816 - - 420 stringexpr: B256STRINGVAR '[' floatexpr ',' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 886 - stringexpr go to state 259 - - -state 817 - - 419 stringexpr: B256STRINGVAR '[' floatexpr ']' . - - $default reduce using rule 419 (stringexpr) - - -state 818 - - 192 inputstmt: B256INPUT B256VARIABLE '[' floatexpr ',' . floatexpr ']' - 287 floatexpr: B256VARIABLE '[' floatexpr ',' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 887 - stringexpr go to state 259 - - -state 819 - - 191 inputstmt: B256INPUT B256VARIABLE '[' floatexpr ']' . - 286 floatexpr: B256VARIABLE '[' floatexpr ']' . - - '\n' reduce using rule 191 (inputstmt) - ':' reduce using rule 191 (inputstmt) - $default reduce using rule 286 (floatexpr) - - -state 820 - - 189 inputstmt: B256INPUT B256STRINGVAR '[' floatexpr ',' . floatexpr ']' - 420 stringexpr: B256STRINGVAR '[' floatexpr ',' . floatexpr ']' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 888 - stringexpr go to state 259 - - -state 821 - - 188 inputstmt: B256INPUT B256STRINGVAR '[' floatexpr ']' . - 419 stringexpr: B256STRINGVAR '[' floatexpr ']' . - - '\n' reduce using rule 188 (inputstmt) - ':' reduce using rule 188 (inputstmt) - $default reduce using rule 419 (stringexpr) - - -state 822 - - 136 plotstmt: B256PLOT '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 889 - - -state 823 - - 140 circlestmt: B256CIRCLE '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 890 - - -state 824 - - 139 circlestmt: B256CIRCLE floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 891 - stringexpr go to state 259 - - -state 825 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 892 - - -state 826 - - 141 rectstmt: B256RECT floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 893 - stringexpr go to state 259 - - -state 827 - - 252 floatlist: floatexpr ',' floatlist . - - $default reduce using rule 252 (floatlist) - - -state 828 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr . ',' floatexpr ',' B256VARIABLE ')' - 160 | B256STAMP '(' floatexpr ',' floatexpr . ',' B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 894 - - -state 829 - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr ',' . floatexpr ',' B256VARIABLE - 158 | B256STAMP floatexpr ',' floatexpr ',' . floatexpr ',' immediatelist - 159 | B256STAMP floatexpr ',' floatexpr ',' . B256VARIABLE - 161 | B256STAMP floatexpr ',' floatexpr ',' . immediatelist - 162 | B256STAMP floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' immediatelist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 895 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - '{' shift, and go to state 266 - - immediatelist go to state 896 - floatexpr go to state 897 - stringexpr go to state 259 - - -state 830 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 898 - - -state 831 - - 137 linestmt: B256LINE floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 899 - stringexpr go to state 259 - - -state 832 - - 107 graphsizestmt: B256GRAPHSIZE '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 900 - - -state 833 - - 119 forstmt: B256FOR B256VARIABLE '=' floatexpr B256TO . floatexpr - 120 | B256FOR B256VARIABLE '=' floatexpr B256TO . floatexpr B256STEP floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 901 - stringexpr go to state 259 - - -state 834 - - 166 openstmt: B256OPEN '(' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 902 - - -state 835 - - 169 writestmt: B256WRITE '(' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 903 - - -state 836 - - 128 colorstmt: B256SETCOLOR '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 904 - - -state 837 - - 127 colorstmt: B256SETCOLOR floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 905 - stringexpr go to state 259 - - -state 838 - - 96 dimstmt: B256DIM B256VARIABLE '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 906 - stringexpr go to state 259 - - -state 839 - - 97 dimstmt: B256DIM B256STRINGVAR '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 907 - stringexpr go to state 259 - - -state 840 - - 100 redimstmt: B256REDIM B256VARIABLE '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 908 - stringexpr go to state 259 - - -state 841 - - 101 redimstmt: B256REDIM B256STRINGVAR '(' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 909 - stringexpr go to state 259 - - -state 842 - - 133 soundstmt: B256SOUND '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 910 - - -state 843 - - 172 writelinestmt: B256WRITELINE '(' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 911 - - -state 844 - - 144 textstmt: B256TEXT '(' floatexpr ',' floatexpr . ',' stringexpr ')' - 146 | B256TEXT '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 912 - - -state 845 - - 143 textstmt: B256TEXT floatexpr ',' floatexpr ',' . stringexpr - 145 | B256TEXT floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 913 - stringexpr go to state 914 - - -state 846 - - 148 fontstmt: B256FONT '(' stringexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 915 - - -state 847 - - 147 fontstmt: B256FONT stringexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 916 - stringexpr go to state 259 - - -state 848 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr . ',' stringexpr ')' - 207 | B256PUTSLICE '(' floatexpr ',' floatexpr . ',' stringexpr ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 917 - - -state 849 - - 204 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' . stringexpr - 206 | B256PUTSLICE floatexpr ',' floatexpr ',' . stringexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 918 - - -state 850 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr . ',' stringexpr ')' - 211 | B256IMGLOAD '(' floatexpr ',' floatexpr . ',' floatexpr ',' stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' stringexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 919 - - -state 851 - - 208 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' . stringexpr - 210 | B256IMGLOAD floatexpr ',' floatexpr ',' . floatexpr ',' stringexpr - 212 | B256IMGLOAD floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 920 - stringexpr go to state 921 - - -state 852 - - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 922 - - -state 853 - - 216 spriteloadstmt: B256SPRITELOAD '(' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 923 - - -state 854 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 924 - - -state 855 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 925 - stringexpr go to state 259 - - -state 856 - - 221 spritemovestmt: B256SPRITEMOVE floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 926 - stringexpr go to state 259 - - -state 857 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 927 - - -state 858 - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 928 - stringexpr go to state 259 - - -state 859 - - 181 seekstmt: B256SEEK '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 929 - - -state 860 - - 237 netlistenstmt: B256NETLISTEN '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 930 - - -state 861 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr ',' stringexpr . ',' floatexpr ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 931 - - -state 862 - - 240 netconnectstmt: B256NETCONNECT '(' stringexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 932 - - -state 863 - - 241 netconnectstmt: B256NETCONNECT floatexpr ',' stringexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 933 - stringexpr go to state 259 - - -state 864 - - 244 netwritestmt: B256NETWRITE '(' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 934 - - -state 865 - - 115 arrayassign: B256VARIABLE '[' floatexpr ',' floatexpr . ']' '=' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 935 - - -state 866 - - 114 arrayassign: B256VARIABLE '[' floatexpr ']' '=' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 936 - stringexpr go to state 259 - - -state 867 - - 249 immediatestrlist: '{' stringlist '}' . - - $default reduce using rule 249 (immediatestrlist) - - -state 868 - - 413 stringlist: stringexpr ',' . stringlist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringlist go to state 937 - stringexpr go to state 757 - - -state 869 - - 112 strarrayassign: B256STRINGVAR '[' floatexpr ',' floatexpr . ']' '=' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 938 - - -state 870 - - 111 strarrayassign: B256STRINGVAR '[' floatexpr ']' '=' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 939 - - -state 871 - - 186 inputstmt: inputexpr ',' B256VARIABLE '[' floatexpr . ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 940 - - -state 872 - - 184 inputstmt: inputexpr ',' B256STRINGVAR '[' floatexpr . ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 941 - - -state 873 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 392 | B256PIXEL '(' floatexpr ',' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 942 - - -state 874 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 393 | B256RGB '(' floatexpr ',' floatexpr . ',' floatexpr ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 943 - - -state 875 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 426 | B256MID '(' stringexpr ',' floatexpr . ',' floatexpr ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 944 - - -state 876 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 427 | B256LEFT '(' stringexpr ',' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 945 - - -state 877 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 428 | B256RIGHT '(' stringexpr ',' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 946 - - -state 878 - - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 295 | B256INSTR '(' stringexpr ',' stringexpr . ')' - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 947 - - -state 879 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 429 | B256GETSLICE '(' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 948 - - -state 880 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 396 | B256SPRITECOLLIDE '(' floatexpr ',' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 949 - - -state 881 - - 284 floatexpr: B256VARIABLE '[' ',' '?' ']' . - - $default reduce using rule 284 (floatexpr) - - -state 882 - - 282 floatexpr: B256VARIABLE '[' '?' ',' ']' . - - $default reduce using rule 282 (floatexpr) - - -state 883 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 287 | B256VARIABLE '[' floatexpr ',' floatexpr . ']' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 950 - - -state 884 - - 285 floatexpr: B256STRINGVAR '[' ',' '?' ']' . - - $default reduce using rule 285 (floatexpr) - - -state 885 - - 283 floatexpr: B256STRINGVAR '[' '?' ',' ']' . - - $default reduce using rule 283 (floatexpr) - - -state 886 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 420 | B256STRINGVAR '[' floatexpr ',' floatexpr . ']' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 951 - - -state 887 - - 192 inputstmt: B256INPUT B256VARIABLE '[' floatexpr ',' floatexpr . ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 287 | B256VARIABLE '[' floatexpr ',' floatexpr . ']' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 952 - - -state 888 - - 189 inputstmt: B256INPUT B256STRINGVAR '[' floatexpr ',' floatexpr . ']' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 420 | B256STRINGVAR '[' floatexpr ',' floatexpr . ']' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ']' shift, and go to state 953 - - -state 889 - - 136 plotstmt: B256PLOT '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 136 (plotstmt) - - -state 890 - - 140 circlestmt: B256CIRCLE '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 954 - stringexpr go to state 259 - - -state 891 - - 139 circlestmt: B256CIRCLE floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 139 (circlestmt) - - -state 892 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 955 - stringexpr go to state 259 - - -state 893 - - 141 rectstmt: B256RECT floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 956 - - -state 894 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' . floatexpr ',' B256VARIABLE ')' - 160 | B256STAMP '(' floatexpr ',' floatexpr ',' . B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' B256VARIABLE ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 957 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 958 - stringexpr go to state 259 - - -state 895 - - 159 stampstmt: B256STAMP floatexpr ',' floatexpr ',' B256VARIABLE . - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - '[' shift, and go to state 453 - - '\n' reduce using rule 159 (stampstmt) - ':' reduce using rule 159 (stampstmt) - $default reduce using rule 288 (floatexpr) - - -state 896 - - 161 stampstmt: B256STAMP floatexpr ',' floatexpr ',' immediatelist . - - $default reduce using rule 161 (stampstmt) - - -state 897 - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr . ',' B256VARIABLE - 158 | B256STAMP floatexpr ',' floatexpr ',' floatexpr . ',' immediatelist - 162 | B256STAMP floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' immediatelist - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 959 - - -state 898 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 960 - stringexpr go to state 259 - - -state 899 - - 137 linestmt: B256LINE floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 961 - - -state 900 - - 107 graphsizestmt: B256GRAPHSIZE '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 107 (graphsizestmt) - - -state 901 - - 119 forstmt: B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr . - 120 | B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr . B256STEP floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256STEP shift, and go to state 962 - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 119 (forstmt) - - -state 902 - - 166 openstmt: B256OPEN '(' floatexpr ',' stringexpr ')' . - - $default reduce using rule 166 (openstmt) - - -state 903 - - 169 writestmt: B256WRITE '(' floatexpr ',' stringexpr ')' . - - $default reduce using rule 169 (writestmt) - - -state 904 - - 128 colorstmt: B256SETCOLOR '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 963 - stringexpr go to state 259 - - -state 905 - - 127 colorstmt: B256SETCOLOR floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 127 (colorstmt) - - -state 906 - - 96 dimstmt: B256DIM B256VARIABLE '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 964 - - -state 907 - - 97 dimstmt: B256DIM B256STRINGVAR '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 965 - - -state 908 - - 100 redimstmt: B256REDIM B256VARIABLE '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 966 - - -state 909 - - 101 redimstmt: B256REDIM B256STRINGVAR '(' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 967 - - -state 910 - - 133 soundstmt: B256SOUND '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 133 (soundstmt) - - -state 911 - - 172 writelinestmt: B256WRITELINE '(' floatexpr ',' stringexpr ')' . - - $default reduce using rule 172 (writelinestmt) - - -state 912 - - 144 textstmt: B256TEXT '(' floatexpr ',' floatexpr ',' . stringexpr ')' - 146 | B256TEXT '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 968 - stringexpr go to state 969 - - -state 913 - - 145 textstmt: B256TEXT floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 145 (textstmt) - - -state 914 - - 143 textstmt: B256TEXT floatexpr ',' floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 143 (textstmt) - - -state 915 - - 148 fontstmt: B256FONT '(' stringexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 970 - stringexpr go to state 259 - - -state 916 - - 147 fontstmt: B256FONT stringexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 147 (fontstmt) - - -state 917 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' . stringexpr ')' - 207 | B256PUTSLICE '(' floatexpr ',' floatexpr ',' . stringexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 971 - - -state 918 - - 204 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr . - 206 | B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr . ',' floatexpr - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 972 - - $default reduce using rule 204 (putslicestmt) - - -state 919 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' . stringexpr ')' - 211 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' . floatexpr ',' stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 973 - stringexpr go to state 974 - - -state 920 - - 210 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr . ',' stringexpr - 212 | B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 975 - - -state 921 - - 208 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 208 (imgloadstmt) - - -state 922 - - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 976 - stringexpr go to state 259 - - -state 923 - - 216 spriteloadstmt: B256SPRITELOAD '(' floatexpr ',' stringexpr ')' . - - $default reduce using rule 216 (spriteloadstmt) - - -state 924 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 977 - stringexpr go to state 259 - - -state 925 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 978 - - -state 926 - - 221 spritemovestmt: B256SPRITEMOVE floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 221 (spritemovestmt) - - -state 927 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 979 - stringexpr go to state 259 - - -state 928 - - 219 spriteplacestmt: B256SPRITEPLACE floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 219 (spriteplacestmt) - - -state 929 - - 181 seekstmt: B256SEEK '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 181 (seekstmt) - - -state 930 - - 237 netlistenstmt: B256NETLISTEN '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 237 (netlistenstmt) - - -state 931 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr ',' stringexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 980 - stringexpr go to state 259 - - -state 932 - - 240 netconnectstmt: B256NETCONNECT '(' stringexpr ',' floatexpr ')' . - - $default reduce using rule 240 (netconnectstmt) - - -state 933 - - 241 netconnectstmt: B256NETCONNECT floatexpr ',' stringexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 241 (netconnectstmt) - - -state 934 - - 244 netwritestmt: B256NETWRITE '(' floatexpr ',' stringexpr ')' . - - $default reduce using rule 244 (netwritestmt) - - -state 935 - - 115 arrayassign: B256VARIABLE '[' floatexpr ',' floatexpr ']' . '=' floatexpr - - '=' shift, and go to state 981 - - -state 936 - - 114 arrayassign: B256VARIABLE '[' floatexpr ']' '=' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 114 (arrayassign) - - -state 937 - - 413 stringlist: stringexpr ',' stringlist . - - $default reduce using rule 413 (stringlist) - - -state 938 - - 112 strarrayassign: B256STRINGVAR '[' floatexpr ',' floatexpr ']' . '=' stringexpr - - '=' shift, and go to state 982 - - -state 939 - - 111 strarrayassign: B256STRINGVAR '[' floatexpr ']' '=' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 111 (strarrayassign) - - -state 940 - - 186 inputstmt: inputexpr ',' B256VARIABLE '[' floatexpr ']' . - - $default reduce using rule 186 (inputstmt) - - -state 941 - - 184 inputstmt: inputexpr ',' B256STRINGVAR '[' floatexpr ']' . - - $default reduce using rule 184 (inputstmt) - - -state 942 - - 392 floatexpr: B256PIXEL '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 392 (floatexpr) - - -state 943 - - 393 floatexpr: B256RGB '(' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 983 - stringexpr go to state 259 - - -state 944 - - 426 stringexpr: B256MID '(' stringexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 984 - stringexpr go to state 259 - - -state 945 - - 427 stringexpr: B256LEFT '(' stringexpr ',' floatexpr ')' . - - $default reduce using rule 427 (stringexpr) - - -state 946 - - 428 stringexpr: B256RIGHT '(' stringexpr ',' floatexpr ')' . - - $default reduce using rule 428 (stringexpr) - - -state 947 - - 295 floatexpr: B256INSTR '(' stringexpr ',' stringexpr ')' . - - $default reduce using rule 295 (floatexpr) - - -state 948 - - 429 stringexpr: B256GETSLICE '(' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 985 - stringexpr go to state 259 - - -state 949 - - 396 floatexpr: B256SPRITECOLLIDE '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 396 (floatexpr) - - -state 950 - - 287 floatexpr: B256VARIABLE '[' floatexpr ',' floatexpr ']' . - - $default reduce using rule 287 (floatexpr) - - -state 951 - - 420 stringexpr: B256STRINGVAR '[' floatexpr ',' floatexpr ']' . - - $default reduce using rule 420 (stringexpr) - - -state 952 - - 192 inputstmt: B256INPUT B256VARIABLE '[' floatexpr ',' floatexpr ']' . - 287 floatexpr: B256VARIABLE '[' floatexpr ',' floatexpr ']' . - - '\n' reduce using rule 192 (inputstmt) - ':' reduce using rule 192 (inputstmt) - $default reduce using rule 287 (floatexpr) - - -state 953 - - 189 inputstmt: B256INPUT B256STRINGVAR '[' floatexpr ',' floatexpr ']' . - 420 stringexpr: B256STRINGVAR '[' floatexpr ',' floatexpr ']' . - - '\n' reduce using rule 189 (inputstmt) - ':' reduce using rule 189 (inputstmt) - $default reduce using rule 420 (stringexpr) - - -state 954 - - 140 circlestmt: B256CIRCLE '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 986 - - -state 955 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 987 - - -state 956 - - 141 rectstmt: B256RECT floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 988 - stringexpr go to state 259 - - -state 957 - - 160 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' B256VARIABLE . ')' - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - ')' shift, and go to state 989 - '[' shift, and go to state 453 - - $default reduce using rule 288 (floatexpr) - - -state 958 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr . ',' B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' B256VARIABLE ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 990 - - -state 959 - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' . B256VARIABLE - 158 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' . immediatelist - 162 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' immediatelist - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 991 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - '{' shift, and go to state 266 - - immediatelist go to state 992 - floatexpr go to state 993 - stringexpr go to state 259 - - -state 960 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 994 - - -state 961 - - 137 linestmt: B256LINE floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 995 - stringexpr go to state 259 - - -state 962 - - 120 forstmt: B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr B256STEP . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 996 - stringexpr go to state 259 - - -state 963 - - 128 colorstmt: B256SETCOLOR '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 997 - - -state 964 - - 96 dimstmt: B256DIM B256VARIABLE '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 96 (dimstmt) - - -state 965 - - 97 dimstmt: B256DIM B256STRINGVAR '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 97 (dimstmt) - - -state 966 - - 100 redimstmt: B256REDIM B256VARIABLE '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 100 (redimstmt) - - -state 967 - - 101 redimstmt: B256REDIM B256STRINGVAR '(' floatexpr ',' floatexpr ')' . - - $default reduce using rule 101 (redimstmt) - - -state 968 - - 146 textstmt: B256TEXT '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 998 - - -state 969 - - 144 textstmt: B256TEXT '(' floatexpr ',' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 999 - - -state 970 - - 148 fontstmt: B256FONT '(' stringexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1000 - - -state 971 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr . ')' - 207 | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr . ',' floatexpr ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ',' shift, and go to state 1001 - ')' shift, and go to state 1002 - - -state 972 - - 206 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1003 - stringexpr go to state 259 - - -state 973 - - 211 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr . ',' stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' stringexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1004 - - -state 974 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 1005 - - -state 975 - - 210 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' . stringexpr - 212 | B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1006 - stringexpr go to state 1007 - - -state 976 - - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1008 - - -state 977 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1009 - - -state 978 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1010 - stringexpr go to state 259 - - -state 979 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1011 - - -state 980 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr ',' stringexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1012 - - -state 981 - - 115 arrayassign: B256VARIABLE '[' floatexpr ',' floatexpr ']' '=' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1013 - stringexpr go to state 259 - - -state 982 - - 112 strarrayassign: B256STRINGVAR '[' floatexpr ',' floatexpr ']' '=' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 1014 - - -state 983 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 393 | B256RGB '(' floatexpr ',' floatexpr ',' floatexpr . ')' - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1015 - - -state 984 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 426 | B256MID '(' stringexpr ',' floatexpr ',' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1016 - - -state 985 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 429 | B256GETSLICE '(' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1017 - - -state 986 - - 140 circlestmt: B256CIRCLE '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 140 (circlestmt) - - -state 987 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1018 - stringexpr go to state 259 - - -state 988 - - 141 rectstmt: B256RECT floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 141 (rectstmt) - - -state 989 - - 160 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' B256VARIABLE ')' . - - $default reduce using rule 160 (stampstmt) - - -state 990 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' . B256VARIABLE ')' - 163 | B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' B256VARIABLE ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 1019 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1020 - stringexpr go to state 259 - - -state 991 - - 156 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE . - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - '[' shift, and go to state 453 - - '\n' reduce using rule 156 (stampstmt) - ':' reduce using rule 156 (stampstmt) - $default reduce using rule 288 (floatexpr) - - -state 992 - - 158 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' immediatelist . - - $default reduce using rule 158 (stampstmt) - - -state 993 - - 162 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' immediatelist - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1021 - - -state 994 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1022 - stringexpr go to state 259 - - -state 995 - - 137 linestmt: B256LINE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 137 (linestmt) - - -state 996 - - 120 forstmt: B256FOR B256VARIABLE '=' floatexpr B256TO floatexpr B256STEP floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 120 (forstmt) - - -state 997 - - 128 colorstmt: B256SETCOLOR '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 128 (colorstmt) - - -state 998 - - 146 textstmt: B256TEXT '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 146 (textstmt) - - -state 999 - - 144 textstmt: B256TEXT '(' floatexpr ',' floatexpr ',' stringexpr ')' . - - $default reduce using rule 144 (textstmt) - - -state 1000 - - 148 fontstmt: B256FONT '(' stringexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 148 (fontstmt) - - -state 1001 - - 207 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1023 - stringexpr go to state 259 - - -state 1002 - - 205 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ')' . - - $default reduce using rule 205 (putslicestmt) - - -state 1003 - - 206 putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 206 (putslicestmt) - - -state 1004 - - 211 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' . stringexpr ')' - 213 | B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1024 - stringexpr go to state 1025 - - -state 1005 - - 209 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' stringexpr ')' . - - $default reduce using rule 209 (imgloadstmt) - - -state 1006 - - 212 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' stringexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1026 - - -state 1007 - - 210 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 210 (imgloadstmt) - - -state 1008 - - 222 spritemovestmt: B256SPRITELOAD '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 222 (spritemovestmt) - - -state 1009 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ',' floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1027 - stringexpr go to state 259 - - -state 1010 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1028 - - -state 1011 - - 220 spriteplacestmt: B256SPRITEPLACE '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 220 (spriteplacestmt) - - -state 1012 - - 242 netconnectstmt: B256NETCONNECT '(' floatexpr ',' stringexpr ',' floatexpr ')' . - - $default reduce using rule 242 (netconnectstmt) - - -state 1013 - - 115 arrayassign: B256VARIABLE '[' floatexpr ',' floatexpr ']' '=' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 115 (arrayassign) - - -state 1014 - - 112 strarrayassign: B256STRINGVAR '[' floatexpr ',' floatexpr ']' '=' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 112 (strarrayassign) - - -state 1015 - - 393 floatexpr: B256RGB '(' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 393 (floatexpr) - - -state 1016 - - 426 stringexpr: B256MID '(' stringexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 426 (stringexpr) - - -state 1017 - - 429 stringexpr: B256GETSLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1029 - stringexpr go to state 259 - - -state 1018 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1030 - - -state 1019 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE . ')' - 280 floatexpr: B256VARIABLE . '[' '?' ']' - 282 | B256VARIABLE . '[' '?' ',' ']' - 284 | B256VARIABLE . '[' ',' '?' ']' - 286 | B256VARIABLE . '[' floatexpr ']' - 287 | B256VARIABLE . '[' floatexpr ',' floatexpr ']' - 288 | B256VARIABLE . - - ')' shift, and go to state 1031 - '[' shift, and go to state 453 - - $default reduce using rule 288 (floatexpr) - - -state 1020 - - 163 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' B256VARIABLE ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1032 - - -state 1021 - - 162 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . B256VARIABLE - 164 | B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . immediatelist - - B256VARIABLE shift, and go to state 1033 - '{' shift, and go to state 266 - - immediatelist go to state 1034 - - -state 1022 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1035 - - -state 1023 - - 207 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1036 - - -state 1024 - - 213 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' stringexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1037 - - -state 1025 - - 211 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 1038 - - -state 1026 - - 212 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . stringexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 1039 - - -state 1027 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ',' floatexpr ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ',' shift, and go to state 1040 - - -state 1028 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1041 - stringexpr go to state 259 - - -state 1029 - - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - 429 | B256GETSLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ')' - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1042 - - -state 1030 - - 142 rectstmt: B256RECT '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 142 (rectstmt) - - -state 1031 - - 157 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' . - - $default reduce using rule 157 (stampstmt) - - -state 1032 - - 163 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . B256VARIABLE ')' - - B256VARIABLE shift, and go to state 1043 - - -state 1033 - - 162 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE . - - $default reduce using rule 162 (stampstmt) - - -state 1034 - - 164 stampstmt: B256STAMP floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' immediatelist . - - $default reduce using rule 164 (stampstmt) - - -state 1035 - - 138 linestmt: B256LINE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 138 (linestmt) - - -state 1036 - - 207 putslicestmt: B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr ')' . - - $default reduce using rule 207 (putslicestmt) - - -state 1037 - - 213 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . stringexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 255 - stringexpr go to state 1044 - - -state 1038 - - 211 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' . - - $default reduce using rule 211 (imgloadstmt) - - -state 1039 - - 212 imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr . - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - - $default reduce using rule 212 (imgloadstmt) - - -state 1040 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' . floatexpr ')' - - B256KEY shift, and go to state 154 - B256PIXEL shift, and go to state 155 - B256RGB shift, and go to state 156 - B256READ shift, and go to state 157 - B256TOINT shift, and go to state 158 - B256TOSTRING shift, and go to state 159 - B256LENGTH shift, and go to state 160 - B256MID shift, and go to state 161 - B256LEFT shift, and go to state 162 - B256RIGHT shift, and go to state 163 - B256UPPER shift, and go to state 164 - B256LOWER shift, and go to state 165 - B256INSTR shift, and go to state 166 - B256CEIL shift, and go to state 167 - B256FLOOR shift, and go to state 168 - B256RAND shift, and go to state 169 - B256SIN shift, and go to state 170 - B256COS shift, and go to state 171 - B256TAN shift, and go to state 172 - B256ASIN shift, and go to state 173 - B256ACOS shift, and go to state 174 - B256ATAN shift, and go to state 175 - B256ABS shift, and go to state 176 - B256PI shift, and go to state 177 - B256DEGREES shift, and go to state 178 - B256RADIANS shift, and go to state 179 - B256LOG shift, and go to state 180 - B256LOGTEN shift, and go to state 181 - B256NOT shift, and go to state 182 - B256ASC shift, and go to state 183 - B256CHR shift, and go to state 184 - B256TOFLOAT shift, and go to state 185 - B256READLINE shift, and go to state 186 - B256BOOLEOF shift, and go to state 187 - B256YEAR shift, and go to state 188 - B256MONTH shift, and go to state 189 - B256DAY shift, and go to state 190 - B256HOUR shift, and go to state 191 - B256MINUTE shift, and go to state 192 - B256SECOND shift, and go to state 193 - B256GRAPHWIDTH shift, and go to state 194 - B256GRAPHHEIGHT shift, and go to state 195 - B256GETSLICE shift, and go to state 196 - B256SPRITECOLLIDE shift, and go to state 197 - B256SPRITEX shift, and go to state 198 - B256SPRITEY shift, and go to state 199 - B256SPRITEH shift, and go to state 200 - B256SPRITEW shift, and go to state 201 - B256SPRITEV shift, and go to state 202 - B256SIZE shift, and go to state 203 - B256EXISTS shift, and go to state 204 - B256BOOLTRUE shift, and go to state 205 - B256BOOLFALSE shift, and go to state 206 - B256MOUSEX shift, and go to state 207 - B256MOUSEY shift, and go to state 208 - B256MOUSEB shift, and go to state 209 - B256CLICKX shift, and go to state 210 - B256CLICKY shift, and go to state 211 - B256CLICKB shift, and go to state 212 - B256GETCOLOR shift, and go to state 213 - B256CLEAR shift, and go to state 214 - B256BLACK shift, and go to state 215 - B256WHITE shift, and go to state 216 - B256RED shift, and go to state 217 - B256DARKRED shift, and go to state 218 - B256GREEN shift, and go to state 219 - B256DARKGREEN shift, and go to state 220 - B256BLUE shift, and go to state 221 - B256DARKBLUE shift, and go to state 222 - B256CYAN shift, and go to state 223 - B256DARKCYAN shift, and go to state 224 - B256PURPLE shift, and go to state 225 - B256DARKPURPLE shift, and go to state 226 - B256YELLOW shift, and go to state 227 - B256DARKYELLOW shift, and go to state 228 - B256ORANGE shift, and go to state 229 - B256DARKORANGE shift, and go to state 230 - B256GREY shift, and go to state 231 - B256DARKGREY shift, and go to state 232 - B256CURRENTDIR shift, and go to state 233 - B256DBROW shift, and go to state 234 - B256DBINT shift, and go to state 235 - B256DBFLOAT shift, and go to state 236 - B256DBSTRING shift, and go to state 237 - B256LASTERROR shift, and go to state 238 - B256LASTERRORMESSAGE shift, and go to state 239 - B256LASTERRORLINE shift, and go to state 240 - B256LASTERROREXTRA shift, and go to state 241 - B256NETREAD shift, and go to state 242 - B256NETDATA shift, and go to state 243 - B256INTEGER shift, and go to state 244 - B256FLOAT shift, and go to state 245 - B256STRING shift, and go to state 246 - B256VARIABLE shift, and go to state 247 - B256STRINGVAR shift, and go to state 248 - '-' shift, and go to state 249 - '(' shift, and go to state 250 - - floatexpr go to state 1045 - stringexpr go to state 259 - - -state 1041 - - 217 spriteslicestmt: B256SPRITESLICE floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - - $default reduce using rule 217 (spriteslicestmt) - - -state 1042 - - 429 stringexpr: B256GETSLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 429 (stringexpr) - - -state 1043 - - 163 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE . ')' - - ')' shift, and go to state 1046 - - -state 1044 - - 213 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr . ')' - 266 floatexpr: stringexpr . '=' stringexpr - 267 | stringexpr . B256NE stringexpr - 268 | stringexpr . '<' stringexpr - 269 | stringexpr . '>' stringexpr - 270 | stringexpr . B256GTE stringexpr - 271 | stringexpr . B256LTE stringexpr - 415 stringexpr: stringexpr . '+' stringexpr - 417 | stringexpr . '+' floatexpr - - B256GTE shift, and go to state 475 - B256LTE shift, and go to state 476 - B256NE shift, and go to state 477 - '<' shift, and go to state 478 - '>' shift, and go to state 479 - '=' shift, and go to state 480 - '+' shift, and go to state 481 - ')' shift, and go to state 1047 - - -state 1045 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr . ')' - 254 floatexpr: floatexpr . '+' floatexpr - 255 | floatexpr . '-' floatexpr - 256 | floatexpr . '*' floatexpr - 257 | floatexpr . B256MOD floatexpr - 258 | floatexpr . B256INTDIV floatexpr - 259 | floatexpr . '/' floatexpr - 260 | floatexpr . '^' floatexpr - 262 | floatexpr . B256AND floatexpr - 263 | floatexpr . B256OR floatexpr - 264 | floatexpr . B256XOR floatexpr - 272 | floatexpr . '=' floatexpr - 273 | floatexpr . B256NE floatexpr - 274 | floatexpr . '<' floatexpr - 275 | floatexpr . '>' floatexpr - 276 | floatexpr . B256GTE floatexpr - 277 | floatexpr . B256LTE floatexpr - 416 stringexpr: floatexpr . '+' stringexpr - - B256GTE shift, and go to state 458 - B256LTE shift, and go to state 459 - B256NE shift, and go to state 460 - B256AND shift, and go to state 461 - B256OR shift, and go to state 462 - B256XOR shift, and go to state 463 - B256MOD shift, and go to state 464 - B256INTDIV shift, and go to state 465 - '<' shift, and go to state 466 - '>' shift, and go to state 467 - '=' shift, and go to state 468 - '-' shift, and go to state 469 - '+' shift, and go to state 470 - '*' shift, and go to state 471 - '/' shift, and go to state 472 - '^' shift, and go to state 473 - ')' shift, and go to state 1048 - - -state 1046 - - 163 stampstmt: B256STAMP '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' B256VARIABLE ')' . - - $default reduce using rule 163 (stampstmt) - - -state 1047 - - 213 imgloadstmt: B256IMGLOAD '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' stringexpr ')' . - - $default reduce using rule 213 (imgloadstmt) - - -state 1048 - - 218 spriteslicestmt: B256SPRITESLICE '(' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ',' floatexpr ')' . - - $default reduce using rule 218 (spriteslicestmt) diff -Nru basic256-0.9.6.32/LEX/basicParse.tab.c basic256-0.9.6.48/LEX/basicParse.tab.c --- basic256-0.9.6.32/LEX/basicParse.tab.c 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/LEX/basicParse.tab.c 2010-11-03 16:24:38.000000000 +0100 @@ -500,16 +500,27 @@ B256NETWRITE = 426, B256NETCLOSE = 427, B256NETDATA = 428, - B256LINENUM = 429, - B256INTEGER = 430, - B256FLOAT = 431, - B256STRING = 432, - B256VARIABLE = 433, - B256STRINGVAR = 434, - B256NEWVAR = 435, - B256COLOR = 436, - B256LABEL = 437, - B256UMINUS = 438 + B256NETADDRESS = 429, + B256KILL = 430, + B256MD5 = 431, + B256SETSETTING = 432, + B256GETSETTING = 433, + B256PORTIN = 434, + B256PORTOUT = 435, + B256BINARYOR = 436, + B256BINARYAND = 437, + B256BINARYNOT = 438, + B256IMGSAVE = 439, + B256LINENUM = 440, + B256INTEGER = 441, + B256FLOAT = 442, + B256STRING = 443, + B256VARIABLE = 444, + B256STRINGVAR = 445, + B256NEWVAR = 446, + B256COLOR = 447, + B256LABEL = 448, + B256UMINUS = 449 }; #endif @@ -520,7 +531,7 @@ { /* Line 214 of yacc.c */ -#line 284 "basicParse.y" +#line 288 "basicParse.y" int number; double floatnum; @@ -529,7 +540,7 @@ /* Line 214 of yacc.c */ -#line 533 "basicParse.tab.c" +#line 544 "basicParse.tab.c" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ @@ -541,7 +552,7 @@ /* Line 264 of yacc.c */ -#line 545 "basicParse.tab.c" +#line 556 "basicParse.tab.c" #ifdef short # undef short @@ -754,22 +765,22 @@ #endif /* YYFINAL -- State number of the termination state. */ -#define YYFINAL 357 +#define YYFINAL 378 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 13982 +#define YYLAST 17677 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 203 +#define YYNTOKENS 214 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 89 +#define YYNNTS 93 /* YYNRULES -- Number of rules. */ -#define YYNRULES 446 +#define YYNRULES 467 /* YYNRULES -- Number of states. */ -#define YYNSTATES 1049 +#define YYNSTATES 1114 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 438 +#define YYMAXUTOK 449 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) @@ -778,18 +789,18 @@ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 192, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 203, 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, - 194, 196, 188, 187, 195, 186, 2, 189, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 193, 199, - 183, 185, 184, 202, 2, 2, 2, 2, 2, 2, + 205, 207, 199, 198, 206, 197, 2, 200, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 204, 210, + 194, 196, 195, 213, 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, 197, 2, 198, 191, 2, 2, 2, 2, 2, + 2, 208, 2, 209, 202, 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, 200, 2, 201, 2, 2, 2, 2, + 2, 2, 2, 211, 2, 212, 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, @@ -820,7 +831,8 @@ 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 182, 190 + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 191, 192, 193, 201 }; #if YYDEBUG @@ -837,280 +849,294 @@ 131, 133, 135, 137, 139, 141, 143, 145, 147, 149, 151, 153, 155, 157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181, 183, 185, 187, 189, - 191, 193, 195, 197, 199, 201, 205, 209, 217, 225, - 229, 233, 241, 249, 252, 254, 256, 258, 263, 270, - 272, 274, 277, 284, 293, 297, 304, 313, 317, 321, - 325, 332, 341, 344, 347, 350, 352, 355, 357, 364, - 373, 376, 381, 384, 387, 394, 399, 404, 411, 420, - 431, 438, 447, 456, 467, 474, 483, 490, 499, 506, - 515, 518, 521, 524, 527, 530, 535, 538, 547, 558, - 567, 574, 583, 590, 601, 614, 625, 628, 635, 640, - 643, 650, 655, 658, 665, 670, 672, 676, 679, 681, - 685, 688, 691, 698, 703, 707, 714, 718, 725, 728, - 734, 742, 745, 751, 759, 762, 764, 767, 770, 774, - 778, 781, 783, 787, 789, 793, 800, 809, 818, 829, - 836, 845, 854, 865, 876, 889, 892, 897, 904, 915, - 928, 935, 944, 951, 960, 963, 966, 968, 972, 975, - 978, 981, 983, 987, 990, 993, 995, 999, 1002, 1009, - 1014, 1019, 1026, 1033, 1042, 1045, 1052, 1057, 1059, 1063, - 1066, 1070, 1074, 1076, 1080, 1084, 1088, 1092, 1096, 1100, - 1104, 1108, 1112, 1115, 1119, 1123, 1127, 1130, 1134, 1138, - 1142, 1146, 1150, 1154, 1158, 1162, 1166, 1170, 1174, 1178, - 1180, 1182, 1187, 1192, 1198, 1204, 1210, 1216, 1221, 1228, - 1230, 1235, 1240, 1245, 1250, 1255, 1260, 1267, 1272, 1277, - 1282, 1287, 1292, 1297, 1302, 1307, 1312, 1317, 1322, 1327, - 1332, 1334, 1338, 1340, 1344, 1346, 1350, 1352, 1356, 1358, - 1362, 1367, 1372, 1374, 1378, 1380, 1384, 1386, 1390, 1392, - 1396, 1398, 1402, 1404, 1408, 1410, 1414, 1416, 1420, 1422, - 1426, 1431, 1433, 1437, 1439, 1443, 1445, 1449, 1451, 1455, - 1457, 1461, 1463, 1467, 1469, 1473, 1475, 1479, 1481, 1485, - 1487, 1491, 1493, 1497, 1499, 1503, 1505, 1509, 1511, 1515, - 1517, 1521, 1523, 1527, 1529, 1533, 1535, 1539, 1541, 1545, - 1547, 1551, 1553, 1557, 1559, 1563, 1565, 1569, 1571, 1575, - 1577, 1581, 1583, 1587, 1594, 1603, 1605, 1609, 1616, 1621, - 1626, 1631, 1636, 1641, 1645, 1650, 1655, 1657, 1661, 1663, - 1667, 1669, 1673, 1678, 1680, 1684, 1688, 1692, 1696, 1700, - 1702, 1707, 1714, 1716, 1721, 1726, 1731, 1736, 1745, 1752, - 1759, 1770, 1772, 1776, 1781, 1783, 1787, 1792, 1794, 1798, - 1803, 1805, 1809, 1811, 1815, 1817, 1821 + 191, 193, 195, 197, 199, 201, 203, 205, 207, 209, + 213, 217, 225, 233, 237, 241, 249, 257, 260, 262, + 264, 266, 271, 278, 280, 282, 285, 292, 301, 305, + 312, 321, 325, 329, 333, 340, 349, 352, 355, 358, + 360, 363, 365, 372, 381, 384, 389, 392, 395, 402, + 407, 412, 419, 428, 439, 446, 455, 464, 475, 482, + 491, 498, 507, 514, 523, 526, 529, 532, 535, 538, + 543, 546, 555, 566, 575, 582, 591, 598, 609, 622, + 633, 636, 643, 648, 651, 658, 663, 666, 673, 678, + 680, 684, 687, 689, 693, 696, 699, 706, 711, 715, + 722, 726, 733, 736, 742, 750, 753, 759, 767, 770, + 772, 775, 778, 782, 786, 789, 791, 795, 797, 801, + 808, 817, 826, 837, 844, 853, 862, 873, 884, 897, + 900, 905, 912, 923, 936, 943, 952, 959, 968, 971, + 974, 976, 980, 983, 986, 989, 991, 995, 998, 1001, + 1003, 1007, 1010, 1017, 1022, 1027, 1034, 1041, 1050, 1053, + 1060, 1065, 1067, 1071, 1074, 1077, 1084, 1091, 1100, 1105, + 1112, 1115, 1122, 1127, 1131, 1135, 1137, 1141, 1145, 1149, + 1153, 1157, 1161, 1165, 1169, 1173, 1177, 1181, 1184, 1187, + 1191, 1195, 1199, 1202, 1206, 1210, 1214, 1218, 1222, 1226, + 1230, 1234, 1238, 1242, 1246, 1250, 1252, 1254, 1259, 1264, + 1270, 1276, 1282, 1288, 1293, 1300, 1302, 1307, 1312, 1317, + 1322, 1327, 1332, 1339, 1344, 1349, 1354, 1359, 1364, 1369, + 1374, 1379, 1384, 1389, 1394, 1399, 1404, 1406, 1410, 1412, + 1416, 1418, 1422, 1424, 1428, 1430, 1434, 1439, 1444, 1446, + 1450, 1452, 1456, 1458, 1462, 1464, 1468, 1470, 1474, 1476, + 1480, 1482, 1486, 1488, 1492, 1494, 1498, 1503, 1505, 1509, + 1511, 1515, 1517, 1521, 1523, 1527, 1529, 1533, 1535, 1539, + 1541, 1545, 1547, 1551, 1553, 1557, 1559, 1563, 1565, 1569, + 1571, 1575, 1577, 1581, 1583, 1587, 1589, 1593, 1595, 1599, + 1601, 1605, 1607, 1611, 1613, 1617, 1619, 1623, 1625, 1629, + 1631, 1635, 1637, 1641, 1643, 1647, 1649, 1653, 1655, 1659, + 1666, 1675, 1677, 1681, 1688, 1693, 1698, 1703, 1708, 1713, + 1717, 1722, 1727, 1729, 1733, 1735, 1739, 1741, 1745, 1750, + 1755, 1757, 1761, 1765, 1769, 1773, 1777, 1779, 1784, 1791, + 1793, 1798, 1803, 1808, 1813, 1822, 1829, 1836, 1847, 1849, + 1853, 1858, 1860, 1864, 1869, 1871, 1875, 1880, 1882, 1886, + 1888, 1892, 1894, 1898, 1903, 1905, 1909, 1914 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 204, 0, -1, 205, 192, -1, 205, 192, 204, -1, - 206, 207, -1, 207, -1, 182, -1, 208, -1, 209, - -1, 210, -1, 212, -1, 213, -1, 215, -1, 216, - -1, 217, -1, 218, -1, -1, 228, 20, 218, -1, - 228, 20, -1, 21, -1, 22, -1, 40, 19, -1, - 211, -1, 23, 289, -1, 24, -1, 40, 23, -1, - 214, -1, 25, -1, 26, 289, -1, 219, -1, 218, - 193, 219, -1, 235, -1, 236, -1, 237, -1, 238, - -1, 239, -1, 261, -1, 242, -1, 244, -1, 245, - -1, 251, -1, 252, -1, 243, -1, 231, -1, 232, - -1, 233, -1, 234, -1, 240, -1, 259, -1, 227, - -1, 223, -1, 226, -1, 224, -1, 225, -1, 220, - -1, 221, -1, 222, -1, 230, -1, 229, -1, 253, - -1, 254, -1, 255, -1, 256, -1, 257, -1, 241, - -1, 246, -1, 247, -1, 248, -1, 249, -1, 250, - -1, 262, -1, 263, -1, 264, -1, 265, -1, 266, - -1, 267, -1, 268, -1, 269, -1, 270, -1, 271, - -1, 272, -1, 273, -1, 258, -1, 274, -1, 275, - -1, 276, -1, 277, -1, 278, -1, 279, -1, 280, - -1, 281, -1, 282, -1, 283, -1, 284, -1, 285, - -1, 45, 178, 289, -1, 45, 179, 289, -1, 45, - 178, 194, 289, 195, 289, 196, -1, 45, 179, 194, - 289, 195, 289, 196, -1, 46, 178, 289, -1, 46, - 179, 289, -1, 46, 178, 194, 289, 195, 289, 196, - -1, 46, 179, 194, 289, 195, 289, 196, -1, 76, - 289, -1, 17, -1, 18, -1, 14, -1, 15, 289, - 195, 289, -1, 15, 194, 289, 195, 289, 196, -1, - 16, -1, 40, -1, 19, 289, -1, 179, 197, 289, - 198, 185, 291, -1, 179, 197, 289, 195, 289, 198, - 185, 291, -1, 179, 185, 286, -1, 178, 197, 289, - 198, 185, 289, -1, 178, 197, 289, 195, 289, 198, - 185, 289, -1, 178, 185, 287, -1, 178, 185, 289, - -1, 179, 185, 291, -1, 27, 178, 185, 289, 28, - 289, -1, 27, 178, 185, 289, 28, 289, 29, 289, - -1, 30, 178, -1, 36, 178, -1, 37, 178, -1, - 163, -1, 162, 178, -1, 38, -1, 41, 289, 195, - 289, 195, 289, -1, 41, 194, 289, 195, 289, 195, - 289, 196, -1, 41, 289, -1, 77, 194, 178, 196, - -1, 77, 178, -1, 77, 287, -1, 77, 194, 289, - 195, 289, 196, -1, 77, 289, 195, 289, -1, 8, - 289, 195, 289, -1, 8, 194, 289, 195, 289, 196, - -1, 13, 289, 195, 289, 195, 289, 195, 289, -1, - 13, 194, 289, 195, 289, 195, 289, 195, 289, 196, - -1, 9, 289, 195, 289, 195, 289, -1, 9, 194, - 289, 195, 289, 195, 289, 196, -1, 10, 289, 195, - 289, 195, 289, 195, 289, -1, 10, 194, 289, 195, - 289, 195, 289, 195, 289, 196, -1, 92, 289, 195, - 289, 195, 291, -1, 92, 194, 289, 195, 289, 195, - 291, 196, -1, 92, 289, 195, 289, 195, 289, -1, - 92, 194, 289, 195, 289, 195, 289, 196, -1, 93, - 291, 195, 289, 195, 289, -1, 93, 194, 291, 195, - 289, 195, 289, 196, -1, 94, 291, -1, 94, 289, - -1, 95, 291, -1, 96, 289, -1, 11, 178, -1, - 11, 194, 178, 196, -1, 11, 287, -1, 12, 289, - 195, 289, 195, 289, 195, 178, -1, 12, 194, 289, - 195, 289, 195, 289, 195, 178, 196, -1, 12, 289, - 195, 289, 195, 289, 195, 287, -1, 12, 289, 195, - 289, 195, 178, -1, 12, 194, 289, 195, 289, 195, - 178, 196, -1, 12, 289, 195, 289, 195, 287, -1, - 12, 289, 195, 289, 195, 289, 195, 289, 195, 178, - -1, 12, 194, 289, 195, 289, 195, 289, 195, 289, - 195, 178, 196, -1, 12, 289, 195, 289, 195, 289, - 195, 289, 195, 287, -1, 31, 291, -1, 31, 194, - 289, 195, 291, 196, -1, 31, 289, 195, 291, -1, - 33, 291, -1, 33, 194, 289, 195, 291, 196, -1, - 33, 289, 195, 291, -1, 82, 291, -1, 82, 194, - 289, 195, 291, 196, -1, 82, 289, 195, 291, -1, - 34, -1, 34, 194, 196, -1, 34, 289, -1, 35, - -1, 35, 194, 196, -1, 35, 289, -1, 119, 289, - -1, 119, 194, 289, 195, 289, 196, -1, 119, 289, - 195, 289, -1, 260, 195, 179, -1, 260, 195, 179, - 197, 289, 198, -1, 260, 195, 178, -1, 260, 195, - 178, 197, 289, 198, -1, 4, 179, -1, 4, 179, - 197, 289, 198, -1, 4, 179, 197, 289, 195, 289, - 198, -1, 4, 178, -1, 4, 178, 197, 289, 198, - -1, 4, 178, 197, 289, 195, 289, 198, -1, 4, - 291, -1, 3, -1, 3, 291, -1, 3, 289, -1, - 3, 291, 199, -1, 3, 289, 199, -1, 115, 291, - -1, 116, -1, 116, 194, 196, -1, 117, -1, 117, - 194, 196, -1, 100, 289, 195, 289, 195, 291, -1, - 100, 194, 289, 195, 289, 195, 291, 196, -1, 100, - 289, 195, 289, 195, 291, 195, 289, -1, 100, 194, - 289, 195, 289, 195, 291, 195, 289, 196, -1, 101, - 289, 195, 289, 195, 291, -1, 101, 194, 289, 195, - 289, 195, 291, 196, -1, 101, 289, 195, 289, 195, - 289, 195, 291, -1, 101, 194, 289, 195, 289, 195, - 289, 195, 291, 196, -1, 101, 289, 195, 289, 195, - 289, 195, 289, 195, 291, -1, 101, 194, 289, 195, - 289, 195, 289, 195, 289, 195, 291, 196, -1, 102, - 289, -1, 103, 289, 195, 291, -1, 103, 194, 289, - 195, 291, 196, -1, 104, 289, 195, 289, 195, 289, - 195, 289, 195, 289, -1, 104, 194, 289, 195, 289, - 195, 289, 195, 289, 195, 289, 196, -1, 108, 289, - 195, 289, 195, 289, -1, 108, 194, 289, 195, 289, - 195, 289, 196, -1, 105, 289, 195, 289, 195, 289, - -1, 103, 194, 289, 195, 289, 195, 289, 196, -1, - 106, 289, -1, 107, 289, -1, 126, -1, 126, 194, - 196, -1, 150, 291, -1, 152, 289, -1, 153, 291, - -1, 154, -1, 154, 194, 196, -1, 155, 291, -1, - 156, 291, -1, 157, -1, 157, 194, 196, -1, 168, - 289, -1, 168, 194, 289, 195, 289, 196, -1, 168, - 289, 195, 289, -1, 169, 291, 195, 289, -1, 169, - 194, 291, 195, 289, 196, -1, 169, 289, 195, 291, - 195, 289, -1, 169, 194, 289, 195, 291, 195, 289, - 196, -1, 171, 291, -1, 171, 194, 289, 195, 291, - 196, -1, 171, 289, 195, 291, -1, 172, -1, 172, - 194, 196, -1, 172, 289, -1, 200, 290, 201, -1, - 200, 288, 201, -1, 289, -1, 289, 195, 288, -1, - 194, 289, 196, -1, 289, 187, 289, -1, 289, 186, - 289, -1, 289, 188, 289, -1, 289, 84, 289, -1, - 289, 85, 289, -1, 289, 189, 289, -1, 289, 191, - 289, -1, 186, 289, -1, 289, 72, 289, -1, 289, - 73, 289, -1, 289, 74, 289, -1, 75, 289, -1, - 291, 185, 291, -1, 291, 44, 291, -1, 291, 183, - 291, -1, 291, 184, 291, -1, 291, 42, 291, -1, - 291, 43, 291, -1, 289, 185, 289, -1, 289, 44, - 289, -1, 289, 183, 289, -1, 289, 184, 289, -1, - 289, 42, 289, -1, 289, 43, 289, -1, 176, -1, - 175, -1, 178, 197, 202, 198, -1, 179, 197, 202, - 198, -1, 178, 197, 202, 195, 198, -1, 179, 197, - 202, 195, 198, -1, 178, 197, 195, 202, 198, -1, - 179, 197, 195, 202, 198, -1, 178, 197, 289, 198, - -1, 178, 197, 289, 195, 289, 198, -1, 178, -1, - 48, 194, 289, 196, -1, 48, 194, 291, 196, -1, - 80, 194, 289, 196, -1, 80, 194, 291, 196, -1, - 50, 194, 291, 196, -1, 78, 194, 291, 196, -1, - 56, 194, 291, 195, 291, 196, -1, 57, 194, 289, - 196, -1, 58, 194, 289, 196, -1, 60, 194, 289, - 196, -1, 61, 194, 289, 196, -1, 62, 194, 289, - 196, -1, 63, 194, 289, 196, -1, 64, 194, 289, - 196, -1, 65, 194, 289, 196, -1, 68, 194, 289, - 196, -1, 69, 194, 289, 196, -1, 70, 194, 289, - 196, -1, 71, 194, 289, 196, -1, 66, 194, 289, - 196, -1, 59, -1, 59, 194, 196, -1, 67, -1, - 67, 194, 196, -1, 121, -1, 121, 194, 196, -1, - 122, -1, 122, 194, 196, -1, 83, -1, 83, 194, - 196, -1, 83, 194, 289, 196, -1, 120, 194, 291, - 196, -1, 86, -1, 86, 194, 196, -1, 87, -1, - 87, 194, 196, -1, 88, -1, 88, 194, 196, -1, - 89, -1, 89, 194, 196, -1, 90, -1, 90, 194, - 196, -1, 91, -1, 91, 194, 196, -1, 97, -1, - 97, 194, 196, -1, 98, -1, 98, 194, 196, -1, - 118, -1, 118, 194, 196, -1, 118, 194, 289, 196, - -1, 5, -1, 5, 194, 196, -1, 123, -1, 123, - 194, 196, -1, 124, -1, 124, 194, 196, -1, 125, - -1, 125, 194, 196, -1, 127, -1, 127, 194, 196, - -1, 128, -1, 128, 194, 196, -1, 129, -1, 129, - 194, 196, -1, 131, -1, 131, 194, 196, -1, 132, - -1, 132, 194, 196, -1, 133, -1, 133, 194, 196, - -1, 134, -1, 134, 194, 196, -1, 135, -1, 135, - 194, 196, -1, 136, -1, 136, 194, 196, -1, 137, - -1, 137, 194, 196, -1, 138, -1, 138, 194, 196, - -1, 139, -1, 139, 194, 196, -1, 140, -1, 140, - 194, 196, -1, 141, -1, 141, 194, 196, -1, 142, - -1, 142, 194, 196, -1, 143, -1, 143, 194, 196, - -1, 144, -1, 144, 194, 196, -1, 145, -1, 145, - 194, 196, -1, 146, -1, 146, 194, 196, -1, 147, - -1, 147, 194, 196, -1, 148, -1, 148, 194, 196, - -1, 149, -1, 149, 194, 196, -1, 6, 194, 289, - 195, 289, 196, -1, 7, 194, 289, 195, 289, 195, - 289, 196, -1, 130, -1, 130, 194, 196, -1, 109, - 194, 289, 195, 289, 196, -1, 110, 194, 289, 196, - -1, 111, 194, 289, 196, -1, 112, 194, 289, 196, - -1, 113, 194, 289, 196, -1, 114, 194, 289, 196, - -1, 158, 194, 196, -1, 159, 194, 289, 196, -1, - 160, 194, 289, 196, -1, 164, -1, 164, 194, 196, - -1, 166, -1, 166, 194, 196, -1, 173, -1, 173, - 194, 196, -1, 173, 194, 289, 196, -1, 291, -1, - 291, 195, 290, -1, 194, 291, 196, -1, 291, 187, - 291, -1, 289, 187, 291, -1, 291, 187, 289, -1, - 177, -1, 179, 197, 289, 198, -1, 179, 197, 289, - 195, 289, 198, -1, 179, -1, 79, 194, 289, 196, - -1, 49, 194, 289, 196, -1, 54, 194, 291, 196, - -1, 55, 194, 291, 196, -1, 51, 194, 291, 195, - 289, 195, 289, 196, -1, 52, 194, 291, 195, 289, - 196, -1, 53, 194, 291, 195, 289, 196, -1, 99, - 194, 289, 195, 289, 195, 289, 195, 289, 196, -1, - 32, -1, 32, 194, 196, -1, 32, 194, 289, 196, - -1, 81, -1, 81, 194, 196, -1, 81, 194, 289, - 196, -1, 151, -1, 151, 194, 196, -1, 161, 194, - 289, 196, -1, 165, -1, 165, 194, 196, -1, 167, - -1, 167, 194, 196, -1, 170, -1, 170, 194, 196, - -1, 170, 194, 289, 196, -1 + 215, 0, -1, 216, 203, -1, 216, 203, 215, -1, + 217, 218, -1, 218, -1, 193, -1, 219, -1, 220, + -1, 221, -1, 223, -1, 224, -1, 226, -1, 227, + -1, 228, -1, 229, -1, -1, 239, 20, 229, -1, + 239, 20, -1, 21, -1, 22, -1, 40, 19, -1, + 222, -1, 23, 304, -1, 24, -1, 40, 23, -1, + 225, -1, 25, -1, 26, 304, -1, 230, -1, 229, + 204, 230, -1, 246, -1, 247, -1, 248, -1, 249, + -1, 250, -1, 272, -1, 253, -1, 255, -1, 256, + -1, 262, -1, 263, -1, 254, -1, 242, -1, 243, + -1, 244, -1, 245, -1, 251, -1, 270, -1, 238, + -1, 234, -1, 237, -1, 235, -1, 236, -1, 231, + -1, 232, -1, 233, -1, 241, -1, 240, -1, 264, + -1, 265, -1, 266, -1, 267, -1, 268, -1, 297, + -1, 252, -1, 257, -1, 258, -1, 259, -1, 260, + -1, 261, -1, 273, -1, 274, -1, 275, -1, 276, + -1, 277, -1, 278, -1, 279, -1, 280, -1, 281, + -1, 282, -1, 283, -1, 284, -1, 269, -1, 285, + -1, 286, -1, 287, -1, 288, -1, 289, -1, 290, + -1, 291, -1, 292, -1, 293, -1, 294, -1, 295, + -1, 296, -1, 298, -1, 299, -1, 300, -1, 45, + 189, 304, -1, 45, 190, 304, -1, 45, 189, 205, + 304, 206, 304, 207, -1, 45, 190, 205, 304, 206, + 304, 207, -1, 46, 189, 304, -1, 46, 190, 304, + -1, 46, 189, 205, 304, 206, 304, 207, -1, 46, + 190, 205, 304, 206, 304, 207, -1, 76, 304, -1, + 17, -1, 18, -1, 14, -1, 15, 304, 206, 304, + -1, 15, 205, 304, 206, 304, 207, -1, 16, -1, + 40, -1, 19, 304, -1, 190, 208, 304, 209, 196, + 306, -1, 190, 208, 304, 206, 304, 209, 196, 306, + -1, 190, 196, 301, -1, 189, 208, 304, 209, 196, + 304, -1, 189, 208, 304, 206, 304, 209, 196, 304, + -1, 189, 196, 302, -1, 189, 196, 304, -1, 190, + 196, 306, -1, 27, 189, 196, 304, 28, 304, -1, + 27, 189, 196, 304, 28, 304, 29, 304, -1, 30, + 189, -1, 36, 189, -1, 37, 189, -1, 163, -1, + 162, 189, -1, 38, -1, 41, 304, 206, 304, 206, + 304, -1, 41, 205, 304, 206, 304, 206, 304, 207, + -1, 41, 304, -1, 77, 205, 189, 207, -1, 77, + 189, -1, 77, 302, -1, 77, 205, 304, 206, 304, + 207, -1, 77, 304, 206, 304, -1, 8, 304, 206, + 304, -1, 8, 205, 304, 206, 304, 207, -1, 13, + 304, 206, 304, 206, 304, 206, 304, -1, 13, 205, + 304, 206, 304, 206, 304, 206, 304, 207, -1, 9, + 304, 206, 304, 206, 304, -1, 9, 205, 304, 206, + 304, 206, 304, 207, -1, 10, 304, 206, 304, 206, + 304, 206, 304, -1, 10, 205, 304, 206, 304, 206, + 304, 206, 304, 207, -1, 92, 304, 206, 304, 206, + 306, -1, 92, 205, 304, 206, 304, 206, 306, 207, + -1, 92, 304, 206, 304, 206, 304, -1, 92, 205, + 304, 206, 304, 206, 304, 207, -1, 93, 306, 206, + 304, 206, 304, -1, 93, 205, 306, 206, 304, 206, + 304, 207, -1, 94, 306, -1, 94, 304, -1, 95, + 306, -1, 96, 304, -1, 11, 189, -1, 11, 205, + 189, 207, -1, 11, 302, -1, 12, 304, 206, 304, + 206, 304, 206, 189, -1, 12, 205, 304, 206, 304, + 206, 304, 206, 189, 207, -1, 12, 304, 206, 304, + 206, 304, 206, 302, -1, 12, 304, 206, 304, 206, + 189, -1, 12, 205, 304, 206, 304, 206, 189, 207, + -1, 12, 304, 206, 304, 206, 302, -1, 12, 304, + 206, 304, 206, 304, 206, 304, 206, 189, -1, 12, + 205, 304, 206, 304, 206, 304, 206, 304, 206, 189, + 207, -1, 12, 304, 206, 304, 206, 304, 206, 304, + 206, 302, -1, 31, 306, -1, 31, 205, 304, 206, + 306, 207, -1, 31, 304, 206, 306, -1, 33, 306, + -1, 33, 205, 304, 206, 306, 207, -1, 33, 304, + 206, 306, -1, 82, 306, -1, 82, 205, 304, 206, + 306, 207, -1, 82, 304, 206, 306, -1, 34, -1, + 34, 205, 207, -1, 34, 304, -1, 35, -1, 35, + 205, 207, -1, 35, 304, -1, 119, 304, -1, 119, + 205, 304, 206, 304, 207, -1, 119, 304, 206, 304, + -1, 271, 206, 190, -1, 271, 206, 190, 208, 304, + 209, -1, 271, 206, 189, -1, 271, 206, 189, 208, + 304, 209, -1, 4, 190, -1, 4, 190, 208, 304, + 209, -1, 4, 190, 208, 304, 206, 304, 209, -1, + 4, 189, -1, 4, 189, 208, 304, 209, -1, 4, + 189, 208, 304, 206, 304, 209, -1, 4, 306, -1, + 3, -1, 3, 306, -1, 3, 304, -1, 3, 306, + 210, -1, 3, 304, 210, -1, 115, 306, -1, 116, + -1, 116, 205, 207, -1, 117, -1, 117, 205, 207, + -1, 100, 304, 206, 304, 206, 306, -1, 100, 205, + 304, 206, 304, 206, 306, 207, -1, 100, 304, 206, + 304, 206, 306, 206, 304, -1, 100, 205, 304, 206, + 304, 206, 306, 206, 304, 207, -1, 101, 304, 206, + 304, 206, 306, -1, 101, 205, 304, 206, 304, 206, + 306, 207, -1, 101, 304, 206, 304, 206, 304, 206, + 306, -1, 101, 205, 304, 206, 304, 206, 304, 206, + 306, 207, -1, 101, 304, 206, 304, 206, 304, 206, + 304, 206, 306, -1, 101, 205, 304, 206, 304, 206, + 304, 206, 304, 206, 306, 207, -1, 102, 304, -1, + 103, 304, 206, 306, -1, 103, 205, 304, 206, 306, + 207, -1, 104, 304, 206, 304, 206, 304, 206, 304, + 206, 304, -1, 104, 205, 304, 206, 304, 206, 304, + 206, 304, 206, 304, 207, -1, 108, 304, 206, 304, + 206, 304, -1, 108, 205, 304, 206, 304, 206, 304, + 207, -1, 105, 304, 206, 304, 206, 304, -1, 103, + 205, 304, 206, 304, 206, 304, 207, -1, 106, 304, + -1, 107, 304, -1, 126, -1, 126, 205, 207, -1, + 150, 306, -1, 152, 304, -1, 153, 306, -1, 154, + -1, 154, 205, 207, -1, 155, 306, -1, 156, 306, + -1, 157, -1, 157, 205, 207, -1, 168, 304, -1, + 168, 205, 304, 206, 304, 207, -1, 168, 304, 206, + 304, -1, 169, 306, 206, 304, -1, 169, 205, 306, + 206, 304, 207, -1, 169, 304, 206, 306, 206, 304, + -1, 169, 205, 304, 206, 306, 206, 304, 207, -1, + 171, 306, -1, 171, 205, 304, 206, 306, 207, -1, + 171, 304, 206, 306, -1, 172, -1, 172, 205, 207, + -1, 172, 304, -1, 175, 306, -1, 175, 205, 304, + 206, 306, 207, -1, 177, 306, 206, 306, 206, 306, + -1, 177, 205, 306, 206, 306, 206, 306, 207, -1, + 180, 304, 206, 304, -1, 180, 205, 304, 206, 304, + 207, -1, 184, 306, -1, 184, 205, 306, 206, 306, + 207, -1, 184, 306, 206, 306, -1, 211, 305, 212, + -1, 211, 303, 212, -1, 304, -1, 304, 206, 303, + -1, 205, 304, 207, -1, 304, 198, 304, -1, 304, + 197, 304, -1, 304, 199, 304, -1, 304, 84, 304, + -1, 304, 85, 304, -1, 304, 200, 304, -1, 304, + 202, 304, -1, 304, 181, 304, -1, 304, 182, 304, + -1, 183, 304, -1, 197, 304, -1, 304, 72, 304, + -1, 304, 73, 304, -1, 304, 74, 304, -1, 75, + 304, -1, 306, 196, 306, -1, 306, 44, 306, -1, + 306, 194, 306, -1, 306, 195, 306, -1, 306, 42, + 306, -1, 306, 43, 306, -1, 304, 196, 304, -1, + 304, 44, 304, -1, 304, 194, 304, -1, 304, 195, + 304, -1, 304, 42, 304, -1, 304, 43, 304, -1, + 187, -1, 186, -1, 189, 208, 213, 209, -1, 190, + 208, 213, 209, -1, 189, 208, 213, 206, 209, -1, + 190, 208, 213, 206, 209, -1, 189, 208, 206, 213, + 209, -1, 190, 208, 206, 213, 209, -1, 189, 208, + 304, 209, -1, 189, 208, 304, 206, 304, 209, -1, + 189, -1, 48, 205, 304, 207, -1, 48, 205, 306, + 207, -1, 80, 205, 304, 207, -1, 80, 205, 306, + 207, -1, 50, 205, 306, 207, -1, 78, 205, 306, + 207, -1, 56, 205, 306, 206, 306, 207, -1, 57, + 205, 304, 207, -1, 58, 205, 304, 207, -1, 60, + 205, 304, 207, -1, 61, 205, 304, 207, -1, 62, + 205, 304, 207, -1, 63, 205, 304, 207, -1, 64, + 205, 304, 207, -1, 65, 205, 304, 207, -1, 68, + 205, 304, 207, -1, 69, 205, 304, 207, -1, 70, + 205, 304, 207, -1, 71, 205, 304, 207, -1, 66, + 205, 304, 207, -1, 59, -1, 59, 205, 207, -1, + 67, -1, 67, 205, 207, -1, 121, -1, 121, 205, + 207, -1, 122, -1, 122, 205, 207, -1, 83, -1, + 83, 205, 207, -1, 83, 205, 304, 207, -1, 120, + 205, 306, 207, -1, 86, -1, 86, 205, 207, -1, + 87, -1, 87, 205, 207, -1, 88, -1, 88, 205, + 207, -1, 89, -1, 89, 205, 207, -1, 90, -1, + 90, 205, 207, -1, 91, -1, 91, 205, 207, -1, + 97, -1, 97, 205, 207, -1, 98, -1, 98, 205, + 207, -1, 118, -1, 118, 205, 207, -1, 118, 205, + 304, 207, -1, 5, -1, 5, 205, 207, -1, 123, + -1, 123, 205, 207, -1, 124, -1, 124, 205, 207, + -1, 125, -1, 125, 205, 207, -1, 127, -1, 127, + 205, 207, -1, 128, -1, 128, 205, 207, -1, 129, + -1, 129, 205, 207, -1, 131, -1, 131, 205, 207, + -1, 132, -1, 132, 205, 207, -1, 133, -1, 133, + 205, 207, -1, 134, -1, 134, 205, 207, -1, 135, + -1, 135, 205, 207, -1, 136, -1, 136, 205, 207, + -1, 137, -1, 137, 205, 207, -1, 138, -1, 138, + 205, 207, -1, 139, -1, 139, 205, 207, -1, 140, + -1, 140, 205, 207, -1, 141, -1, 141, 205, 207, + -1, 142, -1, 142, 205, 207, -1, 143, -1, 143, + 205, 207, -1, 144, -1, 144, 205, 207, -1, 145, + -1, 145, 205, 207, -1, 146, -1, 146, 205, 207, + -1, 147, -1, 147, 205, 207, -1, 148, -1, 148, + 205, 207, -1, 149, -1, 149, 205, 207, -1, 6, + 205, 304, 206, 304, 207, -1, 7, 205, 304, 206, + 304, 206, 304, 207, -1, 130, -1, 130, 205, 207, + -1, 109, 205, 304, 206, 304, 207, -1, 110, 205, + 304, 207, -1, 111, 205, 304, 207, -1, 112, 205, + 304, 207, -1, 113, 205, 304, 207, -1, 114, 205, + 304, 207, -1, 158, 205, 207, -1, 159, 205, 304, + 207, -1, 160, 205, 304, 207, -1, 164, -1, 164, + 205, 207, -1, 166, -1, 166, 205, 207, -1, 173, + -1, 173, 205, 207, -1, 173, 205, 304, 207, -1, + 179, 205, 304, 207, -1, 306, -1, 306, 206, 305, + -1, 205, 306, 207, -1, 306, 198, 306, -1, 304, + 198, 306, -1, 306, 198, 304, -1, 188, -1, 190, + 208, 304, 209, -1, 190, 208, 304, 206, 304, 209, + -1, 190, -1, 79, 205, 304, 207, -1, 49, 205, + 304, 207, -1, 54, 205, 306, 207, -1, 55, 205, + 306, 207, -1, 51, 205, 306, 206, 304, 206, 304, + 207, -1, 52, 205, 306, 206, 304, 207, -1, 53, + 205, 306, 206, 304, 207, -1, 99, 205, 304, 206, + 304, 206, 304, 206, 304, 207, -1, 32, -1, 32, + 205, 207, -1, 32, 205, 304, 207, -1, 81, -1, + 81, 205, 207, -1, 81, 205, 304, 207, -1, 151, + -1, 151, 205, 207, -1, 161, 205, 304, 207, -1, + 165, -1, 165, 205, 207, -1, 167, -1, 167, 205, + 207, -1, 170, -1, 170, 205, 207, -1, 170, 205, + 304, 207, -1, 174, -1, 174, 205, 207, -1, 176, + 205, 306, 207, -1, 178, 205, 306, 206, 306, 207, + -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 317, 317, 318, 321, 322, 325, 327, 328, 329, - 330, 331, 338, 339, 346, 347, 348, 351, 366, 372, - 393, 394, 396, 411, 424, 425, 427, 445, 452, 463, - 463, 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, 492, 493, 494, - 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, - 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, - 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, - 525, 526, 527, 528, 529, 532, 533, 534, 535, 538, - 539, 540, 541, 544, 547, 548, 551, 554, 555, 558, - 561, 564, 578, 579, 580, 583, 584, 585, 589, 592, - 595, 600, 607, 610, 613, 617, 621, 624, 627, 628, - 629, 632, 633, 634, 635, 636, 639, 640, 643, 644, - 648, 649, 652, 653, 656, 657, 658, 659, 662, 663, - 666, 667, 670, 673, 676, 677, 678, 681, 682, 683, - 684, 685, 686, 687, 688, 689, 692, 693, 694, 697, - 698, 699, 702, 703, 704, 707, 708, 709, 712, 713, - 714, 717, 718, 719, 722, 723, 724, 725, 726, 727, - 728, 729, 730, 731, 734, 737, 738, 739, 740, 741, - 744, 747, 748, 751, 752, 755, 756, 757, 758, 760, - 761, 762, 763, 764, 765, 768, 771, 772, 775, 776, - 779, 780, 783, 784, 787, 790, 793, 794, 797, 800, - 803, 806, 807, 810, 813, 816, 817, 820, 821, 822, - 825, 826, 827, 828, 831, 832, 833, 836, 837, 838, - 841, 844, 847, 848, 851, 852, 853, 854, 855, 856, - 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, - 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, - 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, - 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, - 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, - 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, - 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, - 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, - 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, - 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, - 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, - 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, - 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, - 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, - 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, - 1017, 1018, 1019, 1022, 1023, 1026, 1027, 1028, 1029, 1030, - 1031, 1032, 1033, 1044, 1045, 1046, 1047, 1048, 1049, 1050, - 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, - 1061, 1062, 1063, 1064, 1065, 1066, 1067 + 0, 322, 322, 323, 326, 327, 330, 332, 333, 334, + 335, 336, 343, 344, 351, 352, 353, 356, 371, 377, + 398, 399, 401, 416, 429, 430, 432, 450, 457, 468, + 468, 471, 472, 473, 474, 475, 476, 477, 478, 479, + 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, + 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, + 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, + 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, + 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, + 530, 531, 532, 533, 534, 535, 536, 537, 538, 541, + 542, 543, 544, 547, 548, 549, 550, 553, 556, 557, + 560, 563, 564, 567, 570, 573, 587, 588, 589, 592, + 593, 594, 598, 601, 604, 609, 616, 619, 622, 626, + 630, 633, 636, 637, 638, 641, 642, 643, 644, 645, + 648, 649, 652, 653, 657, 658, 661, 662, 665, 666, + 667, 668, 671, 672, 675, 676, 679, 682, 685, 686, + 687, 690, 691, 692, 693, 694, 695, 696, 697, 698, + 701, 702, 703, 706, 707, 708, 711, 712, 713, 716, + 717, 718, 721, 722, 723, 726, 727, 728, 731, 732, + 733, 734, 735, 736, 737, 738, 739, 740, 743, 746, + 747, 748, 749, 750, 753, 756, 757, 760, 761, 764, + 765, 766, 767, 769, 770, 771, 772, 773, 774, 777, + 780, 781, 784, 785, 788, 789, 792, 793, 796, 799, + 802, 803, 806, 809, 812, 815, 816, 819, 822, 825, + 826, 829, 830, 831, 834, 835, 836, 837, 840, 841, + 842, 845, 846, 847, 850, 851, 854, 855, 858, 859, + 862, 863, 864, 868, 871, 874, 875, 878, 879, 880, + 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, + 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, + 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, + 911, 912, 913, 914, 915, 916, 927, 928, 929, 930, + 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, + 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, + 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, + 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, + 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, + 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, + 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, + 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, + 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, + 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, + 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, + 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, + 1053, 1054, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, + 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, + 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, + 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102 }; #endif @@ -1155,30 +1181,33 @@ "B256DBSTRING", "B256ONERROR", "B256OFFERROR", "B256LASTERROR", "B256LASTERRORMESSAGE", "B256LASTERRORLINE", "B256LASTERROREXTRA", "B256NETLISTEN", "B256NETCONNECT", "B256NETREAD", "B256NETWRITE", - "B256NETCLOSE", "B256NETDATA", "B256LINENUM", "B256INTEGER", "B256FLOAT", - "B256STRING", "B256VARIABLE", "B256STRINGVAR", "B256NEWVAR", "B256COLOR", - "B256LABEL", "'<'", "'>'", "'='", "'-'", "'+'", "'*'", "'/'", - "B256UMINUS", "'^'", "'\\n'", "':'", "'('", "','", "')'", "'['", "']'", - "';'", "'{'", "'}'", "'?'", "$accept", "program", "validline", "label", - "validstatement", "compoundifstmt", "ifstmt", "elsestmt", "endifexpr", - "endifstmt", "whilestmt", "endwhileexpr", "endwhilestmt", "dostmt", - "untilstmt", "compoundstmt", "statement", "dimstmt", "redimstmt", - "pausestmt", "clearstmt", "fastgraphicsstmt", "graphsizestmt", - "refreshstmt", "endstmt", "ifexpr", "strarrayassign", "arrayassign", - "numassign", "stringassign", "forstmt", "nextstmt", "gotostmt", - "gosubstmt", "offerrorstmt", "onerrorstmt", "returnstmt", "colorstmt", - "soundstmt", "plotstmt", "linestmt", "circlestmt", "rectstmt", - "textstmt", "fontstmt", "saystmt", "systemstmt", "volumestmt", - "polystmt", "stampstmt", "openstmt", "writestmt", "writelinestmt", - "closestmt", "resetstmt", "seekstmt", "inputstmt", "inputexpr", - "printstmt", "wavplaystmt", "wavstopstmt", "wavwaitstmt", "putslicestmt", - "imgloadstmt", "spritedimstmt", "spriteloadstmt", "spriteslicestmt", - "spriteplacestmt", "spritemovestmt", "spritehidestmt", "spriteshowstmt", - "clickclearstmt", "changedirstmt", "decimalstmt", "dbopenstmt", - "dbclosestmt", "dbexecutestmt", "dbopensetstmt", "dbclosesetstmt", - "netlistenstmt", "netconnectstmt", "netwritestmt", "netclosestmt", - "immediatestrlist", "immediatelist", "floatlist", "floatexpr", - "stringlist", "stringexpr", 0 + "B256NETCLOSE", "B256NETDATA", "B256NETADDRESS", "B256KILL", "B256MD5", + "B256SETSETTING", "B256GETSETTING", "B256PORTIN", "B256PORTOUT", + "B256BINARYOR", "B256BINARYAND", "B256BINARYNOT", "B256IMGSAVE", + "B256LINENUM", "B256INTEGER", "B256FLOAT", "B256STRING", "B256VARIABLE", + "B256STRINGVAR", "B256NEWVAR", "B256COLOR", "B256LABEL", "'<'", "'>'", + "'='", "'-'", "'+'", "'*'", "'/'", "B256UMINUS", "'^'", "'\\n'", "':'", + "'('", "','", "')'", "'['", "']'", "';'", "'{'", "'}'", "'?'", "$accept", + "program", "validline", "label", "validstatement", "compoundifstmt", + "ifstmt", "elsestmt", "endifexpr", "endifstmt", "whilestmt", + "endwhileexpr", "endwhilestmt", "dostmt", "untilstmt", "compoundstmt", + "statement", "dimstmt", "redimstmt", "pausestmt", "clearstmt", + "fastgraphicsstmt", "graphsizestmt", "refreshstmt", "endstmt", "ifexpr", + "strarrayassign", "arrayassign", "numassign", "stringassign", "forstmt", + "nextstmt", "gotostmt", "gosubstmt", "offerrorstmt", "onerrorstmt", + "returnstmt", "colorstmt", "soundstmt", "plotstmt", "linestmt", + "circlestmt", "rectstmt", "textstmt", "fontstmt", "saystmt", + "systemstmt", "volumestmt", "polystmt", "stampstmt", "openstmt", + "writestmt", "writelinestmt", "closestmt", "resetstmt", "seekstmt", + "inputstmt", "inputexpr", "printstmt", "wavplaystmt", "wavstopstmt", + "wavwaitstmt", "putslicestmt", "imgloadstmt", "spritedimstmt", + "spriteloadstmt", "spriteslicestmt", "spriteplacestmt", "spritemovestmt", + "spritehidestmt", "spriteshowstmt", "clickclearstmt", "changedirstmt", + "decimalstmt", "dbopenstmt", "dbclosestmt", "dbexecutestmt", + "dbopensetstmt", "dbclosesetstmt", "netlistenstmt", "netconnectstmt", + "netwritestmt", "netclosestmt", "killstmt", "setsettingstmt", + "portoutstmt", "imgsavestmt", "immediatestrlist", "immediatelist", + "floatlist", "floatexpr", "stringlist", "stringexpr", 0 }; #endif @@ -1205,60 +1234,63 @@ 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, - 435, 436, 437, 60, 62, 61, 45, 43, 42, 47, - 438, 94, 10, 58, 40, 44, 41, 91, 93, 59, - 123, 125, 63 + 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, + 445, 446, 447, 448, 60, 62, 61, 45, 43, 42, + 47, 449, 94, 10, 58, 40, 44, 41, 91, 93, + 59, 123, 125, 63 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { - 0, 203, 204, 204, 205, 205, 206, 207, 207, 207, - 207, 207, 207, 207, 207, 207, 207, 208, 209, 210, - 211, 211, 212, 213, 214, 214, 215, 216, 217, 218, - 218, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 220, 220, 220, 220, 221, - 221, 221, 221, 222, 223, 223, 224, 225, 225, 226, - 227, 228, 229, 229, 229, 230, 230, 230, 231, 232, - 233, 233, 234, 235, 236, 237, 238, 239, 240, 240, - 240, 241, 241, 241, 241, 241, 242, 242, 243, 243, - 244, 244, 245, 245, 246, 246, 246, 246, 247, 247, - 248, 248, 249, 250, 251, 251, 251, 252, 252, 252, - 252, 252, 252, 252, 252, 252, 253, 253, 253, 254, - 254, 254, 255, 255, 255, 256, 256, 256, 257, 257, - 257, 258, 258, 258, 259, 259, 259, 259, 259, 259, - 259, 259, 259, 259, 260, 261, 261, 261, 261, 261, - 262, 263, 263, 264, 264, 265, 265, 265, 265, 266, - 266, 266, 266, 266, 266, 267, 268, 268, 269, 269, - 270, 270, 271, 271, 272, 273, 274, 274, 275, 276, - 277, 278, 278, 279, 280, 281, 281, 282, 282, 282, - 283, 283, 283, 283, 284, 284, 284, 285, 285, 285, - 286, 287, 288, 288, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 290, 290, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 291, 291, 291 + 0, 214, 215, 215, 216, 216, 217, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 218, 219, 220, 221, + 222, 222, 223, 224, 225, 225, 226, 227, 228, 229, + 229, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 230, 230, 231, + 231, 231, 231, 232, 232, 232, 232, 233, 234, 234, + 235, 236, 236, 237, 238, 239, 240, 240, 240, 241, + 241, 241, 242, 243, 244, 244, 245, 246, 247, 248, + 249, 250, 251, 251, 251, 252, 252, 252, 252, 252, + 253, 253, 254, 254, 255, 255, 256, 256, 257, 257, + 257, 257, 258, 258, 259, 259, 260, 261, 262, 262, + 262, 263, 263, 263, 263, 263, 263, 263, 263, 263, + 264, 264, 264, 265, 265, 265, 266, 266, 266, 267, + 267, 267, 268, 268, 268, 269, 269, 269, 270, 270, + 270, 270, 270, 270, 270, 270, 270, 270, 271, 272, + 272, 272, 272, 272, 273, 274, 274, 275, 275, 276, + 276, 276, 276, 277, 277, 277, 277, 277, 277, 278, + 279, 279, 280, 280, 281, 281, 282, 282, 283, 284, + 285, 285, 286, 287, 288, 289, 289, 290, 291, 292, + 292, 293, 293, 293, 294, 294, 294, 294, 295, 295, + 295, 296, 296, 296, 297, 297, 298, 298, 299, 299, + 300, 300, 300, 301, 302, 303, 303, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 305, 305, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 306, 306 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1273,42 +1305,44 @@ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 3, 3, 7, 7, 3, - 3, 7, 7, 2, 1, 1, 1, 4, 6, 1, - 1, 2, 6, 8, 3, 6, 8, 3, 3, 3, - 6, 8, 2, 2, 2, 1, 2, 1, 6, 8, - 2, 4, 2, 2, 6, 4, 4, 6, 8, 10, - 6, 8, 8, 10, 6, 8, 6, 8, 6, 8, - 2, 2, 2, 2, 2, 4, 2, 8, 10, 8, - 6, 8, 6, 10, 12, 10, 2, 6, 4, 2, - 6, 4, 2, 6, 4, 1, 3, 2, 1, 3, - 2, 2, 6, 4, 3, 6, 3, 6, 2, 5, - 7, 2, 5, 7, 2, 1, 2, 2, 3, 3, - 2, 1, 3, 1, 3, 6, 8, 8, 10, 6, - 8, 8, 10, 10, 12, 2, 4, 6, 10, 12, - 6, 8, 6, 8, 2, 2, 1, 3, 2, 2, - 2, 1, 3, 2, 2, 1, 3, 2, 6, 4, - 4, 6, 6, 8, 2, 6, 4, 1, 3, 2, - 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, - 1, 4, 4, 5, 5, 5, 5, 4, 6, 1, - 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, + 3, 7, 7, 3, 3, 7, 7, 2, 1, 1, + 1, 4, 6, 1, 1, 2, 6, 8, 3, 6, + 8, 3, 3, 3, 6, 8, 2, 2, 2, 1, + 2, 1, 6, 8, 2, 4, 2, 2, 6, 4, + 4, 6, 8, 10, 6, 8, 8, 10, 6, 8, + 6, 8, 6, 8, 2, 2, 2, 2, 2, 4, + 2, 8, 10, 8, 6, 8, 6, 10, 12, 10, + 2, 6, 4, 2, 6, 4, 2, 6, 4, 1, + 3, 2, 1, 3, 2, 2, 6, 4, 3, 6, + 3, 6, 2, 5, 7, 2, 5, 7, 2, 1, + 2, 2, 3, 3, 2, 1, 3, 1, 3, 6, + 8, 8, 10, 6, 8, 8, 10, 10, 12, 2, + 4, 6, 10, 12, 6, 8, 6, 8, 2, 2, + 1, 3, 2, 2, 2, 1, 3, 2, 2, 1, + 3, 2, 6, 4, 4, 6, 6, 8, 2, 6, + 4, 1, 3, 2, 2, 6, 6, 8, 4, 6, + 2, 6, 4, 3, 3, 1, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, + 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 1, 1, 4, 4, 5, + 5, 5, 5, 4, 6, 1, 4, 4, 4, 4, + 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 1, 3, 1, 3, + 1, 3, 1, 3, 1, 3, 4, 4, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, - 4, 4, 1, 3, 1, 3, 1, 3, 1, 3, - 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, - 4, 1, 3, 1, 3, 1, 3, 1, 3, 1, + 1, 3, 1, 3, 1, 3, 4, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, - 3, 1, 3, 6, 8, 1, 3, 6, 4, 4, - 4, 4, 4, 3, 4, 4, 1, 3, 1, 3, - 1, 3, 4, 1, 3, 3, 3, 3, 3, 1, - 4, 6, 1, 4, 4, 4, 4, 8, 6, 6, - 10, 1, 3, 4, 1, 3, 4, 1, 3, 4, - 1, 3, 1, 3, 1, 3, 4 + 3, 1, 3, 1, 3, 1, 3, 1, 3, 6, + 8, 1, 3, 6, 4, 4, 4, 4, 4, 3, + 4, 4, 1, 3, 1, 3, 1, 3, 4, 4, + 1, 3, 3, 3, 3, 3, 1, 4, 6, 1, + 4, 4, 4, 4, 8, 6, 6, 10, 1, 3, + 4, 1, 3, 4, 1, 3, 4, 1, 3, 1, + 3, 1, 3, 4, 1, 3, 4, 6 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -1316,1950 +1350,2858 @@ means the default is an error. */ static const yytype_uint16 yydefact[] = { - 16, 195, 0, 0, 0, 0, 0, 0, 0, 106, - 0, 109, 104, 105, 0, 19, 20, 0, 24, 27, - 0, 0, 0, 0, 0, 175, 178, 0, 0, 127, - 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 201, 203, 0, 226, 0, 0, 0, 231, - 0, 0, 235, 0, 125, 0, 0, 0, 247, 0, - 0, 6, 0, 0, 16, 5, 7, 8, 9, 22, - 10, 11, 26, 12, 13, 14, 15, 29, 54, 55, - 56, 50, 52, 53, 51, 49, 0, 58, 57, 43, - 44, 45, 46, 31, 32, 33, 34, 35, 47, 64, - 37, 42, 38, 39, 65, 66, 67, 68, 69, 40, - 41, 59, 60, 61, 62, 63, 82, 48, 0, 36, - 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 341, 0, 0, 431, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, - 0, 0, 0, 0, 0, 0, 0, 312, 0, 0, - 0, 0, 0, 0, 0, 0, 434, 318, 322, 324, - 326, 328, 330, 332, 334, 336, 0, 0, 0, 0, - 0, 0, 0, 338, 0, 314, 316, 343, 345, 347, - 349, 351, 353, 395, 355, 357, 359, 361, 363, 365, - 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, - 387, 389, 391, 437, 0, 0, 0, 0, 406, 440, - 408, 442, 444, 410, 280, 279, 419, 289, 422, 0, - 0, 197, 196, 289, 422, 0, 194, 0, 0, 0, - 0, 0, 0, 0, 154, 0, 0, 156, 0, 0, - 0, 0, 0, 0, 111, 23, 28, 0, 122, 0, - 0, 166, 0, 0, 169, 0, 177, 0, 180, 123, - 124, 21, 25, 0, 130, 0, 0, 0, 0, 103, - 289, 0, 133, 0, 0, 0, 172, 0, 0, 0, - 0, 151, 150, 152, 153, 0, 0, 0, 0, 215, - 0, 0, 0, 0, 0, 224, 225, 0, 0, 200, - 0, 0, 0, 181, 0, 228, 229, 230, 0, 233, - 234, 0, 126, 0, 237, 0, 0, 0, 0, 0, - 244, 0, 249, 0, 0, 0, 0, 1, 2, 4, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 199, 0, 0, 0, 0, 0, 0, 0, 110, + 0, 113, 108, 109, 0, 19, 20, 0, 24, 27, + 0, 0, 0, 0, 0, 179, 182, 0, 0, 131, + 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 207, 0, 230, 0, 0, 0, 235, + 0, 0, 239, 0, 129, 0, 0, 0, 251, 0, + 0, 0, 0, 0, 0, 6, 0, 0, 16, 5, + 7, 8, 9, 22, 10, 11, 26, 12, 13, 14, + 15, 29, 54, 55, 56, 50, 52, 53, 51, 49, + 0, 58, 57, 43, 44, 45, 46, 31, 32, 33, + 34, 35, 47, 65, 37, 42, 38, 39, 66, 67, + 68, 69, 70, 40, 41, 59, 60, 61, 62, 63, + 83, 48, 0, 36, 71, 72, 73, 74, 75, 76, + 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 94, 95, 64, 96, + 97, 98, 357, 0, 0, 448, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 326, 0, 0, + 0, 0, 0, 0, 0, 328, 0, 0, 0, 0, + 0, 0, 0, 0, 451, 334, 338, 340, 342, 344, + 346, 348, 350, 352, 0, 0, 0, 0, 0, 0, + 0, 354, 0, 330, 332, 359, 361, 363, 365, 367, + 369, 411, 371, 373, 375, 377, 379, 381, 383, 385, + 387, 389, 391, 393, 395, 397, 399, 401, 403, 405, + 407, 454, 0, 0, 0, 0, 422, 457, 424, 459, + 461, 426, 464, 0, 0, 0, 0, 296, 295, 436, + 305, 439, 0, 0, 201, 200, 305, 439, 0, 198, + 0, 0, 0, 0, 0, 0, 0, 158, 0, 0, + 160, 0, 0, 0, 0, 0, 0, 115, 23, 28, + 0, 126, 0, 0, 170, 0, 0, 173, 0, 181, + 0, 184, 127, 128, 21, 25, 0, 134, 0, 0, + 0, 0, 107, 305, 0, 137, 0, 0, 0, 176, + 0, 0, 0, 0, 155, 154, 156, 157, 0, 0, + 0, 0, 219, 0, 0, 0, 0, 0, 228, 229, + 0, 0, 204, 0, 0, 0, 185, 0, 232, 233, + 234, 0, 237, 238, 0, 130, 0, 241, 0, 0, + 0, 0, 0, 248, 0, 253, 0, 254, 0, 0, + 0, 0, 0, 260, 0, 0, 0, 0, 1, 2, + 4, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 199, 0, 0, 0, 0, 0, - 0, 0, 198, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 176, 179, 0, 0, 0, - 95, 0, 96, 0, 99, 0, 100, 289, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 202, 204, 0, - 0, 227, 232, 236, 0, 0, 0, 0, 0, 0, - 0, 0, 248, 117, 118, 0, 0, 114, 119, 0, - 3, 110, 30, 17, 186, 184, 342, 0, 0, 432, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 311, 0, 0, 0, 0, 0, 0, - 0, 313, 0, 0, 0, 0, 0, 0, 0, 0, - 435, 0, 319, 0, 323, 325, 327, 329, 331, 333, - 335, 337, 0, 0, 0, 0, 0, 0, 0, 339, - 0, 0, 315, 317, 344, 346, 348, 350, 352, 354, - 396, 356, 358, 360, 362, 364, 366, 368, 370, 372, - 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, - 438, 403, 0, 0, 0, 407, 441, 409, 443, 445, - 0, 411, 0, 0, 0, 0, 0, 0, 0, 254, - 415, 277, 278, 274, 263, 264, 265, 258, 259, 275, - 276, 273, 256, 255, 417, 257, 260, 261, 271, 272, - 268, 269, 270, 267, 418, 416, 0, 0, 0, 136, - 0, 0, 0, 0, 155, 251, 0, 0, 0, 0, - 0, 0, 107, 0, 0, 168, 0, 171, 0, 0, - 0, 0, 0, 0, 131, 0, 135, 0, 174, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 216, 0, - 0, 0, 0, 0, 0, 183, 0, 239, 0, 0, - 0, 240, 0, 246, 0, 0, 0, 413, 0, 0, - 0, 0, 0, 0, 433, 290, 291, 424, 294, 0, - 0, 0, 425, 426, 0, 297, 298, 299, 300, 301, - 302, 303, 304, 309, 305, 306, 307, 308, 295, 423, - 292, 293, 436, 320, 0, 0, 398, 399, 400, 401, - 402, 340, 321, 404, 405, 439, 446, 412, 0, 0, - 281, 0, 287, 0, 0, 282, 0, 420, 0, 287, - 0, 420, 0, 0, 0, 0, 0, 253, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 277, 0, + 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 203, 0, 0, 0, 0, 0, 0, 0, + 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 265, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 180, 183, 0, 0, 0, 99, 0, + 100, 0, 103, 0, 104, 305, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 206, 208, 0, 0, 231, + 236, 240, 0, 0, 0, 0, 0, 0, 0, 0, + 252, 0, 0, 0, 0, 0, 0, 0, 121, 122, + 0, 0, 118, 123, 0, 3, 114, 30, 17, 190, + 188, 358, 0, 0, 449, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 327, 0, + 0, 0, 0, 0, 0, 0, 329, 0, 0, 0, + 0, 0, 0, 0, 0, 452, 0, 335, 0, 339, + 341, 343, 345, 347, 349, 351, 353, 0, 0, 0, + 0, 0, 0, 0, 355, 0, 0, 331, 333, 360, + 362, 364, 366, 368, 370, 412, 372, 374, 376, 378, + 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, + 400, 402, 404, 406, 408, 455, 419, 0, 0, 0, + 423, 458, 425, 460, 462, 0, 427, 0, 465, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 267, 432, + 293, 294, 290, 279, 280, 281, 271, 272, 275, 276, + 291, 292, 289, 269, 268, 434, 270, 273, 274, 287, + 288, 284, 285, 286, 283, 435, 433, 0, 0, 0, + 140, 0, 0, 0, 0, 159, 264, 0, 0, 0, + 0, 0, 0, 111, 0, 0, 172, 0, 175, 0, + 0, 0, 0, 0, 0, 135, 0, 139, 0, 178, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, + 0, 0, 0, 0, 0, 0, 187, 0, 243, 0, + 0, 0, 244, 0, 250, 0, 0, 0, 0, 258, + 0, 262, 0, 0, 0, 430, 0, 0, 0, 0, + 0, 0, 450, 306, 307, 441, 310, 0, 0, 0, + 442, 443, 0, 313, 314, 315, 316, 317, 318, 319, + 320, 325, 321, 322, 323, 324, 311, 440, 308, 309, + 453, 336, 0, 0, 414, 415, 416, 417, 418, 356, + 337, 420, 421, 456, 463, 428, 466, 0, 429, 0, + 0, 297, 0, 303, 0, 0, 298, 0, 437, 0, + 303, 0, 437, 0, 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 285, 283, 0, 286, 284, 0, 0, 0, 137, - 0, 140, 0, 0, 0, 289, 162, 0, 0, 0, - 108, 120, 167, 170, 0, 128, 0, 0, 0, 0, - 134, 173, 0, 146, 144, 0, 148, 0, 205, 0, - 0, 209, 0, 217, 0, 0, 222, 0, 220, 182, - 238, 0, 241, 242, 245, 0, 115, 414, 0, 112, - 187, 185, 393, 0, 0, 428, 429, 296, 0, 397, - 288, 421, 288, 421, 0, 0, 0, 289, 0, 0, - 0, 0, 0, 0, 97, 98, 101, 102, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 141, 0, 142, 161, - 0, 289, 159, 0, 0, 138, 121, 129, 147, 145, - 149, 0, 206, 207, 0, 210, 0, 211, 223, 0, - 0, 221, 243, 116, 113, 394, 427, 0, 0, 289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 143, 158, 0, 163, 165, 139, 208, 0, 212, 213, - 0, 218, 430, 0, 0, 0, 164, 214, 219 + 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 301, 299, + 0, 302, 300, 0, 0, 0, 141, 0, 144, 0, + 0, 0, 305, 166, 0, 0, 0, 112, 124, 171, + 174, 0, 132, 0, 0, 0, 0, 138, 177, 0, + 150, 148, 0, 152, 0, 209, 0, 0, 213, 0, + 221, 0, 0, 226, 0, 224, 186, 242, 0, 245, + 246, 249, 255, 0, 256, 259, 261, 0, 119, 431, + 0, 116, 191, 189, 409, 0, 0, 445, 446, 312, + 0, 413, 467, 304, 438, 304, 438, 0, 0, 0, + 305, 0, 0, 0, 0, 0, 0, 101, 102, 105, + 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 145, 0, 146, 165, 0, 305, 163, 0, 0, 142, + 125, 133, 151, 149, 153, 0, 210, 211, 0, 214, + 0, 215, 227, 0, 0, 225, 247, 257, 120, 117, + 410, 444, 0, 0, 305, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 147, 162, 0, 167, 169, + 143, 212, 0, 216, 217, 0, 222, 447, 0, 0, + 0, 168, 218, 223 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 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, 110, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, - 151, 152, 153, 557, 267, 492, 255, 756, 259 + -1, 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, 110, 111, 112, 113, 114, + 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, + 155, 156, 157, 158, 159, 160, 161, 592, 280, 520, + 268, 804, 272 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -333 +#define YYPACT_NINF -295 static const yytype_int16 yypact[] = { - 8780, 510, 4005, 4153, 4301, 4449, -163, 4597, 4745, -333, - 4893, -333, -333, -333, 510, -333, -333, 510, -333, -333, - 510, -161, -157, 5041, 5189, 5337, 5485, -149, -128, -333, - -5, 5633, -167, -96, 510, 64, 5781, 5929, 6077, 510, - 510, 510, 6225, 6373, 510, 6521, 6669, 510, 510, 510, - 6817, 510, -193, -142, 6965, -131, 510, 510, 510, -126, - 510, 510, -116, -102, -333, 7113, 7261, 7409, 7557, -177, - -146, -333, 88, -91, 8957, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -87, -333, -333, -333, - -333, -333, -333, -333, -333, -333, 87, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -86, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -84, -83, -58, -57, -56, -48, - -46, -45, -38, -37, -36, -35, -34, -29, -28, -24, - -22, -15, -14, -4, 20, 25, 26, 27, 32, 33, - 38, 39, 510, 41, 42, 44, 52, 57, 58, 59, - 60, 61, 63, 66, 68, 69, 72, 74, 76, 81, - 82, 83, 85, 86, 89, 91, 96, 97, 99, 104, - 105, 107, 108, 110, 111, 113, 115, 116, 117, 118, - 119, 121, 126, 128, 130, 131, 133, 134, 135, 136, - 141, 142, 143, 144, 145, 146, 147, 149, 151, 152, - 154, 155, 157, 160, -333, -333, -333, -89, -33, 510, - 510, 1226, -16, -138, -135, 13745, 683, 510, 11863, 683, - 510, 11889, 510, 11910, -333, 178, 510, -333, 510, 11936, - 510, 11957, 510, 11983, 13745, 13745, 13745, 175, -333, 510, - 12018, 683, 510, 12044, 683, 2664, 13745, 2813, 13745, -333, - -333, -333, -333, 510, 12065, 7705, 7853, 8001, 8149, 13745, - -120, 8297, -333, 12091, 510, 12111, 683, 510, 12138, 510, - 1515, 13745, 683, 683, 13745, 510, 12173, 510, 12199, 13745, - 510, 12219, 510, 12246, 12265, 13745, 13745, 510, 12327, 683, - 166, 172, 510, 12354, 176, 683, 13745, 683, 177, 683, - 683, 181, -333, 510, 12373, 510, 12400, 1544, 510, 12419, - 683, 2962, 13745, 1964, 510, 2139, 510, -333, 1753, -333, - 9129, 9129, -88, 189, 510, 510, 3111, 510, 510, 510, - 510, 510, 510, 510, 510, 510, 510, 510, 194, 510, - 510, 510, 510, 510, 510, 510, 195, 510, 510, 510, - 510, 180, 510, 510, 510, 3260, 3409, 200, 201, 202, - 203, 204, 205, 206, 207, 510, 510, 510, 510, 510, - 510, 510, 3558, 510, 216, 220, 222, 227, 231, 235, - 237, 238, 239, 240, 241, 242, 243, 246, 250, 251, - 252, 253, 258, 259, 260, 280, 282, 283, 285, 288, - 292, 294, 295, 296, 510, 510, 510, 297, 299, 301, - 304, 3707, 3856, 999, 1485, 180, 10282, 290, 510, 510, - 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, - 510, 510, 510, 510, -333, 510, 510, 510, 510, 510, - 510, 510, -333, 999, 1485, 8835, 510, 9512, 510, 9550, - 510, 305, 173, 12435, 9571, 510, 9632, 510, 9646, 510, - 510, 9679, 510, 9700, 510, -333, -333, 9726, 510, 510, - 13745, 510, 13745, 510, 13745, 510, 13745, -136, 9808, 510, - 9834, 510, 9855, 510, 174, 510, 9881, 510, 9899, 510, - 9916, 510, 9963, 510, 510, 9989, 510, -333, -333, 10036, - 510, -333, -333, -333, 10054, 510, 10071, 230, 510, 510, - 10118, 510, -333, -333, 13745, 1623, 510, -333, 683, 8994, - -333, -333, -333, -87, 306, 307, -333, 12481, 12508, -333, - 10299, 10317, 507, 10334, 571, 1549, 1558, 1759, 620, 748, - 1789, 10390, 10407, -333, 10454, 10468, 10515, 10540, 10562, 10588, - 10623, -333, 10648, 10670, 10696, 10717, 753, 10743, 10778, 769, - -333, 10804, -333, 10825, -333, -333, -333, -333, -333, -333, - -333, -333, 12527, 12573, 10851, 10872, 10898, 10933, 10959, -333, - 10980, 920, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, 11006, 11027, 11053, -333, -333, -333, -333, -333, - 11088, -333, 11114, 80, -111, 9012, 300, -109, 9184, -333, - -333, 233, 233, 233, 8738, 8826, 13791, 180, 180, 233, - 233, 233, 56, 56, -333, 180, 180, -333, 318, 318, - 318, 318, 318, 318, 56, -333, 9221, 9245, 510, 13745, - 510, 12589, 510, 12635, -333, -333, 510, 510, 12658, 510, - 12681, 510, 13745, 835, 510, 683, 510, 683, 510, 12697, - 10144, 10162, 10209, 10226, -333, 510, 13745, 510, 683, 510, - 12743, 510, 12766, 510, 12789, 510, 12835, 510, 683, 510, - 12851, 12874, 510, 12897, 510, 13745, 510, 13745, 510, 510, - 1796, 13745, 510, 683, 510, 321, 308, 1853, 510, 326, - 510, 510, 510, 510, -333, -333, -333, -333, -333, 510, - 510, 510, -333, -333, 510, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, 510, 510, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, 315, 322, - -333, 510, -333, 323, 325, -333, 510, -333, 510, -100, - 510, -98, 11135, 12920, 510, 12943, 510, -333, 12959, 2314, - 13005, 510, 11161, 510, 1029, 1176, 13028, 510, 510, 510, - 510, 510, 11182, 1186, 13051, 510, 13097, 510, 13113, 510, - 13136, 510, 13159, 1205, 13182, 510, 510, 13205, 510, 11208, - 11243, 1884, 11269, 510, 1220, 9267, 510, -333, 510, 9292, - 510, 9311, 9419, 11290, 13221, 13267, 11316, 11337, 1243, 13290, - 11363, -333, -333, 9442, -333, -333, 9463, 9479, 9496, -333, - 510, 13745, 510, 13313, 8445, -118, -333, 13359, 510, 13375, - -333, 1167, -333, -333, 510, 13745, 11398, 11424, 11445, 11471, - -333, -333, 510, 13745, 683, 510, 13745, 510, 2203, 510, - 13398, 683, 510, -333, 510, 13421, 13745, 510, 13745, -333, - -333, 510, -333, 13745, -333, 334, 13745, -333, 340, 683, - -333, -333, -333, 510, 510, -333, -333, -333, 510, -333, - -333, -333, -95, -93, 11492, 13444, 510, -94, 13467, 2489, - 13483, 510, 510, 11518, -333, -333, -333, -333, 11553, 1284, - 11579, 245, 510, 13529, 1290, 510, 11600, 13552, 510, 11626, - 11647, 510, 510, 11673, 11708, 13575, -333, 510, 13745, -333, - 8593, -112, -333, 13621, 510, 13745, 13745, -333, -333, -333, - -333, 510, -333, 13745, 510, -333, 13637, 683, -333, 510, - 13660, -333, -333, 13745, 683, -333, -333, 510, 11734, -92, - 13683, -168, 11755, 11781, 13706, 1336, 510, 13729, 510, 11802, - -333, -333, 349, -333, -333, -333, -333, 510, -333, 683, - 510, 13745, -333, 333, 1394, 11828, -333, -333, -333 + 11062, 4368, 4543, 4718, 4893, 5068, -184, 5243, 5418, -295, + 5593, -295, -295, -295, 4368, -295, -295, 4368, -295, -295, + 4368, -188, -158, 5768, 5943, 6118, 6293, -150, -137, -295, + 40, 6468, -172, -129, 4368, 2005, 6643, 6818, 6993, 4368, + 4368, 4368, 7168, 7343, 4368, 7518, 7693, 4368, 4368, 4368, + 7868, 4368, -151, -131, 8043, -104, 4368, 4368, 4368, -98, + 4368, 4368, -95, -101, -295, 8218, 8393, 8568, 8743, 8918, + 9093, 9268, 9443, -182, -176, -295, 82, -92, 11250, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -91, -295, -295, -295, -295, -295, -295, -295, -295, -295, + 92, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -90, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -88, -63, -58, -53, -51, -50, -40, -35, + -34, -30, -29, -28, -20, -19, -18, -9, 15, 17, + 18, 19, 27, 28, 33, 34, 36, 37, 42, 59, + 4368, 60, 61, 63, 65, 66, 68, 72, 74, 76, + 83, 84, 85, 87, 88, 90, 91, 93, 98, 99, + 101, 106, 107, 109, 110, 112, 113, 115, 117, 118, + 128, 133, 135, 136, 137, 138, 140, 141, 143, 147, + 148, 149, 151, 153, 154, 156, 157, 159, 161, 163, + 165, 167, 170, 175, 177, 178, 186, 187, 188, 189, + 190, 193, 201, 206, 207, 212, 4368, -295, -295, -295, + -94, -93, 4368, 4368, 1012, -32, -153, -146, 17409, 258, + 4368, 14979, 258, 4368, 15012, 4368, 15045, -295, 146, 4368, + -295, 4368, 15078, 4368, 15114, 4368, 15147, 17409, 17409, 17409, + 49, -295, 4368, 15180, 258, 4368, 15213, 258, 538, 17409, + 2880, 17409, -295, -295, -295, -295, 4368, 15249, 9618, 9793, + 9968, 10143, 17409, -135, 10318, -295, 15282, 4368, 15315, 258, + 4368, 15348, 4368, 379, 17409, 258, 258, 17409, 4368, 15384, + 4368, 15417, 17409, 4368, 15450, 4368, 15483, 15519, 17409, 17409, + 4368, 15552, 258, 211, 213, 4368, 15585, 217, 258, 17409, + 258, 226, 258, 258, 227, -295, 4368, 15618, 4368, 15654, + 949, 4368, 15687, 258, 3066, 17409, 4368, 258, 4368, 1057, + 4368, 15720, 4368, 1290, 2180, 4368, 2355, 4368, -295, 10866, + -295, 1785, 1785, -118, 228, 4368, 4368, 3252, 4368, 4368, + 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 229, + 4368, 4368, 4368, 4368, 4368, 4368, 4368, 233, 4368, 4368, + 4368, 4368, 240, 4368, 4368, 4368, 3438, 3624, 244, 248, + 250, 254, 255, 256, 260, 261, 4368, 4368, 4368, 4368, + 4368, 4368, 4368, 3810, 4368, 262, 263, 266, 267, 268, + 270, 273, 274, 275, 297, 299, 300, 302, 305, 309, + 311, 312, 313, 314, 316, 318, 321, 322, 323, 324, + 325, 326, 327, 330, 332, 4368, 4368, 4368, 334, 340, + 341, 342, 3996, 4182, 344, 4368, 4368, 4368, 240, 70, + 1495, 240, 12816, 56, 4368, 4368, 4368, 4368, 4368, 4368, + 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, + 4368, 4368, -295, 4368, 4368, 4368, 4368, 4368, 4368, 4368, + -295, 70, 1495, 11735, 4368, 11772, 4368, 11805, 4368, 346, + 235, 15753, 11854, 4368, 11908, 4368, 11941, 4368, 4368, 11985, + 4368, 12044, 4368, -295, -295, 12077, 4368, 4368, 17409, 4368, + 17409, 4368, 17409, 4368, 17409, -117, 12116, 4368, 12163, 4368, + 12218, 4368, 130, 4368, 12252, 4368, 12299, 4368, 12337, 4368, + 12388, 4368, 4368, 12440, 4368, -295, -295, 12473, 4368, -295, + -295, -295, 12507, 4368, 12529, 183, 4368, 4368, 12576, 4368, + -295, 12609, 243, 4368, 12648, 4368, 416, 4368, -295, 17409, + 1215, 4368, -295, 258, 1316, -295, -295, -295, -91, 347, + 349, -295, 15789, 15822, -295, 12843, 12881, 307, 12935, 649, + 1660, 1791, 1796, 720, 769, 1821, 12962, 12984, -295, 13017, + 13054, 13103, 13153, 13186, 13222, 13244, -295, 13289, 13322, 13388, + 13421, 867, 13458, 13491, 895, -295, 13524, -295, 13557, -295, + -295, -295, -295, -295, -295, -295, -295, 15855, 15888, 13590, + 13627, 13660, 13693, 13726, -295, 13759, 913, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, 13796, 13829, 13862, + -295, -295, -295, -295, -295, 13895, -295, 13928, -295, 970, + 1827, 13965, 345, -122, 11256, 351, -120, 11305, -295, -295, + 638, 638, 638, 11331, 17475, 17442, 240, 240, 246, 246, + 638, 638, 638, -56, -56, -295, 240, 240, -295, 221, + 221, 221, 221, 221, 221, -56, -295, 11399, 11436, 4368, + 17409, 4368, 15924, 4368, 15957, -295, -295, 4368, 4368, 15990, + 4368, 16023, 4368, 17409, 954, 4368, 258, 4368, 258, 4368, + 16059, 12675, 12712, 12750, 12794, -295, 4368, 17409, 4368, 258, + 4368, 16092, 4368, 16125, 4368, 16158, 4368, 16194, 4368, 258, + 4368, 16227, 16260, 4368, 16293, 4368, 17409, 4368, 17409, 4368, + 4368, 1840, 17409, 4368, 258, 4368, 4368, 2078, 4368, 17409, + 4368, 258, 4368, 363, 350, 2177, 4368, 369, 4368, 4368, + 4368, 4368, -295, -295, -295, -295, -295, 4368, 4368, 4368, + -295, -295, 4368, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, 4368, 4368, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, 4368, -295, 357, + 359, -295, 4368, -295, 360, 362, -295, 4368, -295, 4368, + -111, 4368, -109, 13998, 16329, 4368, 16362, 4368, -295, 16395, + 2530, 16428, 4368, 14031, 4368, 1079, 1098, 16464, 4368, 4368, + 4368, 4368, 4368, 14064, 1129, 16497, 4368, 16530, 4368, 16563, + 4368, 16599, 4368, 16632, 1173, 16665, 4368, 4368, 16698, 4368, + 14097, 14134, 2253, 14167, 4368, 1197, 1310, 2352, 4368, 14200, + 1393, 11473, 4368, -295, 4368, 11498, 4368, 11542, 11567, 14233, + 16734, 16767, 14266, 14303, 1403, 16800, 14336, 1492, -295, -295, + 11604, -295, -295, 11641, 11686, 11710, -295, 4368, 17409, 4368, + 16833, 10493, -125, -295, 16869, 4368, 16902, -295, 1003, -295, + -295, 4368, 17409, 14369, 14402, 14435, 14472, -295, -295, 4368, + 17409, 258, 4368, 17409, 4368, 2428, 4368, 16935, 258, 4368, + -295, 4368, 16968, 17409, 4368, 17409, -295, -295, 4368, -295, + 17409, -295, -295, 4368, 258, -295, -295, 382, 17409, -295, + 383, 258, -295, -295, -295, 4368, 4368, -295, -295, -295, + 4368, -295, -295, -295, -295, -107, -100, 14505, 17004, 4368, + -102, 17037, 2705, 17070, 4368, 4368, 14538, -295, -295, -295, + -295, 14571, 1525, 14604, 596, 4368, 17103, 1653, 4368, 14641, + 17139, 4368, 14674, 14707, 1711, 4368, 4368, 14740, 14773, 17172, + -295, 4368, 17409, -295, 10668, -123, -295, 17205, 4368, 17409, + 17409, -295, -295, -295, -295, 4368, -295, 17409, 4368, -295, + 17238, 258, -295, 4368, 17274, -295, -295, -295, 17409, 258, + -295, -295, 4368, 14810, -99, 17307, -174, 14843, 14876, 17340, + 1718, 4368, 17373, 4368, 14909, -295, -295, 391, -295, -295, + -295, -295, 4368, -295, 258, 4368, 17409, -295, 374, 1738, + 14942, -295, -295, -295 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -333, 179, -333, -333, 456, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, 170, 183, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -333, -333, -333, -333, -333, -333, - -333, -333, -333, -333, -30, -172, -1, -332, 974 + -295, 203, -295, -295, 505, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, 238, 234, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -295, -295, + -295, -295, -295, -295, -295, -295, -295, -295, -27, -116, + -1, -294, 950 }; /* 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 -194 +#define YYTABLE_NINF -198 static const yytype_int16 yytable[] = { - 251, 330, 258, 261, 263, 302, 269, 271, 353, 273, - 1033, 295, 296, 274, 291, 264, 275, 277, 292, 276, - 354, 278, 280, 283, 286, 288, 475, 476, 477, 289, - 294, 265, 266, 299, 303, 305, 308, 266, 311, 355, - 314, 316, 318, 319, 321, 323, 324, 325, 326, 328, - 290, 356, 331, 333, -191, -191, 336, -188, -188, 483, - 724, 453, 484, 334, 344, 346, 349, 352, 338, 154, - 155, 156, -132, -132, -160, -160, 342, 453, 341, 453, - -157, -157, 297, 298, 809, 453, 814, 810, 357, 815, - 564, 565, -192, -192, -189, -189, 157, -193, -193, -190, - -190, 358, 989, 453, 1031, 453, 360, 361, 453, 362, - 363, 364, 158, 159, 160, 161, 162, 163, 164, 165, - 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, - 176, 177, 178, 179, 180, 181, 365, 366, 367, 182, - 464, 465, 183, 184, 185, 186, 368, 187, 369, 370, - 188, 189, 190, 191, 192, 193, 371, 372, 373, 374, - 375, 194, 195, 196, 454, 376, 377, 478, 479, 480, - 378, 481, 379, 197, 198, 199, 200, 201, 202, 380, - 381, 391, 203, 482, 204, 205, 206, 207, 208, 209, - 382, 210, 211, 212, 213, 214, 215, 216, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 383, 233, 475, 476, 477, 384, - 385, 386, 234, 235, 236, 237, 387, 388, 238, 239, - 240, 241, 389, 390, 242, 392, 393, 243, 394, 244, - 245, 246, 300, 248, 471, 472, 395, 473, 455, 456, - 249, 396, 397, 398, 399, 400, 485, 401, 301, 487, - 402, 489, 403, 404, 266, 493, 405, 494, 406, 496, - 407, 498, 475, 476, 477, 408, 409, 410, 501, 411, - 412, 503, 808, 413, 456, 414, 456, 475, 476, 477, - 415, 416, 507, 417, 510, 512, 514, 516, 418, 419, - 518, 420, 421, 520, 422, 423, 522, 424, 456, 425, - 426, 427, 428, 429, 526, 430, 528, 464, 465, 530, - 431, 532, 432, 553, 433, 434, 535, 435, 436, 437, - 438, 539, 475, 476, 477, 439, 440, 441, 442, 443, - 444, 445, 544, 446, 546, 447, 448, 550, 449, 450, - 456, 451, 554, 555, 452, 559, 491, 478, 479, 480, - 500, 481, 537, 567, 568, 570, 571, 573, 538, 731, - 670, 473, 541, 542, 705, 581, 582, 543, 584, 585, - 586, 587, 588, 589, 590, 566, 592, 593, 594, 595, - 583, 591, 597, 598, 601, 603, 604, 605, 606, 607, - 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, - 618, 620, 622, 478, 479, 480, 623, 481, 624, 469, - 470, 471, 472, 625, 473, 749, 670, 626, 478, 479, - 480, 627, 481, 628, 629, 630, 631, 632, 633, 634, - 1001, 1002, 635, 652, 653, 654, 636, 637, 638, 639, - 660, 662, 665, 668, 640, 641, 642, 671, 672, 673, - 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, - 685, 686, 687, 478, 479, 480, 643, 481, 644, 645, - 694, 646, 696, 697, 647, 699, 670, 701, 648, 703, - 649, 650, 651, 655, 708, 656, 710, 657, 712, 713, - 658, 704, 813, 760, 761, 481, 866, 719, 720, 867, - 721, 870, 722, 881, 723, 154, 155, 156, 726, 981, - 882, 884, 730, 885, 732, 982, 734, 1043, 736, 1046, - 359, 563, 740, 741, 827, 743, 937, 560, 0, 745, - 0, 0, 157, 562, 747, 0, 0, 0, 751, 475, - 476, 477, 0, 0, 0, 0, 0, 0, 158, 159, - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, + 264, 290, 271, 274, 276, 277, 282, 284, 315, 286, + 503, 504, 505, 287, 374, 1098, 288, 308, 309, 289, + 376, 278, 293, 296, 299, 301, 375, 279, 490, 491, + 307, 291, 377, 312, 316, 318, 321, 279, 324, 302, + 327, 329, 331, 332, 334, 336, 337, 338, 339, 341, + -195, -195, 303, 346, 343, 511, 349, -192, -192, 304, + 310, 311, 512, 305, 357, 359, 362, 365, -136, -136, + 371, 599, 600, 479, 344, 162, 163, 164, -164, -164, + -161, -161, 378, 479, 860, 479, 865, 861, 355, 866, + 765, 479, -196, -196, -193, -193, -197, -197, 503, 504, + 505, 347, 165, -194, -194, 1053, 479, 351, 1096, 479, + 354, 379, 382, 381, 479, 480, 383, 384, 166, 167, + 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 385, 499, 500, 190, 501, 386, 191, 192, + 193, 194, 387, 195, 388, 389, 196, 197, 198, 199, + 200, 201, 506, 507, 508, 390, 509, 202, 203, 204, + 391, 392, 503, 504, 505, 393, 394, 395, 510, 205, + 206, 207, 208, 209, 210, 396, 397, 398, 211, 412, + 212, 213, 214, 215, 216, 217, 399, 218, 219, 220, + 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 400, 241, 401, 402, 403, 503, 504, 505, 242, 243, + 244, 245, 404, 405, 246, 247, 248, 249, 406, 407, + 250, 408, 409, 251, 252, 528, 253, 410, 254, 255, + 506, 507, 508, 256, 509, 478, 257, 258, 259, 260, + 261, 481, 482, 709, 411, 413, 414, 262, 415, 513, + 416, 417, 515, 418, 517, 263, 702, 419, 521, 420, + 522, 421, 524, 703, 526, 503, 504, 505, 422, 423, + 424, 529, 425, 426, 531, 427, 428, 482, 429, 482, + 503, 504, 505, 430, 431, 535, 432, 538, 540, 542, + 544, 433, 434, 546, 435, 436, 548, 437, 438, 550, + 439, 482, 440, 441, 506, 507, 508, 554, 509, 556, + 490, 491, 558, 442, 560, 519, 772, 709, 443, 563, + 444, 445, 446, 447, 567, 448, 449, 588, 450, 503, + 504, 505, 451, 452, 453, 572, 454, 574, 455, 456, + 578, 457, 458, 482, 459, 581, 460, 482, 461, 584, + 462, 482, 463, 589, 590, 464, 594, 506, 507, 508, + 465, 509, 466, 467, 602, 603, 605, 606, 608, 790, + 709, 468, 469, 470, 471, 472, 616, 617, 473, 619, + 620, 621, 622, 623, 624, 625, 474, 627, 628, 629, + 630, 475, 476, 632, 633, 636, 638, 477, 565, 509, + 566, 503, 504, 505, 569, 647, 648, 649, 650, 651, + 652, 653, 655, 570, 571, 601, 618, 506, 507, 508, + 626, 509, 501, 497, 498, 499, 500, 746, 501, 796, + 709, 639, 506, 507, 508, 640, 509, 641, 503, 504, + 505, 642, 643, 644, 687, 688, 689, 645, 646, 657, + 658, 695, 697, 659, 660, 661, 701, 662, 704, 707, + 663, 664, 665, 710, 711, 712, 713, 714, 715, 716, + 717, 718, 719, 720, 721, 722, 723, 724, 726, 727, + 728, 506, 507, 508, 666, 509, 667, 668, 735, 669, + 737, 738, 670, 740, 814, 742, 671, 744, 672, 673, + 674, 675, 749, 676, 751, 677, 753, 754, 678, 679, + 680, 681, 682, 683, 684, 760, 761, 685, 762, 686, + 763, 690, 764, 162, 163, 164, 767, 691, 692, 693, + 771, 698, 773, 745, 775, 808, 777, 809, 859, 922, + 781, 782, 923, 784, 864, 926, 938, 786, 939, 941, + 165, 942, 788, 506, 507, 508, 792, 509, 1045, 1046, + 1108, 1111, 595, 380, 799, 553, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, - 180, 181, 0, 0, 0, 182, 0, 0, 183, 184, - 185, 186, 0, 187, 0, 0, 188, 189, 190, 191, - 192, 193, 0, 0, 0, 0, 0, 194, 195, 196, - 0, 0, 0, 475, 476, 477, 0, 0, 0, 197, - 198, 199, 200, 201, 202, 0, 0, 0, 203, 0, - 204, 205, 206, 207, 208, 209, 0, 210, 211, 212, - 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 506, 507, 508, 190, 509, 597, 191, 192, 193, 194, + 598, 195, 800, 709, 196, 197, 198, 199, 200, 201, + 999, 878, 0, 0, 0, 202, 203, 204, 503, 504, + 505, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 0, 233, 475, 476, 477, 0, 0, 0, 234, 235, - 236, 237, 0, 0, 238, 239, 240, 241, 0, 0, - 242, 0, 0, 243, 0, 244, 245, 246, 247, 248, - 478, 479, 480, 0, 481, 0, 249, 822, 0, 823, - 0, 825, 0, 766, 250, 493, 828, 0, 830, 0, - 832, 0, 0, 0, 0, 0, 0, 836, 0, 0, - 0, 0, 0, 0, 842, 475, 476, 477, 844, 0, - 846, 0, 848, 0, 850, 0, 852, 0, 854, 0, - 0, 857, 0, 859, 0, 860, 0, 0, 862, 0, - 0, 0, 0, 865, 478, 479, 480, 869, 481, 871, - 872, 873, 874, 0, 0, 0, 0, 768, 875, 876, - 877, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 475, 476, 477, 879, 880, 475, 476, 477, 0, 896, - 0, 0, 0, 478, 479, 480, 0, 481, 0, 0, - 883, 475, 476, 477, 0, 886, 772, 887, 0, 888, - 0, 0, 0, 891, 0, 893, 0, 0, 897, 0, - 899, 0, 901, 0, 0, 0, 905, 906, 907, 908, - 909, 0, 0, 0, 913, 0, 916, 0, 0, 0, - 920, 0, 0, 0, 925, 926, 0, 928, 0, 0, - 0, 0, 933, 833, 0, 936, 478, 479, 480, 0, - 481, 0, 0, 0, 0, 0, 0, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 954, - 0, 955, 0, 958, 0, 0, 0, 960, 0, 0, - 0, 0, 0, 963, 0, 0, 0, 461, 462, 463, - 0, 968, 0, 0, 970, 0, 0, 0, 973, 464, - 465, 976, 0, 977, 0, 0, 979, 0, 0, 992, - 980, 478, 479, 480, 0, 481, 478, 479, 480, 0, - 481, 0, 983, 984, 773, 0, 0, 985, 0, 788, - 0, 0, 478, 479, 480, 988, 481, 0, 993, 0, - 995, 996, 475, 476, 477, 791, 0, 0, 0, 0, - 0, 1003, 0, 0, 1006, 252, 256, 1010, 0, 0, - 1013, 0, 0, 0, 0, 0, 1018, 0, 0, 1020, - 0, 1034, 0, 1022, 0, 0, 0, 281, 284, 0, - 1023, 0, 0, 1024, 154, 155, 156, 0, 1027, 0, - 306, 0, 310, 312, 313, 0, 1029, 0, 466, 467, - 468, 469, 470, 471, 472, 329, 473, 1041, 0, 0, - 335, 157, 337, 0, 339, 340, 0, 0, 0, 1045, - 347, 350, 0, 0, 0, 0, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 475, 476, 477, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 478, 479, 480, 0, 481, 197, 198, - 199, 200, 201, 202, 0, 0, 802, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 0, 0, 0, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 0, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 250, 663, 0, 962, 0, 0, 0, - 0, 664, 0, 0, 0, 0, 0, 0, 0, 458, - 459, 460, 478, 479, 480, 0, 481, 0, 475, 476, - 477, 0, 0, 0, 457, 902, 0, 0, 475, 476, - 477, 457, 0, 0, 457, 0, 457, 0, 0, 461, - 462, 463, 457, 0, 457, 0, 457, 475, 476, 477, - 0, 464, 465, 457, 0, 0, 457, 0, 0, 457, - 0, 457, 475, 476, 477, 0, 0, 457, 458, 459, - 460, 0, 0, 0, 0, 457, 0, 0, 457, 0, - 0, 457, 0, 524, 0, 475, 476, 477, 0, 457, - 0, 457, 0, 0, 457, 0, 457, 0, 461, 462, - 463, 457, 0, 0, 0, 0, 457, 0, 0, 0, - 464, 465, 0, 0, 0, 0, 0, 457, 0, 547, - 0, 0, 457, 0, 0, 457, 475, 476, 477, 558, - 0, 0, 475, 476, 477, 0, 0, 0, 0, 0, - 0, 572, 0, 574, 575, 576, 577, 578, 579, 580, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 478, - 479, 480, 0, 481, 0, 0, 596, 0, 599, 478, - 479, 480, 903, 481, 0, 0, 0, 0, 475, 476, - 477, 0, 911, 0, 0, 0, 0, 621, 478, 479, - 480, 0, 481, 0, 0, 0, 0, 0, 0, 0, - 0, 923, 0, 478, 479, 480, 0, 481, 0, 466, - 467, 468, 469, 470, 471, 472, 934, 473, 0, 0, - 0, 0, 0, 0, 0, 474, 478, 479, 480, 0, - 481, 0, 0, 0, 0, 0, 475, 476, 477, 947, - 0, 0, 0, 0, 684, 0, 0, 0, 0, 688, - 689, 690, 691, 692, 693, 695, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 478, 479, 480, - 0, 481, 0, 478, 479, 480, 715, 481, 717, 0, - 999, 0, 0, 457, 0, 457, 1005, 457, 0, 457, - 154, 155, 156, 0, 0, 728, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 738, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 157, 0, 478, - 479, 480, 750, 481, 0, 753, 0, 0, 0, 0, - 757, 0, 1038, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 475, 476, 477, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 478, 479, 480, - 0, 481, 194, 195, 196, 0, 475, 476, 477, 0, - 1047, 475, 476, 477, 197, 198, 199, 200, 201, 202, - 475, 476, 477, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 0, 0, - 0, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 458, 459, 460, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 250, - 666, 0, 0, 0, 0, 0, 0, 667, 834, 0, - 835, 0, 0, 0, 0, 461, 462, 463, 478, 479, - 480, 843, 481, 0, 0, 0, 0, 464, 465, 0, - 525, 853, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 861, 0, 0, 0, 864, 478, 479, 480, - 0, 481, 478, 479, 480, 0, 481, 0, 0, 549, - 0, 478, 479, 480, 769, 481, 0, 0, 878, 0, - 0, 0, 0, 770, 0, 0, 1, 2, 0, 0, - 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 0, 15, 16, 17, 18, 19, 20, - 21, 0, 0, 22, 23, 0, 24, 25, 26, 27, - 28, 29, 0, 30, 31, 0, 0, 0, 32, 33, - 0, 475, 476, 477, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 0, 0, 0, 754, 914, - 0, 755, 0, 918, 0, 921, 0, 0, 0, 34, - 35, 475, 476, 477, 0, 36, 0, 0, 475, 476, - 477, 0, 757, 0, 939, 37, 38, 39, 40, 41, - 0, 0, 0, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 0, 0, 0, 0, 0, 0, 51, 52, - 53, 0, 54, 0, 0, 0, 0, 0, 0, 55, - 0, 0, 0, 0, 0, 0, 969, 0, 0, 0, - 0, 971, 0, 974, 0, 475, 476, 477, 0, 0, - 0, 0, 0, 56, 0, 57, 58, 59, 60, 61, - 62, 0, 0, 0, 0, 63, 64, 0, 0, 0, - 0, 65, 66, 0, 67, 68, 475, 476, 477, 0, - 0, 69, 70, 0, 0, 71, 0, 0, 0, 0, - 0, 0, 478, 479, 480, -16, 481, 0, 0, 1007, - 0, 0, 0, 0, 771, 0, 1014, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, - 155, 156, 478, 479, 480, 0, 481, 0, 1025, 478, - 479, 480, 0, 481, 774, 0, 0, 0, 0, 0, - 0, 863, 0, 0, 0, 0, 157, 0, 0, 0, - 1039, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1044, 158, 159, 160, 161, 162, 163, 164, 165, - 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, - 176, 177, 178, 179, 180, 181, 478, 479, 480, 182, - 481, 0, 183, 184, 185, 186, 0, 187, 868, 0, - 188, 189, 190, 191, 192, 193, 0, 0, 0, 0, - 0, 194, 195, 196, 0, 0, 0, 478, 479, 480, - 0, 481, 0, 197, 198, 199, 200, 201, 202, 931, - 0, 0, 203, 0, 204, 205, 206, 207, 208, 209, - 0, 210, 211, 212, 213, 214, 215, 216, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 0, 233, 0, 0, 0, 0, - 0, 0, 234, 235, 236, 237, 0, 0, 238, 239, - 240, 241, 0, 0, 242, 0, 0, 243, 0, 244, - 245, 246, 247, 248, 154, 155, 156, 0, 0, 0, - 249, 0, 0, 0, 0, 0, 0, 0, 250, 0, - 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, - 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 475, 476, 477, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 0, 0, 0, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 154, - 155, 156, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 250, 0, 0, 0, 0, 0, 556, - 0, 0, 0, 0, 0, 0, 157, 0, 0, 0, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 503, 504, 505, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 0, 0, + 0, 256, 490, 491, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 873, 0, + 874, 0, 876, 263, 0, 533, 521, 879, 0, 881, + 0, 883, 0, 0, 0, 0, 0, 0, 887, 0, + 0, 0, 503, 504, 505, 893, 0, 0, 0, 895, + 0, 897, 0, 899, 0, 901, 0, 903, 0, 905, + 0, 0, 908, 0, 910, 0, 911, 0, 0, 913, + 506, 507, 508, 0, 509, 0, 0, 919, 0, 0, + 0, 921, 1065, 1066, 0, 925, 0, 927, 928, 929, + 930, 503, 504, 505, 0, 0, 931, 932, 933, 492, + 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 497, 498, 499, 500, 0, + 501, 935, 936, 506, 507, 508, 0, 509, 0, 0, + 0, 0, 0, 953, 0, 0, 816, 0, 0, 0, + 0, 940, 0, 0, 0, 0, 943, 0, 944, 0, + 945, 0, 0, 0, 948, 0, 950, 0, 0, 954, + 0, 956, 0, 958, 0, 0, 0, 962, 963, 964, + 965, 966, 0, 0, 0, 970, 0, 973, 0, 0, + 0, 977, 0, 0, 0, 982, 983, 0, 985, 503, + 504, 505, 0, 990, 506, 507, 508, 0, 509, 0, + 0, 998, 0, 0, 0, 0, 0, 820, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 503, 504, 505, + 0, 0, 0, 0, 0, 0, 1017, 0, 1018, 0, + 1021, 265, 269, 0, 1023, 503, 504, 505, 0, 0, + 1026, 0, 0, 506, 507, 508, 0, 509, 1031, 0, + 0, 1033, 0, 294, 297, 1036, 821, 0, 1039, 0, + 1040, 0, 884, 1042, 0, 0, 319, 1043, 323, 325, + 326, 503, 504, 505, 0, 1056, 484, 485, 486, 0, + 0, 342, 0, 0, 1047, 1048, 348, 0, 350, 1049, + 352, 353, 503, 504, 505, 0, 360, 363, 1052, 367, + 369, 1057, 373, 1059, 1060, 0, 487, 488, 489, 0, + 0, 0, 1025, 0, 1067, 0, 0, 1070, 490, 491, + 1074, 0, 0, 0, 1078, 484, 485, 486, 0, 0, + 1083, 0, 0, 1085, 484, 485, 486, 1087, 0, 1099, + 0, 506, 507, 508, 1088, 509, 0, 1089, 0, 0, + 0, 0, 1092, 0, 836, 487, 488, 489, 0, 0, + 0, 1094, 0, 0, 487, 488, 489, 490, 491, 506, + 507, 508, 1106, 509, 0, 0, 490, 491, 0, 503, + 504, 505, 839, 0, 1110, 0, 0, 506, 507, 508, + 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, + 850, 503, 504, 505, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 492, 493, 0, 0, 0, + 503, 504, 505, 506, 507, 508, 0, 509, 494, 495, + 496, 497, 498, 499, 500, 577, 501, 0, 0, 0, + 0, 0, 0, 0, 506, 507, 508, 0, 509, 0, + 0, 503, 504, 505, 0, 0, 0, 856, 0, 0, + 0, 0, 0, 0, 492, 493, 0, 0, 0, 0, + 0, 0, 0, 492, 493, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 494, 495, 496, 497, + 498, 499, 500, 483, 501, 503, 504, 505, 0, 0, + 483, 0, 502, 483, 0, 483, 0, 0, 0, 0, + 0, 483, 0, 483, 0, 483, 0, 0, 0, 503, + 504, 505, 483, 0, 0, 483, 0, 0, 483, 0, + 483, 506, 507, 508, 0, 509, 483, 484, 485, 486, + 0, 0, 0, 583, 483, 0, 0, 483, 0, 0, + 483, 0, 552, 506, 507, 508, 0, 509, 483, 0, + 483, 0, 0, 483, 0, 483, 959, 487, 488, 489, + 483, 0, 506, 507, 508, 483, 509, 0, 0, 490, + 491, 0, 0, 0, 0, 960, 483, 0, 575, 0, + 0, 483, 0, 0, 483, 0, 483, 0, 582, 0, + 483, 0, 586, 506, 507, 508, 593, 509, 0, 0, + 0, 0, 503, 504, 505, 0, 968, 0, 607, 0, + 609, 610, 611, 612, 613, 614, 615, 0, 0, 0, + 0, 0, 503, 504, 505, 0, 0, 0, 484, 485, + 486, 0, 0, 631, 0, 634, 0, 506, 507, 508, + 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, + 980, 0, 0, 0, 656, 0, 0, 0, 487, 488, + 489, 506, 507, 508, 0, 509, 492, 493, 0, 0, + 490, 491, 0, 0, 991, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 802, 0, 0, 803, 699, 700, 0, 0, 0, + 0, 0, 0, 0, 0, 503, 504, 505, 0, 0, + 0, 0, 0, 0, 0, 503, 504, 505, 725, 0, + 0, 0, 0, 729, 730, 731, 732, 733, 734, 736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 158, 159, 160, 161, 162, 163, 164, 165, - 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, - 176, 177, 178, 179, 180, 181, 478, 479, 480, 182, - 481, 0, 183, 184, 185, 186, 0, 187, 972, 0, - 188, 189, 190, 191, 192, 193, 0, 0, 0, 0, - 0, 194, 195, 196, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 197, 198, 199, 200, 201, 202, 0, - 0, 0, 203, 0, 204, 205, 206, 207, 208, 209, - 0, 210, 211, 212, 213, 214, 215, 216, 217, 218, - 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 0, 233, 0, 0, 0, 0, - 0, 0, 234, 235, 236, 237, 0, 0, 238, 239, - 240, 241, 0, 0, 242, 0, 0, 243, 0, 244, - 245, 246, 895, 248, 154, 155, 156, 0, 0, 0, - 249, 0, 0, 0, 0, 0, 0, 0, 250, 0, - 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, - 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 0, 0, 0, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 991, 248, 154, - 155, 156, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 250, 0, 0, 0, 0, 0, 266, - 0, 0, 0, 0, 0, 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 158, 159, 160, 161, 162, 163, 164, 165, + 756, 0, 758, 0, 506, 507, 508, 483, 509, 483, + 0, 483, 0, 483, 0, 0, 587, 492, 493, 769, + 162, 163, 164, 0, 506, 507, 508, 0, 509, 779, + 494, 495, 496, 497, 498, 499, 500, 992, 501, 0, + 0, 0, 806, 0, 0, 807, 791, 165, 0, 794, + 0, 0, 0, 797, 503, 504, 505, 801, 0, 0, + 0, 805, 0, 166, 167, 168, 169, 170, 171, 172, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 503, 504, 505, + 190, 0, 0, 191, 192, 193, 194, 0, 195, 0, + 0, 196, 197, 198, 199, 200, 201, 506, 507, 508, + 0, 509, 202, 203, 204, 0, 0, 506, 507, 508, + 996, 509, 0, 0, 205, 206, 207, 208, 209, 210, + 1009, 0, 0, 211, 0, 212, 213, 214, 215, 216, + 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 0, 241, 0, 0, 0, + 0, 0, 0, 242, 243, 244, 245, 0, 0, 246, + 247, 248, 249, 0, 0, 250, 0, 0, 251, 252, + 0, 253, 0, 254, 255, 0, 0, 0, 256, 0, + 0, 257, 258, 259, 260, 261, 506, 507, 508, 0, + 509, 0, 262, 0, 0, 503, 504, 505, 0, 1012, + 263, 705, 503, 504, 505, 885, 0, 886, 706, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 894, 506, + 507, 508, 0, 509, 0, 0, 0, 0, 904, 0, + 0, 0, 1063, 0, 0, 0, 0, 0, 0, 912, + 0, 0, 0, 915, 0, 916, 917, 0, 0, 0, + 920, 0, 0, 503, 504, 505, 0, 0, 0, 0, + 503, 504, 505, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 934, 0, 0, 0, 0, 0, 0, 0, + 503, 504, 505, 0, 0, 0, 0, 0, 1, 2, + 0, 0, 0, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 0, 0, 0, 937, 0, 0, + 0, 0, 21, 0, 0, 22, 23, 0, 24, 25, + 26, 27, 28, 29, 0, 596, 31, 0, 0, 0, + 32, 33, 0, 503, 504, 505, 0, 0, 503, 504, + 505, 0, 0, 0, 0, 0, 971, 506, 507, 508, + 975, 509, 978, 0, 506, 507, 508, 0, 509, 0, + 1069, 34, 35, 503, 504, 505, 817, 36, 994, 503, + 504, 505, 0, 0, 805, 0, 1001, 37, 38, 39, + 40, 41, 503, 504, 505, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 0, 0, 0, 0, 0, 0, + 51, 52, 53, 0, 54, 506, 507, 508, 0, 509, + 0, 55, 506, 507, 508, 0, 509, 0, 1077, 1032, + 0, 0, 0, 0, 1034, 1103, 1037, 0, 0, 0, + 0, 0, 506, 507, 508, 56, 509, 57, 58, 59, + 60, 61, 62, 1044, 0, 1112, 0, 63, 64, 0, + 0, 0, 0, 65, 66, 0, 67, 68, 0, 0, + 69, 0, 70, 0, 0, 71, 0, 0, 0, 72, + 0, 0, 0, 0, 73, 74, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 506, 507, 508, 1071, 509, + 506, 507, 508, 0, 509, 0, 1079, 818, 0, 0, + 0, 0, 819, 0, 0, 0, 0, 0, 0, 0, + 162, 163, 164, 0, 0, 506, 507, 508, 1090, 509, + 0, 506, 507, 508, 0, 509, 0, 822, 0, 0, + 0, 0, 0, 857, 506, 507, 508, 165, 509, 0, + 0, 1104, 0, 0, 0, 0, 914, 0, 0, 0, + 0, 0, 1109, 166, 167, 168, 169, 170, 171, 172, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 0, 0, 0, + 190, 0, 0, 191, 192, 193, 194, 0, 195, 0, + 0, 196, 197, 198, 199, 200, 201, 0, 0, 0, + 0, 0, 202, 203, 204, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, + 503, 504, 505, 211, 0, 212, 213, 214, 215, 216, + 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 0, 241, 0, 0, 0, + 0, 0, 0, 242, 243, 244, 245, 0, 0, 246, + 247, 248, 249, 0, 0, 250, 0, 0, 251, 252, + 0, 253, 0, 254, 255, 162, 163, 164, 256, 0, + 0, 257, 258, 259, 313, 261, 0, 0, 0, 0, + 0, 0, 262, 0, 0, 0, 0, 0, 0, 0, + 314, 0, 165, 0, 0, 0, 279, 0, 0, 503, + 504, 505, 0, 0, 0, 0, 0, 0, 166, 167, + 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 0, 0, 0, 190, 0, 0, 191, 192, + 193, 194, 0, 195, 0, 0, 196, 197, 198, 199, + 200, 201, 506, 507, 508, 0, 509, 202, 203, 204, + 0, 0, 0, 0, 918, 0, 0, 0, 0, 205, + 206, 207, 208, 209, 210, 503, 504, 505, 211, 0, + 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, + 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 0, 241, 0, 0, 0, 0, 0, 0, 242, 243, + 244, 245, 0, 0, 246, 247, 248, 249, 0, 0, + 250, 0, 0, 251, 252, 0, 253, 0, 254, 255, + 162, 163, 164, 256, 0, 0, 257, 258, 259, 260, + 261, 506, 507, 508, 0, 509, 0, 262, 0, 0, + 0, 0, 0, 924, 0, 263, 0, 165, 0, 0, + 0, 279, 0, 0, 503, 504, 505, 0, 0, 0, + 0, 0, 0, 166, 167, 168, 169, 170, 171, 172, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 0, 0, 0, + 190, 0, 0, 191, 192, 193, 194, 0, 195, 0, + 0, 196, 197, 198, 199, 200, 201, 506, 507, 508, + 0, 509, 202, 203, 204, 0, 0, 0, 0, 988, + 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, + 503, 504, 505, 211, 0, 212, 213, 214, 215, 216, + 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 0, 241, 0, 0, 0, + 0, 0, 0, 242, 243, 244, 245, 0, 0, 246, + 247, 248, 249, 0, 0, 250, 0, 0, 251, 252, + 0, 253, 0, 254, 255, 162, 163, 164, 256, 0, + 0, 257, 258, 259, 260, 261, 506, 507, 508, 0, + 509, 0, 262, 0, 0, 0, 0, 0, 993, 0, + 263, 0, 165, 0, 0, 0, 591, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, + 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 0, 0, 0, 190, 0, 0, 191, 192, + 193, 194, 0, 195, 0, 0, 196, 197, 198, 199, + 200, 201, 506, 507, 508, 0, 509, 202, 203, 204, + 0, 0, 0, 0, 1035, 0, 0, 0, 0, 205, + 206, 207, 208, 209, 210, 0, 0, 0, 211, 0, + 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, + 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 0, 241, 0, 0, 0, 0, 0, 0, 242, 243, + 244, 245, 0, 0, 246, 247, 248, 249, 0, 0, + 250, 0, 0, 251, 252, 0, 253, 0, 254, 255, + 162, 163, 164, 256, 0, 0, 257, 258, 259, 952, + 261, 0, 0, 0, 0, 0, 0, 262, 0, 0, + 0, 0, 0, 0, 0, 263, 0, 165, 0, 0, + 0, 279, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 166, 167, 168, 169, 170, 171, 172, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 0, 0, 0, + 190, 0, 0, 191, 192, 193, 194, 0, 195, 0, + 0, 196, 197, 198, 199, 200, 201, 0, 0, 0, + 0, 0, 202, 203, 204, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, + 0, 0, 0, 211, 0, 212, 213, 214, 215, 216, + 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 0, 241, 0, 0, 0, + 0, 0, 0, 242, 243, 244, 245, 0, 0, 246, + 247, 248, 249, 0, 0, 250, 0, 0, 251, 252, + 0, 253, 0, 254, 255, 162, 163, 164, 256, 0, + 0, 257, 258, 259, 1055, 261, 0, 0, 0, 0, + 0, 0, 262, 0, 0, 0, 0, 0, 0, 0, + 263, 0, 165, 0, 0, 0, 279, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, + 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 0, 0, 0, 190, 0, 0, 191, 192, + 193, 194, 0, 195, 0, 0, 196, 197, 198, 199, + 200, 201, 0, 0, 0, 0, 0, 202, 203, 204, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, + 206, 207, 208, 209, 210, 0, 0, 0, 211, 0, + 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, + 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 0, 241, 0, 0, 0, 0, 0, 0, 242, 243, + 244, 245, 0, 0, 246, 247, 248, 249, 0, 0, + 250, 0, 0, 251, 252, 0, 253, 0, 254, 255, + 0, 0, 0, 256, 0, 0, 257, 258, 259, 260, + 261, 162, 163, 164, 0, 0, 0, 262, 0, 0, + 0, 0, 0, 0, 0, 263, 0, 534, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 165, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 166, 167, 168, 169, 170, 171, + 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 0, 0, + 0, 190, 0, 0, 191, 192, 193, 194, 0, 195, + 0, 0, 196, 197, 198, 199, 200, 201, 0, 0, + 0, 0, 0, 202, 203, 204, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 205, 206, 207, 208, 209, + 210, 0, 0, 0, 211, 0, 212, 213, 214, 215, + 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 0, 241, 0, 0, + 0, 0, 0, 0, 242, 243, 244, 245, 0, 0, + 246, 247, 248, 249, 0, 0, 250, 0, 0, 251, + 252, 0, 253, 0, 254, 255, 0, 0, 0, 256, + 0, 0, 257, 258, 259, 260, 261, 162, 163, 164, + 0, 0, 0, 262, 0, 0, 0, 0, 0, 0, + 0, 263, 0, 580, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, - 176, 177, 178, 179, 180, 181, 0, 0, 0, 182, - 0, 0, 183, 184, 185, 186, 0, 187, 0, 0, - 188, 189, 190, 191, 192, 193, 0, 0, 0, 0, - 0, 194, 195, 196, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 197, 198, 199, 200, 201, 202, 0, - 0, 0, 203, 0, 204, 205, 206, 207, 208, 209, - 0, 210, 211, 212, 213, 214, 215, 216, 217, 218, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 0, 0, 0, 190, 0, 0, + 191, 192, 193, 194, 0, 195, 0, 0, 196, 197, + 198, 199, 200, 201, 0, 0, 0, 0, 0, 202, + 203, 204, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 205, 206, 207, 208, 209, 210, 0, 0, 0, + 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230, 231, 232, 0, 233, 0, 0, 154, 155, - 156, 0, 234, 235, 236, 237, 0, 0, 238, 239, - 240, 241, 0, 0, 242, 0, 0, 243, 0, 244, - 245, 246, 247, 248, 0, 157, 0, 0, 0, 0, - 249, 0, 0, 0, 0, 0, 0, 0, 250, 0, - 505, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 0, 154, 155, 156, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 0, 157, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 250, 0, 506, - 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, + 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 0, 241, 0, 0, 0, 0, 0, 0, + 242, 243, 244, 245, 0, 0, 246, 247, 248, 249, + 0, 0, 250, 0, 0, 251, 252, 0, 253, 0, + 254, 255, 0, 0, 0, 256, 0, 0, 257, 258, + 259, 260, 261, 162, 163, 164, 0, 0, 0, 262, + 0, 0, 0, 0, 0, 0, 0, 263, 0, 604, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 0, 0, + 0, 256, 0, 0, 257, 258, 259, 260, 261, 162, + 163, 164, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 263, 0, 635, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 166, 167, 168, 169, 170, 171, 172, 173, + 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 0, 0, 0, 190, + 0, 0, 191, 192, 193, 194, 0, 195, 0, 0, + 196, 197, 198, 199, 200, 201, 0, 0, 0, 0, + 0, 202, 203, 204, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 205, 206, 207, 208, 209, 210, 0, + 0, 0, 211, 0, 212, 213, 214, 215, 216, 217, + 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, + 237, 238, 239, 240, 0, 241, 0, 0, 0, 0, + 0, 0, 242, 243, 244, 245, 0, 0, 246, 247, + 248, 249, 0, 0, 250, 0, 0, 251, 252, 0, + 253, 0, 254, 255, 0, 0, 0, 256, 0, 0, + 257, 258, 259, 260, 261, 162, 163, 164, 0, 0, + 0, 262, 0, 0, 0, 0, 0, 0, 0, 263, + 0, 637, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, - 178, 179, 180, 181, 0, 0, 0, 182, 0, 0, - 183, 184, 185, 186, 0, 187, 0, 0, 188, 189, - 190, 191, 192, 193, 0, 0, 0, 0, 0, 194, - 195, 196, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 197, 198, 199, 200, 201, 202, 0, 0, 0, - 203, 0, 204, 205, 206, 207, 208, 209, 0, 210, - 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 0, 0, 0, 190, 0, 0, 191, 192, + 193, 194, 0, 195, 0, 0, 196, 197, 198, 199, + 200, 201, 0, 0, 0, 0, 0, 202, 203, 204, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, + 206, 207, 208, 209, 210, 0, 0, 0, 211, 0, + 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 0, 233, 0, 0, 154, 155, 156, 0, - 234, 235, 236, 237, 0, 0, 238, 239, 240, 241, - 0, 0, 242, 0, 0, 243, 0, 244, 245, 246, - 247, 248, 0, 157, 0, 0, 0, 0, 249, 0, - 0, 0, 0, 0, 0, 0, 250, 0, 552, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 0, 154, 155, 156, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 0, 157, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 250, 0, 569, 158, 159, - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, + 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, + 0, 241, 0, 0, 0, 0, 0, 0, 242, 243, + 244, 245, 0, 0, 246, 247, 248, 249, 0, 0, + 250, 0, 0, 251, 252, 0, 253, 0, 254, 255, + 0, 0, 0, 256, 0, 0, 257, 258, 259, 260, + 261, 162, 163, 164, 0, 0, 0, 262, 0, 0, + 0, 0, 0, 0, 0, 263, 0, 654, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 165, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 166, 167, 168, 169, 170, 171, + 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 0, 0, + 0, 190, 0, 0, 191, 192, 193, 194, 0, 195, + 0, 0, 196, 197, 198, 199, 200, 201, 0, 0, + 0, 0, 0, 202, 203, 204, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 205, 206, 207, 208, 209, + 210, 0, 0, 0, 211, 0, 212, 213, 214, 215, + 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 0, 241, 0, 0, + 0, 0, 0, 0, 242, 243, 244, 245, 0, 0, + 246, 247, 248, 249, 0, 0, 250, 0, 0, 251, + 252, 0, 253, 0, 254, 255, 0, 0, 0, 256, + 0, 0, 257, 258, 259, 260, 261, 162, 163, 164, + 0, 0, 0, 262, 0, 0, 0, 0, 0, 0, + 0, 263, 0, 694, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 0, 0, 0, 190, 0, 0, + 191, 192, 193, 194, 0, 195, 0, 0, 196, 197, + 198, 199, 200, 201, 0, 0, 0, 0, 0, 202, + 203, 204, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 205, 206, 207, 208, 209, 210, 0, 0, 0, + 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, + 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, + 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 0, 241, 0, 0, 0, 0, 0, 0, + 242, 243, 244, 245, 0, 0, 246, 247, 248, 249, + 0, 0, 250, 0, 0, 251, 252, 0, 253, 0, + 254, 255, 0, 0, 0, 256, 0, 0, 257, 258, + 259, 260, 261, 162, 163, 164, 0, 0, 0, 262, + 0, 0, 0, 0, 0, 0, 0, 263, 0, 696, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, - 180, 181, 0, 0, 0, 182, 0, 0, 183, 184, - 185, 186, 0, 187, 0, 0, 188, 189, 190, 191, - 192, 193, 0, 0, 0, 0, 0, 194, 195, 196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 197, - 198, 199, 200, 201, 202, 0, 0, 0, 203, 0, - 204, 205, 206, 207, 208, 209, 0, 210, 211, 212, - 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 0, 233, 0, 0, 154, 155, 156, 0, 234, 235, - 236, 237, 0, 0, 238, 239, 240, 241, 0, 0, - 242, 0, 0, 243, 0, 244, 245, 246, 247, 248, - 0, 157, 0, 0, 0, 0, 249, 0, 0, 0, - 0, 0, 0, 0, 250, 0, 600, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 0, 154, 155, 156, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 0, - 157, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 250, 0, 602, 158, 159, 160, 161, - 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, - 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, - 0, 0, 0, 182, 0, 0, 183, 184, 185, 186, - 0, 187, 0, 0, 188, 189, 190, 191, 192, 193, - 0, 0, 0, 0, 0, 194, 195, 196, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 197, 198, 199, - 200, 201, 202, 0, 0, 0, 203, 0, 204, 205, - 206, 207, 208, 209, 0, 210, 211, 212, 213, 214, - 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 228, 229, 230, 231, 232, 0, 233, - 0, 0, 154, 155, 156, 0, 234, 235, 236, 237, - 0, 0, 238, 239, 240, 241, 0, 0, 242, 0, - 0, 243, 0, 244, 245, 246, 247, 248, 0, 157, - 0, 0, 0, 0, 249, 0, 0, 0, 0, 0, - 0, 0, 250, 0, 619, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 0, 154, 155, 156, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 0, 157, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 250, 0, 659, 158, 159, 160, 161, 162, 163, - 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, - 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, - 0, 182, 0, 0, 183, 184, 185, 186, 0, 187, - 0, 0, 188, 189, 190, 191, 192, 193, 0, 0, - 0, 0, 0, 194, 195, 196, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 197, 198, 199, 200, 201, - 202, 0, 0, 0, 203, 0, 204, 205, 206, 207, - 208, 209, 0, 210, 211, 212, 213, 214, 215, 216, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, - 227, 228, 229, 230, 231, 232, 0, 233, 0, 0, - 154, 155, 156, 0, 234, 235, 236, 237, 0, 0, - 238, 239, 240, 241, 0, 0, 242, 0, 0, 243, - 0, 244, 245, 246, 247, 248, 0, 157, 0, 0, - 0, 0, 249, 0, 0, 0, 0, 0, 0, 0, - 250, 0, 661, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 263, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 253, 254, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 250, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 257, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 260, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 262, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 268, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 266, 267, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 263, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 270, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 270, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 272, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 279, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 282, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 285, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 273, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 275, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 287, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 293, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 304, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 307, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 309, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 281, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 283, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 315, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 317, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 320, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 322, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 327, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 285, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 292, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 332, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 343, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 345, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 348, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 247, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 351, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 295, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 298, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 247, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 509, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 154, 155, 156, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 247, 248, 157, 0, 0, 0, 0, 0, 249, - 0, 0, 0, 0, 0, 0, 0, 511, 0, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 0, 0, 0, 182, 0, 0, 183, - 184, 185, 186, 0, 187, 0, 0, 188, 189, 190, - 191, 192, 193, 0, 0, 0, 0, 0, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 0, 0, 0, 203, - 0, 204, 205, 206, 207, 208, 209, 0, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 233, 0, 154, 155, 156, 0, 0, 234, - 235, 236, 237, 0, 0, 238, 239, 240, 241, 0, - 0, 242, 0, 0, 243, 0, 244, 245, 246, 247, - 248, 157, 0, 0, 0, 0, 0, 249, 0, 0, - 0, 0, 0, 0, 0, 513, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 0, 0, 0, 182, 0, 0, 183, 184, 185, - 186, 0, 187, 0, 0, 188, 189, 190, 191, 192, - 193, 0, 0, 0, 0, 0, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 197, 198, - 199, 200, 201, 202, 0, 0, 0, 203, 0, 204, - 205, 206, 207, 208, 209, 0, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 0, - 233, 0, 154, 155, 156, 0, 0, 234, 235, 236, - 237, 0, 0, 238, 239, 240, 241, 0, 0, 242, - 0, 0, 243, 0, 244, 245, 246, 247, 248, 157, - 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, - 0, 0, 0, 515, 0, 158, 159, 160, 161, 162, - 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, - 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, - 0, 0, 182, 0, 0, 183, 184, 185, 186, 0, - 187, 0, 0, 188, 189, 190, 191, 192, 193, 0, - 0, 0, 0, 0, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 0, 0, 0, 203, 0, 204, 205, 206, - 207, 208, 209, 0, 210, 211, 212, 213, 214, 215, - 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 231, 232, 0, 233, 0, - 154, 155, 156, 0, 0, 234, 235, 236, 237, 0, - 0, 238, 239, 240, 241, 0, 0, 242, 0, 0, - 243, 0, 244, 245, 246, 517, 248, 157, 0, 0, - 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, - 0, 250, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 175, 176, 177, 178, 179, 180, 181, 0, 0, 0, - 182, 0, 0, 183, 184, 185, 186, 0, 187, 0, - 0, 188, 189, 190, 191, 192, 193, 0, 0, 0, - 0, 0, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 0, 0, 0, 203, 0, 204, 205, 206, 207, 208, - 209, 0, 210, 211, 212, 213, 214, 215, 216, 217, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 300, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 306, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 317, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 320, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 322, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 328, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 330, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 333, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 335, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 340, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 345, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 356, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 358, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 361, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 364, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 366, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 368, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 370, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 372, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 537, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 539, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 260, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 541, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, + 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 260, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 543, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 162, 163, + 164, 256, 0, 0, 257, 258, 259, 545, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 263, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 0, 0, 0, 190, 0, + 0, 191, 192, 193, 194, 0, 195, 0, 0, 196, + 197, 198, 199, 200, 201, 0, 0, 0, 0, 0, + 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 205, 206, 207, 208, 209, 210, 0, 0, + 0, 211, 0, 212, 213, 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 230, 231, 232, 0, 233, 0, 154, 155, - 156, 0, 0, 234, 235, 236, 237, 0, 0, 238, - 239, 240, 241, 0, 0, 242, 0, 0, 243, 0, - 244, 245, 246, 957, 248, 157, 0, 0, 0, 0, - 0, 249, 0, 0, 0, 0, 0, 0, 0, 250, - 0, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 0, 0, 0, 182, 0, - 0, 183, 184, 185, 186, 0, 187, 0, 0, 188, - 189, 190, 191, 192, 193, 0, 0, 0, 0, 0, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 0, 0, - 0, 203, 0, 204, 205, 206, 207, 208, 209, 0, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 0, 233, 0, 0, 0, 0, 0, - 0, 234, 235, 236, 237, 0, 0, 238, 239, 240, - 241, 0, 0, 242, 0, 0, 243, 0, 244, 245, - 246, 1019, 248, 0, 0, 0, 0, 0, 0, 249, - 458, 459, 460, 1, 2, 0, 0, 250, 3, 4, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 0, 241, 0, 0, 0, 0, 0, + 0, 242, 243, 244, 245, 0, 0, 246, 247, 248, + 249, 0, 0, 250, 0, 0, 251, 252, 0, 253, + 0, 254, 255, 162, 163, 164, 256, 0, 0, 257, + 258, 259, 1020, 261, 0, 0, 0, 0, 0, 0, + 262, 0, 0, 0, 0, 0, 0, 0, 263, 0, + 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 0, 0, 0, 190, 0, 0, 191, 192, 193, 194, + 0, 195, 0, 0, 196, 197, 198, 199, 200, 201, + 0, 0, 0, 0, 0, 202, 203, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, + 208, 209, 210, 0, 0, 0, 211, 0, 212, 213, + 214, 215, 216, 217, 0, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 0, 241, + 0, 0, 0, 0, 0, 0, 242, 243, 244, 245, + 0, 0, 246, 247, 248, 249, 0, 0, 250, 0, + 0, 251, 252, 0, 253, 0, 254, 255, 0, 0, + 0, 256, 0, 0, 257, 258, 259, 1084, 261, 0, + 0, 0, 0, 0, 0, 262, 0, 0, 0, 1, + 2, 0, 0, 263, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 14, 0, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 22, 23, 0, 24, + 25, 26, 27, 28, 29, 0, 30, 31, 0, 0, + 0, 32, 33, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 34, 35, 0, 0, 0, 0, 36, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 37, 38, + 39, 40, 41, 0, 0, 0, 42, 43, 44, 45, + 46, 47, 48, 49, 50, 0, 0, 0, 0, 0, + 0, 51, 52, 53, 0, 54, 0, 0, 0, 0, + 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 56, 0, 57, 58, + 59, 60, 61, 62, 0, 0, 0, 0, 63, 64, + 0, 0, 0, 0, 65, 66, 0, 67, 68, 0, + 0, 69, 0, 70, 0, 0, 71, 0, 0, 0, + 72, 0, 0, 0, 0, 73, 74, 0, 0, 75, + 0, 0, 0, 0, 0, 1, 2, 0, 0, -16, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, 14, 0, 15, 16, 17, 18, 19, 20, 21, + 0, 0, 22, 23, 0, 24, 25, 26, 27, 28, + 29, 0, 30, 31, 0, 0, 0, 32, 33, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 34, 35, + 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 37, 38, 39, 40, 41, 0, + 0, 0, 42, 43, 44, 45, 46, 47, 48, 49, + 50, 0, 0, 0, 0, 0, 0, 51, 52, 53, + 0, 54, 0, 0, 0, 0, 0, 0, 55, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 56, 0, 57, 58, 59, 60, 61, 62, + 0, 0, 0, 0, 63, 64, 0, 0, 0, 0, + 65, 66, 0, 67, 68, 0, 0, 69, 0, 70, + 0, 0, 71, 0, 0, 0, 72, 0, 0, 0, + 0, 73, 74, 1, 2, 75, 0, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 15, 16, 17, 18, 19, 20, 21, 0, 0, 22, 23, 0, 24, 25, 26, 27, 28, 29, 0, - 30, 31, 464, 465, 0, 32, 33, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 30, 31, 0, 0, 0, 32, 33, 0, 484, 485, + 486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, - 0, 0, 36, 0, 0, 0, 0, 0, 458, 459, - 460, 0, 37, 38, 39, 40, 41, 458, 459, 460, + 0, 0, 0, 0, 0, 0, 34, 35, 487, 488, + 489, 0, 36, 0, 0, 0, 0, 0, 0, 0, + 490, 491, 37, 38, 39, 40, 41, 484, 485, 486, 42, 43, 44, 45, 46, 47, 48, 49, 50, 0, - 0, 0, 0, 0, 0, 51, 52, 53, 461, 54, - 0, 0, 0, 0, 0, 0, 55, 461, 462, 463, - 464, 465, 0, 0, 0, 0, 0, 0, 0, 464, - 465, 466, 467, 468, 469, 470, 471, 472, 0, 473, + 0, 0, 0, 0, 0, 51, 52, 53, 0, 54, + 0, 0, 0, 484, 485, 486, 55, 487, 488, 489, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 0, 57, 58, 59, 60, 61, 62, 0, 0, - 0, 0, 63, 64, 0, 0, 0, 0, 65, 66, - 0, 67, 68, 0, 0, 0, 0, 0, 69, 70, - 1, 2, 71, 0, 0, 3, 4, 5, 6, 7, - 8, 9, 10, 11, 12, 13, 14, 0, 15, 16, - 17, 18, 19, 20, 21, 0, 0, 22, 23, 0, - 24, 25, 26, 27, 28, 29, 0, 30, 31, 0, - 0, 0, 32, 33, 0, 0, 0, 0, 0, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 0, 0, 0, - 698, 669, 0, 34, 35, 0, 458, 459, 460, 36, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, - 38, 39, 40, 41, 458, 459, 460, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 461, 462, 463, 0, - 0, 0, 51, 52, 53, 0, 54, 0, 464, 465, - 0, 0, 0, 55, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 56, 0, 57, - 58, 59, 60, 61, 62, 0, 0, 0, 0, 63, - 64, 0, 0, 0, 0, 65, 66, 0, 67, 68, - 0, 0, 1, 2, 0, 69, 70, 3, 4, 5, - 6, 7, 8, 9, 10, 11, 12, 13, 0, 0, - 0, 0, 0, 0, 0, 0, 21, 0, 0, 22, - 23, 0, 24, 25, 26, 27, 28, 29, 0, 561, - 31, 0, 0, 0, 32, 33, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 758, - 0, 0, 759, 0, 0, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 0, 34, 35, 811, 0, 0, - 812, 36, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 37, 38, 39, 40, 41, 458, 459, 460, 42, - 43, 44, 45, 46, 47, 48, 49, 50, 0, 0, - 0, 0, 0, 0, 51, 52, 53, 0, 54, 0, - 0, 0, 0, 0, 0, 55, 461, 462, 463, 0, - 0, 0, 0, 458, 459, 460, 0, 0, 464, 465, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, - 0, 57, 58, 59, 60, 61, 62, 458, 459, 460, - 0, 63, 64, 461, 462, 463, 0, 65, 66, 0, - 67, 68, 0, 0, 0, 464, 465, 69, 70, 458, - 459, 460, 0, 0, 0, 0, 0, 461, 462, 463, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 464, - 465, 0, 0, 0, 458, 459, 460, 0, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 458, 459, 460, 0, 0, 0, 0, - 0, 0, 0, 0, 461, 462, 463, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 464, 465, 0, 816, - 0, 0, 817, 461, 462, 463, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 464, 465, 0, 0, 0, - 0, 0, 0, 0, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 0, 0, 0, 818, 0, 0, 819, - 0, 0, 0, 0, 0, 0, 0, 0, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 0, 0, 0, - 820, 0, 0, 821, 0, 0, 0, 0, 0, 0, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 0, - 0, 458, 459, 460, 0, 935, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 458, 459, 460, 0, 0, 0, - 938, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 458, 459, 460, 0, 940, - 0, 0, 0, 0, 461, 462, 463, 0, 0, 0, - 0, 458, 459, 460, 0, 0, 464, 465, 0, 0, - 0, 0, 0, 0, 0, 461, 462, 463, 458, 459, - 460, 0, 0, 0, 0, 0, 0, 464, 465, 0, - 0, 461, 462, 463, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 464, 465, 0, 0, 0, 461, 462, - 463, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 464, 465, 0, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 458, 459, 460, 0, 464, 465, 0, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 458, 459, 460, 0, 941, 0, 0, - 0, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 0, 0, - 950, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 0, 0, - 0, 951, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 458, 459, 460, 952, 0, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 458, 459, - 460, 0, 0, 0, 953, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 461, 462, 463, 700, 669, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 461, 462, - 463, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 464, 465, 0, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 458, 459, 460, 702, 669, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 707, 669, 458, 459, - 460, 0, 461, 462, 463, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 464, 465, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 464, 465, 0, 0, 0, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 0, 0, 0, 709, 669, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 0, 0, - 0, 711, 669, 0, 0, 0, 0, 0, 0, 0, - 458, 459, 460, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 714, 669, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 716, 669, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 718, 669, 458, 459, 460, 0, 461, 462, 463, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 464, - 465, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 0, 0, 458, 459, - 460, 0, 0, 0, 0, 464, 465, 0, 0, 0, - 0, 461, 462, 463, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 464, 465, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 725, 669, 458, 459, 460, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 727, - 669, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 729, 669, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 733, 669, 458, 459, - 460, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 735, 669, 458, 459, 460, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 461, 462, - 463, 737, 669, 458, 459, 460, 0, 0, 0, 0, - 464, 465, 0, 0, 0, 0, 461, 462, 463, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 464, 465, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 739, 669, - 458, 459, 460, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 742, 669, 458, 459, 460, 0, - 461, 462, 463, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 464, 465, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 744, 669, 0, 461, 462, 463, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 464, 465, 0, 746, - 669, 458, 459, 460, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 0, 0, 0, 748, 669, 458, 459, - 460, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 464, 465, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 752, 669, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 458, 459, 460, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 838, - 669, 458, 459, 460, 0, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 461, 462, 463, 839, 669, 458, - 459, 460, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 461, 462, 463, 0, 0, 458, 459, 460, 0, - 0, 0, 0, 464, 465, 0, 0, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 840, 669, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 841, 669, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 458, 459, 460, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 669, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 0, 764, 458, 459, 460, 0, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 0, - 458, 459, 460, 765, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 461, 462, 463, 0, - 767, 0, 0, 0, 0, 0, 0, 0, 464, 465, - 461, 462, 463, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 458, 459, 460, 0, 775, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 0, 776, 458, 459, 460, 0, 0, 0, - 0, 0, 461, 462, 463, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 464, 465, 0, 0, 0, 0, - 458, 459, 460, 0, 461, 462, 463, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 464, 465, 0, 0, - 777, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 0, 778, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 458, 459, 460, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 0, 779, 458, 459, 460, 0, 0, 0, 0, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 0, 780, 0, 458, 459, - 460, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 781, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 0, 782, 458, 459, 460, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 461, 462, 463, 0, 783, - 458, 459, 460, 0, 0, 0, 0, 464, 465, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 0, 0, 0, 0, 784, 0, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 0, 785, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 0, 786, 458, 459, 460, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 0, 787, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 0, 789, - 458, 459, 460, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 0, 790, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 0, - 792, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 0, 793, 458, 459, 460, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 0, 796, 458, 459, - 460, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 797, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 0, 798, 458, 459, 460, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 461, 462, 463, 0, 799, - 458, 459, 460, 0, 0, 0, 0, 464, 465, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 0, 800, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 0, 801, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 0, 803, 458, 459, 460, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 0, 804, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 0, 805, - 458, 459, 460, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 0, 806, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 0, - 807, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 0, 889, 458, 459, 460, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 0, 900, 458, 459, - 460, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 910, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 0, 929, 458, 459, 460, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 461, 462, 463, 0, 930, - 458, 459, 460, 0, 0, 0, 0, 464, 465, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 0, 932, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 0, 942, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 0, 945, 458, 459, 460, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 0, 946, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 0, 949, - 458, 459, 460, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 0, 964, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 0, - 965, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 0, 966, 458, 459, 460, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 0, 967, 458, 459, - 460, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 986, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 0, 997, 458, 459, 460, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 461, 462, 463, 0, 998, - 458, 459, 460, 0, 0, 0, 0, 464, 465, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 0, 1000, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 0, 1008, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 0, 1011, 458, 459, 460, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 0, 1012, 458, 459, 460, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 0, 1015, - 458, 459, 460, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 464, 465, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 0, 1016, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 0, - 1030, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 0, 1035, 458, 459, 460, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 0, 1036, 458, 459, - 460, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 0, 1042, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 0, 1048, 458, 459, 460, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 464, 465, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 461, 462, 463, 486, 0, - 458, 459, 460, 0, 0, 0, 0, 464, 465, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 488, 0, 458, 459, 460, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 490, 0, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 495, 0, 458, 459, 460, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 497, 458, 459, 460, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 499, 0, - 458, 459, 460, 461, 462, 463, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 464, 465, 0, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 461, 462, 463, 502, 0, 458, 459, 460, 0, 0, - 0, 0, 464, 465, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 504, - 0, 458, 459, 460, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 508, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 519, 0, 458, 459, - 460, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 521, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 523, 0, 0, 0, 461, 462, 463, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 464, - 465, 0, 0, 0, 0, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 0, 0, 0, 527, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 529, 0, 458, 459, 460, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 531, 458, 459, 460, 0, 0, - 0, 0, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 533, 458, 459, 460, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 534, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 0, 0, 461, 462, 463, 0, 0, 458, 459, 460, - 0, 0, 0, 0, 464, 465, 0, 0, 0, 0, - 0, 461, 462, 463, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 464, 465, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 536, 458, 459, 460, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 540, - 458, 459, 460, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 545, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 0, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 548, 0, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 551, 458, 459, 460, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 0, 0, 0, - 706, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 461, 462, 463, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 464, 465, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 762, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 458, 459, 460, 763, 0, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 794, 458, 459, 460, 0, 0, 0, 0, - 461, 462, 463, 0, 0, 0, 0, 0, 0, 458, - 459, 460, 464, 465, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 795, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 824, 458, 459, 460, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 458, 459, - 460, 0, 0, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 826, 458, 459, 460, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 829, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 831, 458, 459, 460, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 0, - 0, 0, 837, 458, 459, 460, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 461, 462, 463, - 0, 0, 0, 0, 0, 0, 458, 459, 460, 464, - 465, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 845, 458, - 459, 460, 0, 0, 0, 0, 461, 462, 463, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 464, 465, - 0, 847, 458, 459, 460, 0, 0, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 849, 458, 459, 460, 0, 0, - 0, 0, 461, 462, 463, 0, 0, 0, 0, 0, - 0, 458, 459, 460, 464, 465, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 851, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 855, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 0, 0, 0, 856, - 458, 459, 460, 0, 0, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 858, 458, 459, 460, 0, 0, 0, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 890, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 892, 458, - 459, 460, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 894, 458, 459, 460, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 461, - 462, 463, 0, 0, 0, 0, 0, 0, 458, 459, - 460, 464, 465, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 898, 458, 459, 460, 0, 0, 0, 0, 461, 462, - 463, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 464, 465, 0, 904, 458, 459, 460, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 912, 458, 459, 460, - 0, 0, 0, 0, 461, 462, 463, 0, 0, 0, - 0, 0, 0, 458, 459, 460, 464, 465, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 915, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 917, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 0, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 0, 0, - 0, 919, 458, 459, 460, 0, 0, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 922, 458, 459, 460, 0, 0, - 0, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 924, 0, 0, - 0, 0, 0, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 927, 458, 459, 460, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 0, 0, 0, 943, 458, 459, 460, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 0, 0, 0, 0, 0, 0, - 458, 459, 460, 464, 465, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 944, 458, 459, 460, 0, 0, 0, 0, - 461, 462, 463, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 464, 465, 0, 948, 458, 459, 460, 0, - 0, 0, 0, 461, 462, 463, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 956, 458, - 459, 460, 0, 0, 0, 0, 461, 462, 463, 0, - 0, 0, 0, 0, 0, 458, 459, 460, 464, 465, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 959, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 961, 458, 459, 460, 0, 0, 0, 0, 0, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 0, 473, - 0, 0, 0, 975, 458, 459, 460, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 978, 458, 459, 460, - 0, 0, 0, 0, 461, 462, 463, 466, 467, 468, - 469, 470, 471, 472, 0, 473, 464, 465, 0, 987, - 0, 0, 0, 0, 0, 0, 0, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 990, 458, 459, 460, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 0, 0, 0, 994, 458, - 459, 460, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 463, 0, 0, 0, 0, - 0, 0, 458, 459, 460, 464, 465, 0, 0, 461, - 462, 463, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 464, 465, 0, 1004, 458, 459, 460, 0, 0, - 0, 0, 461, 462, 463, 466, 467, 468, 469, 470, - 471, 472, 0, 473, 464, 465, 0, 1009, 458, 459, - 460, 0, 0, 0, 0, 461, 462, 463, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 464, 465, 0, - 1017, 458, 459, 460, 0, 0, 0, 0, 461, 462, - 463, 0, 0, 0, 0, 0, 0, 458, 459, 460, - 464, 465, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 461, 462, 463, 466, 467, 468, 469, 470, 471, - 472, 0, 473, 464, 465, 0, 1021, 461, 462, 463, - 466, 467, 468, 469, 470, 471, 472, 0, 473, 464, - 465, 0, 1026, 458, 459, 460, 0, 0, 0, 0, - 0, 0, 0, 466, 467, 468, 469, 470, 471, 472, - 0, 473, 0, 0, 0, 1028, 0, 0, 0, 0, - 0, 0, 0, 461, 462, 0, 466, 467, 468, 469, - 470, 471, 472, 0, 473, 464, 465, 0, 1032, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 466, - 467, 468, 469, 470, 471, 472, 0, 473, 0, 0, - 0, 1037, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 0, - 473, 0, 0, 0, 1040, 0, 0, 0, 466, 467, - 468, 469, 470, 471, 472, 0, 473, 0, 0, 0, + 0, 0, 63, 64, 0, 490, 491, 0, 65, 66, + 0, 67, 68, 0, 0, 69, 0, 70, 0, 0, + 71, 0, 0, 0, 72, 0, 0, 492, 493, 73, + 74, 484, 485, 486, 0, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 862, 0, 0, 863, 0, 0, 0, 0, + 0, 487, 488, 489, 0, 0, 0, 0, 484, 485, + 486, 0, 0, 490, 491, 0, 492, 493, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 487, 488, + 489, 867, 492, 493, 868, 484, 485, 486, 0, 0, + 490, 491, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 0, 0, + 484, 485, 486, 0, 0, 487, 488, 489, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 487, 488, 489, 0, 0, 0, 0, 0, 0, 0, + 492, 493, 490, 491, 484, 485, 486, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 869, 0, 0, 870, 484, + 485, 486, 0, 0, 487, 488, 489, 492, 493, 0, + 0, 0, 0, 0, 0, 0, 490, 491, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 487, + 488, 489, 871, 0, 0, 872, 484, 485, 486, 0, + 0, 490, 491, 0, 492, 493, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 487, 488, 489, 492, + 493, 0, 997, 484, 485, 486, 0, 0, 490, 491, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 0, 0, 0, 1000, 0, 0, + 0, 0, 0, 487, 488, 489, 0, 0, 0, 0, + 0, 0, 0, 492, 493, 490, 491, 0, 484, 485, + 486, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 492, 493, + 0, 1002, 484, 485, 486, 0, 0, 0, 487, 488, + 489, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 490, 491, 0, 0, 0, 0, 1003, 484, 485, 486, + 0, 0, 487, 488, 489, 492, 493, 0, 0, 0, + 0, 0, 0, 0, 490, 491, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 487, 488, 489, + 0, 0, 0, 1013, 484, 485, 486, 0, 0, 490, + 491, 0, 492, 493, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 487, 488, 489, 484, 485, 486, + 1014, 0, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 492, 493, 0, + 0, 0, 0, 0, 0, 0, 0, 487, 488, 489, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 490, + 491, 492, 493, 0, 0, 1015, 484, 485, 486, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 492, 493, 0, 1016, + 0, 0, 0, 0, 0, 0, 487, 488, 489, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 490, 491, + 0, 739, 708, 0, 0, 0, 0, 0, 0, 0, + 484, 485, 486, 492, 493, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 741, 708, + 487, 488, 489, 484, 485, 486, 492, 493, 0, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 743, 708, 487, 488, 489, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 490, 491, 484, 485, 486, + 0, 0, 0, 0, 0, 492, 493, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 487, 488, 489, + 748, 708, 0, 0, 0, 0, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 484, 485, 486, 492, + 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 750, 708, 487, 488, 489, 484, + 485, 486, 492, 493, 0, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 752, 708, 487, + 488, 489, 0, 0, 0, 0, 0, 0, 484, 485, + 486, 490, 491, 0, 0, 0, 492, 493, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 487, 488, + 489, 755, 708, 0, 0, 0, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 484, 485, 486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 492, 493, 0, 0, 0, + 0, 0, 0, 0, 0, 487, 488, 489, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 490, 491, 0, + 757, 708, 0, 0, 0, 0, 0, 0, 492, 493, + 484, 485, 486, 0, 0, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 759, 708, 0, 0, 0, 0, 0, + 487, 488, 489, 0, 484, 485, 486, 492, 493, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 766, 708, 487, 488, 489, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 768, + 708, 487, 488, 489, 0, 0, 0, 0, 0, 484, + 485, 486, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, + 493, 0, 0, 0, 0, 0, 0, 0, 0, 487, + 488, 489, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 490, 491, 0, 770, 708, 0, 0, 0, 0, + 484, 485, 486, 492, 493, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 774, 708, + 487, 488, 489, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 0, + 492, 493, 484, 485, 486, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 776, 708, 0, 0, 0, + 0, 0, 487, 488, 489, 484, 485, 486, 492, 493, + 0, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 778, 708, 487, 488, 489, 0, 484, + 485, 486, 0, 0, 0, 0, 0, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, + 493, 484, 485, 486, 0, 0, 0, 0, 0, 487, + 488, 489, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 490, 491, 0, 780, 708, 0, 0, 0, 0, + 0, 487, 488, 489, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 490, 491, 0, 0, 0, 484, 485, + 486, 492, 493, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 783, 708, 487, 488, + 489, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 785, + 708, 487, 488, 489, 0, 0, 0, 0, 492, 493, + 484, 485, 486, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 492, 493, 0, 787, 708, 0, 0, 484, 485, 486, + 487, 488, 489, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 490, 491, 0, 789, 708, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 487, 488, 489, + 0, 0, 0, 0, 484, 485, 486, 492, 493, 490, + 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 793, 708, 487, 488, 489, 0, 0, 0, + 492, 493, 484, 485, 486, 0, 490, 491, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 795, 708, 0, 0, 0, + 0, 0, 487, 488, 489, 0, 0, 0, 0, 492, + 493, 0, 0, 0, 490, 491, 484, 485, 486, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 798, 708, 492, 493, 484, 485, + 486, 0, 0, 0, 0, 0, 487, 488, 489, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 490, 491, + 0, 889, 708, 0, 0, 484, 485, 486, 487, 488, + 489, 0, 0, 492, 493, 0, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 487, 488, 489, 890, 708, + 0, 0, 0, 484, 485, 486, 0, 490, 491, 0, + 0, 492, 493, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 487, 488, 489, 891, 708, 0, 0, + 0, 0, 0, 0, 0, 490, 491, 0, 0, 0, + 0, 0, 0, 0, 0, 492, 493, 484, 485, 486, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 492, 493, 0, + 892, 708, 0, 0, 484, 485, 486, 487, 488, 489, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 490, + 491, 0, 0, 708, 492, 493, 484, 485, 486, 0, + 0, 0, 0, 0, 487, 488, 489, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 490, 491, 0, 0, + 812, 0, 0, 0, 0, 0, 487, 488, 489, 484, + 485, 486, 492, 493, 0, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 813, 487, + 488, 489, 0, 0, 0, 0, 484, 485, 486, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 492, 493, 0, 0, + 0, 0, 0, 0, 0, 0, 487, 488, 489, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 490, 491, + 0, 0, 815, 492, 493, 484, 485, 486, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 492, 493, 0, 0, 823, + 0, 0, 0, 0, 0, 487, 488, 489, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 490, 491, 0, + 0, 824, 0, 0, 0, 484, 485, 486, 492, 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 466, 467, 468, 469, 470, 471, - 472, 0, 473 + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 0, 825, 487, 488, 489, 484, 485, + 486, 0, 0, 0, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 487, 488, + 489, 826, 0, 0, 484, 485, 486, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 492, 493, 484, 485, 486, 0, + 0, 0, 0, 0, 487, 488, 489, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 490, 491, 0, 0, + 827, 0, 0, 0, 0, 0, 487, 488, 489, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 490, 491, + 0, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 0, + 828, 487, 488, 489, 484, 485, 486, 492, 493, 0, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 0, 829, 487, 488, 489, 0, 0, 0, + 0, 0, 0, 492, 493, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 492, 493, 0, 0, 830, + 484, 485, 486, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 0, 831, 0, 0, 0, 0, 0, 0, 0, 0, + 487, 488, 489, 484, 485, 486, 0, 0, 0, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 487, 488, 489, 832, 0, 0, 0, + 484, 485, 486, 492, 493, 490, 491, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 0, 833, + 487, 488, 489, 484, 485, 486, 0, 0, 0, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 487, 488, 489, 484, 485, 486, 492, + 493, 0, 0, 0, 0, 490, 491, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 0, 834, 487, 488, 489, 484, + 485, 486, 492, 493, 0, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 835, 487, + 488, 489, 484, 485, 486, 0, 0, 0, 0, 492, + 493, 490, 491, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 487, 488, 489, 837, 0, 0, 0, 484, + 485, 486, 492, 493, 490, 491, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 838, 487, + 488, 489, 484, 485, 486, 492, 493, 0, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 0, 840, 487, 488, 489, 484, 485, 486, 492, 493, + 0, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 0, 841, 487, 488, 489, 484, 485, + 486, 492, 493, 0, 0, 0, 0, 490, 491, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 0, 844, 487, 488, + 489, 484, 485, 486, 0, 0, 0, 0, 492, 493, + 490, 491, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 487, 488, 489, 845, 0, 0, 0, 484, 485, + 486, 492, 493, 490, 491, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 0, 846, 487, 488, + 489, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 0, + 847, 487, 488, 489, 484, 485, 486, 492, 493, 0, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 0, 848, 487, 488, 489, 484, 485, 486, + 492, 493, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 0, 849, 487, 488, 489, + 484, 485, 486, 0, 0, 0, 0, 492, 493, 490, + 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 487, 488, 489, 851, 0, 0, 0, 484, 485, 486, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 0, 852, 487, 488, 489, + 484, 485, 486, 492, 493, 0, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 0, 853, + 487, 488, 489, 484, 485, 486, 492, 493, 0, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 0, 854, 487, 488, 489, 484, 485, 486, 492, + 493, 0, 0, 0, 0, 490, 491, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 0, 855, 487, 488, 489, 484, + 485, 486, 0, 0, 0, 0, 492, 493, 490, 491, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 487, + 488, 489, 858, 0, 0, 0, 484, 485, 486, 492, + 493, 490, 491, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 0, 946, 487, 488, 489, 484, + 485, 486, 492, 493, 0, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 957, 487, + 488, 489, 484, 485, 486, 492, 493, 0, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 0, 967, 487, 488, 489, 484, 485, 486, 492, 493, + 0, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 0, 986, 487, 488, 489, 484, 485, + 486, 0, 0, 0, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 487, 488, + 489, 987, 0, 0, 0, 484, 485, 486, 492, 493, + 490, 491, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 0, 989, 487, 488, 489, 484, 485, + 486, 492, 493, 0, 0, 0, 0, 490, 491, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 0, 995, 487, 488, + 489, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 0, + 1004, 487, 488, 489, 484, 485, 486, 492, 493, 0, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 0, 1007, 487, 488, 489, 484, 485, 486, + 0, 0, 0, 0, 492, 493, 490, 491, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 487, 488, 489, + 1008, 0, 0, 0, 484, 485, 486, 492, 493, 490, + 491, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 0, 1011, 487, 488, 489, 484, 485, 486, + 492, 493, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 0, 1027, 487, 488, 489, + 484, 485, 486, 492, 493, 0, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 0, 1028, + 487, 488, 489, 484, 485, 486, 492, 493, 0, 0, + 0, 0, 490, 491, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 0, 1029, 487, 488, 489, 484, 485, 486, 0, + 0, 0, 0, 492, 493, 490, 491, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 487, 488, 489, 1030, + 0, 0, 0, 484, 485, 486, 492, 493, 490, 491, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 0, 1050, 487, 488, 489, 484, 485, 486, 492, + 493, 0, 0, 0, 0, 490, 491, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 0, 1061, 487, 488, 489, 484, + 485, 486, 492, 493, 0, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 0, 0, 0, 1062, 487, + 488, 489, 484, 485, 486, 492, 493, 0, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 0, 1064, 487, 488, 489, 484, 485, 486, 0, 0, + 0, 0, 492, 493, 490, 491, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 0, 501, 0, 487, 488, 489, 1072, 0, + 0, 0, 484, 485, 486, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 0, 1075, 487, 488, 489, 484, 485, 486, 492, 493, + 0, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 0, 1076, 487, 488, 489, 484, 485, + 486, 492, 493, 0, 0, 0, 0, 490, 491, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 0, 1080, 487, 488, + 489, 484, 485, 486, 492, 493, 0, 0, 0, 0, + 490, 491, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 0, + 1081, 487, 488, 489, 484, 485, 486, 0, 0, 0, + 0, 492, 493, 490, 491, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 487, 488, 489, 1095, 0, 0, + 0, 484, 485, 486, 492, 493, 490, 491, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 0, + 1100, 487, 488, 489, 484, 485, 486, 492, 493, 0, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 0, 501, 0, + 0, 0, 0, 1101, 487, 488, 489, 484, 485, 486, + 492, 493, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 0, 1107, 487, 488, 489, + 484, 485, 486, 492, 493, 0, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 0, 1113, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 514, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 516, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 518, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 523, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 525, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 527, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 530, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 532, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 536, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 547, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 549, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 551, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 555, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 557, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 559, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 561, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 562, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 564, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 568, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 573, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 576, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 579, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 585, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 747, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 810, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 811, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 842, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 843, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 875, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 877, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 880, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 882, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 888, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 896, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 898, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 900, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 902, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 906, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 907, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 909, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 947, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 949, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 951, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 955, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 961, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 969, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 972, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 974, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 976, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 979, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 981, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 984, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 1005, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 1006, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 1010, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 1019, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 1022, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 1024, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 1038, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 1041, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 1051, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 1054, 487, 488, 489, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 1058, 487, 488, 489, + 484, 485, 486, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 1068, + 487, 488, 489, 0, 0, 0, 484, 485, 486, 0, + 492, 493, 490, 491, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 1073, 487, 488, 489, 484, + 485, 486, 0, 492, 493, 0, 0, 0, 490, 491, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 1082, 487, + 488, 489, 484, 485, 486, 0, 492, 493, 0, 0, + 0, 490, 491, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501, 0, 0, + 0, 1086, 487, 488, 489, 484, 485, 486, 0, 492, + 493, 0, 0, 0, 490, 491, 0, 0, 0, 0, + 0, 0, 494, 495, 496, 497, 498, 499, 500, 0, + 501, 0, 0, 0, 1091, 487, 488, 489, 0, 0, + 0, 484, 485, 486, 0, 492, 493, 490, 491, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 0, 501, 0, 0, 0, + 1093, 487, 488, 489, 484, 485, 486, 0, 492, 493, + 0, 0, 0, 490, 491, 0, 0, 0, 0, 0, + 0, 494, 495, 496, 497, 498, 499, 500, 0, 501, + 0, 0, 0, 1097, 487, 488, 0, 484, 485, 486, + 0, 492, 493, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 0, 501, 0, 0, 0, 1102, 487, 0, 0, + 0, 0, 0, 0, 492, 493, 0, 0, 0, 490, + 491, 0, 0, 0, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 0, 501, 0, 0, 0, 1105, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 492, 493, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 494, 495, 496, 497, 498, 499, 500, + 0, 501, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 492, 493, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 0, 501, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 492, 493, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 495, 496, 497, 498, 499, 500, 0, 501 }; static const yytype_int16 yycheck[] = { - 1, 194, 3, 4, 5, 35, 7, 8, 185, 10, - 178, 178, 179, 14, 19, 178, 17, 178, 23, 20, - 197, 178, 23, 24, 25, 26, 42, 43, 44, 178, - 31, 194, 200, 34, 35, 36, 37, 200, 39, 185, + 1, 189, 3, 4, 5, 189, 7, 8, 35, 10, + 42, 43, 44, 14, 196, 189, 17, 189, 190, 20, + 196, 205, 23, 24, 25, 26, 208, 211, 84, 85, + 31, 189, 208, 34, 35, 36, 37, 211, 39, 189, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 178, 197, 194, 54, 192, 193, 57, 192, 193, 197, - 196, 197, 197, 194, 65, 66, 67, 68, 194, 5, - 6, 7, 192, 193, 192, 193, 178, 197, 194, 197, - 192, 193, 178, 179, 195, 197, 195, 198, 0, 198, - 178, 179, 192, 193, 192, 193, 32, 192, 193, 192, - 193, 192, 196, 197, 196, 197, 193, 20, 197, 195, - 194, 194, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 194, 194, 194, 75, - 84, 85, 78, 79, 80, 81, 194, 83, 194, 194, - 86, 87, 88, 89, 90, 91, 194, 194, 194, 194, - 194, 97, 98, 99, 197, 194, 194, 183, 184, 185, - 194, 187, 194, 109, 110, 111, 112, 113, 114, 194, - 194, 182, 118, 199, 120, 121, 122, 123, 124, 125, - 194, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, 194, 151, 42, 43, 44, 194, - 194, 194, 158, 159, 160, 161, 194, 194, 164, 165, - 166, 167, 194, 194, 170, 194, 194, 173, 194, 175, - 176, 177, 178, 179, 188, 189, 194, 191, 249, 250, - 186, 194, 194, 194, 194, 194, 257, 194, 194, 260, - 194, 262, 194, 194, 200, 266, 194, 268, 194, 270, - 194, 272, 42, 43, 44, 194, 194, 194, 279, 194, - 194, 282, 202, 194, 285, 194, 287, 42, 43, 44, - 194, 194, 293, 194, 295, 296, 297, 298, 194, 194, - 301, 194, 194, 304, 194, 194, 307, 194, 309, 194, - 194, 194, 194, 194, 315, 194, 317, 84, 85, 320, - 194, 322, 194, 353, 194, 194, 327, 194, 194, 194, - 194, 332, 42, 43, 44, 194, 194, 194, 194, 194, - 194, 194, 343, 194, 345, 194, 194, 348, 194, 194, - 351, 194, 353, 354, 194, 356, 178, 183, 184, 185, - 185, 187, 196, 364, 365, 366, 367, 368, 196, 195, - 196, 191, 196, 196, 201, 376, 377, 196, 379, 380, - 381, 382, 383, 384, 385, 196, 387, 388, 389, 390, - 196, 196, 393, 394, 395, 396, 196, 196, 196, 196, - 196, 196, 196, 196, 405, 406, 407, 408, 409, 410, - 411, 412, 196, 183, 184, 185, 196, 187, 196, 186, - 187, 188, 189, 196, 191, 195, 196, 196, 183, 184, - 185, 196, 187, 196, 196, 196, 196, 196, 196, 196, - 195, 196, 196, 444, 445, 446, 196, 196, 196, 196, - 451, 452, 453, 454, 196, 196, 196, 458, 459, 460, - 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, - 471, 472, 473, 183, 184, 185, 196, 187, 196, 196, - 481, 196, 483, 484, 196, 486, 196, 488, 196, 490, - 196, 196, 196, 196, 495, 196, 497, 196, 499, 500, - 196, 196, 202, 197, 197, 187, 185, 508, 509, 201, - 511, 185, 513, 198, 515, 5, 6, 7, 519, 185, - 198, 198, 523, 198, 525, 185, 527, 178, 529, 196, - 74, 361, 533, 534, 706, 536, 868, 358, -1, 540, - -1, -1, 32, 360, 545, -1, -1, -1, 549, 42, + 203, 204, 189, 54, 205, 208, 57, 203, 204, 19, + 189, 190, 208, 23, 65, 66, 67, 68, 203, 204, + 71, 189, 190, 208, 205, 5, 6, 7, 203, 204, + 203, 204, 0, 208, 206, 208, 206, 209, 189, 209, + 207, 208, 203, 204, 203, 204, 203, 204, 42, 43, + 44, 205, 32, 203, 204, 207, 208, 205, 207, 208, + 205, 203, 20, 204, 208, 208, 206, 205, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, 205, 199, 200, 75, 202, 205, 78, 79, + 80, 81, 205, 83, 205, 205, 86, 87, 88, 89, + 90, 91, 194, 195, 196, 205, 198, 97, 98, 99, + 205, 205, 42, 43, 44, 205, 205, 205, 210, 109, + 110, 111, 112, 113, 114, 205, 205, 205, 118, 190, + 120, 121, 122, 123, 124, 125, 205, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + 205, 151, 205, 205, 205, 42, 43, 44, 158, 159, + 160, 161, 205, 205, 164, 165, 166, 167, 205, 205, + 170, 205, 205, 173, 174, 196, 176, 205, 178, 179, + 194, 195, 196, 183, 198, 256, 186, 187, 188, 189, + 190, 262, 263, 207, 205, 205, 205, 197, 205, 270, + 205, 205, 273, 205, 275, 205, 206, 205, 279, 205, + 281, 205, 283, 213, 285, 42, 43, 44, 205, 205, + 205, 292, 205, 205, 295, 205, 205, 298, 205, 300, + 42, 43, 44, 205, 205, 306, 205, 308, 309, 310, + 311, 205, 205, 314, 205, 205, 317, 205, 205, 320, + 205, 322, 205, 205, 194, 195, 196, 328, 198, 330, + 84, 85, 333, 205, 335, 189, 206, 207, 205, 340, + 205, 205, 205, 205, 345, 205, 205, 374, 205, 42, + 43, 44, 205, 205, 205, 356, 205, 358, 205, 205, + 361, 205, 205, 364, 205, 366, 205, 368, 205, 370, + 205, 372, 205, 374, 375, 205, 377, 194, 195, 196, + 205, 198, 205, 205, 385, 386, 387, 388, 389, 206, + 207, 205, 205, 205, 205, 205, 397, 398, 205, 400, + 401, 402, 403, 404, 405, 406, 205, 408, 409, 410, + 411, 205, 205, 414, 415, 416, 417, 205, 207, 198, + 207, 42, 43, 44, 207, 426, 427, 428, 429, 430, + 431, 432, 433, 207, 207, 207, 207, 194, 195, 196, + 207, 198, 202, 197, 198, 199, 200, 212, 202, 206, + 207, 207, 194, 195, 196, 207, 198, 207, 42, 43, + 44, 207, 207, 207, 465, 466, 467, 207, 207, 207, + 207, 472, 473, 207, 207, 207, 477, 207, 479, 480, + 207, 207, 207, 484, 485, 486, 487, 488, 489, 490, + 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, + 501, 194, 195, 196, 207, 198, 207, 207, 509, 207, + 511, 512, 207, 514, 207, 516, 207, 518, 207, 207, + 207, 207, 523, 207, 525, 207, 527, 528, 207, 207, + 207, 207, 207, 207, 207, 536, 537, 207, 539, 207, + 541, 207, 543, 5, 6, 7, 547, 207, 207, 207, + 551, 207, 553, 207, 555, 208, 557, 208, 213, 196, + 561, 562, 212, 564, 213, 196, 209, 568, 209, 209, + 32, 209, 573, 194, 195, 196, 577, 198, 196, 196, + 189, 207, 379, 78, 585, 206, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + 194, 195, 196, 75, 198, 381, 78, 79, 80, 81, + 382, 83, 206, 207, 86, 87, 88, 89, 90, 91, + 924, 747, -1, -1, -1, 97, 98, 99, 42, 43, + 44, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, 42, 43, 44, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, -1, -1, + -1, 183, 84, 85, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, 739, -1, + 741, -1, 743, 205, -1, 207, 747, 748, -1, 750, + -1, 752, -1, -1, -1, -1, -1, -1, 759, -1, + -1, -1, 42, 43, 44, 766, -1, -1, -1, 770, + -1, 772, -1, 774, -1, 776, -1, 778, -1, 780, + -1, -1, 783, -1, 785, -1, 787, -1, -1, 790, + 194, 195, 196, -1, 198, -1, -1, 798, -1, -1, + -1, 802, 206, 207, -1, 806, -1, 808, 809, 810, + 811, 42, 43, 44, -1, -1, 817, 818, 819, 181, + 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 197, 198, 199, 200, -1, + 202, 842, 843, 194, 195, 196, -1, 198, -1, -1, + -1, -1, -1, 880, -1, -1, 207, -1, -1, -1, + -1, 862, -1, -1, -1, -1, 867, -1, 869, -1, + 871, -1, -1, -1, 875, -1, 877, -1, -1, 880, + -1, 882, -1, 884, -1, -1, -1, 888, 889, 890, + 891, 892, -1, -1, -1, 896, -1, 898, -1, -1, + -1, 902, -1, -1, -1, 906, 907, -1, 909, 42, + 43, 44, -1, 914, 194, 195, 196, -1, 198, -1, + -1, 922, -1, -1, -1, -1, -1, 207, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 42, 43, 44, + -1, -1, -1, -1, -1, -1, 947, -1, 949, -1, + 951, 1, 2, -1, 955, 42, 43, 44, -1, -1, + 961, -1, -1, 194, 195, 196, -1, 198, 969, -1, + -1, 972, -1, 23, 24, 976, 207, -1, 979, -1, + 981, -1, 28, 984, -1, -1, 36, 988, 38, 39, + 40, 42, 43, 44, -1, 1022, 42, 43, 44, -1, + -1, 51, -1, -1, 1005, 1006, 56, -1, 58, 1010, + 60, 61, 42, 43, 44, -1, 66, 67, 1019, 69, + 70, 1022, 72, 1024, 1025, -1, 72, 73, 74, -1, + -1, -1, 29, -1, 1035, -1, -1, 1038, 84, 85, + 1041, -1, -1, -1, 1045, 42, 43, 44, -1, -1, + 1051, -1, -1, 1054, 42, 43, 44, 1058, -1, 1086, + -1, 194, 195, 196, 1065, 198, -1, 1068, -1, -1, + -1, -1, 1073, -1, 207, 72, 73, 74, -1, -1, + -1, 1082, -1, -1, 72, 73, 74, 84, 85, 194, + 195, 196, 1093, 198, -1, -1, 84, 85, -1, 42, + 43, 44, 207, -1, 1105, -1, -1, 194, 195, 196, + -1, 198, -1, -1, -1, -1, -1, -1, -1, -1, + 207, 42, 43, 44, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 181, 182, -1, -1, -1, + 42, 43, 44, 194, 195, 196, -1, 198, 194, 195, + 196, 197, 198, 199, 200, 206, 202, -1, -1, -1, + -1, -1, -1, -1, 194, 195, 196, -1, 198, -1, + -1, 42, 43, 44, -1, -1, -1, 207, -1, -1, + -1, -1, -1, -1, 181, 182, -1, -1, -1, -1, + -1, -1, -1, 181, 182, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, 194, 195, 196, 197, + 198, 199, 200, 263, 202, 42, 43, 44, -1, -1, + 270, -1, 210, 273, -1, 275, -1, -1, -1, -1, + -1, 281, -1, 283, -1, 285, -1, -1, -1, 42, + 43, 44, 292, -1, -1, 295, -1, -1, 298, -1, + 300, 194, 195, 196, -1, 198, 306, 42, 43, 44, + -1, -1, -1, 206, 314, -1, -1, 317, -1, -1, + 320, -1, 322, 194, 195, 196, -1, 198, 328, -1, + 330, -1, -1, 333, -1, 335, 207, 72, 73, 74, + 340, -1, 194, 195, 196, 345, 198, -1, -1, 84, + 85, -1, -1, -1, -1, 207, 356, -1, 358, -1, + -1, 361, -1, -1, 364, -1, 366, -1, 368, -1, + 370, -1, 372, 194, 195, 196, 376, 198, -1, -1, + -1, -1, 42, 43, 44, -1, 207, -1, 388, -1, + 390, 391, 392, 393, 394, 395, 396, -1, -1, -1, + -1, -1, 42, 43, 44, -1, -1, -1, 42, 43, + 44, -1, -1, 413, -1, 415, -1, 194, 195, 196, + -1, 198, -1, -1, -1, -1, -1, -1, -1, -1, + 207, -1, -1, -1, 434, -1, -1, -1, 72, 73, + 74, 194, 195, 196, -1, 198, 181, 182, -1, -1, + 84, 85, -1, -1, 207, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, -1, -1, 209, 475, 476, -1, -1, -1, + -1, -1, -1, -1, -1, 42, 43, 44, -1, -1, + -1, -1, -1, -1, -1, 42, 43, 44, 498, -1, + -1, -1, -1, 503, 504, 505, 506, 507, 508, 509, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 530, -1, 532, -1, 194, 195, 196, 537, 198, 539, + -1, 541, -1, 543, -1, -1, 206, 181, 182, 549, + 5, 6, 7, -1, 194, 195, 196, -1, 198, 559, + 194, 195, 196, 197, 198, 199, 200, 207, 202, -1, + -1, -1, 206, -1, -1, 209, 576, 32, -1, 579, + -1, -1, -1, 583, 42, 43, 44, 587, -1, -1, + -1, 591, -1, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, 42, 43, 44, + 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, + -1, 86, 87, 88, 89, 90, 91, 194, 195, 196, + -1, 198, 97, 98, 99, -1, -1, 194, 195, 196, + 207, 198, -1, -1, 109, 110, 111, 112, 113, 114, + 207, -1, -1, 118, -1, 120, 121, 122, 123, 124, + 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, + -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, + 165, 166, 167, -1, -1, 170, -1, -1, 173, 174, + -1, 176, -1, 178, 179, -1, -1, -1, 183, -1, + -1, 186, 187, 188, 189, 190, 194, 195, 196, -1, + 198, -1, 197, -1, -1, 42, 43, 44, -1, 207, + 205, 206, 42, 43, 44, 755, -1, 757, 213, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 768, 194, + 195, 196, -1, 198, -1, -1, -1, -1, 778, -1, + -1, -1, 207, -1, -1, -1, -1, -1, -1, 789, + -1, -1, -1, 793, -1, 795, 796, -1, -1, -1, + 800, -1, -1, 42, 43, 44, -1, -1, -1, -1, + 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 822, -1, -1, -1, -1, -1, -1, -1, + 42, 43, 44, -1, -1, -1, -1, -1, 3, 4, + -1, -1, -1, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, -1, -1, -1, 857, -1, -1, + -1, -1, 27, -1, -1, 30, 31, -1, 33, 34, + 35, 36, 37, 38, -1, 40, 41, -1, -1, -1, + 45, 46, -1, 42, 43, 44, -1, -1, 42, 43, + 44, -1, -1, -1, -1, -1, 896, 194, 195, 196, + 900, 198, 902, -1, 194, 195, 196, -1, 198, -1, + 207, 76, 77, 42, 43, 44, 206, 82, 918, 42, + 43, 44, -1, -1, 924, -1, 926, 92, 93, 94, + 95, 96, 42, 43, 44, 100, 101, 102, 103, 104, + 105, 106, 107, 108, -1, -1, -1, -1, -1, -1, + 115, 116, 117, -1, 119, 194, 195, 196, -1, 198, + -1, 126, 194, 195, 196, -1, 198, -1, 207, 969, + -1, -1, -1, -1, 974, 207, 976, -1, -1, -1, + -1, -1, 194, 195, 196, 150, 198, 152, 153, 154, + 155, 156, 157, 993, -1, 207, -1, 162, 163, -1, + -1, -1, -1, 168, 169, -1, 171, 172, -1, -1, + 175, -1, 177, -1, -1, 180, -1, -1, -1, 184, + -1, -1, -1, -1, 189, 190, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 194, 195, 196, 1038, 198, + 194, 195, 196, -1, 198, -1, 1046, 206, -1, -1, + -1, -1, 206, -1, -1, -1, -1, -1, -1, -1, + 5, 6, 7, -1, -1, 194, 195, 196, 1068, 198, + -1, 194, 195, 196, -1, 198, -1, 206, -1, -1, + -1, -1, -1, 206, 194, 195, 196, 32, 198, -1, + -1, 1091, -1, -1, -1, -1, 206, -1, -1, -1, + -1, -1, 1102, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, + 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, + -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, + -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, + 42, 43, 44, 118, -1, 120, 121, 122, 123, 124, + 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, + -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, + 165, 166, 167, -1, -1, 170, -1, -1, 173, 174, + -1, 176, -1, 178, 179, 5, 6, 7, 183, -1, + -1, 186, 187, 188, 189, 190, -1, -1, -1, -1, + -1, -1, 197, -1, -1, -1, -1, -1, -1, -1, + 205, -1, 32, -1, -1, -1, 211, -1, -1, 42, 43, 44, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, - 90, 91, -1, -1, -1, -1, -1, 97, 98, 99, - -1, -1, -1, 42, 43, 44, -1, -1, -1, 109, - 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, + 90, 91, 194, 195, 196, -1, 198, 97, 98, 99, + -1, -1, -1, -1, 206, -1, -1, -1, -1, 109, + 110, 111, 112, 113, 114, 42, 43, 44, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, 151, 42, 43, 44, -1, -1, -1, 158, 159, + -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, - 170, -1, -1, 173, -1, 175, 176, 177, 178, 179, - 183, 184, 185, -1, 187, -1, 186, 698, -1, 700, - -1, 702, -1, 196, 194, 706, 707, -1, 709, -1, - 711, -1, -1, -1, -1, -1, -1, 718, -1, -1, - -1, -1, -1, -1, 725, 42, 43, 44, 729, -1, - 731, -1, 733, -1, 735, -1, 737, -1, 739, -1, - -1, 742, -1, 744, -1, 746, -1, -1, 749, -1, - -1, -1, -1, 754, 183, 184, 185, 758, 187, 760, - 761, 762, 763, -1, -1, -1, -1, 196, 769, 770, - 771, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 42, 43, 44, 794, 795, 42, 43, 44, -1, 829, - -1, -1, -1, 183, 184, 185, -1, 187, -1, -1, - 811, 42, 43, 44, -1, 816, 196, 818, -1, 820, - -1, -1, -1, 824, -1, 826, -1, -1, 829, -1, - 831, -1, 833, -1, -1, -1, 837, 838, 839, 840, - 841, -1, -1, -1, 845, -1, 847, -1, -1, -1, - 851, -1, -1, -1, 855, 856, -1, 858, -1, -1, - -1, -1, 863, 28, -1, 866, 183, 184, 185, -1, - 187, -1, -1, -1, -1, -1, -1, 42, 43, 44, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 890, - -1, 892, -1, 894, -1, -1, -1, 898, -1, -1, - -1, -1, -1, 904, -1, -1, -1, 72, 73, 74, - -1, 912, -1, -1, 915, -1, -1, -1, 919, 84, - 85, 922, -1, 924, -1, -1, 927, -1, -1, 959, - 931, 183, 184, 185, -1, 187, 183, 184, 185, -1, - 187, -1, 943, 944, 196, -1, -1, 948, -1, 196, - -1, -1, 183, 184, 185, 956, 187, -1, 959, -1, - 961, 962, 42, 43, 44, 196, -1, -1, -1, -1, - -1, 972, -1, -1, 975, 1, 2, 978, -1, -1, - 981, -1, -1, -1, -1, -1, 987, -1, -1, 990, - -1, 1021, -1, 994, -1, -1, -1, 23, 24, -1, - 1001, -1, -1, 1004, 5, 6, 7, -1, 1009, -1, - 36, -1, 38, 39, 40, -1, 1017, -1, 183, 184, - 185, 186, 187, 188, 189, 51, 191, 1028, -1, -1, - 56, 32, 58, -1, 60, 61, -1, -1, -1, 1040, - 66, 67, -1, -1, -1, -1, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, 42, 43, 44, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, 183, 184, 185, -1, 187, 109, 110, - 111, 112, 113, 114, -1, -1, 196, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, -1, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, 195, -1, 29, -1, -1, -1, - -1, 202, -1, -1, -1, -1, -1, -1, -1, 42, - 43, 44, 183, 184, 185, -1, 187, -1, 42, 43, - 44, -1, -1, -1, 250, 196, -1, -1, 42, 43, - 44, 257, -1, -1, 260, -1, 262, -1, -1, 72, - 73, 74, 268, -1, 270, -1, 272, 42, 43, 44, - -1, 84, 85, 279, -1, -1, 282, -1, -1, 285, - -1, 287, 42, 43, 44, -1, -1, 293, 42, 43, - 44, -1, -1, -1, -1, 301, -1, -1, 304, -1, - -1, 307, -1, 309, -1, 42, 43, 44, -1, 315, - -1, 317, -1, -1, 320, -1, 322, -1, 72, 73, - 74, 327, -1, -1, -1, -1, 332, -1, -1, -1, - 84, 85, -1, -1, -1, -1, -1, 343, -1, 345, - -1, -1, 348, -1, -1, 351, 42, 43, 44, 355, - -1, -1, 42, 43, 44, -1, -1, -1, -1, -1, - -1, 367, -1, 369, 370, 371, 372, 373, 374, 375, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 183, - 184, 185, -1, 187, -1, -1, 392, -1, 394, 183, - 184, 185, 196, 187, -1, -1, -1, -1, 42, 43, - 44, -1, 196, -1, -1, -1, -1, 413, 183, 184, - 185, -1, 187, -1, -1, -1, -1, -1, -1, -1, - -1, 196, -1, 183, 184, 185, -1, 187, -1, 183, - 184, 185, 186, 187, 188, 189, 196, 191, -1, -1, - -1, -1, -1, -1, -1, 199, 183, 184, 185, -1, - 187, -1, -1, -1, -1, -1, 42, 43, 44, 196, - -1, -1, -1, -1, 470, -1, -1, -1, -1, 475, - 476, 477, 478, 479, 480, 481, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 183, 184, 185, - -1, 187, -1, 183, 184, 185, 502, 187, 504, -1, - 196, -1, -1, 509, -1, 511, 196, 513, -1, 515, - 5, 6, 7, -1, -1, 521, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 531, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 32, -1, 183, - 184, 185, 548, 187, -1, 551, -1, -1, -1, -1, - 556, -1, 196, 48, 49, 50, 51, 52, 53, 54, + 170, -1, -1, 173, 174, -1, 176, -1, 178, 179, + 5, 6, 7, 183, -1, -1, 186, 187, 188, 189, + 190, 194, 195, 196, -1, 198, -1, 197, -1, -1, + -1, -1, -1, 206, -1, 205, -1, 32, -1, -1, + -1, 211, -1, -1, 42, 43, 44, -1, -1, -1, + -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, 42, 43, 44, + 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, 183, 184, 185, - -1, 187, 97, 98, 99, -1, 42, 43, 44, -1, - 196, 42, 43, 44, 109, 110, 111, 112, 113, 114, + -1, 86, 87, 88, 89, 90, 91, 194, 195, 196, + -1, 198, 97, 98, 99, -1, -1, -1, -1, 206, + -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, 42, 43, 44, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 42, 43, 44, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, - 195, -1, -1, -1, -1, -1, -1, 202, 714, -1, - 716, -1, -1, -1, -1, 72, 73, 74, 183, 184, - 185, 727, 187, -1, -1, -1, -1, 84, 85, -1, - 195, 737, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 748, -1, -1, -1, 752, 183, 184, 185, - -1, 187, 183, 184, 185, -1, 187, -1, -1, 195, - -1, 183, 184, 185, 195, 187, -1, -1, 774, -1, - -1, -1, -1, 195, -1, -1, 3, 4, -1, -1, - -1, 8, 9, 10, 11, 12, 13, 14, 15, 16, - 17, 18, 19, -1, 21, 22, 23, 24, 25, 26, - 27, -1, -1, 30, 31, -1, 33, 34, 35, 36, - 37, 38, -1, 40, 41, -1, -1, -1, 45, 46, - -1, 42, 43, 44, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, -1, -1, -1, 195, 845, - -1, 198, -1, 849, -1, 851, -1, -1, -1, 76, - 77, 42, 43, 44, -1, 82, -1, -1, 42, 43, - 44, -1, 868, -1, 870, 92, 93, 94, 95, 96, - -1, -1, -1, 100, 101, 102, 103, 104, 105, 106, - 107, 108, -1, -1, -1, -1, -1, -1, 115, 116, - 117, -1, 119, -1, -1, -1, -1, -1, -1, 126, - -1, -1, -1, -1, -1, -1, 912, -1, -1, -1, - -1, 917, -1, 919, -1, 42, 43, 44, -1, -1, - -1, -1, -1, 150, -1, 152, 153, 154, 155, 156, - 157, -1, -1, -1, -1, 162, 163, -1, -1, -1, - -1, 168, 169, -1, 171, 172, 42, 43, 44, -1, - -1, 178, 179, -1, -1, 182, -1, -1, -1, -1, - -1, -1, 183, 184, 185, 192, 187, -1, -1, 975, - -1, -1, -1, -1, 195, -1, 982, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, - 6, 7, 183, 184, 185, -1, 187, -1, 1004, 183, - 184, 185, -1, 187, 195, -1, -1, -1, -1, -1, - -1, 195, -1, -1, -1, -1, 32, -1, -1, -1, - 1026, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 1037, 48, 49, 50, 51, 52, 53, 54, 55, + 165, 166, 167, -1, -1, 170, -1, -1, 173, 174, + -1, 176, -1, 178, 179, 5, 6, 7, 183, -1, + -1, 186, 187, 188, 189, 190, 194, 195, 196, -1, + 198, -1, 197, -1, -1, -1, -1, -1, 206, -1, + 205, -1, 32, -1, -1, -1, 211, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, + 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, + 90, 91, 194, 195, 196, -1, 198, 97, 98, 99, + -1, -1, -1, -1, 206, -1, -1, -1, -1, 109, + 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, + 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, + 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, + 170, -1, -1, 173, 174, -1, 176, -1, 178, 179, + 5, 6, 7, 183, -1, -1, 186, 187, 188, 189, + 190, -1, -1, -1, -1, -1, -1, 197, -1, -1, + -1, -1, -1, -1, -1, 205, -1, 32, -1, -1, + -1, 211, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, + 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, + -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, + -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, + -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, + 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, + -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, + 165, 166, 167, -1, -1, 170, -1, -1, 173, 174, + -1, 176, -1, 178, 179, 5, 6, 7, 183, -1, + -1, 186, 187, 188, 189, 190, -1, -1, -1, -1, + -1, -1, 197, -1, -1, -1, -1, -1, -1, -1, + 205, -1, 32, -1, -1, -1, 211, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, + 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, + 90, 91, -1, -1, -1, -1, -1, 97, 98, 99, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, + 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, + 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, + 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, + 170, -1, -1, 173, 174, -1, 176, -1, 178, 179, + -1, -1, -1, 183, -1, -1, 186, 187, 188, 189, + 190, 5, 6, 7, -1, -1, -1, 197, -1, -1, + -1, -1, -1, -1, -1, 205, -1, 207, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 32, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, + -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, + -1, -1, 86, 87, 88, 89, 90, 91, -1, -1, + -1, -1, -1, 97, 98, 99, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 109, 110, 111, 112, 113, + 114, -1, -1, -1, 118, -1, 120, 121, 122, 123, + 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, + -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, + 164, 165, 166, 167, -1, -1, 170, -1, -1, 173, + 174, -1, 176, -1, 178, 179, -1, -1, -1, 183, + -1, -1, 186, 187, 188, 189, 190, 5, 6, 7, + -1, -1, -1, 197, -1, -1, -1, -1, -1, -1, + -1, 205, -1, 207, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 32, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, + 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, + 78, 79, 80, 81, -1, 83, -1, -1, 86, 87, + 88, 89, 90, 91, -1, -1, -1, -1, -1, 97, + 98, 99, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 109, 110, 111, 112, 113, 114, -1, -1, -1, + 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, + 158, 159, 160, 161, -1, -1, 164, 165, 166, 167, + -1, -1, 170, -1, -1, 173, 174, -1, 176, -1, + 178, 179, -1, -1, -1, 183, -1, -1, 186, 187, + 188, 189, 190, 5, 6, 7, -1, -1, -1, 197, + -1, -1, -1, -1, -1, -1, -1, 205, -1, 207, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, -1, -1, + -1, 183, -1, -1, 186, 187, 188, 189, 190, 5, + 6, 7, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 207, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 32, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 183, 184, 185, 75, - 187, -1, 78, 79, 80, 81, -1, 83, 195, -1, + 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, + -1, -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, -1, - -1, 97, 98, 99, -1, -1, -1, 183, 184, 185, - -1, 187, -1, 109, 110, 111, 112, 113, 114, 195, + -1, 97, 98, 99, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, - 166, 167, -1, -1, 170, -1, -1, 173, -1, 175, - 176, 177, 178, 179, 5, 6, 7, -1, -1, -1, - 186, -1, -1, -1, -1, -1, -1, -1, 194, -1, - -1, -1, -1, -1, 200, -1, -1, -1, -1, -1, - -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, 42, 43, 44, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 5, - 6, 7, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, -1, -1, -1, -1, 200, - -1, -1, -1, -1, -1, -1, 32, -1, -1, -1, + 166, 167, -1, -1, 170, -1, -1, 173, 174, -1, + 176, -1, 178, 179, -1, -1, -1, 183, -1, -1, + 186, 187, 188, 189, 190, 5, 6, 7, -1, -1, + -1, 197, -1, -1, -1, -1, -1, -1, -1, 205, + -1, 207, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, + 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, + 90, 91, -1, -1, -1, -1, -1, 97, 98, 99, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, + 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, + 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, + 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, + 170, -1, -1, 173, 174, -1, 176, -1, 178, 179, + -1, -1, -1, 183, -1, -1, 186, 187, 188, 189, + 190, 5, 6, 7, -1, -1, -1, 197, -1, -1, + -1, -1, -1, -1, -1, 205, -1, 207, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 183, 184, 185, 75, - 187, -1, 78, 79, 80, 81, -1, 83, 195, -1, - 86, 87, 88, 89, 90, 91, -1, -1, -1, -1, - -1, 97, 98, 99, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 109, 110, 111, 112, 113, 114, -1, - -1, -1, 118, -1, 120, 121, 122, 123, 124, 125, - -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, 151, -1, -1, -1, -1, - -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, - 166, 167, -1, -1, 170, -1, -1, 173, -1, 175, - 176, 177, 178, 179, 5, 6, 7, -1, -1, -1, - 186, -1, -1, -1, -1, -1, -1, -1, 194, -1, - -1, -1, -1, -1, 200, -1, -1, -1, -1, -1, - -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 5, - 6, 7, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, -1, -1, -1, -1, 200, - -1, -1, -1, -1, -1, -1, 32, -1, -1, -1, + -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, + -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, + -1, -1, 86, 87, 88, 89, 90, 91, -1, -1, + -1, -1, -1, 97, 98, 99, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 109, 110, 111, 112, 113, + 114, -1, -1, -1, 118, -1, 120, 121, 122, 123, + 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, + -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, + 164, 165, 166, 167, -1, -1, 170, -1, -1, 173, + 174, -1, 176, -1, 178, 179, -1, -1, -1, 183, + -1, -1, 186, 187, 188, 189, 190, 5, 6, 7, + -1, -1, -1, 197, -1, -1, -1, -1, -1, -1, + -1, 205, -1, 207, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 32, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, + 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, + 78, 79, 80, 81, -1, 83, -1, -1, 86, 87, + 88, 89, 90, 91, -1, -1, -1, -1, -1, 97, + 98, 99, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 109, 110, 111, 112, 113, 114, -1, -1, -1, + 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, + 158, 159, 160, 161, -1, -1, 164, 165, 166, 167, + -1, -1, 170, -1, -1, 173, 174, -1, 176, -1, + 178, 179, -1, -1, -1, 183, -1, -1, 186, 187, + 188, 189, 190, 5, 6, 7, -1, -1, -1, 197, + -1, -1, -1, -1, -1, -1, -1, 205, -1, 207, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, + -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, + 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, + 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 109, 110, 111, 112, 113, 114, -1, -1, + -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, + -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, - -1, -1, 78, 79, 80, 81, -1, 83, -1, -1, - 86, 87, 88, 89, 90, 91, -1, -1, -1, -1, - -1, 97, 98, 99, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 109, 110, 111, 112, 113, 114, -1, - -1, -1, 118, -1, 120, 121, 122, 123, 124, 125, - -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, -1, 151, -1, -1, 5, 6, - 7, -1, 158, 159, 160, 161, -1, -1, 164, 165, - 166, 167, -1, -1, 170, -1, -1, 173, -1, 175, - 176, 177, 178, 179, -1, 32, -1, -1, -1, -1, - 186, -1, -1, -1, -1, -1, -1, -1, 194, -1, - 196, 48, 49, 50, 51, 52, 53, 54, 55, 56, + -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, -1, 86, @@ -3269,71 +4211,14 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, -1, 5, 6, 7, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, -1, 32, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 196, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, - 78, 79, 80, 81, -1, 83, -1, -1, 86, 87, - 88, 89, 90, 91, -1, -1, -1, -1, -1, 97, - 98, 99, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 109, 110, 111, 112, 113, 114, -1, -1, -1, - 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, - 148, 149, -1, 151, -1, -1, 5, 6, 7, -1, - 158, 159, 160, 161, -1, -1, 164, 165, 166, 167, - -1, -1, 170, -1, -1, 173, -1, 175, 176, 177, - 178, 179, -1, 32, -1, -1, -1, -1, 186, -1, - -1, -1, -1, -1, -1, -1, 194, -1, 196, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, -1, 5, 6, 7, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, -1, 32, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 196, 48, 49, - 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, - 80, 81, -1, 83, -1, -1, 86, 87, 88, 89, - 90, 91, -1, -1, -1, -1, -1, 97, 98, 99, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, - 110, 111, 112, 113, 114, -1, -1, -1, 118, -1, - 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - -1, 151, -1, -1, 5, 6, 7, -1, 158, 159, - 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, - 170, -1, -1, 173, -1, 175, 176, 177, 178, 179, - -1, 32, -1, -1, -1, -1, 186, -1, -1, -1, - -1, -1, -1, -1, 194, -1, 196, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, -1, 5, 6, 7, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, -1, - 32, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 196, 48, 49, 50, 51, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, @@ -3344,55 +4229,13 @@ 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, - -1, -1, 5, 6, 7, -1, 158, 159, 160, 161, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, - -1, 173, -1, 175, 176, 177, 178, 179, -1, 32, - -1, -1, -1, -1, 186, -1, -1, -1, -1, -1, - -1, -1, 194, -1, 196, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - -1, 5, 6, 7, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, -1, 32, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 196, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, - -1, 75, -1, -1, 78, 79, 80, 81, -1, 83, - -1, -1, 86, 87, 88, 89, 90, 91, -1, -1, - -1, -1, -1, 97, 98, 99, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 109, 110, 111, 112, 113, - 114, -1, -1, -1, 118, -1, 120, 121, 122, 123, - 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, - 5, 6, 7, -1, 158, 159, 160, 161, -1, -1, - 164, 165, 166, 167, -1, -1, 170, -1, -1, 173, - -1, 175, 176, 177, 178, 179, -1, 32, -1, -1, - -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, - 194, -1, 196, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3403,70 +4246,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3477,70 +4281,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3551,70 +4316,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3625,70 +4351,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3699,70 +4386,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3773,70 +4421,31 @@ -1, 118, -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, -1, 151, -1, 5, 6, 7, -1, + 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, 32, -1, -1, -1, -1, -1, 186, - -1, -1, -1, -1, -1, -1, -1, 194, -1, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, -1, -1, -1, 75, -1, -1, 78, - 79, 80, 81, -1, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, 97, 98, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 109, 110, 111, 112, 113, 114, -1, -1, -1, 118, - -1, 120, 121, 122, 123, 124, 125, -1, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, -1, 151, -1, 5, 6, 7, -1, -1, 158, - 159, 160, 161, -1, -1, 164, 165, 166, 167, -1, - -1, 170, -1, -1, 173, -1, 175, 176, 177, 178, - 179, 32, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, -1, -1, 194, -1, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, - 81, -1, 83, -1, -1, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, 97, 98, 99, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, - 111, 112, 113, 114, -1, -1, -1, 118, -1, 120, - 121, 122, 123, 124, 125, -1, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, - 151, -1, 5, 6, 7, -1, -1, 158, 159, 160, - 161, -1, -1, 164, 165, 166, 167, -1, -1, 170, - -1, -1, 173, -1, 175, 176, 177, 178, 179, 32, - -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, - -1, -1, -1, 194, -1, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, - -1, -1, 75, -1, -1, 78, 79, 80, 81, -1, - 83, -1, -1, 86, 87, 88, 89, 90, 91, -1, - -1, -1, -1, -1, 97, 98, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, -1, -1, -1, 118, -1, 120, 121, 122, - 123, 124, 125, -1, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, - 5, 6, 7, -1, -1, 158, 159, 160, 161, -1, - -1, 164, 165, 166, 167, -1, -1, 170, -1, -1, - 173, -1, 175, 176, 177, 178, 179, 32, -1, -1, - -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, - -1, 194, -1, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, - 75, -1, -1, 78, 79, 80, 81, -1, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, 97, 98, 99, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, - -1, -1, -1, 118, -1, 120, 121, 122, 123, 124, - 125, -1, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, -1, 151, -1, 5, 6, - 7, -1, -1, 158, 159, 160, 161, -1, -1, 164, - 165, 166, 167, -1, -1, 170, -1, -1, 173, -1, - 175, 176, 177, 178, 179, 32, -1, -1, -1, -1, - -1, 186, -1, -1, -1, -1, -1, -1, -1, 194, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, 5, 6, + 7, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, + -1, -1, -1, 205, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, -1, -1, -1, 75, -1, @@ -3849,529 +4458,708 @@ 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, 165, 166, - 167, -1, -1, 170, -1, -1, 173, -1, 175, 176, - 177, 178, 179, -1, -1, -1, -1, -1, -1, 186, - 42, 43, 44, 3, 4, -1, -1, 194, 8, 9, + 167, -1, -1, 170, -1, -1, 173, 174, -1, 176, + -1, 178, 179, 5, 6, 7, 183, -1, -1, 186, + 187, 188, 189, 190, -1, -1, -1, -1, -1, -1, + 197, -1, -1, -1, -1, -1, -1, -1, 205, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, + -1, 83, -1, -1, 86, 87, 88, 89, 90, 91, + -1, -1, -1, -1, -1, 97, 98, 99, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, -1, -1, -1, 118, -1, 120, 121, + 122, 123, 124, 125, -1, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, + -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, + -1, -1, 164, 165, 166, 167, -1, -1, 170, -1, + -1, 173, 174, -1, 176, -1, 178, 179, -1, -1, + -1, 183, -1, -1, 186, 187, 188, 189, 190, -1, + -1, -1, -1, -1, -1, 197, -1, -1, -1, 3, + 4, -1, -1, 205, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, 18, 19, -1, 21, 22, 23, + 24, 25, 26, 27, -1, -1, 30, 31, -1, 33, + 34, 35, 36, 37, 38, -1, 40, 41, -1, -1, + -1, 45, 46, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 76, 77, -1, -1, -1, -1, 82, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 92, 93, + 94, 95, 96, -1, -1, -1, 100, 101, 102, 103, + 104, 105, 106, 107, 108, -1, -1, -1, -1, -1, + -1, 115, 116, 117, -1, 119, -1, -1, -1, -1, + -1, -1, 126, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 150, -1, 152, 153, + 154, 155, 156, 157, -1, -1, -1, -1, 162, 163, + -1, -1, -1, -1, 168, 169, -1, 171, 172, -1, + -1, 175, -1, 177, -1, -1, 180, -1, -1, -1, + 184, -1, -1, -1, -1, 189, 190, -1, -1, 193, + -1, -1, -1, -1, -1, 3, 4, -1, -1, 203, + 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, + 18, 19, -1, 21, 22, 23, 24, 25, 26, 27, + -1, -1, 30, 31, -1, 33, 34, 35, 36, 37, + 38, -1, 40, 41, -1, -1, -1, 45, 46, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 76, 77, + -1, -1, -1, -1, 82, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 92, 93, 94, 95, 96, -1, + -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, + 108, -1, -1, -1, -1, -1, -1, 115, 116, 117, + -1, 119, -1, -1, -1, -1, -1, -1, 126, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 150, -1, 152, 153, 154, 155, 156, 157, + -1, -1, -1, -1, 162, 163, -1, -1, -1, -1, + 168, 169, -1, 171, 172, -1, -1, 175, -1, 177, + -1, -1, 180, -1, -1, -1, 184, -1, -1, -1, + -1, 189, 190, 3, 4, 193, -1, -1, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, -1, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, -1, 33, 34, 35, 36, 37, 38, -1, - 40, 41, 84, 85, -1, 45, 46, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, - -1, -1, 82, -1, -1, -1, -1, -1, 42, 43, - 44, -1, 92, 93, 94, 95, 96, 42, 43, 44, - 100, 101, 102, 103, 104, 105, 106, 107, 108, -1, - -1, -1, -1, -1, -1, 115, 116, 117, 72, 119, - -1, -1, -1, -1, -1, -1, 126, 72, 73, 74, - 84, 85, -1, -1, -1, -1, -1, -1, -1, 84, - 85, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 150, -1, 152, 153, 154, 155, 156, 157, -1, -1, - -1, -1, 162, 163, -1, -1, -1, -1, 168, 169, - -1, 171, 172, -1, -1, -1, -1, -1, 178, 179, - 3, 4, 182, -1, -1, 8, 9, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, -1, 21, 22, - 23, 24, 25, 26, 27, -1, -1, 30, 31, -1, - 33, 34, 35, 36, 37, 38, -1, 40, 41, -1, - -1, -1, 45, 46, -1, -1, -1, -1, -1, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 183, 184, - 185, 186, 187, 188, 189, -1, 191, -1, -1, -1, - 195, 196, -1, 76, 77, -1, 42, 43, 44, 82, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 92, - 93, 94, 95, 96, 42, 43, 44, 100, 101, 102, - 103, 104, 105, 106, 107, 108, 72, 73, 74, -1, - -1, -1, 115, 116, 117, -1, 119, -1, 84, 85, - -1, -1, -1, 126, 72, 73, 74, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 150, -1, 152, - 153, 154, 155, 156, 157, -1, -1, -1, -1, 162, - 163, -1, -1, -1, -1, 168, 169, -1, 171, 172, - -1, -1, 3, 4, -1, 178, 179, 8, 9, 10, - 11, 12, 13, 14, 15, 16, 17, 18, -1, -1, - -1, -1, -1, -1, -1, -1, 27, -1, -1, 30, - 31, -1, 33, 34, 35, 36, 37, 38, -1, 40, - 41, -1, -1, -1, 45, 46, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - -1, -1, 198, -1, -1, 183, 184, 185, 186, 187, - 188, 189, -1, 191, -1, 76, 77, 195, -1, -1, - 198, 82, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 92, 93, 94, 95, 96, 42, 43, 44, 100, - 101, 102, 103, 104, 105, 106, 107, 108, -1, -1, - -1, -1, -1, -1, 115, 116, 117, -1, 119, -1, - -1, -1, -1, -1, -1, 126, 72, 73, 74, -1, - -1, -1, -1, 42, 43, 44, -1, -1, 84, 85, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 150, - -1, 152, 153, 154, 155, 156, 157, 42, 43, 44, - -1, 162, 163, 72, 73, 74, -1, 168, 169, -1, - 171, 172, -1, -1, -1, 84, 85, 178, 179, 42, - 43, 44, -1, -1, -1, -1, -1, 72, 73, 74, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, - 85, -1, -1, -1, 42, 43, 44, -1, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, 42, 43, 44, -1, -1, -1, -1, - -1, -1, -1, -1, 72, 73, 74, 183, 184, 185, - 186, 187, 188, 189, -1, 191, 84, 85, -1, 195, - -1, -1, 198, 72, 73, 74, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 84, 85, -1, -1, -1, - -1, -1, -1, -1, 183, 184, 185, 186, 187, 188, - 189, -1, 191, -1, -1, -1, 195, -1, -1, 198, - -1, -1, -1, -1, -1, -1, -1, -1, 183, 184, - 185, 186, 187, 188, 189, -1, 191, -1, -1, -1, - 195, -1, -1, 198, -1, -1, -1, -1, -1, -1, - 183, 184, 185, 186, 187, 188, 189, -1, 191, -1, - -1, 42, 43, 44, -1, 198, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 42, 43, 44, -1, -1, -1, - 198, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, 42, 43, 44, -1, 198, - -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, - -1, 42, 43, 44, -1, -1, 84, 85, -1, -1, - -1, -1, -1, -1, -1, 72, 73, 74, 42, 43, - 44, -1, -1, -1, -1, -1, -1, 84, 85, -1, - -1, 72, 73, 74, 42, 43, 44, -1, -1, -1, - -1, -1, -1, 84, 85, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 84, 85, -1, -1, 72, 73, 74, -1, -1, -1, - -1, -1, 42, 43, 44, -1, 84, 85, -1, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, 42, 43, 44, -1, 198, -1, -1, - -1, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, -1, -1, - 198, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, -1, -1, - -1, 198, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 42, 43, 44, 198, -1, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 42, 43, - 44, -1, -1, -1, 198, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 72, 73, 74, 195, 196, -1, - -1, -1, -1, -1, -1, -1, 84, 85, 72, 73, - 74, 42, 43, 44, -1, -1, -1, -1, -1, -1, - 84, 85, -1, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 42, 43, 44, 195, 196, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 196, 42, 43, - 44, -1, 72, 73, 74, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 84, 85, -1, -1, -1, 183, 184, 185, 186, 187, - 188, 189, -1, 191, -1, -1, -1, 195, 196, 183, - 184, 185, 186, 187, 188, 189, -1, 191, -1, -1, - -1, 195, 196, -1, -1, -1, -1, -1, -1, -1, - 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, 196, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, 195, 196, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, 196, 42, 43, 44, -1, 72, 73, 74, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, - 85, 42, 43, 44, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, 42, 43, - 44, -1, -1, -1, -1, 84, 85, -1, -1, -1, - -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, 195, 196, 42, 43, 44, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - 196, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 196, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 196, 42, 43, - 44, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, 196, 42, 43, 44, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 72, 73, - 74, 195, 196, 42, 43, 44, -1, -1, -1, -1, - 84, 85, -1, -1, -1, -1, 72, 73, 74, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 196, - 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, 196, 42, 43, 44, -1, - 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 84, 85, 42, 43, 44, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, 196, -1, 72, 73, 74, 183, 184, 185, - 186, 187, 188, 189, -1, 191, 84, 85, -1, 195, - 196, 42, 43, 44, 183, 184, 185, 186, 187, 188, - 189, -1, 191, -1, -1, -1, 195, 196, 42, 43, + 40, 41, -1, -1, -1, 45, 46, -1, 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, 195, 196, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 42, 43, 44, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - 196, 42, 43, 44, -1, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 72, 73, 74, 195, 196, 42, - 43, 44, -1, -1, -1, -1, 84, 85, -1, -1, - -1, 72, 73, 74, -1, -1, 42, 43, 44, -1, - -1, -1, -1, 84, 85, -1, -1, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 196, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, 196, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 42, 43, 44, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 42, - 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, -1, 196, 42, 43, 44, -1, - 183, 184, 185, 186, 187, 188, 189, -1, 191, -1, - 42, 43, 44, 196, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, 72, 73, 74, -1, - 196, -1, -1, -1, -1, -1, -1, -1, 84, 85, - 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 42, 43, 44, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 42, 43, 44, -1, 196, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, -1, 196, 42, 43, 44, -1, -1, -1, - -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, - 42, 43, 44, -1, 72, 73, 74, 183, 184, 185, - 186, 187, 188, 189, -1, 191, 84, 85, -1, -1, - 196, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, -1, 196, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 42, 43, 44, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - -1, 196, 42, 43, 44, -1, -1, -1, -1, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, -1, 196, -1, 42, 43, - 44, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 42, - 43, 44, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, -1, 196, 42, 43, 44, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 72, 73, 74, -1, 196, - 42, 43, 44, -1, -1, -1, -1, 84, 85, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - -1, -1, -1, -1, 196, -1, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, -1, 196, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, -1, 196, 42, 43, 44, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, -1, 196, 42, 43, 44, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, -1, 196, - 42, 43, 44, -1, 72, 73, 74, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, -1, 196, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, -1, - 196, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - -1, 196, 42, 43, 44, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, -1, 196, 42, 43, - 44, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 42, - 43, 44, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, -1, 196, 42, 43, 44, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 72, 73, 74, -1, 196, - 42, 43, 44, -1, -1, -1, -1, 84, 85, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, -1, 196, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, -1, 196, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, -1, 196, 42, 43, 44, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, -1, 196, 42, 43, 44, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, -1, 196, - 42, 43, 44, -1, 72, 73, 74, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, -1, 196, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, -1, - 196, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - -1, 196, 42, 43, 44, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, -1, 196, 42, 43, - 44, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 42, - 43, 44, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, -1, 196, 42, 43, 44, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 72, 73, 74, -1, 196, - 42, 43, 44, -1, -1, -1, -1, 84, 85, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, -1, 196, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, -1, 196, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, -1, 196, 42, 43, 44, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, -1, 196, 42, 43, 44, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, -1, 196, - 42, 43, 44, -1, 72, 73, 74, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, -1, 196, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, -1, - 196, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - -1, 196, 42, 43, 44, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, -1, 196, 42, 43, - 44, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 42, - 43, 44, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, -1, 196, 42, 43, 44, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 72, 73, 74, -1, 196, - 42, 43, 44, -1, -1, -1, -1, 84, 85, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, -1, 196, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, -1, 196, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, -1, 196, 42, 43, 44, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, -1, 196, 42, 43, 44, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, -1, 196, - 42, 43, 44, -1, 72, 73, 74, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, -1, 196, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, -1, - 196, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - -1, 196, 42, 43, 44, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, -1, 196, 42, 43, - 44, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, -1, 196, 42, - 43, 44, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, -1, 196, 42, 43, 44, -1, 72, - 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 84, 85, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 72, 73, 74, 195, -1, - 42, 43, 44, -1, -1, -1, -1, 84, 85, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, -1, 42, 43, 44, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, 195, -1, 42, 43, 44, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, -1, 42, 43, 44, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, -1, - 42, 43, 44, 72, 73, 74, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 84, 85, -1, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 72, 73, 74, 195, -1, 42, 43, 44, -1, -1, - -1, -1, 84, 85, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - -1, 42, 43, 44, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, -1, 42, 43, - 44, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, 195, -1, -1, -1, 72, 73, 74, + -1, -1, -1, -1, -1, -1, 76, 77, 72, 73, + 74, -1, 82, -1, -1, -1, -1, -1, -1, -1, + 84, 85, 92, 93, 94, 95, 96, 42, 43, 44, + 100, 101, 102, 103, 104, 105, 106, 107, 108, -1, + -1, -1, -1, -1, -1, 115, 116, 117, -1, 119, + -1, -1, -1, 42, 43, 44, 126, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, - 85, -1, -1, -1, -1, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, -1, -1, -1, 195, 42, - 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, -1, 42, 43, 44, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, -1, -1, - -1, -1, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, 42, 43, 44, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, -1, -1, - -1, -1, 72, 73, 74, -1, -1, 42, 43, 44, - -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, - -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - 42, 43, 44, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 42, - 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, 195, -1, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, 183, 184, - 185, 186, 187, 188, 189, -1, 191, -1, -1, -1, - 195, 42, 43, 44, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, + 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 150, -1, 152, 153, 154, 155, 156, 157, -1, -1, + -1, -1, 162, 163, -1, 84, 85, -1, 168, 169, + -1, 171, 172, -1, -1, 175, -1, 177, -1, -1, + 180, -1, -1, -1, 184, -1, -1, 181, 182, 189, + 190, 42, 43, 44, -1, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, 206, -1, -1, 209, -1, -1, -1, -1, + -1, 72, 73, 74, -1, -1, -1, -1, 42, 43, + 44, -1, -1, 84, 85, -1, 181, 182, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, 72, 73, + 74, 206, 181, 182, 209, 42, 43, 44, -1, -1, + 84, 85, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, -1, -1, + 42, 43, 44, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 42, 43, 44, 195, -1, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - 72, 73, 74, -1, -1, -1, -1, -1, -1, 42, - 43, 44, 84, 85, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 42, 43, - 44, -1, -1, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, 195, -1, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - 183, 184, 185, 186, 187, 188, 189, -1, 191, -1, - -1, -1, 195, 42, 43, 44, -1, -1, -1, -1, + 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, + 181, 182, 84, 85, 42, 43, 44, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, -1, -1, 209, 42, + 43, 44, -1, -1, 72, 73, 74, 181, 182, -1, + -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, 72, + 73, 74, 206, -1, -1, 209, 42, 43, 44, -1, + -1, 84, 85, -1, 181, 182, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, 72, 73, 74, 181, + 182, -1, 209, 42, 43, 44, -1, -1, 84, 85, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, -1, -1, -1, 209, -1, -1, + -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, + -1, -1, -1, 181, 182, 84, 85, -1, 42, 43, + 44, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 181, 182, + -1, 209, 42, 43, 44, -1, -1, -1, 72, 73, + 74, 194, 195, 196, 197, 198, 199, 200, -1, 202, + 84, 85, -1, -1, -1, -1, 209, 42, 43, 44, + -1, -1, 72, 73, 74, 181, 182, -1, -1, -1, + -1, -1, -1, -1, 84, 85, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, 72, 73, 74, + -1, -1, -1, 209, 42, 43, 44, -1, -1, 84, + 85, -1, 181, 182, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, 72, 73, 74, 42, 43, 44, + 209, -1, -1, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 181, 182, -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, - -1, -1, -1, -1, -1, -1, 42, 43, 44, 84, - 85, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 42, - 43, 44, -1, -1, -1, -1, 72, 73, 74, 183, - 184, 185, 186, 187, 188, 189, -1, 191, 84, 85, - -1, 195, 42, 43, 44, -1, -1, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, -1, -1, - -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, - -1, 42, 43, 44, 84, 85, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - -1, -1, -1, -1, -1, -1, -1, 183, 184, 185, - 186, 187, 188, 189, -1, 191, -1, -1, -1, 195, - 42, 43, 44, -1, -1, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, 195, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 42, - 43, 44, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, 42, 43, 44, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, + 194, 195, 196, 197, 198, 199, 200, -1, 202, 84, + 85, 181, 182, -1, -1, 209, 42, 43, 44, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 181, 182, -1, 209, + -1, -1, -1, -1, -1, -1, 72, 73, 74, 194, + 195, 196, 197, 198, 199, 200, -1, 202, 84, 85, + -1, 206, 207, -1, -1, -1, -1, -1, -1, -1, + 42, 43, 44, 181, 182, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 207, + 72, 73, 74, 42, 43, 44, 181, 182, -1, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 207, 72, 73, 74, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 84, 85, 42, 43, 44, + -1, -1, -1, -1, -1, 181, 182, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, 72, 73, 74, + 206, 207, -1, -1, -1, -1, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 42, 43, 44, 181, + 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 207, 72, 73, 74, 42, + 43, 44, 181, 182, -1, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, 206, 207, 72, 73, 74, -1, -1, -1, -1, -1, -1, 42, 43, - 44, 84, 85, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, 72, 73, - 74, 183, 184, 185, 186, 187, 188, 189, -1, 191, - 84, 85, -1, 195, 42, 43, 44, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, - -1, -1, -1, 42, 43, 44, 84, 85, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 42, - 43, 44, -1, -1, -1, -1, -1, -1, -1, 183, - 184, 185, 186, 187, 188, 189, -1, 191, -1, -1, - -1, 195, 42, 43, 44, -1, -1, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, -1, -1, - -1, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, 195, -1, -1, - -1, -1, -1, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, 183, 184, 185, 186, 187, 188, - 189, -1, 191, -1, -1, -1, 195, 42, 43, 44, + 44, 84, 85, -1, -1, -1, 181, 182, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, 72, 73, + 74, 206, 207, -1, -1, -1, -1, -1, -1, -1, + 84, 85, -1, -1, -1, 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 181, 182, -1, -1, -1, + -1, -1, -1, -1, -1, 72, 73, 74, 194, 195, + 196, 197, 198, 199, 200, -1, 202, 84, 85, -1, + 206, 207, -1, -1, -1, -1, -1, -1, 181, 182, + 42, 43, 44, -1, -1, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 207, -1, -1, -1, -1, -1, + 72, 73, 74, -1, 42, 43, 44, 181, 182, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, 206, 207, 72, 73, 74, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, + -1, 42, 43, 44, 181, 182, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 207, 72, 73, 74, -1, -1, -1, -1, -1, 42, + 43, 44, -1, 84, 85, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 181, + 182, -1, -1, -1, -1, -1, -1, -1, -1, 72, + 73, 74, 194, 195, 196, 197, 198, 199, 200, -1, + 202, 84, 85, -1, 206, 207, -1, -1, -1, -1, + 42, 43, 44, 181, 182, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 207, + 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, -1, + 181, 182, 42, 43, 44, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 207, -1, -1, -1, + -1, -1, 72, 73, 74, 42, 43, 44, 181, 182, + -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 207, 72, 73, 74, -1, 42, + 43, 44, -1, -1, -1, -1, -1, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 181, + 182, 42, 43, 44, -1, -1, -1, -1, -1, 72, + 73, 74, 194, 195, 196, 197, 198, 199, 200, -1, + 202, 84, 85, -1, 206, 207, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, - 42, 43, 44, 84, 85, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - 72, 73, 74, 183, 184, 185, 186, 187, 188, 189, - -1, 191, 84, 85, -1, 195, 42, 43, 44, -1, - -1, -1, -1, 72, 73, 74, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, 42, - 43, 44, -1, -1, -1, -1, 72, 73, 74, -1, - -1, -1, -1, -1, -1, 42, 43, 44, 84, 85, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, -1, -1, - -1, 183, 184, 185, 186, 187, 188, 189, -1, 191, - -1, -1, -1, 195, 42, 43, 44, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 42, 43, 44, - -1, -1, -1, -1, 72, 73, 74, 183, 184, 185, - 186, 187, 188, 189, -1, 191, 84, 85, -1, 195, + -1, -1, -1, 84, 85, -1, -1, -1, 42, 43, + 44, 181, 182, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 207, 72, 73, + 74, 42, 43, 44, 181, 182, -1, -1, -1, -1, + 84, 85, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 207, 72, 73, 74, -1, -1, -1, -1, 181, 182, + 42, 43, 44, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + 181, 182, -1, 206, 207, -1, -1, 42, 43, 44, + 72, 73, 74, 194, 195, 196, 197, 198, 199, 200, + -1, 202, 84, 85, -1, 206, 207, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, 183, 184, 185, 186, - 187, 188, 189, -1, 191, -1, -1, -1, 195, 42, - 43, 44, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, -1, 42, 43, 44, 84, 85, -1, -1, 72, - 73, 74, 183, 184, 185, 186, 187, 188, 189, -1, - 191, 84, 85, -1, 195, 42, 43, 44, -1, -1, - -1, -1, 72, 73, 74, 183, 184, 185, 186, 187, - 188, 189, -1, 191, 84, 85, -1, 195, 42, 43, - 44, -1, -1, -1, -1, 72, 73, 74, 183, 184, - 185, 186, 187, 188, 189, -1, 191, 84, 85, -1, - 195, 42, 43, 44, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, -1, 42, 43, 44, - 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 72, 73, 74, 183, 184, 185, 186, 187, 188, - 189, -1, 191, 84, 85, -1, 195, 72, 73, 74, - 183, 184, 185, 186, 187, 188, 189, -1, 191, 84, - 85, -1, 195, 42, 43, 44, -1, -1, -1, -1, - -1, -1, -1, 183, 184, 185, 186, 187, 188, 189, - -1, 191, -1, -1, -1, 195, -1, -1, -1, -1, - -1, -1, -1, 72, 73, -1, 183, 184, 185, 186, - 187, 188, 189, -1, 191, 84, 85, -1, 195, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 183, - 184, 185, 186, 187, 188, 189, -1, 191, -1, -1, - -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 183, 184, 185, 186, 187, 188, 189, -1, - 191, -1, -1, -1, 195, -1, -1, -1, 183, 184, - 185, 186, 187, 188, 189, -1, 191, -1, -1, -1, + -1, -1, -1, -1, 42, 43, 44, 181, 182, 84, + 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, 206, 207, 72, 73, 74, -1, -1, -1, + 181, 182, 42, 43, 44, -1, 84, 85, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 207, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, 181, + 182, -1, -1, -1, 84, 85, 42, 43, 44, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 207, 181, 182, 42, 43, + 44, -1, -1, -1, -1, -1, 72, 73, 74, 194, + 195, 196, 197, 198, 199, 200, -1, 202, 84, 85, + -1, 206, 207, -1, -1, 42, 43, 44, 72, 73, + 74, -1, -1, 181, 182, -1, -1, -1, -1, -1, + 84, 85, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, 72, 73, 74, 206, 207, + -1, -1, -1, 42, 43, 44, -1, 84, 85, -1, + -1, 181, 182, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, 72, 73, 74, 206, 207, -1, -1, + -1, -1, -1, -1, -1, 84, 85, -1, -1, -1, + -1, -1, -1, -1, -1, 181, 182, 42, 43, 44, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, 181, 182, -1, + 206, 207, -1, -1, 42, 43, 44, 72, 73, 74, + 194, 195, 196, 197, 198, 199, 200, -1, 202, 84, + 85, -1, -1, 207, 181, 182, 42, 43, 44, -1, + -1, -1, -1, -1, 72, 73, 74, 194, 195, 196, + 197, 198, 199, 200, -1, 202, 84, 85, -1, -1, + 207, -1, -1, -1, -1, -1, 72, 73, 74, 42, + 43, 44, 181, 182, -1, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, 207, 72, + 73, 74, -1, -1, -1, -1, 42, 43, 44, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 181, 182, -1, -1, + -1, -1, -1, -1, -1, -1, 72, 73, 74, 194, + 195, 196, 197, 198, 199, 200, -1, 202, 84, 85, + -1, -1, 207, 181, 182, 42, 43, 44, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, 181, 182, -1, -1, 207, + -1, -1, -1, -1, -1, 72, 73, 74, 194, 195, + 196, 197, 198, 199, 200, -1, 202, 84, 85, -1, + -1, 207, -1, -1, -1, 42, 43, 44, 181, 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, -1, 207, 72, 73, 74, 42, 43, + 44, -1, -1, -1, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, 72, 73, + 74, 207, -1, -1, 42, 43, 44, -1, -1, -1, + 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 181, 182, 42, 43, 44, -1, + -1, -1, -1, -1, 72, 73, 74, 194, 195, 196, + 197, 198, 199, 200, -1, 202, 84, 85, -1, -1, + 207, -1, -1, -1, -1, -1, 72, 73, 74, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, + -1, 42, 43, 44, 181, 182, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, -1, + 207, 72, 73, 74, 42, 43, 44, 181, 182, -1, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, -1, 207, 72, 73, 74, -1, -1, -1, + -1, -1, -1, 181, 182, -1, 84, 85, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, 181, 182, -1, -1, 207, + 42, 43, 44, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + -1, 207, -1, -1, -1, -1, -1, -1, -1, -1, + 72, 73, 74, 42, 43, 44, -1, -1, -1, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, 72, 73, 74, 207, -1, -1, -1, + 42, 43, 44, 181, 182, 84, 85, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, -1, 207, + 72, 73, 74, 42, 43, 44, -1, -1, -1, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 72, 73, 74, 42, 43, 44, 181, + 182, -1, -1, -1, -1, 84, 85, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, -1, 207, 72, 73, 74, 42, + 43, 44, 181, 182, -1, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, 207, 72, + 73, 74, 42, 43, 44, -1, -1, -1, -1, 181, + 182, 84, 85, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, 72, 73, 74, 207, -1, -1, -1, 42, + 43, 44, 181, 182, 84, 85, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, 207, 72, + 73, 74, 42, 43, 44, 181, 182, -1, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + -1, 207, 72, 73, 74, 42, 43, 44, 181, 182, + -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, -1, 207, 72, 73, 74, 42, 43, + 44, 181, 182, -1, -1, -1, -1, 84, 85, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, -1, 207, 72, 73, + 74, 42, 43, 44, -1, -1, -1, -1, 181, 182, + 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, 72, 73, 74, 207, -1, -1, -1, 42, 43, + 44, 181, 182, 84, 85, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, -1, 207, 72, 73, + 74, 42, 43, 44, 181, 182, -1, -1, -1, -1, + 84, 85, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, -1, + 207, 72, 73, 74, 42, 43, 44, 181, 182, -1, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, -1, 207, 72, 73, 74, 42, 43, 44, + 181, 182, -1, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, -1, 207, 72, 73, 74, + 42, 43, 44, -1, -1, -1, -1, 181, 182, 84, + 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + 72, 73, 74, 207, -1, -1, -1, 42, 43, 44, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, -1, 207, 72, 73, 74, + 42, 43, 44, 181, 182, -1, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, -1, 207, + 72, 73, 74, 42, 43, 44, 181, 182, -1, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, -1, 207, 72, 73, 74, 42, 43, 44, 181, + 182, -1, -1, -1, -1, 84, 85, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, -1, 207, 72, 73, 74, 42, + 43, 44, -1, -1, -1, -1, 181, 182, 84, 85, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, 72, + 73, 74, 207, -1, -1, -1, 42, 43, 44, 181, + 182, 84, 85, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, -1, 207, 72, 73, 74, 42, + 43, 44, 181, 182, -1, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, 207, 72, + 73, 74, 42, 43, 44, 181, 182, -1, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + -1, 207, 72, 73, 74, 42, 43, 44, 181, 182, + -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, -1, 207, 72, 73, 74, 42, 43, + 44, -1, -1, -1, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, 72, 73, + 74, 207, -1, -1, -1, 42, 43, 44, 181, 182, + 84, 85, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, -1, 207, 72, 73, 74, 42, 43, + 44, 181, 182, -1, -1, -1, -1, 84, 85, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, -1, 207, 72, 73, + 74, 42, 43, 44, 181, 182, -1, -1, -1, -1, + 84, 85, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, -1, + 207, 72, 73, 74, 42, 43, 44, 181, 182, -1, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, -1, 207, 72, 73, 74, 42, 43, 44, + -1, -1, -1, -1, 181, 182, 84, 85, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, 72, 73, 74, + 207, -1, -1, -1, 42, 43, 44, 181, 182, 84, + 85, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, -1, 207, 72, 73, 74, 42, 43, 44, + 181, 182, -1, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, -1, 207, 72, 73, 74, + 42, 43, 44, 181, 182, -1, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, -1, 207, + 72, 73, 74, 42, 43, 44, 181, 182, -1, -1, + -1, -1, 84, 85, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, -1, 207, 72, 73, 74, 42, 43, 44, -1, + -1, -1, -1, 181, 182, 84, 85, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, 72, 73, 74, 207, + -1, -1, -1, 42, 43, 44, 181, 182, 84, 85, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, -1, 207, 72, 73, 74, 42, 43, 44, 181, + 182, -1, -1, -1, -1, 84, 85, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, -1, 207, 72, 73, 74, 42, + 43, 44, 181, 182, -1, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, -1, -1, -1, 207, 72, + 73, 74, 42, 43, 44, 181, 182, -1, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + -1, 207, 72, 73, 74, 42, 43, 44, -1, -1, + -1, -1, 181, 182, 84, 85, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 194, 195, 196, 197, 198, + 199, 200, -1, 202, -1, 72, 73, 74, 207, -1, + -1, -1, 42, 43, 44, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + -1, 207, 72, 73, 74, 42, 43, 44, 181, 182, + -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, -1, 207, 72, 73, 74, 42, 43, + 44, 181, 182, -1, -1, -1, -1, 84, 85, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, -1, 207, 72, 73, + 74, 42, 43, 44, 181, 182, -1, -1, -1, -1, + 84, 85, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, -1, + 207, 72, 73, 74, 42, 43, 44, -1, -1, -1, + -1, 181, 182, 84, 85, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, 72, 73, 74, 207, -1, -1, + -1, 42, 43, 44, 181, 182, 84, 85, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, -1, + 207, 72, 73, 74, 42, 43, 44, 181, 182, -1, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + 194, 195, 196, 197, 198, 199, 200, -1, 202, -1, + -1, -1, -1, 207, 72, 73, 74, 42, 43, 44, + 181, 182, -1, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, -1, 207, 72, 73, 74, + 42, 43, 44, 181, 182, -1, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, -1, 207, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, 74, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, 73, 74, + 42, 43, 44, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, + 72, 73, 74, -1, -1, -1, 42, 43, 44, -1, + 181, 182, 84, 85, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, 206, 72, 73, 74, 42, + 43, 44, -1, 181, 182, -1, -1, -1, 84, 85, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, 206, 72, + 73, 74, 42, 43, 44, -1, 181, 182, -1, -1, + -1, 84, 85, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202, -1, -1, + -1, 206, 72, 73, 74, 42, 43, 44, -1, 181, + 182, -1, -1, -1, 84, 85, -1, -1, -1, -1, + -1, -1, 194, 195, 196, 197, 198, 199, 200, -1, + 202, -1, -1, -1, 206, 72, 73, 74, -1, -1, + -1, 42, 43, 44, -1, 181, 182, 84, 85, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 194, 195, + 196, 197, 198, 199, 200, -1, 202, -1, -1, -1, + 206, 72, 73, 74, 42, 43, 44, -1, 181, 182, + -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, + -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, + -1, -1, -1, 206, 72, 73, -1, 42, 43, 44, + -1, 181, 182, -1, -1, -1, 84, 85, -1, -1, + -1, -1, -1, -1, 194, 195, 196, 197, 198, 199, + 200, -1, 202, -1, -1, -1, 206, 72, -1, -1, + -1, -1, -1, -1, 181, 182, -1, -1, -1, 84, + 85, -1, -1, -1, -1, -1, -1, 194, 195, 196, + 197, 198, 199, 200, -1, 202, -1, -1, -1, 206, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 183, 184, 185, 186, 187, 188, - 189, -1, 191 + 181, 182, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 194, 195, 196, 197, 198, 199, 200, + -1, 202, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 181, 182, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 194, 195, 196, 197, + 198, 199, 200, -1, 202, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 181, 182, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, + 195, 196, 197, 198, 199, 200, -1, 202 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -4384,105 +5172,112 @@ 40, 41, 45, 46, 76, 77, 82, 92, 93, 94, 95, 96, 100, 101, 102, 103, 104, 105, 106, 107, 108, 115, 116, 117, 119, 126, 150, 152, 153, 154, - 155, 156, 157, 162, 163, 168, 169, 171, 172, 178, - 179, 182, 204, 205, 206, 207, 208, 209, 210, 211, - 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, - 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, - 252, 253, 254, 255, 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, 5, 6, 7, 32, 48, 49, - 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - 70, 71, 75, 78, 79, 80, 81, 83, 86, 87, - 88, 89, 90, 91, 97, 98, 99, 109, 110, 111, - 112, 113, 114, 118, 120, 121, 122, 123, 124, 125, - 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 151, 158, 159, 160, 161, 164, 165, - 166, 167, 170, 173, 175, 176, 177, 178, 179, 186, - 194, 289, 291, 178, 179, 289, 291, 194, 289, 291, - 194, 289, 194, 289, 178, 194, 200, 287, 194, 289, - 194, 289, 194, 289, 289, 289, 289, 178, 178, 194, - 289, 291, 194, 289, 291, 194, 289, 194, 289, 178, - 178, 19, 23, 194, 289, 178, 179, 178, 179, 289, - 178, 194, 287, 289, 194, 289, 291, 194, 289, 194, - 291, 289, 291, 291, 289, 194, 289, 194, 289, 289, - 194, 289, 194, 289, 289, 289, 289, 194, 289, 291, - 194, 194, 194, 289, 194, 291, 289, 291, 194, 291, - 291, 194, 178, 194, 289, 194, 289, 291, 194, 289, - 291, 194, 289, 185, 197, 185, 197, 0, 192, 207, - 193, 20, 195, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 289, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 197, 197, 289, 289, 291, 42, 43, - 44, 72, 73, 74, 84, 85, 183, 184, 185, 186, - 187, 188, 189, 191, 199, 42, 43, 44, 183, 184, - 185, 187, 199, 197, 197, 289, 195, 289, 195, 289, - 195, 178, 288, 289, 289, 195, 289, 195, 289, 195, - 185, 289, 195, 289, 195, 196, 196, 289, 195, 194, - 289, 194, 289, 194, 289, 194, 289, 178, 289, 195, - 289, 195, 289, 195, 291, 195, 289, 195, 289, 195, - 289, 195, 289, 195, 195, 289, 195, 196, 196, 289, - 195, 196, 196, 196, 289, 195, 289, 291, 195, 195, - 289, 195, 196, 287, 289, 289, 200, 286, 291, 289, - 204, 40, 219, 218, 178, 179, 196, 289, 289, 196, - 289, 289, 291, 289, 291, 291, 291, 291, 291, 291, - 291, 289, 289, 196, 289, 289, 289, 289, 289, 289, - 289, 196, 289, 289, 289, 289, 291, 289, 289, 291, - 196, 289, 196, 289, 196, 196, 196, 196, 196, 196, - 196, 196, 289, 289, 289, 289, 289, 289, 289, 196, - 289, 291, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 289, 289, 289, 196, 196, 196, 196, 196, - 289, 196, 289, 195, 202, 289, 195, 202, 289, 196, - 196, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 291, 289, 289, 289, 291, 291, - 291, 291, 291, 291, 289, 291, 289, 289, 195, 289, - 195, 289, 195, 289, 196, 201, 195, 195, 289, 195, - 289, 195, 289, 289, 195, 291, 195, 291, 195, 289, - 289, 289, 289, 289, 196, 195, 289, 195, 291, 195, - 289, 195, 289, 195, 289, 195, 289, 195, 291, 195, - 289, 289, 195, 289, 195, 289, 195, 289, 195, 195, - 291, 289, 195, 291, 195, 198, 290, 291, 195, 198, - 197, 197, 195, 195, 196, 196, 196, 196, 196, 195, - 195, 195, 196, 196, 195, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 195, 195, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 196, 202, 195, - 198, 195, 198, 202, 195, 198, 195, 198, 195, 198, - 195, 198, 289, 289, 195, 289, 195, 288, 289, 195, - 289, 195, 289, 28, 291, 291, 289, 195, 195, 195, - 195, 195, 289, 291, 289, 195, 289, 195, 289, 195, - 289, 195, 289, 291, 289, 195, 195, 289, 195, 289, - 289, 291, 289, 195, 291, 289, 185, 201, 195, 289, - 185, 289, 289, 289, 289, 289, 289, 289, 291, 289, - 289, 198, 198, 289, 198, 198, 289, 289, 289, 196, - 195, 289, 195, 289, 195, 178, 287, 289, 195, 289, - 196, 289, 196, 196, 195, 289, 289, 289, 289, 289, - 196, 196, 195, 289, 291, 195, 289, 195, 291, 195, - 289, 291, 195, 196, 195, 289, 289, 195, 289, 196, - 196, 195, 196, 289, 196, 198, 289, 290, 198, 291, - 198, 198, 196, 195, 195, 196, 196, 196, 195, 196, - 198, 198, 198, 198, 289, 289, 195, 178, 289, 195, - 289, 195, 29, 289, 196, 196, 196, 196, 289, 291, - 289, 291, 195, 289, 291, 195, 289, 289, 195, 289, - 289, 185, 185, 289, 289, 289, 196, 195, 289, 196, - 195, 178, 287, 289, 195, 289, 289, 196, 196, 196, - 196, 195, 196, 289, 195, 196, 289, 291, 196, 195, - 289, 196, 196, 289, 291, 196, 196, 195, 289, 178, - 289, 195, 289, 289, 289, 291, 195, 289, 195, 289, - 196, 196, 195, 178, 287, 196, 196, 195, 196, 291, - 195, 289, 196, 178, 291, 289, 196, 196, 196 + 155, 156, 157, 162, 163, 168, 169, 171, 172, 175, + 177, 180, 184, 189, 190, 193, 215, 216, 217, 218, + 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, + 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, + 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, + 249, 250, 251, 252, 253, 254, 255, 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, 5, 6, 7, 32, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + 75, 78, 79, 80, 81, 83, 86, 87, 88, 89, + 90, 91, 97, 98, 99, 109, 110, 111, 112, 113, + 114, 118, 120, 121, 122, 123, 124, 125, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 151, 158, 159, 160, 161, 164, 165, 166, 167, + 170, 173, 174, 176, 178, 179, 183, 186, 187, 188, + 189, 190, 197, 205, 304, 306, 189, 190, 304, 306, + 205, 304, 306, 205, 304, 205, 304, 189, 205, 211, + 302, 205, 304, 205, 304, 205, 304, 304, 304, 304, + 189, 189, 205, 304, 306, 205, 304, 306, 205, 304, + 205, 304, 189, 189, 19, 23, 205, 304, 189, 190, + 189, 190, 304, 189, 205, 302, 304, 205, 304, 306, + 205, 304, 205, 306, 304, 306, 306, 304, 205, 304, + 205, 304, 304, 205, 304, 205, 304, 304, 304, 304, + 205, 304, 306, 205, 205, 205, 304, 205, 306, 304, + 306, 205, 306, 306, 205, 189, 205, 304, 205, 304, + 306, 205, 304, 306, 205, 304, 205, 306, 205, 306, + 205, 304, 205, 306, 196, 208, 196, 208, 0, 203, + 218, 204, 20, 206, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 304, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, + 205, 205, 205, 205, 205, 205, 205, 205, 304, 208, + 208, 304, 304, 306, 42, 43, 44, 72, 73, 74, + 84, 85, 181, 182, 194, 195, 196, 197, 198, 199, + 200, 202, 210, 42, 43, 44, 194, 195, 196, 198, + 210, 208, 208, 304, 206, 304, 206, 304, 206, 189, + 303, 304, 304, 206, 304, 206, 304, 206, 196, 304, + 206, 304, 206, 207, 207, 304, 206, 205, 304, 205, + 304, 205, 304, 205, 304, 189, 304, 206, 304, 206, + 304, 206, 306, 206, 304, 206, 304, 206, 304, 206, + 304, 206, 206, 304, 206, 207, 207, 304, 206, 207, + 207, 207, 304, 206, 304, 306, 206, 206, 304, 206, + 207, 304, 306, 206, 304, 206, 306, 206, 302, 304, + 304, 211, 301, 306, 304, 215, 40, 230, 229, 189, + 190, 207, 304, 304, 207, 304, 304, 306, 304, 306, + 306, 306, 306, 306, 306, 306, 304, 304, 207, 304, + 304, 304, 304, 304, 304, 304, 207, 304, 304, 304, + 304, 306, 304, 304, 306, 207, 304, 207, 304, 207, + 207, 207, 207, 207, 207, 207, 207, 304, 304, 304, + 304, 304, 304, 304, 207, 304, 306, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 304, 304, 304, + 207, 207, 207, 207, 207, 304, 207, 304, 207, 306, + 306, 304, 206, 213, 304, 206, 213, 304, 207, 207, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 306, 304, 304, 304, 306, + 306, 306, 306, 306, 306, 304, 306, 304, 304, 206, + 304, 206, 304, 206, 304, 207, 212, 206, 206, 304, + 206, 304, 206, 304, 304, 206, 306, 206, 306, 206, + 304, 304, 304, 304, 304, 207, 206, 304, 206, 306, + 206, 304, 206, 304, 206, 304, 206, 304, 206, 306, + 206, 304, 304, 206, 304, 206, 304, 206, 304, 206, + 206, 306, 304, 206, 306, 206, 206, 306, 206, 304, + 206, 306, 206, 209, 305, 306, 206, 209, 208, 208, + 206, 206, 207, 207, 207, 207, 207, 206, 206, 206, + 207, 207, 206, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 206, 206, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 206, 207, 213, + 206, 209, 206, 209, 213, 206, 209, 206, 209, 206, + 209, 206, 209, 304, 304, 206, 304, 206, 303, 304, + 206, 304, 206, 304, 28, 306, 306, 304, 206, 206, + 206, 206, 206, 304, 306, 304, 206, 304, 206, 304, + 206, 304, 206, 304, 306, 304, 206, 206, 304, 206, + 304, 304, 306, 304, 206, 306, 306, 306, 206, 304, + 306, 304, 196, 212, 206, 304, 196, 304, 304, 304, + 304, 304, 304, 304, 306, 304, 304, 306, 209, 209, + 304, 209, 209, 304, 304, 304, 207, 206, 304, 206, + 304, 206, 189, 302, 304, 206, 304, 207, 304, 207, + 207, 206, 304, 304, 304, 304, 304, 207, 207, 206, + 304, 306, 206, 304, 206, 306, 206, 304, 306, 206, + 207, 206, 304, 304, 206, 304, 207, 207, 206, 207, + 304, 207, 207, 206, 306, 207, 207, 209, 304, 305, + 209, 306, 209, 209, 207, 206, 206, 207, 207, 207, + 206, 207, 207, 209, 209, 209, 209, 304, 304, 206, + 189, 304, 206, 304, 206, 29, 304, 207, 207, 207, + 207, 304, 306, 304, 306, 206, 304, 306, 206, 304, + 304, 206, 304, 304, 306, 196, 196, 304, 304, 304, + 207, 206, 304, 207, 206, 189, 302, 304, 206, 304, + 304, 207, 207, 207, 207, 206, 207, 304, 206, 207, + 304, 306, 207, 206, 304, 207, 207, 207, 304, 306, + 207, 207, 206, 304, 189, 304, 206, 304, 304, 304, + 306, 206, 304, 206, 304, 207, 207, 206, 189, 302, + 207, 207, 206, 207, 306, 206, 304, 207, 189, 306, + 304, 207, 207, 207 }; #define yyerrok (yyerrstatus = 0) @@ -5296,42 +6091,42 @@ case 6: /* Line 1455 of yacc.c */ -#line 325 "basicParse.y" +#line 330 "basicParse.y" { labeltable[(yyvsp[(1) - (1)].number)] = byteOffset; lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 7: /* Line 1455 of yacc.c */ -#line 327 "basicParse.y" +#line 332 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 8: /* Line 1455 of yacc.c */ -#line 328 "basicParse.y" +#line 333 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 9: /* Line 1455 of yacc.c */ -#line 329 "basicParse.y" +#line 334 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 10: /* Line 1455 of yacc.c */ -#line 330 "basicParse.y" +#line 335 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 11: /* Line 1455 of yacc.c */ -#line 331 "basicParse.y" +#line 336 "basicParse.y" { // push to iftable the byte location of the end of the last stmt (top of loop) iftable[numifs] = lastLineOffset; @@ -5344,14 +6139,14 @@ case 12: /* Line 1455 of yacc.c */ -#line 338 "basicParse.y" +#line 343 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 13: /* Line 1455 of yacc.c */ -#line 339 "basicParse.y" +#line 344 "basicParse.y" { // push to iftable the byte location of the end of the last stmt (top of loop) iftable[numifs] = lastLineOffset; @@ -5364,28 +6159,28 @@ case 14: /* Line 1455 of yacc.c */ -#line 346 "basicParse.y" +#line 351 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 15: /* Line 1455 of yacc.c */ -#line 347 "basicParse.y" +#line 352 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 16: /* Line 1455 of yacc.c */ -#line 348 "basicParse.y" +#line 353 "basicParse.y" { lastLineOffset = byteOffset; addIntOp(OP_CURRLINE, linenumber); ;} break; case 17: /* Line 1455 of yacc.c */ -#line 352 "basicParse.y" +#line 357 "basicParse.y" { // if there is an if branch or jump on the iftable stack get where it is // in the bytecode array and then put the current bytecode address there @@ -5403,7 +6198,7 @@ case 18: /* Line 1455 of yacc.c */ -#line 367 "basicParse.y" +#line 372 "basicParse.y" { // there is nothing to do with a multi line if (ifexp handles it) ;} @@ -5412,7 +6207,7 @@ case 19: /* Line 1455 of yacc.c */ -#line 373 "basicParse.y" +#line 378 "basicParse.y" { unsigned int elsegototemp = 0; // on else create a jump point to the endif @@ -5436,7 +6231,7 @@ case 22: /* Line 1455 of yacc.c */ -#line 397 "basicParse.y" +#line 402 "basicParse.y" { // if there is an if branch or jump on the iftable stack get where it is // in the bytecode array and then put the current bytecode address there @@ -5454,7 +6249,7 @@ case 23: /* Line 1455 of yacc.c */ -#line 412 "basicParse.y" +#line 417 "basicParse.y" { // create temp //if true, don't branch. If false, go to next line do the loop. @@ -5470,7 +6265,7 @@ case 26: /* Line 1455 of yacc.c */ -#line 428 "basicParse.y" +#line 433 "basicParse.y" { // there should be two bytecode locations. the TOP is the // location to jump to at the top of the loopthe , TOP-1 is the location @@ -5491,7 +6286,7 @@ case 27: /* Line 1455 of yacc.c */ -#line 446 "basicParse.y" +#line 451 "basicParse.y" { // need nothing done at top of a do ;} @@ -5500,7 +6295,7 @@ case 28: /* Line 1455 of yacc.c */ -#line 453 "basicParse.y" +#line 458 "basicParse.y" { // create temp //if If false, go to to the corresponding do. @@ -5512,122 +6307,122 @@ ;} break; - case 95: + case 99: /* Line 1455 of yacc.c */ -#line 532 "basicParse.y" +#line 541 "basicParse.y" { addIntOp(OP_PUSHINT, 1); addIntOp(OP_DIM, (yyvsp[(2) - (3)].number)); ;} break; - case 96: + case 100: /* Line 1455 of yacc.c */ -#line 533 "basicParse.y" +#line 542 "basicParse.y" { addIntOp(OP_PUSHINT, 1); addIntOp(OP_DIMSTR, (yyvsp[(2) - (3)].number)); ;} break; - case 97: + case 101: /* Line 1455 of yacc.c */ -#line 534 "basicParse.y" +#line 543 "basicParse.y" { addIntOp(OP_DIM, (yyvsp[(2) - (7)].number)); ;} break; - case 98: + case 102: /* Line 1455 of yacc.c */ -#line 535 "basicParse.y" +#line 544 "basicParse.y" { addIntOp(OP_DIMSTR, (yyvsp[(2) - (7)].number)); ;} break; - case 99: + case 103: /* Line 1455 of yacc.c */ -#line 538 "basicParse.y" +#line 547 "basicParse.y" { addIntOp(OP_PUSHINT, 1); addIntOp(OP_REDIM, (yyvsp[(2) - (3)].number)); ;} break; - case 100: + case 104: /* Line 1455 of yacc.c */ -#line 539 "basicParse.y" +#line 548 "basicParse.y" { addIntOp(OP_PUSHINT, 1); addIntOp(OP_REDIMSTR, (yyvsp[(2) - (3)].number)); ;} break; - case 101: + case 105: /* Line 1455 of yacc.c */ -#line 540 "basicParse.y" +#line 549 "basicParse.y" { addIntOp(OP_REDIM, (yyvsp[(2) - (7)].number)); ;} break; - case 102: + case 106: /* Line 1455 of yacc.c */ -#line 541 "basicParse.y" +#line 550 "basicParse.y" { addIntOp(OP_REDIMSTR, (yyvsp[(2) - (7)].number)); ;} break; - case 103: + case 107: /* Line 1455 of yacc.c */ -#line 544 "basicParse.y" +#line 553 "basicParse.y" { addOp(OP_PAUSE); ;} break; - case 104: + case 108: /* Line 1455 of yacc.c */ -#line 547 "basicParse.y" +#line 556 "basicParse.y" { addOp(OP_CLS); ;} break; - case 105: + case 109: /* Line 1455 of yacc.c */ -#line 548 "basicParse.y" +#line 557 "basicParse.y" { addOp(OP_CLG); ;} break; - case 106: + case 110: /* Line 1455 of yacc.c */ -#line 551 "basicParse.y" +#line 560 "basicParse.y" { addOp(OP_FASTGRAPHICS); ;} break; - case 107: + case 111: /* Line 1455 of yacc.c */ -#line 554 "basicParse.y" +#line 563 "basicParse.y" { addOp(OP_GRAPHSIZE); ;} break; - case 108: + case 112: /* Line 1455 of yacc.c */ -#line 555 "basicParse.y" +#line 564 "basicParse.y" { addOp(OP_GRAPHSIZE); ;} break; - case 109: + case 113: /* Line 1455 of yacc.c */ -#line 558 "basicParse.y" +#line 567 "basicParse.y" { addOp(OP_REFRESH); ;} break; - case 110: + case 114: /* Line 1455 of yacc.c */ -#line 561 "basicParse.y" +#line 570 "basicParse.y" { addOp(OP_END); ;} break; - case 111: + case 115: /* Line 1455 of yacc.c */ -#line 565 "basicParse.y" +#line 574 "basicParse.y" { //if true, don't branch. If false, go to next line. addOp(OP_BRANCH); @@ -5641,1240 +6436,1324 @@ ;} break; - case 112: + case 116: /* Line 1455 of yacc.c */ -#line 578 "basicParse.y" +#line 587 "basicParse.y" { addIntOp(OP_STRARRAYASSIGN, (yyvsp[(1) - (6)].number)); ;} break; - case 113: + case 117: /* Line 1455 of yacc.c */ -#line 579 "basicParse.y" +#line 588 "basicParse.y" { addIntOp(OP_STRARRAYASSIGN2D, (yyvsp[(1) - (8)].number)); ;} break; - case 114: + case 118: /* Line 1455 of yacc.c */ -#line 580 "basicParse.y" +#line 589 "basicParse.y" { addInt2Op(OP_STRARRAYLISTASSIGN, (yyvsp[(1) - (3)].number), listlen); listlen = 0; ;} break; - case 115: + case 119: /* Line 1455 of yacc.c */ -#line 583 "basicParse.y" +#line 592 "basicParse.y" { addIntOp(OP_ARRAYASSIGN, (yyvsp[(1) - (6)].number)); ;} break; - case 116: + case 120: /* Line 1455 of yacc.c */ -#line 584 "basicParse.y" +#line 593 "basicParse.y" { addIntOp(OP_ARRAYASSIGN2D, (yyvsp[(1) - (8)].number)); ;} break; - case 117: + case 121: /* Line 1455 of yacc.c */ -#line 585 "basicParse.y" +#line 594 "basicParse.y" { addInt2Op(OP_ARRAYLISTASSIGN, (yyvsp[(1) - (3)].number), listlen); listlen = 0; ;} break; - case 118: + case 122: /* Line 1455 of yacc.c */ -#line 589 "basicParse.y" +#line 598 "basicParse.y" { addIntOp(OP_NUMASSIGN, (yyvsp[(1) - (3)].number)); ;} break; - case 119: + case 123: /* Line 1455 of yacc.c */ -#line 592 "basicParse.y" +#line 601 "basicParse.y" { addIntOp(OP_STRINGASSIGN, (yyvsp[(1) - (3)].number)); ;} break; - case 120: + case 124: /* Line 1455 of yacc.c */ -#line 596 "basicParse.y" +#line 605 "basicParse.y" { addIntOp(OP_PUSHINT, 1); //step addIntOp(OP_FOR, (yyvsp[(2) - (6)].number)); ;} break; - case 121: + case 125: /* Line 1455 of yacc.c */ -#line 601 "basicParse.y" +#line 610 "basicParse.y" { addIntOp(OP_FOR, (yyvsp[(2) - (8)].number)); ;} break; - case 122: + case 126: /* Line 1455 of yacc.c */ -#line 607 "basicParse.y" +#line 616 "basicParse.y" { addIntOp(OP_NEXT, (yyvsp[(2) - (2)].number)); ;} break; - case 123: + case 127: /* Line 1455 of yacc.c */ -#line 610 "basicParse.y" +#line 619 "basicParse.y" { addIntOp(OP_GOTO, (yyvsp[(2) - (2)].number)); ;} break; - case 124: + case 128: /* Line 1455 of yacc.c */ -#line 613 "basicParse.y" +#line 622 "basicParse.y" { addIntOp(OP_GOSUB, (yyvsp[(2) - (2)].number)); ;} break; - case 125: + case 129: /* Line 1455 of yacc.c */ -#line 617 "basicParse.y" +#line 626 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_OFFERROR); ;} break; - case 126: + case 130: /* Line 1455 of yacc.c */ -#line 621 "basicParse.y" +#line 630 "basicParse.y" { addIntOp(OP_ONERROR, (yyvsp[(2) - (2)].number)); ;} break; - case 127: + case 131: /* Line 1455 of yacc.c */ -#line 624 "basicParse.y" +#line 633 "basicParse.y" { addOp(OP_RETURN); ;} break; - case 128: + case 132: /* Line 1455 of yacc.c */ -#line 627 "basicParse.y" +#line 636 "basicParse.y" { addOp(OP_SETCOLORRGB); ;} break; - case 129: + case 133: /* Line 1455 of yacc.c */ -#line 628 "basicParse.y" +#line 637 "basicParse.y" { addOp(OP_SETCOLORRGB); ;} break; - case 130: + case 134: /* Line 1455 of yacc.c */ -#line 629 "basicParse.y" +#line 638 "basicParse.y" { addOp(OP_SETCOLORINT); ;} break; - case 131: + case 135: /* Line 1455 of yacc.c */ -#line 632 "basicParse.y" +#line 641 "basicParse.y" { addIntOp(OP_SOUND_ARRAY, (yyvsp[(3) - (4)].number)); ;} break; - case 132: + case 136: /* Line 1455 of yacc.c */ -#line 633 "basicParse.y" +#line 642 "basicParse.y" { addIntOp(OP_SOUND_ARRAY, (yyvsp[(2) - (2)].number)); ;} break; - case 133: + case 137: /* Line 1455 of yacc.c */ -#line 634 "basicParse.y" +#line 643 "basicParse.y" { addIntOp(OP_SOUND_LIST, listlen); listlen=0; ;} break; - case 134: + case 138: /* Line 1455 of yacc.c */ -#line 635 "basicParse.y" +#line 644 "basicParse.y" { addOp(OP_SOUND); ;} break; - case 135: + case 139: /* Line 1455 of yacc.c */ -#line 636 "basicParse.y" +#line 645 "basicParse.y" { addOp(OP_SOUND); ;} break; - case 136: + case 140: /* Line 1455 of yacc.c */ -#line 639 "basicParse.y" +#line 648 "basicParse.y" { addOp(OP_PLOT); ;} break; - case 137: + case 141: /* Line 1455 of yacc.c */ -#line 640 "basicParse.y" +#line 649 "basicParse.y" { addOp(OP_PLOT); ;} break; - case 138: + case 142: /* Line 1455 of yacc.c */ -#line 643 "basicParse.y" +#line 652 "basicParse.y" { addOp(OP_LINE); ;} break; - case 139: + case 143: /* Line 1455 of yacc.c */ -#line 644 "basicParse.y" +#line 653 "basicParse.y" { addOp(OP_LINE); ;} break; - case 140: + case 144: /* Line 1455 of yacc.c */ -#line 648 "basicParse.y" +#line 657 "basicParse.y" { addOp(OP_CIRCLE); ;} break; - case 141: + case 145: /* Line 1455 of yacc.c */ -#line 649 "basicParse.y" +#line 658 "basicParse.y" { addOp(OP_CIRCLE); ;} break; - case 142: + case 146: /* Line 1455 of yacc.c */ -#line 652 "basicParse.y" +#line 661 "basicParse.y" { addOp(OP_RECT); ;} break; - case 143: + case 147: /* Line 1455 of yacc.c */ -#line 653 "basicParse.y" +#line 662 "basicParse.y" { addOp(OP_RECT); ;} break; - case 144: + case 148: /* Line 1455 of yacc.c */ -#line 656 "basicParse.y" +#line 665 "basicParse.y" { addOp(OP_TEXT); ;} break; - case 145: + case 149: /* Line 1455 of yacc.c */ -#line 657 "basicParse.y" +#line 666 "basicParse.y" { addOp(OP_TEXT); ;} break; - case 146: + case 150: /* Line 1455 of yacc.c */ -#line 658 "basicParse.y" +#line 667 "basicParse.y" { addOp(OP_TEXT); ;} break; - case 147: + case 151: /* Line 1455 of yacc.c */ -#line 659 "basicParse.y" +#line 668 "basicParse.y" { addOp(OP_TEXT); ;} break; - case 148: + case 152: /* Line 1455 of yacc.c */ -#line 662 "basicParse.y" +#line 671 "basicParse.y" { addOp(OP_FONT); ;} break; - case 149: + case 153: /* Line 1455 of yacc.c */ -#line 663 "basicParse.y" +#line 672 "basicParse.y" { addOp(OP_FONT); ;} break; - case 150: + case 154: /* Line 1455 of yacc.c */ -#line 666 "basicParse.y" +#line 675 "basicParse.y" { addOp(OP_SAY); ;} break; - case 151: + case 155: /* Line 1455 of yacc.c */ -#line 667 "basicParse.y" +#line 676 "basicParse.y" { addOp(OP_SAY); ;} break; - case 152: + case 156: /* Line 1455 of yacc.c */ -#line 670 "basicParse.y" +#line 679 "basicParse.y" { addOp(OP_SYSTEM); ;} break; - case 153: + case 157: /* Line 1455 of yacc.c */ -#line 673 "basicParse.y" +#line 682 "basicParse.y" { addOp(OP_VOLUME); ;} break; - case 154: + case 158: /* Line 1455 of yacc.c */ -#line 676 "basicParse.y" +#line 685 "basicParse.y" { addIntOp(OP_POLY, (yyvsp[(2) - (2)].number)); ;} break; - case 155: + case 159: /* Line 1455 of yacc.c */ -#line 677 "basicParse.y" +#line 686 "basicParse.y" { addIntOp(OP_POLY, (yyvsp[(3) - (4)].number)); ;} break; - case 156: + case 160: /* Line 1455 of yacc.c */ -#line 678 "basicParse.y" +#line 687 "basicParse.y" { addIntOp(OP_POLY_LIST, listlen); listlen=0; ;} break; - case 157: + case 161: /* Line 1455 of yacc.c */ -#line 681 "basicParse.y" +#line 690 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 0); addIntOp(OP_STAMP, (yyvsp[(8) - (8)].number)); ;} break; - case 158: + case 162: /* Line 1455 of yacc.c */ -#line 682 "basicParse.y" +#line 691 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 0); addIntOp(OP_STAMP, (yyvsp[(9) - (10)].number)); ;} break; - case 159: + case 163: /* Line 1455 of yacc.c */ -#line 683 "basicParse.y" +#line 692 "basicParse.y" { addIntOp(OP_STAMP_S_LIST, listlen); listlen=0; ;} break; - case 160: + case 164: /* Line 1455 of yacc.c */ -#line 684 "basicParse.y" +#line 693 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 1); addFloatOp(OP_PUSHFLOAT, 0); addIntOp(OP_STAMP, (yyvsp[(6) - (6)].number)); ;} break; - case 161: + case 165: /* Line 1455 of yacc.c */ -#line 685 "basicParse.y" +#line 694 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 1); addFloatOp(OP_PUSHFLOAT, 0); addIntOp(OP_STAMP, (yyvsp[(7) - (8)].number)); ;} break; - case 162: + case 166: /* Line 1455 of yacc.c */ -#line 686 "basicParse.y" +#line 695 "basicParse.y" { addIntOp(OP_STAMP_LIST, listlen); listlen=0; ;} break; - case 163: + case 167: /* Line 1455 of yacc.c */ -#line 687 "basicParse.y" +#line 696 "basicParse.y" { addIntOp(OP_STAMP, (yyvsp[(10) - (10)].number)); ;} break; - case 164: + case 168: /* Line 1455 of yacc.c */ -#line 688 "basicParse.y" +#line 697 "basicParse.y" { addIntOp(OP_STAMP, (yyvsp[(11) - (12)].number)); ;} break; - case 165: + case 169: /* Line 1455 of yacc.c */ -#line 689 "basicParse.y" +#line 698 "basicParse.y" { addIntOp(OP_STAMP_SR_LIST, listlen); listlen=0; ;} break; - case 166: + case 170: /* Line 1455 of yacc.c */ -#line 692 "basicParse.y" +#line 701 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addOp(OP_OPEN); ;} break; - case 167: + case 171: /* Line 1455 of yacc.c */ -#line 693 "basicParse.y" +#line 702 "basicParse.y" { addOp(OP_OPEN); ;} break; - case 168: + case 172: /* Line 1455 of yacc.c */ -#line 694 "basicParse.y" +#line 703 "basicParse.y" { addOp(OP_OPEN); ;} break; - case 169: + case 173: /* Line 1455 of yacc.c */ -#line 697 "basicParse.y" +#line 706 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addOp(OP_WRITE); ;} break; - case 170: + case 174: /* Line 1455 of yacc.c */ -#line 698 "basicParse.y" +#line 707 "basicParse.y" { addOp(OP_WRITE); ;} break; - case 171: + case 175: /* Line 1455 of yacc.c */ -#line 699 "basicParse.y" +#line 708 "basicParse.y" { addOp(OP_WRITE); ;} break; - case 172: + case 176: /* Line 1455 of yacc.c */ -#line 702 "basicParse.y" +#line 711 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addOp(OP_WRITELINE); ;} break; - case 173: + case 177: /* Line 1455 of yacc.c */ -#line 703 "basicParse.y" +#line 712 "basicParse.y" { addOp(OP_WRITELINE); ;} break; - case 174: + case 178: /* Line 1455 of yacc.c */ -#line 704 "basicParse.y" +#line 713 "basicParse.y" { addOp(OP_WRITELINE); ;} break; - case 175: + case 179: /* Line 1455 of yacc.c */ -#line 707 "basicParse.y" +#line 716 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_CLOSE); ;} break; - case 176: + case 180: /* Line 1455 of yacc.c */ -#line 708 "basicParse.y" +#line 717 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_CLOSE); ;} break; - case 177: + case 181: /* Line 1455 of yacc.c */ -#line 709 "basicParse.y" +#line 718 "basicParse.y" { addOp(OP_CLOSE); ;} break; - case 178: + case 182: /* Line 1455 of yacc.c */ -#line 712 "basicParse.y" +#line 721 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_RESET); ;} break; - case 179: + case 183: /* Line 1455 of yacc.c */ -#line 713 "basicParse.y" +#line 722 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_RESET); ;} break; - case 180: + case 184: /* Line 1455 of yacc.c */ -#line 714 "basicParse.y" +#line 723 "basicParse.y" { addOp(OP_RESET); ;} break; - case 181: + case 185: /* Line 1455 of yacc.c */ -#line 717 "basicParse.y" +#line 726 "basicParse.y" {addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP);addOp(OP_SEEK); ;} break; - case 182: + case 186: /* Line 1455 of yacc.c */ -#line 718 "basicParse.y" +#line 727 "basicParse.y" { addOp(OP_SEEK); ;} break; - case 183: + case 187: /* Line 1455 of yacc.c */ -#line 719 "basicParse.y" +#line 728 "basicParse.y" { addOp(OP_SEEK); ;} break; - case 184: + case 188: /* Line 1455 of yacc.c */ -#line 722 "basicParse.y" +#line 731 "basicParse.y" { addIntOp(OP_STRINGASSIGN, (yyvsp[(3) - (3)].number)); ;} break; - case 185: + case 189: /* Line 1455 of yacc.c */ -#line 723 "basicParse.y" +#line 732 "basicParse.y" { addOp(OP_STACKSWAP); addIntOp(OP_STRARRAYASSIGN, (yyvsp[(3) - (6)].number)); ;} break; - case 186: + case 190: /* Line 1455 of yacc.c */ -#line 724 "basicParse.y" +#line 733 "basicParse.y" { addIntOp(OP_NUMASSIGN, (yyvsp[(3) - (3)].number)); ;} break; - case 187: + case 191: /* Line 1455 of yacc.c */ -#line 725 "basicParse.y" +#line 734 "basicParse.y" { addOp(OP_STACKSWAP); addIntOp(OP_ARRAYASSIGN, (yyvsp[(3) - (6)].number)); ;} break; - case 188: + case 192: /* Line 1455 of yacc.c */ -#line 726 "basicParse.y" +#line 735 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_STRINGASSIGN, (yyvsp[(2) - (2)].number)); ;} break; - case 189: + case 193: /* Line 1455 of yacc.c */ -#line 727 "basicParse.y" +#line 736 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_STRARRAYASSIGN, (yyvsp[(2) - (5)].number)); ;} break; - case 190: + case 194: /* Line 1455 of yacc.c */ -#line 728 "basicParse.y" +#line 737 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_STRARRAYASSIGN2D, (yyvsp[(2) - (7)].number)); ;} break; - case 191: + case 195: /* Line 1455 of yacc.c */ -#line 729 "basicParse.y" +#line 738 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_NUMASSIGN, (yyvsp[(2) - (2)].number)); ;} break; - case 192: + case 196: /* Line 1455 of yacc.c */ -#line 730 "basicParse.y" +#line 739 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_ARRAYASSIGN, (yyvsp[(2) - (5)].number)); ;} break; - case 193: + case 197: /* Line 1455 of yacc.c */ -#line 731 "basicParse.y" +#line 740 "basicParse.y" { addOp(OP_INPUT); addIntOp(OP_ARRAYASSIGN2D, (yyvsp[(2) - (7)].number)); ;} break; - case 194: + case 198: /* Line 1455 of yacc.c */ -#line 734 "basicParse.y" +#line 743 "basicParse.y" { addOp(OP_PRINT); addOp(OP_INPUT); ;} break; - case 195: + case 199: /* Line 1455 of yacc.c */ -#line 737 "basicParse.y" +#line 746 "basicParse.y" { addStringOp(OP_PUSHSTRING, ""); addOp(OP_PRINTN); ;} break; - case 196: + case 200: /* Line 1455 of yacc.c */ -#line 738 "basicParse.y" +#line 747 "basicParse.y" { addOp(OP_PRINTN); ;} break; - case 197: + case 201: /* Line 1455 of yacc.c */ -#line 739 "basicParse.y" +#line 748 "basicParse.y" { addOp(OP_PRINTN); ;} break; - case 198: + case 202: /* Line 1455 of yacc.c */ -#line 740 "basicParse.y" +#line 749 "basicParse.y" { addOp(OP_PRINT); ;} break; - case 199: + case 203: /* Line 1455 of yacc.c */ -#line 741 "basicParse.y" +#line 750 "basicParse.y" { addOp(OP_PRINT); ;} break; - case 200: + case 204: /* Line 1455 of yacc.c */ -#line 744 "basicParse.y" +#line 753 "basicParse.y" {addOp(OP_WAVPLAY); ;} break; - case 201: + case 205: /* Line 1455 of yacc.c */ -#line 747 "basicParse.y" +#line 756 "basicParse.y" { addOp(OP_WAVSTOP); ;} break; - case 202: + case 206: /* Line 1455 of yacc.c */ -#line 748 "basicParse.y" +#line 757 "basicParse.y" { addOp(OP_WAVSTOP); ;} break; - case 203: + case 207: /* Line 1455 of yacc.c */ -#line 751 "basicParse.y" +#line 760 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_WAVWAIT); ;} break; - case 204: + case 208: /* Line 1455 of yacc.c */ -#line 752 "basicParse.y" +#line 761 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_WAVWAIT); ;} break; - case 205: + case 209: /* Line 1455 of yacc.c */ -#line 755 "basicParse.y" +#line 764 "basicParse.y" {addOp(OP_PUTSLICE); ;} break; - case 206: + case 210: /* Line 1455 of yacc.c */ -#line 756 "basicParse.y" +#line 765 "basicParse.y" { addOp(OP_PUTSLICE); ;} break; - case 207: + case 211: /* Line 1455 of yacc.c */ -#line 757 "basicParse.y" +#line 766 "basicParse.y" {addOp(OP_PUTSLICEMASK); ;} break; - case 208: + case 212: /* Line 1455 of yacc.c */ -#line 758 "basicParse.y" +#line 767 "basicParse.y" { addOp(OP_PUTSLICEMASK); ;} break; - case 209: + case 213: /* Line 1455 of yacc.c */ -#line 760 "basicParse.y" +#line 769 "basicParse.y" {addOp(OP_IMGLOAD); ;} break; - case 210: + case 214: /* Line 1455 of yacc.c */ -#line 761 "basicParse.y" +#line 770 "basicParse.y" { addOp(OP_IMGLOAD); ;} break; - case 211: + case 215: /* Line 1455 of yacc.c */ -#line 762 "basicParse.y" +#line 771 "basicParse.y" { addOp(OP_IMGLOAD_S); ;} break; - case 212: + case 216: /* Line 1455 of yacc.c */ -#line 763 "basicParse.y" +#line 772 "basicParse.y" { addOp(OP_IMGLOAD_S); ;} break; - case 213: + case 217: /* Line 1455 of yacc.c */ -#line 764 "basicParse.y" +#line 773 "basicParse.y" { addOp(OP_IMGLOAD_SR); ;} break; - case 214: + case 218: /* Line 1455 of yacc.c */ -#line 765 "basicParse.y" +#line 774 "basicParse.y" { addOp(OP_IMGLOAD_SR); ;} break; - case 215: + case 219: /* Line 1455 of yacc.c */ -#line 768 "basicParse.y" +#line 777 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEDIM); ;} break; - case 216: + case 220: /* Line 1455 of yacc.c */ -#line 771 "basicParse.y" +#line 780 "basicParse.y" {addExtendedOp(OP_EXTENDED_0,OP_SPRITELOAD); ;} break; - case 217: + case 221: /* Line 1455 of yacc.c */ -#line 772 "basicParse.y" +#line 781 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITELOAD); ;} break; - case 218: + case 222: /* Line 1455 of yacc.c */ -#line 775 "basicParse.y" +#line 784 "basicParse.y" {addExtendedOp(OP_EXTENDED_0,OP_SPRITESLICE); ;} break; - case 219: + case 223: /* Line 1455 of yacc.c */ -#line 776 "basicParse.y" +#line 785 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITESLICE); ;} break; - case 220: + case 224: /* Line 1455 of yacc.c */ -#line 779 "basicParse.y" +#line 788 "basicParse.y" {addExtendedOp(OP_EXTENDED_0,OP_SPRITEPLACE); ;} break; - case 221: + case 225: /* Line 1455 of yacc.c */ -#line 780 "basicParse.y" +#line 789 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEPLACE); ;} break; - case 222: + case 226: /* Line 1455 of yacc.c */ -#line 783 "basicParse.y" +#line 792 "basicParse.y" {addExtendedOp(OP_EXTENDED_0,OP_SPRITEMOVE); ;} break; - case 223: + case 227: /* Line 1455 of yacc.c */ -#line 784 "basicParse.y" +#line 793 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEMOVE); ;} break; - case 224: + case 228: /* Line 1455 of yacc.c */ -#line 787 "basicParse.y" +#line 796 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEHIDE); ;} break; - case 225: + case 229: /* Line 1455 of yacc.c */ -#line 790 "basicParse.y" +#line 799 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITESHOW); ;} break; - case 226: + case 230: /* Line 1455 of yacc.c */ -#line 793 "basicParse.y" +#line 802 "basicParse.y" {addOp(OP_CLICKCLEAR); ;} break; - case 227: + case 231: /* Line 1455 of yacc.c */ -#line 794 "basicParse.y" +#line 803 "basicParse.y" { addOp(OP_CLICKCLEAR); ;} break; - case 228: + case 232: /* Line 1455 of yacc.c */ -#line 797 "basicParse.y" +#line 806 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_CHANGEDIR); ;} break; - case 229: + case 233: /* Line 1455 of yacc.c */ -#line 800 "basicParse.y" +#line 809 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DECIMAL); ;} break; - case 230: + case 234: /* Line 1455 of yacc.c */ -#line 803 "basicParse.y" +#line 812 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBOPEN); ;} break; - case 231: + case 235: /* Line 1455 of yacc.c */ -#line 806 "basicParse.y" +#line 815 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBCLOSE); ;} break; - case 232: + case 236: /* Line 1455 of yacc.c */ -#line 807 "basicParse.y" +#line 816 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBCLOSE); ;} break; - case 233: + case 237: /* Line 1455 of yacc.c */ -#line 810 "basicParse.y" +#line 819 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBEXECUTE); ;} break; - case 234: + case 238: /* Line 1455 of yacc.c */ -#line 813 "basicParse.y" +#line 822 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBOPENSET); ;} break; - case 235: + case 239: /* Line 1455 of yacc.c */ -#line 816 "basicParse.y" +#line 825 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBCLOSESET); ;} break; - case 236: + case 240: /* Line 1455 of yacc.c */ -#line 817 "basicParse.y" +#line 826 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBCLOSESET); ;} break; - case 237: + case 241: /* Line 1455 of yacc.c */ -#line 820 "basicParse.y" +#line 829 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addExtendedOp(OP_EXTENDED_0,OP_NETLISTEN); ;} break; - case 238: + case 242: + +/* Line 1455 of yacc.c */ +#line 830 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETLISTEN); ;} + break; + + case 243: /* Line 1455 of yacc.c */ -#line 821 "basicParse.y" +#line 831 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_NETLISTEN); ;} break; - case 239: + case 244: + +/* Line 1455 of yacc.c */ +#line 834 "basicParse.y" + { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKTOPTO2); addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} + break; + + case 245: + +/* Line 1455 of yacc.c */ +#line 835 "basicParse.y" + { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKTOPTO2); addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} + break; + + case 246: + +/* Line 1455 of yacc.c */ +#line 836 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} + break; + + case 247: + +/* Line 1455 of yacc.c */ +#line 837 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} + break; + + case 248: + +/* Line 1455 of yacc.c */ +#line 840 "basicParse.y" + { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} + break; + + case 249: + +/* Line 1455 of yacc.c */ +#line 841 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} + break; + + case 250: + +/* Line 1455 of yacc.c */ +#line 842 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} + break; + + case 251: + +/* Line 1455 of yacc.c */ +#line 845 "basicParse.y" + { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} + break; + + case 252: /* Line 1455 of yacc.c */ -#line 822 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETLISTEN); ;} +#line 846 "basicParse.y" + { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} break; - case 240: + case 253: /* Line 1455 of yacc.c */ -#line 825 "basicParse.y" - { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKTOPTO2); addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} +#line 847 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} break; - case 241: + case 254: /* Line 1455 of yacc.c */ -#line 826 "basicParse.y" - { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKTOPTO2); addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} +#line 850 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_KILL); ;} break; - case 242: + case 255: /* Line 1455 of yacc.c */ -#line 827 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} +#line 851 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_KILL); ;} break; - case 243: + case 256: /* Line 1455 of yacc.c */ -#line 828 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETCONNECT); ;} +#line 854 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_SETSETTING); ;} break; - case 244: + case 257: /* Line 1455 of yacc.c */ -#line 831 "basicParse.y" - { addIntOp(OP_PUSHINT, 0); addOp(OP_STACKSWAP); addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} +#line 855 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_SETSETTING); ;} break; - case 245: + case 258: /* Line 1455 of yacc.c */ -#line 832 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} +#line 858 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_PORTOUT); ;} break; - case 246: + case 259: /* Line 1455 of yacc.c */ -#line 833 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETWRITE); ;} +#line 859 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_PORTOUT); ;} break; - case 247: + case 260: /* Line 1455 of yacc.c */ -#line 836 "basicParse.y" - { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} +#line 862 "basicParse.y" + {addStringOp(OP_PUSHSTRING, "PNG"); addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); ;} break; - case 248: + case 261: /* Line 1455 of yacc.c */ -#line 837 "basicParse.y" - { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} +#line 863 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); ;} break; - case 249: + case 262: /* Line 1455 of yacc.c */ -#line 838 "basicParse.y" - { addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); ;} +#line 864 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); ;} break; - case 252: + case 265: /* Line 1455 of yacc.c */ -#line 847 "basicParse.y" +#line 874 "basicParse.y" { listlen = 1; ;} break; - case 253: + case 266: /* Line 1455 of yacc.c */ -#line 848 "basicParse.y" +#line 875 "basicParse.y" { listlen++; ;} break; - case 254: + case 267: /* Line 1455 of yacc.c */ -#line 851 "basicParse.y" +#line 878 "basicParse.y" { (yyval.floatnum) = (yyvsp[(2) - (3)].floatnum); ;} break; - case 255: + case 268: /* Line 1455 of yacc.c */ -#line 852 "basicParse.y" +#line 879 "basicParse.y" { addOp(OP_ADD); ;} break; - case 256: + case 269: /* Line 1455 of yacc.c */ -#line 853 "basicParse.y" +#line 880 "basicParse.y" { addOp(OP_SUB); ;} break; - case 257: + case 270: /* Line 1455 of yacc.c */ -#line 854 "basicParse.y" +#line 881 "basicParse.y" { addOp(OP_MUL); ;} break; - case 258: + case 271: /* Line 1455 of yacc.c */ -#line 855 "basicParse.y" +#line 882 "basicParse.y" { addOp(OP_MOD); ;} break; - case 259: + case 272: /* Line 1455 of yacc.c */ -#line 856 "basicParse.y" +#line 883 "basicParse.y" { addOp(OP_INTDIV); ;} break; - case 260: + case 273: /* Line 1455 of yacc.c */ -#line 857 "basicParse.y" +#line 884 "basicParse.y" { addOp(OP_DIV); ;} break; - case 261: + case 274: /* Line 1455 of yacc.c */ -#line 858 "basicParse.y" +#line 885 "basicParse.y" { addOp(OP_EXP); ;} break; - case 262: + case 275: /* Line 1455 of yacc.c */ -#line 859 "basicParse.y" +#line 886 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_BINARYOR); ;} + break; + + case 276: + +/* Line 1455 of yacc.c */ +#line 887 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_BINARYAND); ;} + break; + + case 277: + +/* Line 1455 of yacc.c */ +#line 888 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_BINARYNOT); ;} + break; + + case 278: + +/* Line 1455 of yacc.c */ +#line 889 "basicParse.y" { addOp(OP_NEGATE); ;} break; - case 263: + case 279: /* Line 1455 of yacc.c */ -#line 860 "basicParse.y" +#line 890 "basicParse.y" {addOp(OP_AND); ;} break; - case 264: + case 280: /* Line 1455 of yacc.c */ -#line 861 "basicParse.y" +#line 891 "basicParse.y" { addOp(OP_OR); ;} break; - case 265: + case 281: /* Line 1455 of yacc.c */ -#line 862 "basicParse.y" +#line 892 "basicParse.y" { addOp(OP_XOR); ;} break; - case 266: + case 282: /* Line 1455 of yacc.c */ -#line 863 "basicParse.y" +#line 893 "basicParse.y" { addOp(OP_NOT); ;} break; - case 267: + case 283: /* Line 1455 of yacc.c */ -#line 864 "basicParse.y" +#line 894 "basicParse.y" { addOp(OP_EQUAL); ;} break; - case 268: + case 284: /* Line 1455 of yacc.c */ -#line 865 "basicParse.y" +#line 895 "basicParse.y" { addOp(OP_NEQUAL); ;} break; - case 269: + case 285: /* Line 1455 of yacc.c */ -#line 866 "basicParse.y" +#line 896 "basicParse.y" { addOp(OP_LT); ;} break; - case 270: + case 286: /* Line 1455 of yacc.c */ -#line 867 "basicParse.y" +#line 897 "basicParse.y" { addOp(OP_GT); ;} break; - case 271: + case 287: /* Line 1455 of yacc.c */ -#line 868 "basicParse.y" +#line 898 "basicParse.y" { addOp(OP_GTE); ;} break; - case 272: + case 288: /* Line 1455 of yacc.c */ -#line 869 "basicParse.y" +#line 899 "basicParse.y" { addOp(OP_LTE); ;} break; - case 273: + case 289: /* Line 1455 of yacc.c */ -#line 870 "basicParse.y" +#line 900 "basicParse.y" { addOp(OP_EQUAL); ;} break; - case 274: + case 290: /* Line 1455 of yacc.c */ -#line 871 "basicParse.y" +#line 901 "basicParse.y" { addOp(OP_NEQUAL); ;} break; - case 275: + case 291: /* Line 1455 of yacc.c */ -#line 872 "basicParse.y" +#line 902 "basicParse.y" { addOp(OP_LT); ;} break; - case 276: + case 292: /* Line 1455 of yacc.c */ -#line 873 "basicParse.y" +#line 903 "basicParse.y" { addOp(OP_GT); ;} break; - case 277: + case 293: /* Line 1455 of yacc.c */ -#line 874 "basicParse.y" +#line 904 "basicParse.y" { addOp(OP_GTE); ;} break; - case 278: + case 294: /* Line 1455 of yacc.c */ -#line 875 "basicParse.y" +#line 905 "basicParse.y" { addOp(OP_LTE); ;} break; - case 279: + case 295: /* Line 1455 of yacc.c */ -#line 876 "basicParse.y" +#line 906 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, (yyvsp[(1) - (1)].floatnum)); ;} break; - case 280: + case 296: /* Line 1455 of yacc.c */ -#line 877 "basicParse.y" +#line 907 "basicParse.y" { addIntOp(OP_PUSHINT, (yyvsp[(1) - (1)].number)); ;} break; - case 281: + case 297: /* Line 1455 of yacc.c */ -#line 878 "basicParse.y" +#line 908 "basicParse.y" { addIntOp(OP_ALEN, (yyvsp[(1) - (4)].number)); ;} break; - case 282: + case 298: /* Line 1455 of yacc.c */ -#line 879 "basicParse.y" +#line 909 "basicParse.y" { addIntOp(OP_ALEN, (yyvsp[(1) - (4)].number)); ;} break; - case 283: + case 299: /* Line 1455 of yacc.c */ -#line 880 "basicParse.y" +#line 910 "basicParse.y" { addIntOp(OP_ALENX, (yyvsp[(1) - (5)].number)); ;} break; - case 284: + case 300: /* Line 1455 of yacc.c */ -#line 881 "basicParse.y" +#line 911 "basicParse.y" { addIntOp(OP_ALENX, (yyvsp[(1) - (5)].number)); ;} break; - case 285: + case 301: /* Line 1455 of yacc.c */ -#line 882 "basicParse.y" +#line 912 "basicParse.y" { addIntOp(OP_ALENY, (yyvsp[(1) - (5)].number)); ;} break; - case 286: + case 302: /* Line 1455 of yacc.c */ -#line 883 "basicParse.y" +#line 913 "basicParse.y" { addIntOp(OP_ALENY, (yyvsp[(1) - (5)].number)); ;} break; - case 287: + case 303: /* Line 1455 of yacc.c */ -#line 884 "basicParse.y" +#line 914 "basicParse.y" { addIntOp(OP_DEREF, (yyvsp[(1) - (4)].number)); ;} break; - case 288: + case 304: /* Line 1455 of yacc.c */ -#line 885 "basicParse.y" +#line 915 "basicParse.y" { addIntOp(OP_DEREF2D, (yyvsp[(1) - (6)].number)); ;} break; - case 289: + case 305: /* Line 1455 of yacc.c */ -#line 887 "basicParse.y" +#line 917 "basicParse.y" { if ((yyvsp[(1) - (1)].number) < 0) { @@ -6887,934 +7766,941 @@ ;} break; - case 290: + case 306: /* Line 1455 of yacc.c */ -#line 897 "basicParse.y" +#line 927 "basicParse.y" { addOp(OP_INT); ;} break; - case 291: + case 307: /* Line 1455 of yacc.c */ -#line 898 "basicParse.y" +#line 928 "basicParse.y" { addOp(OP_INT); ;} break; - case 292: + case 308: /* Line 1455 of yacc.c */ -#line 899 "basicParse.y" +#line 929 "basicParse.y" { addOp(OP_FLOAT); ;} break; - case 293: + case 309: /* Line 1455 of yacc.c */ -#line 900 "basicParse.y" +#line 930 "basicParse.y" { addOp(OP_FLOAT); ;} break; - case 294: + case 310: /* Line 1455 of yacc.c */ -#line 901 "basicParse.y" +#line 931 "basicParse.y" { addOp(OP_LENGTH); ;} break; - case 295: + case 311: /* Line 1455 of yacc.c */ -#line 902 "basicParse.y" +#line 932 "basicParse.y" { addOp(OP_ASC); ;} break; - case 296: + case 312: /* Line 1455 of yacc.c */ -#line 903 "basicParse.y" +#line 933 "basicParse.y" { addOp(OP_INSTR); ;} break; - case 297: + case 313: /* Line 1455 of yacc.c */ -#line 904 "basicParse.y" +#line 934 "basicParse.y" { addOp(OP_CEIL); ;} break; - case 298: + case 314: /* Line 1455 of yacc.c */ -#line 905 "basicParse.y" +#line 935 "basicParse.y" { addOp(OP_FLOOR); ;} break; - case 299: + case 315: /* Line 1455 of yacc.c */ -#line 906 "basicParse.y" +#line 936 "basicParse.y" { addOp(OP_SIN); ;} break; - case 300: + case 316: /* Line 1455 of yacc.c */ -#line 907 "basicParse.y" +#line 937 "basicParse.y" { addOp(OP_COS); ;} break; - case 301: + case 317: /* Line 1455 of yacc.c */ -#line 908 "basicParse.y" +#line 938 "basicParse.y" { addOp(OP_TAN); ;} break; - case 302: + case 318: /* Line 1455 of yacc.c */ -#line 909 "basicParse.y" +#line 939 "basicParse.y" { addOp(OP_ASIN); ;} break; - case 303: + case 319: /* Line 1455 of yacc.c */ -#line 910 "basicParse.y" +#line 940 "basicParse.y" { addOp(OP_ACOS); ;} break; - case 304: + case 320: /* Line 1455 of yacc.c */ -#line 911 "basicParse.y" +#line 941 "basicParse.y" { addOp(OP_ATAN); ;} break; - case 305: + case 321: /* Line 1455 of yacc.c */ -#line 912 "basicParse.y" +#line 942 "basicParse.y" { addOp(OP_DEGREES); ;} break; - case 306: + case 322: /* Line 1455 of yacc.c */ -#line 913 "basicParse.y" +#line 943 "basicParse.y" { addOp(OP_RADIANS); ;} break; - case 307: + case 323: /* Line 1455 of yacc.c */ -#line 914 "basicParse.y" +#line 944 "basicParse.y" { addOp(OP_LOG); ;} break; - case 308: + case 324: /* Line 1455 of yacc.c */ -#line 915 "basicParse.y" +#line 945 "basicParse.y" { addOp(OP_LOGTEN); ;} break; - case 309: + case 325: /* Line 1455 of yacc.c */ -#line 916 "basicParse.y" +#line 946 "basicParse.y" { addOp(OP_ABS); ;} break; - case 310: + case 326: /* Line 1455 of yacc.c */ -#line 917 "basicParse.y" +#line 947 "basicParse.y" { addOp(OP_RAND); ;} break; - case 311: + case 327: /* Line 1455 of yacc.c */ -#line 918 "basicParse.y" +#line 948 "basicParse.y" { addOp(OP_RAND); ;} break; - case 312: + case 328: /* Line 1455 of yacc.c */ -#line 919 "basicParse.y" +#line 949 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 3.14159265); ;} break; - case 313: + case 329: /* Line 1455 of yacc.c */ -#line 920 "basicParse.y" +#line 950 "basicParse.y" { addFloatOp(OP_PUSHFLOAT, 3.14159265); ;} break; - case 314: + case 330: /* Line 1455 of yacc.c */ -#line 921 "basicParse.y" +#line 951 "basicParse.y" { addIntOp(OP_PUSHINT, 1); ;} break; - case 315: + case 331: /* Line 1455 of yacc.c */ -#line 922 "basicParse.y" +#line 952 "basicParse.y" { addIntOp(OP_PUSHINT, 1); ;} break; - case 316: + case 332: /* Line 1455 of yacc.c */ -#line 923 "basicParse.y" +#line 953 "basicParse.y" { addIntOp(OP_PUSHINT, 0); ;} break; - case 317: + case 333: /* Line 1455 of yacc.c */ -#line 924 "basicParse.y" +#line 954 "basicParse.y" { addIntOp(OP_PUSHINT, 0); ;} break; - case 318: + case 334: /* Line 1455 of yacc.c */ -#line 925 "basicParse.y" +#line 955 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_EOF); ;} break; - case 319: + case 335: /* Line 1455 of yacc.c */ -#line 926 "basicParse.y" +#line 956 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_EOF); ;} break; - case 320: + case 336: /* Line 1455 of yacc.c */ -#line 927 "basicParse.y" +#line 957 "basicParse.y" { addOp(OP_EOF); ;} break; - case 321: + case 337: /* Line 1455 of yacc.c */ -#line 928 "basicParse.y" +#line 958 "basicParse.y" { addOp(OP_EXISTS); ;} break; - case 322: + case 338: /* Line 1455 of yacc.c */ -#line 929 "basicParse.y" +#line 959 "basicParse.y" { addOp(OP_YEAR); ;} break; - case 323: + case 339: /* Line 1455 of yacc.c */ -#line 930 "basicParse.y" +#line 960 "basicParse.y" { addOp(OP_YEAR); ;} break; - case 324: + case 340: /* Line 1455 of yacc.c */ -#line 931 "basicParse.y" +#line 961 "basicParse.y" { addOp(OP_MONTH); ;} break; - case 325: + case 341: /* Line 1455 of yacc.c */ -#line 932 "basicParse.y" +#line 962 "basicParse.y" { addOp(OP_MONTH); ;} break; - case 326: + case 342: /* Line 1455 of yacc.c */ -#line 933 "basicParse.y" +#line 963 "basicParse.y" { addOp(OP_DAY); ;} break; - case 327: + case 343: /* Line 1455 of yacc.c */ -#line 934 "basicParse.y" +#line 964 "basicParse.y" { addOp(OP_DAY); ;} break; - case 328: + case 344: /* Line 1455 of yacc.c */ -#line 935 "basicParse.y" +#line 965 "basicParse.y" { addOp(OP_HOUR); ;} break; - case 329: + case 345: /* Line 1455 of yacc.c */ -#line 936 "basicParse.y" +#line 966 "basicParse.y" { addOp(OP_HOUR); ;} break; - case 330: + case 346: /* Line 1455 of yacc.c */ -#line 937 "basicParse.y" +#line 967 "basicParse.y" { addOp(OP_MINUTE); ;} break; - case 331: + case 347: /* Line 1455 of yacc.c */ -#line 938 "basicParse.y" +#line 968 "basicParse.y" { addOp(OP_MINUTE); ;} break; - case 332: + case 348: /* Line 1455 of yacc.c */ -#line 939 "basicParse.y" +#line 969 "basicParse.y" { addOp(OP_SECOND); ;} break; - case 333: + case 349: /* Line 1455 of yacc.c */ -#line 940 "basicParse.y" +#line 970 "basicParse.y" { addOp(OP_SECOND); ;} break; - case 334: + case 350: /* Line 1455 of yacc.c */ -#line 941 "basicParse.y" +#line 971 "basicParse.y" { addOp(OP_GRAPHWIDTH); ;} break; - case 335: + case 351: /* Line 1455 of yacc.c */ -#line 942 "basicParse.y" +#line 972 "basicParse.y" { addOp(OP_GRAPHWIDTH); ;} break; - case 336: + case 352: /* Line 1455 of yacc.c */ -#line 943 "basicParse.y" +#line 973 "basicParse.y" { addOp(OP_GRAPHHEIGHT); ;} break; - case 337: + case 353: /* Line 1455 of yacc.c */ -#line 944 "basicParse.y" +#line 974 "basicParse.y" { addOp(OP_GRAPHHEIGHT); ;} break; - case 338: + case 354: /* Line 1455 of yacc.c */ -#line 945 "basicParse.y" +#line 975 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_SIZE); ;} break; - case 339: + case 355: /* Line 1455 of yacc.c */ -#line 946 "basicParse.y" +#line 976 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_SIZE); ;} break; - case 340: + case 356: /* Line 1455 of yacc.c */ -#line 947 "basicParse.y" +#line 977 "basicParse.y" { addOp(OP_SIZE); ;} break; - case 341: + case 357: /* Line 1455 of yacc.c */ -#line 948 "basicParse.y" +#line 978 "basicParse.y" { addOp(OP_KEY); ;} break; - case 342: + case 358: /* Line 1455 of yacc.c */ -#line 949 "basicParse.y" +#line 979 "basicParse.y" { addOp(OP_KEY); ;} break; - case 343: + case 359: /* Line 1455 of yacc.c */ -#line 950 "basicParse.y" +#line 980 "basicParse.y" { addOp(OP_MOUSEX); ;} break; - case 344: + case 360: /* Line 1455 of yacc.c */ -#line 951 "basicParse.y" +#line 981 "basicParse.y" { addOp(OP_MOUSEX); ;} break; - case 345: + case 361: /* Line 1455 of yacc.c */ -#line 952 "basicParse.y" +#line 982 "basicParse.y" { addOp(OP_MOUSEY); ;} break; - case 346: + case 362: /* Line 1455 of yacc.c */ -#line 953 "basicParse.y" +#line 983 "basicParse.y" { addOp(OP_MOUSEY); ;} break; - case 347: + case 363: /* Line 1455 of yacc.c */ -#line 954 "basicParse.y" +#line 984 "basicParse.y" { addOp(OP_MOUSEB); ;} break; - case 348: + case 364: /* Line 1455 of yacc.c */ -#line 955 "basicParse.y" +#line 985 "basicParse.y" { addOp(OP_MOUSEB); ;} break; - case 349: + case 365: /* Line 1455 of yacc.c */ -#line 956 "basicParse.y" +#line 986 "basicParse.y" { addOp(OP_CLICKX); ;} break; - case 350: + case 366: /* Line 1455 of yacc.c */ -#line 957 "basicParse.y" +#line 987 "basicParse.y" { addOp(OP_CLICKX); ;} break; - case 351: + case 367: /* Line 1455 of yacc.c */ -#line 958 "basicParse.y" +#line 988 "basicParse.y" { addOp(OP_CLICKY); ;} break; - case 352: + case 368: /* Line 1455 of yacc.c */ -#line 959 "basicParse.y" +#line 989 "basicParse.y" { addOp(OP_CLICKY); ;} break; - case 353: + case 369: /* Line 1455 of yacc.c */ -#line 960 "basicParse.y" +#line 990 "basicParse.y" { addOp(OP_CLICKB); ;} break; - case 354: + case 370: /* Line 1455 of yacc.c */ -#line 961 "basicParse.y" +#line 991 "basicParse.y" { addOp(OP_CLICKB); ;} break; - case 355: + case 371: /* Line 1455 of yacc.c */ -#line 962 "basicParse.y" +#line 992 "basicParse.y" { addIntOp(OP_PUSHINT, -1); ;} break; - case 356: + case 372: /* Line 1455 of yacc.c */ -#line 963 "basicParse.y" +#line 993 "basicParse.y" { addIntOp(OP_PUSHINT, -1); ;} break; - case 357: + case 373: /* Line 1455 of yacc.c */ -#line 964 "basicParse.y" +#line 994 "basicParse.y" { addIntOp(OP_PUSHINT, 0x000000); ;} break; - case 358: + case 374: /* Line 1455 of yacc.c */ -#line 965 "basicParse.y" +#line 995 "basicParse.y" { addIntOp(OP_PUSHINT, 0x000000); ;} break; - case 359: + case 375: /* Line 1455 of yacc.c */ -#line 966 "basicParse.y" +#line 996 "basicParse.y" { addIntOp(OP_PUSHINT, 0xf8f8f8); ;} break; - case 360: + case 376: /* Line 1455 of yacc.c */ -#line 967 "basicParse.y" +#line 997 "basicParse.y" { addIntOp(OP_PUSHINT, 0xf8f8f8); ;} break; - case 361: + case 377: /* Line 1455 of yacc.c */ -#line 968 "basicParse.y" +#line 998 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff0000); ;} break; - case 362: + case 378: /* Line 1455 of yacc.c */ -#line 969 "basicParse.y" +#line 999 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff0000); ;} break; - case 363: + case 379: /* Line 1455 of yacc.c */ -#line 970 "basicParse.y" +#line 1000 "basicParse.y" { addIntOp(OP_PUSHINT, 0x800000); ;} break; - case 364: + case 380: /* Line 1455 of yacc.c */ -#line 971 "basicParse.y" +#line 1001 "basicParse.y" { addIntOp(OP_PUSHINT, 0x800000); ;} break; - case 365: + case 381: /* Line 1455 of yacc.c */ -#line 972 "basicParse.y" +#line 1002 "basicParse.y" { addIntOp(OP_PUSHINT, 0x00ff00); ;} break; - case 366: + case 382: /* Line 1455 of yacc.c */ -#line 973 "basicParse.y" +#line 1003 "basicParse.y" { addIntOp(OP_PUSHINT, 0x00ff00); ;} break; - case 367: + case 383: /* Line 1455 of yacc.c */ -#line 974 "basicParse.y" +#line 1004 "basicParse.y" { addIntOp(OP_PUSHINT, 0x008000); ;} break; - case 368: + case 384: /* Line 1455 of yacc.c */ -#line 975 "basicParse.y" +#line 1005 "basicParse.y" { addIntOp(OP_PUSHINT, 0x008000); ;} break; - case 369: + case 385: /* Line 1455 of yacc.c */ -#line 976 "basicParse.y" +#line 1006 "basicParse.y" { addIntOp(OP_PUSHINT, 0x0000ff); ;} break; - case 370: + case 386: /* Line 1455 of yacc.c */ -#line 977 "basicParse.y" +#line 1007 "basicParse.y" { addIntOp(OP_PUSHINT, 0x0000ff); ;} break; - case 371: + case 387: /* Line 1455 of yacc.c */ -#line 978 "basicParse.y" +#line 1008 "basicParse.y" { addIntOp(OP_PUSHINT, 0x000080); ;} break; - case 372: + case 388: /* Line 1455 of yacc.c */ -#line 979 "basicParse.y" +#line 1009 "basicParse.y" { addIntOp(OP_PUSHINT, 0x000080); ;} break; - case 373: + case 389: /* Line 1455 of yacc.c */ -#line 980 "basicParse.y" +#line 1010 "basicParse.y" { addIntOp(OP_PUSHINT, 0x00ffff); ;} break; - case 374: + case 390: /* Line 1455 of yacc.c */ -#line 981 "basicParse.y" +#line 1011 "basicParse.y" { addIntOp(OP_PUSHINT, 0x00ffff); ;} break; - case 375: + case 391: /* Line 1455 of yacc.c */ -#line 982 "basicParse.y" +#line 1012 "basicParse.y" { addIntOp(OP_PUSHINT, 0x008080); ;} break; - case 376: + case 392: /* Line 1455 of yacc.c */ -#line 983 "basicParse.y" +#line 1013 "basicParse.y" { addIntOp(OP_PUSHINT, 0x008080); ;} break; - case 377: + case 393: /* Line 1455 of yacc.c */ -#line 984 "basicParse.y" +#line 1014 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff00ff); ;} break; - case 378: + case 394: /* Line 1455 of yacc.c */ -#line 985 "basicParse.y" +#line 1015 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff00ff); ;} break; - case 379: + case 395: /* Line 1455 of yacc.c */ -#line 986 "basicParse.y" +#line 1016 "basicParse.y" { addIntOp(OP_PUSHINT, 0x800080); ;} break; - case 380: + case 396: /* Line 1455 of yacc.c */ -#line 987 "basicParse.y" +#line 1017 "basicParse.y" { addIntOp(OP_PUSHINT, 0x800080); ;} break; - case 381: + case 397: /* Line 1455 of yacc.c */ -#line 988 "basicParse.y" +#line 1018 "basicParse.y" { addIntOp(OP_PUSHINT, 0xffff00); ;} break; - case 382: + case 398: /* Line 1455 of yacc.c */ -#line 989 "basicParse.y" +#line 1019 "basicParse.y" { addIntOp(OP_PUSHINT, 0xffff00); ;} break; - case 383: + case 399: /* Line 1455 of yacc.c */ -#line 990 "basicParse.y" +#line 1020 "basicParse.y" { addIntOp(OP_PUSHINT, 0x808000); ;} break; - case 384: + case 400: /* Line 1455 of yacc.c */ -#line 991 "basicParse.y" +#line 1021 "basicParse.y" { addIntOp(OP_PUSHINT, 0x808000); ;} break; - case 385: + case 401: /* Line 1455 of yacc.c */ -#line 992 "basicParse.y" +#line 1022 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff6600); ;} break; - case 386: + case 402: /* Line 1455 of yacc.c */ -#line 993 "basicParse.y" +#line 1023 "basicParse.y" { addIntOp(OP_PUSHINT, 0xff6600); ;} break; - case 387: + case 403: /* Line 1455 of yacc.c */ -#line 994 "basicParse.y" +#line 1024 "basicParse.y" { addIntOp(OP_PUSHINT, 0xaa3300); ;} break; - case 388: + case 404: /* Line 1455 of yacc.c */ -#line 995 "basicParse.y" +#line 1025 "basicParse.y" { addIntOp(OP_PUSHINT, 0xaa3300); ;} break; - case 389: + case 405: /* Line 1455 of yacc.c */ -#line 996 "basicParse.y" +#line 1026 "basicParse.y" { addIntOp(OP_PUSHINT, 0xa4a4a4); ;} break; - case 390: + case 406: /* Line 1455 of yacc.c */ -#line 997 "basicParse.y" +#line 1027 "basicParse.y" { addIntOp(OP_PUSHINT, 0xa4a4a4); ;} break; - case 391: + case 407: /* Line 1455 of yacc.c */ -#line 998 "basicParse.y" +#line 1028 "basicParse.y" { addIntOp(OP_PUSHINT, 0x808080); ;} break; - case 392: + case 408: /* Line 1455 of yacc.c */ -#line 999 "basicParse.y" +#line 1029 "basicParse.y" { addIntOp(OP_PUSHINT, 0x808080); ;} break; - case 393: + case 409: /* Line 1455 of yacc.c */ -#line 1000 "basicParse.y" +#line 1030 "basicParse.y" { addOp(OP_PIXEL); ;} break; - case 394: + case 410: /* Line 1455 of yacc.c */ -#line 1001 "basicParse.y" +#line 1031 "basicParse.y" { addOp(OP_RGB); ;} break; - case 395: + case 411: /* Line 1455 of yacc.c */ -#line 1002 "basicParse.y" +#line 1032 "basicParse.y" { addOp(OP_GETCOLOR); ;} break; - case 396: + case 412: /* Line 1455 of yacc.c */ -#line 1003 "basicParse.y" +#line 1033 "basicParse.y" { addOp(OP_GETCOLOR); ;} break; - case 397: + case 413: /* Line 1455 of yacc.c */ -#line 1004 "basicParse.y" +#line 1034 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITECOLLIDE); ;} break; - case 398: + case 414: /* Line 1455 of yacc.c */ -#line 1005 "basicParse.y" +#line 1035 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEX); ;} break; - case 399: + case 415: /* Line 1455 of yacc.c */ -#line 1006 "basicParse.y" +#line 1036 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEY); ;} break; - case 400: + case 416: /* Line 1455 of yacc.c */ -#line 1007 "basicParse.y" +#line 1037 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEH); ;} break; - case 401: + case 417: /* Line 1455 of yacc.c */ -#line 1008 "basicParse.y" +#line 1038 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEW); ;} break; - case 402: + case 418: /* Line 1455 of yacc.c */ -#line 1009 "basicParse.y" +#line 1039 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_SPRITEV); ;} break; - case 403: + case 419: /* Line 1455 of yacc.c */ -#line 1010 "basicParse.y" +#line 1040 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBROW); ;} break; - case 404: + case 420: /* Line 1455 of yacc.c */ -#line 1011 "basicParse.y" +#line 1041 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBINT); ;} break; - case 405: + case 421: /* Line 1455 of yacc.c */ -#line 1012 "basicParse.y" +#line 1042 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBFLOAT); ;} break; - case 406: + case 422: /* Line 1455 of yacc.c */ -#line 1013 "basicParse.y" +#line 1043 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERROR); ;} break; - case 407: + case 423: /* Line 1455 of yacc.c */ -#line 1014 "basicParse.y" +#line 1044 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERROR); ;} break; - case 408: + case 424: /* Line 1455 of yacc.c */ -#line 1015 "basicParse.y" +#line 1045 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERRORLINE); ;} break; - case 409: + case 425: /* Line 1455 of yacc.c */ -#line 1016 "basicParse.y" +#line 1046 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERRORLINE); ;} break; - case 410: + case 426: /* Line 1455 of yacc.c */ -#line 1017 "basicParse.y" +#line 1047 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addExtendedOp( OP_EXTENDED_0,OP_NETDATA); ;} break; - case 411: + case 427: /* Line 1455 of yacc.c */ -#line 1018 "basicParse.y" +#line 1048 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETDATA); ;} break; - case 412: + case 428: /* Line 1455 of yacc.c */ -#line 1019 "basicParse.y" +#line 1049 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_NETDATA); ;} break; - case 413: + case 429: /* Line 1455 of yacc.c */ -#line 1022 "basicParse.y" +#line 1050 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_PORTIN); ;} + break; + + case 430: + +/* Line 1455 of yacc.c */ +#line 1053 "basicParse.y" { listlen = 1; ;} break; - case 414: + case 431: /* Line 1455 of yacc.c */ -#line 1023 "basicParse.y" +#line 1054 "basicParse.y" { listlen++; ;} break; - case 415: + case 432: /* Line 1455 of yacc.c */ -#line 1026 "basicParse.y" +#line 1057 "basicParse.y" { (yyval.string) = (yyvsp[(2) - (3)].string); ;} break; - case 416: + case 433: /* Line 1455 of yacc.c */ -#line 1027 "basicParse.y" +#line 1058 "basicParse.y" { addOp(OP_CONCAT); ;} break; - case 417: + case 434: /* Line 1455 of yacc.c */ -#line 1028 "basicParse.y" +#line 1059 "basicParse.y" { addOp(OP_CONCAT); ;} break; - case 418: + case 435: /* Line 1455 of yacc.c */ -#line 1029 "basicParse.y" +#line 1060 "basicParse.y" { addOp(OP_CONCAT); ;} break; - case 419: + case 436: /* Line 1455 of yacc.c */ -#line 1030 "basicParse.y" +#line 1061 "basicParse.y" { addStringOp(OP_PUSHSTRING, (yyvsp[(1) - (1)].string)); ;} break; - case 420: + case 437: /* Line 1455 of yacc.c */ -#line 1031 "basicParse.y" +#line 1062 "basicParse.y" { addIntOp(OP_DEREF, (yyvsp[(1) - (4)].number)); ;} break; - case 421: + case 438: /* Line 1455 of yacc.c */ -#line 1032 "basicParse.y" +#line 1063 "basicParse.y" { addIntOp(OP_DEREF2D, (yyvsp[(1) - (6)].number)); ;} break; - case 422: + case 439: /* Line 1455 of yacc.c */ -#line 1034 "basicParse.y" +#line 1065 "basicParse.y" { if ((yyvsp[(1) - (1)].number) < 0) { @@ -7827,178 +8713,206 @@ ;} break; - case 423: + case 440: /* Line 1455 of yacc.c */ -#line 1044 "basicParse.y" +#line 1075 "basicParse.y" { addOp(OP_CHR); ;} break; - case 424: + case 441: /* Line 1455 of yacc.c */ -#line 1045 "basicParse.y" +#line 1076 "basicParse.y" { addOp(OP_STRING); ;} break; - case 425: + case 442: /* Line 1455 of yacc.c */ -#line 1046 "basicParse.y" +#line 1077 "basicParse.y" { addOp(OP_UPPER); ;} break; - case 426: + case 443: /* Line 1455 of yacc.c */ -#line 1047 "basicParse.y" +#line 1078 "basicParse.y" { addOp(OP_LOWER); ;} break; - case 427: + case 444: /* Line 1455 of yacc.c */ -#line 1048 "basicParse.y" +#line 1079 "basicParse.y" { addOp(OP_MID); ;} break; - case 428: + case 445: /* Line 1455 of yacc.c */ -#line 1049 "basicParse.y" +#line 1080 "basicParse.y" { addOp(OP_LEFT); ;} break; - case 429: + case 446: /* Line 1455 of yacc.c */ -#line 1050 "basicParse.y" +#line 1081 "basicParse.y" { addOp(OP_RIGHT); ;} break; - case 430: + case 447: /* Line 1455 of yacc.c */ -#line 1051 "basicParse.y" +#line 1082 "basicParse.y" { addOp(OP_GETSLICE); ;} break; - case 431: + case 448: /* Line 1455 of yacc.c */ -#line 1052 "basicParse.y" +#line 1083 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_READ); ;} break; - case 432: + case 449: /* Line 1455 of yacc.c */ -#line 1053 "basicParse.y" +#line 1084 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_READ); ;} break; - case 433: + case 450: /* Line 1455 of yacc.c */ -#line 1054 "basicParse.y" +#line 1085 "basicParse.y" { addOp(OP_READ); ;} break; - case 434: + case 451: /* Line 1455 of yacc.c */ -#line 1055 "basicParse.y" +#line 1086 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_READLINE); ;} break; - case 435: + case 452: /* Line 1455 of yacc.c */ -#line 1056 "basicParse.y" +#line 1087 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addOp(OP_READLINE); ;} break; - case 436: + case 453: /* Line 1455 of yacc.c */ -#line 1057 "basicParse.y" +#line 1088 "basicParse.y" { addOp(OP_READLINE); ;} break; - case 437: + case 454: /* Line 1455 of yacc.c */ -#line 1058 "basicParse.y" +#line 1089 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_CURRENTDIR); ;} break; - case 438: + case 455: /* Line 1455 of yacc.c */ -#line 1059 "basicParse.y" +#line 1090 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_CURRENTDIR); ;} break; - case 439: + case 456: /* Line 1455 of yacc.c */ -#line 1060 "basicParse.y" +#line 1091 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_DBSTRING); ;} break; - case 440: + case 457: /* Line 1455 of yacc.c */ -#line 1061 "basicParse.y" +#line 1092 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERRORMESSAGE); ;} break; - case 441: + case 458: /* Line 1455 of yacc.c */ -#line 1062 "basicParse.y" +#line 1093 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERRORMESSAGE); ;} break; - case 442: + case 459: /* Line 1455 of yacc.c */ -#line 1063 "basicParse.y" +#line 1094 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERROREXTRA); ;} break; - case 443: + case 460: /* Line 1455 of yacc.c */ -#line 1064 "basicParse.y" +#line 1095 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_LASTERROREXTRA); ;} break; - case 444: + case 461: /* Line 1455 of yacc.c */ -#line 1065 "basicParse.y" +#line 1096 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETREAD); ;} break; - case 445: + case 462: /* Line 1455 of yacc.c */ -#line 1066 "basicParse.y" +#line 1097 "basicParse.y" { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETREAD); ;} break; - case 446: + case 463: /* Line 1455 of yacc.c */ -#line 1067 "basicParse.y" +#line 1098 "basicParse.y" { addExtendedOp(OP_EXTENDED_0,OP_NETREAD); ;} break; + case 464: + +/* Line 1455 of yacc.c */ +#line 1099 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETADDRESS); ;} + break; + + case 465: + +/* Line 1455 of yacc.c */ +#line 1100 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_NETADDRESS); ;} + break; + + case 466: + +/* Line 1455 of yacc.c */ +#line 1101 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_MD5); ;} + break; + + case 467: + +/* Line 1455 of yacc.c */ +#line 1102 "basicParse.y" + { addExtendedOp(OP_EXTENDED_0,OP_GETSETTING); ;} + break; + /* Line 1455 of yacc.c */ -#line 8002 "basicParse.tab.c" +#line 8916 "basicParse.tab.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -8210,7 +9124,7 @@ /* Line 1675 of yacc.c */ -#line 1070 "basicParse.y" +#line 1105 "basicParse.y" int diff -Nru basic256-0.9.6.32/LEX/basicParse.tab.h basic256-0.9.6.48/LEX/basicParse.tab.h --- basic256-0.9.6.32/LEX/basicParse.tab.h 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/LEX/basicParse.tab.h 2010-11-03 16:24:38.000000000 +0100 @@ -210,16 +210,27 @@ B256NETWRITE = 426, B256NETCLOSE = 427, B256NETDATA = 428, - B256LINENUM = 429, - B256INTEGER = 430, - B256FLOAT = 431, - B256STRING = 432, - B256VARIABLE = 433, - B256STRINGVAR = 434, - B256NEWVAR = 435, - B256COLOR = 436, - B256LABEL = 437, - B256UMINUS = 438 + B256NETADDRESS = 429, + B256KILL = 430, + B256MD5 = 431, + B256SETSETTING = 432, + B256GETSETTING = 433, + B256PORTIN = 434, + B256PORTOUT = 435, + B256BINARYOR = 436, + B256BINARYAND = 437, + B256BINARYNOT = 438, + B256IMGSAVE = 439, + B256LINENUM = 440, + B256INTEGER = 441, + B256FLOAT = 442, + B256STRING = 443, + B256VARIABLE = 444, + B256STRINGVAR = 445, + B256NEWVAR = 446, + B256COLOR = 447, + B256LABEL = 448, + B256UMINUS = 449 }; #endif @@ -230,7 +241,7 @@ { /* Line 1676 of yacc.c */ -#line 284 "basicParse.y" +#line 288 "basicParse.y" int number; double floatnum; @@ -239,7 +250,7 @@ /* Line 1676 of yacc.c */ -#line 243 "basicParse.tab.h" +#line 254 "basicParse.tab.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ diff -Nru basic256-0.9.6.32/LEX/basicParse.y basic256-0.9.6.48/LEX/basicParse.y --- basic256-0.9.6.32/LEX/basicParse.y 2010-08-17 04:59:59.000000000 +0200 +++ basic256-0.9.6.48/LEX/basicParse.y 2010-10-18 21:34:33.000000000 +0200 @@ -278,7 +278,11 @@ %token B256CHANGEDIR B256CURRENTDIR B256DECIMAL %token B256DBOPEN B256DBCLOSE B256DBEXECUTE B256DBOPENSET B256DBCLOSESET B256DBROW B256DBINT B256DBFLOAT B256DBSTRING %token B256ONERROR B256OFFERROR B256LASTERROR B256LASTERRORMESSAGE B256LASTERRORLINE B256LASTERROREXTRA -%token B256NETLISTEN B256NETCONNECT B256NETREAD B256NETWRITE B256NETCLOSE B256NETDATA +%token B256NETLISTEN B256NETCONNECT B256NETREAD B256NETWRITE B256NETCLOSE B256NETDATA B256NETADDRESS +%token B256KILL B256MD5 B256SETSETTING B256GETSETTING B256PORTIN B256PORTOUT +%token B256BINARYOR B256BINARYAND B256BINARYNOT +%token B256IMGSAVE + %union { @@ -305,9 +309,10 @@ %left B256AND %nonassoc B256NOT %left '<' B256LTE '>' B256GTE '=' B256NE +%left B256BINARYOR B256BINARYAND %left '-' '+' %left '*' '/' B256MOD B256INTDIV -%nonassoc B256UMINUS +%nonassoc B256UMINUS B256BINARYNOT %left '^' @@ -496,6 +501,7 @@ | writelinestmt | closestmt | resetstmt + | killstmt | soundstmt | textstmt | fontstmt @@ -527,6 +533,9 @@ | netconnectstmt | netwritestmt | netclosestmt + | setsettingstmt + | portoutstmt + | imgsavestmt ; dimstmt: B256DIM B256VARIABLE floatexpr { addIntOp(OP_PUSHINT, 1); addIntOp(OP_DIM, $2); } @@ -755,7 +764,7 @@ putslicestmt: B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr {addOp(OP_PUTSLICE); } | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ')' { addOp(OP_PUTSLICE); } | B256PUTSLICE floatexpr ',' floatexpr ',' stringexpr ',' floatexpr {addOp(OP_PUTSLICEMASK); } - | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr')' { addOp(OP_PUTSLICEMASK); } + | B256PUTSLICE '(' floatexpr ',' floatexpr ',' stringexpr ',' floatexpr')' { addOp(OP_PUTSLICEMASK); }; imgloadstmt: B256IMGLOAD floatexpr ',' floatexpr ',' stringexpr {addOp(OP_IMGLOAD); } | B256IMGLOAD '(' floatexpr ',' floatexpr ',' stringexpr ')' { addOp(OP_IMGLOAD); } @@ -838,6 +847,24 @@ | B256NETCLOSE floatexpr { addExtendedOp(OP_EXTENDED_0,OP_NETCLOSE); } ; +killstmt: B256KILL stringexpr { addExtendedOp(OP_EXTENDED_0,OP_KILL); } + | B256KILL '(' floatexpr ',' stringexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_KILL); } +; + +setsettingstmt: B256SETSETTING stringexpr ',' stringexpr ',' stringexpr { addExtendedOp(OP_EXTENDED_0,OP_SETSETTING); } + | B256SETSETTING '(' stringexpr ',' stringexpr ',' stringexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_SETSETTING); } +; + +portoutstmt: B256PORTOUT floatexpr ',' floatexpr { addExtendedOp(OP_EXTENDED_0,OP_PORTOUT); } + | B256PORTOUT '(' floatexpr ',' floatexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_PORTOUT); } +; + +imgsavestmt: B256IMGSAVE stringexpr {addStringOp(OP_PUSHSTRING, "PNG"); addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); } + | B256IMGSAVE '(' stringexpr ',' stringexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); } + | B256IMGSAVE stringexpr ',' stringexpr { addExtendedOp(OP_EXTENDED_0,OP_IMGSAVE); } +; + + immediatestrlist: '{' stringlist '}' ; @@ -856,6 +883,9 @@ | floatexpr B256INTDIV floatexpr { addOp(OP_INTDIV); } | floatexpr '/' floatexpr { addOp(OP_DIV); } | floatexpr '^' floatexpr { addOp(OP_EXP); } + | floatexpr B256BINARYOR floatexpr { addExtendedOp(OP_EXTENDED_0,OP_BINARYOR); } + | floatexpr B256BINARYAND floatexpr { addExtendedOp(OP_EXTENDED_0,OP_BINARYAND); } + | B256BINARYNOT floatexpr { addExtendedOp(OP_EXTENDED_0,OP_BINARYNOT); } | '-' floatexpr %prec B256UMINUS { addOp(OP_NEGATE); } | floatexpr B256AND floatexpr {addOp(OP_AND); } | floatexpr B256OR floatexpr { addOp(OP_OR); } @@ -1017,6 +1047,7 @@ | B256NETDATA { addIntOp(OP_PUSHINT, 0); addExtendedOp( OP_EXTENDED_0,OP_NETDATA); } | B256NETDATA '(' ')' { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETDATA); } | B256NETDATA '(' floatexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_NETDATA); } + | B256PORTIN '(' floatexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_PORTIN); } ; stringlist: stringexpr { listlen = 1; } @@ -1065,6 +1096,10 @@ | B256NETREAD { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETREAD); } | B256NETREAD '(' ')' { addIntOp(OP_PUSHINT, 0); addExtendedOp(OP_EXTENDED_0,OP_NETREAD); } | B256NETREAD '(' floatexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_NETREAD); } + | B256NETADDRESS { addExtendedOp(OP_EXTENDED_0,OP_NETADDRESS); } + | B256NETADDRESS '(' ')' { addExtendedOp(OP_EXTENDED_0,OP_NETADDRESS); } + | B256MD5 '(' stringexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_MD5); } + | B256GETSETTING '(' stringexpr ',' stringexpr ')' { addExtendedOp(OP_EXTENDED_0,OP_GETSETTING); } ; %% diff -Nru basic256-0.9.6.32/LEX/lex.yy.c basic256-0.9.6.48/LEX/lex.yy.c --- basic256-0.9.6.32/LEX/lex.yy.c 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/LEX/lex.yy.c 2010-11-03 16:24:38.000000000 +0100 @@ -368,8 +368,8 @@ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 203 -#define YY_END_OF_BUFFER 204 +#define YY_NUM_RULES 214 +#define YY_END_OF_BUFFER 215 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -377,151 +377,159 @@ flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[1297] = +static yyconst flex_int16_t yy_accept[1374] = { 0, - 6, 6, 204, 202, 201, 200, 202, 202, 183, 192, - 193, 181, 179, 189, 180, 6, 184, 2, 2, 191, - 190, 187, 186, 188, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 196, 182, - 197, 185, 194, 195, 201, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 201, - 0, 7, 0, 174, 6, 6, 2, 0, 0, 0, - 177, 178, 176, 199, 198, 198, 198, 198, 198, 198, - - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 84, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 78, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 33, - 198, 31, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 87, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 201, 0, 198, 1, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 84, 198, 198, 198, 198, 198, 198, 198, 198, - - 198, 198, 198, 78, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 33, 198, - 31, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 87, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 5, - 4, 3, 19, 198, 32, 100, 198, 198, 198, 198, - 198, 198, 101, 198, 198, 40, 198, 198, 39, 198, - 21, 198, 198, 198, 110, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 37, 198, 175, 105, 198, 198, - 198, 198, 198, 86, 198, 198, 198, 198, 198, 198, - - 198, 198, 198, 8, 96, 198, 198, 198, 198, 28, - 198, 11, 198, 198, 198, 198, 198, 35, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 61, 198, 198, 198, 198, 54, 198, - 116, 198, 198, 20, 198, 198, 198, 198, 198, 198, - 198, 22, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 34, 198, 198, 0, 19, 198, 32, 100, 198, - 198, 198, 198, 198, 198, 101, 198, 198, 40, 198, - 198, 39, 198, 21, 198, 198, 198, 110, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 37, 198, 175, - - 105, 198, 198, 198, 198, 198, 86, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 8, 96, 198, 198, - 198, 198, 28, 198, 11, 198, 198, 198, 198, 198, - 35, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 61, 198, 198, 198, - 198, 54, 198, 116, 198, 198, 20, 198, 198, 198, - 198, 198, 198, 198, 22, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 34, 198, 198, 24, 23, 25, - 198, 65, 17, 198, 198, 198, 198, 198, 198, 198, - 67, 198, 198, 198, 198, 198, 198, 198, 198, 198, - - 198, 80, 198, 198, 198, 198, 198, 198, 198, 115, - 198, 198, 198, 77, 198, 75, 198, 111, 198, 198, - 198, 198, 12, 198, 46, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 89, 198, 198, 90, 198, - 198, 198, 41, 44, 198, 198, 198, 198, 30, 91, - 43, 198, 198, 173, 0, 198, 198, 198, 198, 136, - 137, 198, 198, 198, 88, 198, 198, 114, 79, 106, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 108, - 198, 24, 23, 25, 198, 65, 17, 198, 198, 198, - 198, 198, 198, 198, 67, 198, 198, 198, 198, 198, - - 198, 198, 198, 198, 198, 80, 198, 198, 198, 198, - 198, 198, 198, 115, 198, 198, 198, 77, 198, 75, - 198, 111, 198, 198, 198, 198, 12, 198, 46, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 89, - 198, 198, 90, 198, 198, 198, 41, 44, 198, 198, - 198, 198, 30, 91, 43, 198, 198, 198, 198, 198, - 198, 136, 137, 198, 198, 198, 88, 198, 198, 114, - 79, 106, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 108, 198, 60, 198, 198, 58, 198, 93, 55, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - - 198, 198, 157, 198, 156, 198, 198, 198, 81, 198, - 198, 107, 198, 102, 18, 198, 198, 97, 198, 63, - 198, 95, 16, 198, 198, 29, 15, 198, 109, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 99, - 53, 36, 198, 198, 198, 198, 38, 198, 0, 94, - 198, 13, 198, 47, 198, 45, 198, 198, 85, 14, - 198, 198, 198, 198, 82, 59, 92, 198, 60, 198, - 198, 58, 198, 93, 55, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 157, 198, 156, - 198, 198, 198, 81, 198, 198, 107, 198, 102, 18, - - 198, 198, 97, 198, 63, 198, 95, 16, 198, 198, - 29, 15, 198, 109, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 99, 53, 36, 198, 198, 198, - 198, 38, 198, 94, 198, 13, 198, 47, 198, 45, - 198, 198, 85, 14, 198, 198, 198, 198, 82, 59, - 92, 198, 198, 42, 145, 198, 143, 144, 57, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 151, 198, 198, 198, 198, 138, 198, 198, 198, 198, - 198, 198, 198, 198, 10, 112, 141, 139, 140, 198, - 198, 198, 198, 198, 198, 198, 198, 73, 69, 198, - - 198, 198, 198, 172, 98, 113, 198, 9, 146, 147, - 198, 198, 198, 198, 71, 198, 42, 145, 198, 143, - 144, 57, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 151, 198, 198, 198, 198, 138, 198, - 198, 198, 198, 198, 198, 198, 198, 10, 112, 141, - 139, 140, 198, 198, 198, 198, 198, 198, 198, 198, - 73, 69, 198, 198, 198, 198, 98, 113, 198, 9, - 146, 147, 198, 198, 198, 198, 71, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 62, 198, 152, 198, - 158, 198, 198, 150, 26, 198, 198, 198, 198, 198, - - 198, 198, 122, 198, 198, 198, 171, 198, 169, 198, - 198, 160, 198, 27, 198, 52, 198, 198, 133, 198, - 198, 198, 198, 135, 134, 131, 132, 117, 118, 119, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 62, 198, 152, 198, 158, 198, 198, 150, 26, 198, - 198, 198, 198, 198, 198, 198, 122, 198, 198, 198, - 171, 198, 169, 198, 198, 160, 198, 27, 198, 52, - 198, 198, 133, 198, 198, 198, 198, 135, 134, 131, - 132, 117, 118, 119, 198, 198, 198, 198, 66, 68, - 76, 198, 198, 198, 198, 198, 198, 198, 159, 83, - - 198, 56, 120, 198, 198, 198, 198, 170, 198, 198, - 168, 161, 121, 103, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 66, 68, 76, 198, - 198, 198, 198, 198, 198, 198, 159, 83, 198, 56, - 120, 198, 198, 198, 198, 170, 198, 198, 168, 161, - 121, 103, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 149, 198, 198, 64, 198, 198, 198, 198, 153, - 154, 198, 198, 49, 198, 162, 198, 166, 198, 123, - 198, 198, 198, 198, 198, 198, 104, 149, 198, 198, - 64, 198, 198, 198, 198, 153, 154, 198, 198, 49, - - 198, 162, 198, 166, 198, 123, 198, 198, 198, 198, - 198, 198, 104, 142, 148, 74, 70, 72, 155, 198, - 198, 50, 198, 198, 198, 167, 198, 128, 124, 127, - 198, 129, 198, 142, 148, 74, 70, 72, 155, 198, - 198, 50, 198, 198, 198, 167, 198, 128, 124, 127, - 198, 129, 198, 198, 51, 198, 198, 198, 198, 126, - 125, 198, 51, 198, 198, 198, 198, 126, 125, 48, - 198, 198, 198, 198, 48, 198, 198, 198, 198, 198, - 164, 198, 130, 198, 164, 198, 130, 165, 198, 165, - 198, 198, 198, 163, 163, 0 - + 6, 6, 215, 213, 212, 211, 213, 213, 191, 193, + 203, 204, 189, 187, 200, 188, 6, 195, 2, 2, + 202, 201, 198, 197, 199, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 207, + 190, 208, 196, 205, 192, 206, 194, 212, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 212, 0, 7, 0, 182, 6, 6, 2, + 0, 0, 0, 185, 186, 184, 210, 209, 209, 209, + + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 84, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 78, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 33, 209, 31, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 87, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 212, 0, 209, 1, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 84, 209, 209, 209, + + 209, 209, 209, 209, 209, 209, 209, 209, 78, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 33, 209, 31, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 87, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 5, 4, 3, 19, + 209, 32, 100, 209, 209, 209, 209, 209, 209, 101, + 209, 209, 40, 209, 209, 39, 209, 21, 209, 209, + 209, 110, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 37, 209, 183, 105, 209, 209, 209, 209, 209, + + 86, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 8, 96, 209, 209, 209, 209, 209, 28, 209, 175, + 11, 209, 209, 209, 209, 209, 35, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 61, 209, 209, 209, 209, 54, 209, + 116, 209, 209, 209, 20, 209, 209, 209, 209, 209, + 209, 209, 22, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 34, 209, 209, 0, 19, 209, 32, 100, + 209, 209, 209, 209, 209, 209, 101, 209, 209, 40, + 209, 209, 39, 209, 21, 209, 209, 209, 110, 209, + + 209, 209, 209, 209, 209, 209, 209, 209, 37, 209, + 183, 105, 209, 209, 209, 209, 209, 86, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 8, 96, 209, + 209, 209, 209, 209, 28, 209, 175, 11, 209, 209, + 209, 209, 209, 35, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 61, 209, 209, 209, 209, 54, 209, 116, 209, 209, + 209, 20, 209, 209, 209, 209, 209, 209, 209, 22, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 34, + 209, 209, 24, 23, 25, 209, 65, 17, 209, 209, + + 209, 209, 209, 209, 209, 67, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 80, 209, 209, 209, + 209, 209, 209, 209, 115, 209, 209, 209, 77, 209, + 75, 209, 111, 209, 209, 209, 209, 174, 209, 12, + 209, 46, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 89, 209, 209, 90, 209, 209, 209, + 41, 44, 209, 209, 209, 209, 209, 30, 91, 43, + 209, 209, 181, 0, 209, 209, 209, 209, 137, 209, + 138, 209, 209, 209, 88, 209, 209, 114, 79, 106, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 108, + + 209, 24, 23, 25, 209, 65, 17, 209, 209, 209, + 209, 209, 209, 209, 67, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 80, 209, 209, 209, 209, + 209, 209, 209, 115, 209, 209, 209, 77, 209, 75, + 209, 111, 209, 209, 209, 209, 174, 209, 12, 209, + 46, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 89, 209, 209, 90, 209, 209, 209, 41, + 44, 209, 209, 209, 209, 209, 30, 91, 43, 209, + 209, 209, 209, 209, 209, 137, 209, 138, 209, 209, + 209, 88, 209, 209, 114, 79, 106, 209, 209, 209, + + 209, 209, 209, 209, 209, 209, 108, 209, 60, 209, + 209, 58, 209, 93, 55, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 158, 209, 157, + 209, 209, 209, 81, 209, 209, 107, 209, 102, 18, + 209, 209, 209, 97, 209, 63, 209, 209, 95, 16, + 209, 209, 29, 15, 209, 109, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 99, 53, 209, + 209, 36, 209, 209, 209, 209, 38, 209, 0, 94, + 209, 13, 209, 209, 47, 209, 45, 209, 209, 85, + 14, 209, 209, 209, 209, 82, 59, 92, 209, 60, + + 209, 209, 58, 209, 93, 55, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 158, 209, + 157, 209, 209, 209, 81, 209, 209, 107, 209, 102, + 18, 209, 209, 209, 97, 209, 63, 209, 209, 95, + 16, 209, 209, 29, 15, 209, 109, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 99, 53, + 209, 209, 36, 209, 209, 209, 209, 38, 209, 94, + 209, 13, 209, 209, 47, 209, 45, 209, 209, 85, + 14, 209, 209, 209, 209, 82, 59, 92, 209, 209, + 42, 146, 209, 144, 145, 57, 209, 209, 209, 209, + + 209, 209, 209, 209, 209, 209, 209, 152, 209, 209, + 209, 209, 139, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 10, 112, 142, 140, 141, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 73, 178, 209, + 69, 209, 209, 209, 209, 180, 98, 113, 209, 209, + 9, 147, 148, 209, 209, 209, 209, 71, 209, 42, + 146, 209, 144, 145, 57, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 152, 209, 209, 209, + 209, 139, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 10, 112, 142, 140, 141, 209, 209, 209, + + 209, 209, 209, 209, 209, 209, 73, 178, 209, 69, + 209, 209, 209, 209, 98, 113, 209, 209, 9, 147, + 148, 209, 209, 209, 209, 71, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 62, 209, 153, 209, 159, + 209, 209, 151, 26, 209, 209, 209, 209, 209, 209, + 209, 209, 122, 123, 209, 209, 209, 209, 172, 209, + 170, 209, 209, 161, 179, 209, 27, 209, 52, 209, + 209, 209, 134, 209, 209, 209, 209, 136, 135, 132, + 133, 117, 118, 119, 209, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 62, 209, 153, 209, 159, 209, + + 209, 151, 26, 209, 209, 209, 209, 209, 209, 209, + 209, 122, 123, 209, 209, 209, 209, 172, 209, 170, + 209, 209, 161, 179, 209, 27, 209, 52, 209, 209, + 209, 134, 209, 209, 209, 209, 136, 135, 132, 133, + 117, 118, 119, 209, 209, 209, 209, 66, 68, 76, + 209, 209, 209, 209, 209, 209, 209, 160, 83, 209, + 56, 209, 120, 209, 209, 209, 209, 209, 171, 209, + 209, 169, 162, 121, 103, 209, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 66, 68, + 76, 209, 209, 209, 209, 209, 209, 209, 160, 83, + + 209, 56, 209, 120, 209, 209, 209, 209, 209, 171, + 209, 209, 169, 162, 121, 103, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 150, 209, 209, 64, + 209, 209, 209, 209, 154, 155, 209, 209, 209, 49, + 209, 163, 209, 209, 167, 209, 209, 124, 209, 209, + 209, 209, 209, 209, 104, 150, 209, 209, 64, 209, + 209, 209, 209, 154, 155, 209, 209, 209, 49, 209, + 163, 209, 209, 167, 209, 209, 124, 209, 209, 209, + 209, 209, 209, 104, 143, 149, 74, 70, 72, 156, + 209, 176, 209, 50, 209, 209, 209, 173, 168, 177, + + 209, 129, 125, 128, 209, 130, 209, 143, 149, 74, + 70, 72, 156, 209, 176, 209, 50, 209, 209, 209, + 173, 168, 177, 209, 129, 125, 128, 209, 130, 209, + 209, 51, 209, 209, 209, 209, 127, 126, 209, 51, + 209, 209, 209, 209, 127, 126, 48, 209, 209, 209, + 209, 48, 209, 209, 209, 209, 209, 165, 209, 131, + 209, 165, 209, 131, 166, 209, 166, 209, 209, 209, + 164, 164, 0 } ; static yyconst flex_int32_t yy_ec[256] = @@ -529,17 +537,17 @@ 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 4, 1, 5, 6, 7, 8, 1, 1, 9, - 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 19, 19, 19, 19, 19, 20, 20, 21, 22, 23, - 24, 25, 1, 1, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 35, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 53, 54, 55, 1, 26, 27, 28, 29, + 1, 4, 1, 5, 6, 7, 8, 9, 1, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 20, 20, 21, 20, 20, 22, 22, 23, 24, 25, + 26, 27, 1, 1, 28, 29, 30, 31, 32, 33, + 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 37, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 1, 28, 29, 30, 31, - 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 35, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 56, 1, 57, 1, 1, 1, 1, 1, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 37, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 58, 59, 60, 61, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -556,1043 +564,1104 @@ 1, 1, 1, 1, 1 } ; -static yyconst flex_int32_t yy_meta[58] = +static yyconst flex_int32_t yy_meta[62] = { 0, 1, 2, 3, 2, 1, 1, 4, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, - 6, 1, 1, 1, 1, 7, 7, 7, 7, 7, - 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 1, 1, 1, 1, 1, 1, 1, 5, 5, 5, + 5, 5, 6, 1, 1, 1, 1, 7, 7, 7, + 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, - 1, 1, 1, 1, 9, 1, 1 + 8, 8, 1, 1, 1, 1, 9, 1, 1, 1, + 1 } ; -static yyconst flex_int16_t yy_base[1305] = +static yyconst flex_int16_t yy_base[1382] = { 0, - 0, 56, 3238, 3239, 57, 3239, 3232, 3233, 3239, 3239, - 3239, 3239, 3239, 3239, 3239, 45, 3239, 92, 51, 3239, - 3239, 48, 3239, 3211, 106, 71, 114, 130, 128, 115, - 131, 74, 146, 3227, 109, 162, 155, 151, 159, 171, - 180, 192, 197, 168, 139, 212, 175, 113, 3239, 3239, - 3239, 3239, 3239, 3239, 72, 221, 210, 259, 248, 213, - 236, 237, 263, 274, 108, 173, 260, 276, 294, 299, - 302, 322, 319, 331, 348, 310, 355, 311, 363, 73, - 3228, 3239, 3229, 3239, 106, 360, 381, 62, 308, 0, - 3239, 3239, 3239, 3239, 3224, 129, 228, 217, 375, 167, - - 214, 222, 265, 256, 376, 368, 295, 307, 365, 387, - 405, 328, 3223, 278, 384, 111, 388, 383, 385, 397, - 379, 417, 421, 395, 3222, 424, 425, 176, 427, 428, - 434, 431, 435, 436, 438, 439, 441, 446, 447, 445, - 442, 437, 448, 443, 450, 451, 472, 484, 244, 458, - 455, 489, 482, 485, 487, 507, 491, 492, 490, 493, - 3221, 495, 498, 500, 499, 501, 509, 511, 502, 513, - 126, 3206, 110, 3239, 539, 541, 544, 546, 545, 549, - 551, 557, 547, 570, 569, 572, 577, 580, 577, 609, - 548, 611, 614, 617, 618, 619, 621, 626, 629, 638, - - 641, 644, 648, 654, 656, 660, 665, 666, 669, 671, - 673, 690, 691, 695, 700, 692, 710, 711, 721, 717, - 727, 728, 730, 738, 739, 745, 778, 743, 748, 756, - 758, 750, 766, 771, 789, 769, 787, 796, 807, 811, - 813, 817, 818, 820, 822, 826, 828, 829, 844, 507, - 578, 0, 3219, 636, 3218, 3217, 496, 676, 616, 585, - 688, 715, 3216, 624, 775, 3215, 699, 653, 3214, 519, - 3213, 647, 719, 620, 3212, 754, 749, 786, 791, 833, - 835, 838, 554, 841, 3211, 839, 845, 3210, 846, 847, - 849, 859, 856, 3209, 848, 857, 865, 860, 866, 870, - - 871, 873, 877, 3208, 3207, 879, 880, 881, 887, 304, - 890, 3206, 888, 891, 896, 899, 900, 3205, 904, 903, - 909, 912, 897, 907, 915, 684, 918, 919, 922, 924, - 923, 925, 931, 935, 936, 946, 940, 948, 3204, 949, - 3203, 954, 955, 3202, 956, 957, 961, 959, 960, 964, - 965, 3201, 966, 967, 969, 970, 972, 973, 974, 976, - 978, 3200, 977, 993, 3185, 982, 1004, 1005, 1007, 1016, - 1017, 1020, 1022, 1024, 1025, 1028, 1029, 1032, 1033, 1044, - 1052, 1053, 1056, 1055, 1059, 1060, 1061, 1062, 1063, 1064, - 1068, 1071, 1072, 1081, 1083, 1096, 1087, 1099, 1102, 1104, - - 1107, 1112, 1115, 1119, 1124, 1127, 1128, 1132, 1135, 1136, - 1140, 1147, 1145, 1158, 1152, 1162, 1163, 1165, 1167, 1171, - 1178, 1183, 1184, 1186, 1187, 1191, 1193, 1196, 1212, 1202, - 1211, 1213, 1214, 1221, 1223, 1224, 1217, 1243, 1244, 1245, - 1248, 1251, 1254, 1250, 1256, 1261, 1269, 1271, 1293, 1274, - 1291, 1294, 1295, 1299, 1300, 1301, 1302, 1303, 1304, 1310, - 1311, 1320, 1331, 1327, 1332, 1335, 1338, 1339, 1347, 1343, - 1351, 1359, 1355, 1363, 1367, 1368, 1376, 3198, 3197, 3196, - 980, 3195, 3194, 1001, 1079, 1000, 998, 1111, 1241, 1137, - 3193, 1384, 1084, 1348, 1323, 1350, 1360, 1175, 1284, 1108, - - 1375, 3192, 1194, 1220, 1378, 1379, 1130, 1386, 1394, 3191, - 1380, 1292, 1080, 3190, 1388, 3189, 1312, 3188, 1391, 1396, - 1397, 1407, 3187, 1401, 3186, 1263, 1408, 1410, 1411, 1412, - 1416, 1420, 1421, 1422, 1425, 3185, 1427, 1428, 3184, 1431, - 1434, 1436, 3183, 3182, 1440, 1441, 1442, 1450, 3181, 1444, - 3180, 1451, 1452, 3239, 0, 1453, 1454, 1455, 1459, 3179, - 3178, 1458, 1461, 1465, 3177, 1464, 1470, 3176, 3175, 3174, - 1467, 1468, 1473, 1476, 1478, 1481, 1479, 1484, 1485, 3173, - 1483, 1487, 1495, 1505, 1510, 1511, 1512, 1513, 1514, 1517, - 1518, 1520, 1521, 1522, 1523, 1560, 1540, 1541, 1549, 1551, - - 1548, 1558, 1561, 1553, 1569, 1576, 1577, 1586, 1589, 1597, - 1599, 1604, 1605, 1607, 1609, 1608, 1614, 1615, 1617, 1616, - 1625, 1632, 1633, 1635, 1636, 1637, 1644, 1645, 1648, 1653, - 1654, 1655, 1661, 1656, 1664, 1674, 1676, 1677, 1681, 1684, - 1685, 1696, 1701, 1704, 1705, 1707, 1708, 1709, 1711, 1712, - 1713, 1730, 1724, 1732, 1733, 1736, 1740, 1739, 1745, 1741, - 1751, 1752, 1756, 1757, 1758, 1760, 1761, 1768, 1773, 1777, - 1784, 1785, 1788, 1789, 1790, 1792, 1793, 1797, 1805, 1809, - 1812, 1801, 1813, 3172, 1587, 1683, 3171, 1817, 3170, 3169, - 1494, 1546, 1734, 746, 1533, 1808, 1627, 1810, 1825, 1530, - - 1652, 1820, 3168, 1829, 3167, 1579, 1831, 1834, 3166, 1814, - 1836, 3165, 1840, 3164, 3163, 1844, 1842, 3162, 1845, 3161, - 1847, 3160, 3159, 1849, 1851, 3158, 3157, 1853, 3156, 1860, - 1702, 1854, 1680, 1852, 1863, 1856, 1855, 1862, 1864, 3155, - 3154, 3153, 1868, 1865, 1867, 1870, 3152, 1873, 3155, 3150, - 1878, 3149, 1889, 3148, 1893, 3147, 1879, 1894, 3146, 3139, - 1896, 1898, 1900, 1903, 3130, 3120, 1905, 1906, 1907, 1908, - 1913, 1912, 1918, 1914, 1915, 1920, 1937, 1940, 1942, 1943, - 1944, 1947, 1948, 1949, 1950, 1952, 1968, 1953, 1974, 1975, - 1976, 1977, 1981, 1980, 1983, 1993, 1998, 1999, 2000, 2001, - - 2002, 2008, 2005, 2011, 2009, 2017, 2024, 2026, 2027, 2028, - 2030, 2039, 2043, 2045, 2049, 2046, 2050, 2056, 2058, 2061, - 2071, 2067, 2073, 2074, 2078, 2086, 2089, 2095, 2096, 2099, - 2101, 2105, 2107, 2108, 2112, 2111, 2116, 2120, 2127, 2132, - 2133, 2135, 2137, 2139, 2140, 2142, 2145, 2148, 2155, 2157, - 2160, 2165, 1923, 3119, 3118, 2018, 3117, 3112, 3094, 2077, - 2129, 2033, 2164, 2065, 2020, 2170, 2152, 2168, 2172, 2136, - 2068, 2176, 2177, 2180, 2181, 3090, 2184, 2185, 2188, 2189, - 1965, 2186, 2193, 2194, 3087, 3086, 3084, 3083, 3081, 2195, - 2196, 2198, 2197, 2199, 2200, 2202, 2201, 3079, 3075, 2204, - - 2206, 2214, 2219, 3239, 3074, 3073, 2247, 3070, 3062, 3031, - 2220, 2083, 2222, 2223, 2950, 2226, 2224, 2227, 2230, 2239, - 2243, 2249, 2256, 2252, 2261, 2282, 2265, 2271, 2294, 2295, - 2297, 2298, 2300, 2299, 2307, 2303, 2304, 2315, 2258, 2324, - 2327, 2328, 2330, 2332, 2334, 2350, 2351, 2352, 2354, 2355, - 2356, 2357, 2362, 2363, 2373, 2367, 2374, 2375, 2380, 2379, - 2383, 2385, 2401, 2391, 2402, 2403, 2406, 2407, 2414, 2409, - 2410, 2411, 2418, 2428, 2433, 2437, 2438, 2264, 2232, 2254, - 2251, 2326, 2384, 2443, 2431, 2233, 2948, 2292, 2439, 2310, - 2893, 2446, 2457, 2850, 2844, 2458, 2459, 2430, 2461, 2441, - - 2467, 2378, 2843, 2471, 2472, 2473, 2704, 2474, 2697, 2476, - 2477, 2610, 2478, 2556, 2479, 2549, 2480, 2487, 2488, 2483, - 2486, 2490, 2491, 2506, 2505, 2500, 2498, 2494, 2408, 2390, - 2492, 2508, 2509, 2489, 2525, 2526, 2527, 2528, 2529, 2530, - 2531, 2533, 2536, 2538, 2546, 2553, 2554, 2557, 2559, 2566, - 2574, 2577, 2578, 2582, 2581, 2583, 2584, 2585, 2590, 2593, - 2586, 2603, 2606, 2611, 2614, 2615, 2619, 2621, 2622, 2623, - 2627, 2630, 2632, 2638, 2639, 2640, 2647, 2648, 2650, 2651, - 2655, 2666, 2667, 2668, 2674, 2643, 2518, 2507, 2331, 2319, - 2124, 2555, 2631, 2663, 2658, 2675, 2676, 2382, 2076, 2021, - - 2679, 1941, 1924, 2683, 2684, 2565, 2685, 1786, 2302, 2562, - 1781, 1769, 1714, 1686, 2686, 2687, 2689, 2690, 2692, 2694, - 2695, 2696, 2701, 2700, 2703, 2712, 2715, 2719, 2727, 2730, - 2732, 2734, 2736, 2737, 2738, 2740, 2742, 2745, 2749, 2753, - 2758, 2765, 2766, 2768, 2771, 2770, 2773, 2778, 2774, 2781, - 2783, 2786, 2793, 2798, 2799, 2801, 2802, 2803, 2804, 2811, - 2819, 1570, 2791, 2796, 1557, 2702, 2809, 2808, 2710, 1550, - 1542, 2824, 2814, 1488, 2827, 2834, 2830, 1486, 2828, 1340, - 2836, 2721, 2839, 2755, 2835, 2845, 1328, 2846, 2847, 2849, - 2854, 2855, 2856, 2871, 2872, 2873, 2874, 2876, 2880, 2877, - - 2881, 2896, 2883, 2898, 2899, 2900, 2901, 2908, 2902, 2917, - 2904, 2921, 2923, 1267, 1266, 1222, 1219, 1091, 1037, 2928, - 2852, 985, 2892, 2905, 2934, 983, 2936, 981, 795, 627, - 2939, 556, 2941, 2940, 2945, 2946, 2947, 2951, 2952, 2953, - 2955, 2956, 2958, 2968, 2971, 2973, 2975, 2976, 2977, 2979, - 2983, 2984, 2986, 2978, 550, 2943, 2981, 2988, 2996, 378, - 367, 3001, 3003, 3005, 3007, 3008, 3011, 3012, 3016, 360, - 3010, 3004, 3020, 3023, 3029, 3034, 3035, 3036, 3038, 3028, - 312, 3032, 179, 3040, 3041, 3057, 3053, 120, 3060, 3063, - 3064, 3065, 3068, 60, 3066, 3239, 3098, 3107, 3113, 3121, - - 3126, 3131, 3134, 3143 + 0, 60, 3436, 3437, 61, 3437, 3430, 3431, 3437, 3437, + 3437, 3437, 3437, 3437, 3437, 3437, 48, 3437, 97, 55, + 3437, 3437, 52, 3437, 3407, 107, 115, 123, 114, 122, + 138, 125, 78, 142, 3425, 153, 164, 137, 144, 171, + 174, 191, 192, 198, 188, 180, 204, 194, 177, 3437, + 3437, 3437, 3437, 3437, 3437, 3437, 3437, 78, 230, 234, + 242, 259, 244, 283, 273, 256, 290, 117, 296, 99, + 285, 297, 303, 317, 326, 337, 226, 327, 295, 364, + 334, 368, 79, 3426, 3437, 3427, 3437, 375, 383, 391, + 68, 226, 0, 3437, 3437, 3437, 3437, 3422, 262, 210, + + 307, 348, 335, 370, 336, 378, 265, 382, 408, 375, + 413, 379, 418, 422, 341, 3421, 345, 414, 424, 419, + 425, 257, 427, 77, 421, 433, 426, 3420, 435, 429, + 249, 328, 431, 451, 436, 452, 186, 471, 442, 472, + 305, 473, 475, 478, 480, 474, 481, 483, 484, 488, + 486, 496, 508, 487, 492, 489, 512, 493, 502, 491, + 536, 506, 522, 497, 539, 3419, 510, 504, 490, 513, + 507, 549, 552, 553, 554, 186, 3402, 555, 3437, 558, + 560, 563, 568, 567, 577, 585, 589, 566, 600, 592, + 599, 602, 604, 617, 633, 606, 612, 621, 634, 631, + + 645, 651, 653, 662, 663, 665, 666, 668, 664, 670, + 676, 677, 685, 690, 700, 695, 709, 719, 707, 722, + 724, 727, 694, 730, 732, 737, 744, 745, 752, 749, + 754, 759, 769, 776, 773, 764, 774, 794, 804, 805, + 806, 807, 808, 813, 811, 825, 826, 835, 837, 836, + 839, 840, 848, 857, 858, 862, 115, 854, 0, 3417, + 569, 3416, 3415, 671, 713, 609, 594, 718, 778, 3414, + 675, 559, 3413, 859, 739, 3412, 834, 3411, 742, 782, + 830, 3410, 831, 570, 860, 870, 879, 884, 572, 772, + 880, 3409, 885, 887, 3408, 888, 889, 891, 890, 893, + + 3407, 897, 896, 898, 901, 899, 902, 906, 900, 903, + 3406, 3405, 909, 907, 908, 921, 928, 184, 931, 3404, + 3403, 912, 918, 913, 949, 922, 3402, 934, 923, 950, + 954, 955, 958, 962, 963, 964, 965, 966, 967, 968, + 971, 974, 969, 975, 976, 982, 985, 977, 3401, 987, + 3400, 989, 980, 990, 3399, 994, 992, 996, 1000, 1006, + 1009, 1012, 3398, 1014, 1016, 1018, 1020, 1021, 1022, 1023, + 1031, 1027, 3397, 1030, 1032, 3380, 1029, 1036, 1039, 1040, + 1041, 1044, 1068, 1069, 1071, 1072, 1073, 1076, 1077, 1079, + 1081, 1080, 1086, 1100, 1101, 1105, 1107, 1108, 1109, 1111, + + 1110, 1112, 1113, 1114, 1120, 1115, 1122, 1132, 1133, 1140, + 1145, 1146, 1152, 1157, 1159, 1164, 1163, 1160, 1166, 1167, + 1170, 1172, 1178, 1177, 1181, 1184, 1196, 1201, 1209, 1210, + 1211, 1215, 1218, 1221, 1220, 1223, 1228, 1233, 1240, 1243, + 1241, 1251, 1247, 1252, 1253, 1255, 1260, 1261, 1265, 1273, + 1284, 1285, 1291, 1290, 1296, 1297, 1299, 1302, 1309, 1304, + 1305, 1311, 1340, 1322, 1339, 1341, 1342, 1344, 1345, 1346, + 1349, 1350, 1351, 1352, 1353, 1359, 1372, 1373, 1374, 1378, + 1381, 1383, 1384, 1385, 1391, 1395, 1396, 1405, 1403, 1406, + 1410, 1423, 3395, 3394, 3393, 1393, 3392, 3391, 1287, 1058, + + 1082, 1398, 1415, 1425, 1418, 3390, 1431, 1048, 1427, 1171, + 1191, 1436, 201, 1192, 1331, 1445, 3389, 1238, 1428, 1430, + 1446, 1433, 1441, 1317, 3388, 1448, 1449, 1450, 3387, 1451, + 3386, 1457, 3385, 1459, 1137, 1463, 1464, 3384, 1473, 3383, + 1476, 3382, 428, 1477, 1478, 1482, 1484, 1487, 1486, 1485, + 1490, 1488, 1489, 3381, 1492, 1493, 3380, 1495, 1499, 1496, + 3379, 3378, 1503, 1497, 1505, 1507, 1504, 3377, 1508, 3376, + 1371, 1516, 3437, 0, 1512, 1520, 1523, 1500, 3375, 1527, + 3374, 1531, 1533, 1535, 3373, 1542, 1543, 3372, 3371, 3370, + 1545, 1544, 1546, 1548, 1547, 1549, 1550, 1553, 1558, 3369, + + 1554, 1566, 1569, 1574, 1584, 1587, 1588, 1591, 1592, 1593, + 1594, 1595, 1596, 1597, 1598, 1605, 1619, 1601, 1623, 1629, + 1631, 1634, 1637, 1644, 1646, 1643, 1657, 1651, 1648, 1665, + 1666, 1669, 1670, 1672, 1675, 1680, 1678, 1695, 1697, 1698, + 1699, 1701, 1702, 1703, 1704, 1716, 1706, 1723, 1726, 1728, + 1729, 1730, 1731, 1734, 1735, 1736, 1738, 1740, 1749, 1755, + 1758, 1760, 1764, 1766, 1769, 1777, 1778, 1779, 1786, 1791, + 1792, 1796, 1798, 1800, 1801, 1799, 1810, 1811, 1813, 1819, + 1822, 1823, 1824, 1828, 1830, 1834, 1841, 1842, 1849, 1853, + 1854, 1855, 1859, 1856, 1860, 1863, 1868, 1878, 1880, 1882, + + 1886, 1883, 1885, 1887, 1888, 1889, 1891, 1895, 3368, 1638, + 1684, 3367, 1897, 3366, 3365, 1565, 1655, 1567, 1266, 1900, + 1908, 1652, 1909, 1921, 1270, 1851, 1788, 3364, 1787, 3363, + 1848, 1923, 1924, 3362, 1925, 1721, 3361, 1916, 3360, 3359, + 1757, 1926, 1927, 3358, 1929, 3351, 1931, 1928, 3342, 3332, + 1933, 1932, 3331, 3330, 1936, 3329, 1942, 1935, 1938, 1943, + 1939, 1950, 1947, 1951, 1955, 1948, 1962, 3324, 3306, 1963, + 1958, 3302, 1966, 1972, 1974, 1975, 3301, 1976, 3304, 3299, + 1979, 3298, 1981, 1982, 3297, 1984, 3296, 1989, 1573, 3295, + 3293, 1990, 1996, 1993, 1994, 3291, 3290, 1995, 1999, 2002, + + 2006, 2010, 2003, 2020, 2024, 2029, 2030, 2032, 2033, 2034, + 2037, 2038, 2039, 2044, 2052, 2056, 2057, 2070, 2071, 2076, + 2081, 2082, 2083, 2084, 2085, 2089, 2090, 2096, 2103, 2107, + 2108, 2113, 2114, 2115, 2116, 2120, 2117, 2121, 2122, 2125, + 2127, 2134, 2139, 2135, 2149, 2152, 2154, 2156, 2157, 2159, + 2164, 2166, 2169, 2174, 2160, 2186, 2187, 2188, 2192, 2193, + 2196, 2201, 2210, 2211, 2215, 2216, 2218, 2219, 2221, 2224, + 2229, 2233, 2238, 2239, 2242, 2248, 2251, 2252, 2253, 2256, + 2260, 2265, 2261, 2271, 2275, 2280, 2283, 2284, 2285, 2102, + 3289, 3288, 2061, 3287, 3285, 3284, 2012, 2007, 2225, 2288, + + 2274, 2025, 2270, 2147, 2289, 2257, 2266, 2146, 2292, 2293, + 2298, 2302, 3280, 2303, 2307, 2308, 2183, 2310, 2059, 2191, + 2315, 2312, 2058, 3279, 3276, 3270, 3266, 3233, 2311, 2317, + 2318, 2319, 2320, 2321, 2322, 2323, 2328, 3230, 3146, 2329, + 3145, 2330, 2331, 2332, 2343, 3437, 3084, 3034, 2333, 2373, + 3032, 3029, 3027, 1319, 2161, 2338, 2214, 3026, 2346, 2341, + 2344, 2351, 2363, 2364, 2374, 2382, 2378, 2386, 2387, 2404, + 2376, 2375, 2410, 2419, 2384, 2422, 2427, 2423, 2430, 2429, + 2431, 2432, 2433, 2434, 2436, 2437, 2455, 2456, 2458, 2466, + 2468, 2470, 2473, 2476, 2478, 2479, 2481, 2483, 2488, 2496, + + 2498, 2500, 2501, 2502, 2505, 2506, 2508, 2511, 2513, 2515, + 2528, 2532, 2533, 2534, 2537, 2538, 2542, 2582, 2545, 2547, + 2555, 2556, 2557, 2560, 2559, 2564, 2356, 2510, 2440, 2565, + 2354, 2349, 2569, 2568, 2441, 3021, 2459, 2536, 2350, 2937, + 2566, 2577, 2934, 2872, 2578, 2583, 2509, 2579, 2584, 2587, + 1616, 2597, 2868, 2865, 2592, 2586, 2607, 2612, 2864, 2617, + 2862, 2622, 2596, 2736, 2658, 2628, 2656, 2629, 2652, 2601, + 2631, 2634, 2635, 2636, 2638, 2640, 2646, 2651, 2650, 2648, + 2595, 2589, 2585, 2523, 2641, 2639, 2644, 2643, 2645, 2649, + 2676, 2677, 2679, 2680, 2681, 2682, 2684, 2685, 2687, 2690, + + 2691, 2688, 2689, 2694, 2709, 2711, 2712, 2717, 2723, 2730, + 2731, 2734, 2735, 2737, 2738, 2740, 2743, 2744, 2757, 2758, + 2761, 2762, 2764, 2767, 2769, 2771, 2776, 2779, 2781, 2784, + 2788, 2789, 2790, 2791, 2796, 2808, 2793, 2798, 2811, 2813, + 2815, 2816, 2821, 2822, 2662, 2708, 2657, 2503, 2395, 2381, + 2732, 2803, 2770, 2820, 2823, 2833, 2834, 2228, 2011, 2835, + 2000, 2841, 1845, 2839, 2842, 2843, 2844, 2845, 1836, 2428, + 2846, 1790, 1781, 1727, 1564, 2850, 2847, 2852, 2853, 2849, + 2851, 2857, 2854, 2859, 2861, 2860, 2874, 2871, 2891, 2893, + 2894, 2896, 2898, 2899, 2901, 2902, 2903, 2904, 2905, 2906, + + 2913, 2908, 2916, 2923, 2926, 2933, 2935, 2938, 2940, 2944, + 2945, 2946, 2947, 2948, 2955, 2957, 2965, 2966, 2967, 2969, + 2970, 2972, 2976, 2979, 2987, 2990, 1563, 2952, 2959, 1561, + 2977, 2984, 2869, 2994, 1560, 1559, 3001, 3004, 3007, 1556, + 3008, 3012, 3005, 3010, 1316, 3011, 3018, 1262, 3017, 3022, + 3023, 2726, 3019, 3024, 1258, 3025, 3039, 3040, 3051, 3053, + 3054, 3052, 3057, 3058, 3059, 3064, 3065, 3071, 3066, 3072, + 3085, 3086, 3089, 3090, 3095, 3091, 3097, 3104, 3103, 3109, + 3098, 3115, 3116, 3126, 1134, 1054, 1047, 1037, 1035, 1034, + 3060, 914, 3108, 905, 3020, 3112, 3130, 771, 673, 672, + + 3133, 565, 562, 498, 3135, 437, 3136, 3137, 3138, 3140, + 3143, 3148, 3149, 3150, 3151, 3152, 3158, 3163, 3169, 3170, + 3171, 3172, 3176, 3178, 3177, 3180, 3181, 3183, 3184, 3189, + 3144, 432, 3190, 3028, 3175, 3201, 430, 367, 3202, 3203, + 3204, 3210, 3211, 3212, 3215, 3216, 190, 3209, 3217, 3221, + 3222, 3223, 3234, 3235, 3237, 3238, 3224, 187, 3241, 131, + 3248, 3252, 3256, 3257, 118, 3255, 3258, 3265, 3261, 3278, + 65, 3267, 3437, 3310, 3319, 3325, 3333, 3338, 3343, 3346, + 3355 } ; -static yyconst flex_int16_t yy_def[1305] = +static yyconst flex_int16_t yy_def[1382] = { 0, - 1296, 1, 1296, 1296, 1296, 1296, 1297, 1298, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1296, 1296, - 1296, 1296, 1296, 1296, 1300, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 59, 1301, 1301, 1301, - 1301, 1301, 59, 59, 1301, 1301, 1301, 1301, 1301, 1296, - 1297, 1296, 1298, 1296, 1296, 1296, 1296, 1296, 1296, 1302, - 1296, 1296, 1296, 1296, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1300, 1303, 1301, 1296, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 184, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1296, - 1296, 1302, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1303, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1296, 1304, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1304, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1296, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 429, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, - 1301, 1301, 1301, 1299, 1299, 1299, 1299, 1299, 1299, 1299, - 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1299, - 1299, 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1301, 1299, - 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1299, 1299, 1301, - 1301, 1299, 1301, 1299, 1301, 0, 1296, 1296, 1296, 1296, - - 1296, 1296, 1296, 1296 + 1373, 1, 1373, 1373, 1373, 1373, 1374, 1375, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1377, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 62, + 1378, 1378, 1378, 1378, 1378, 62, 62, 1378, 1378, 1378, + 1378, 1378, 1373, 1374, 1373, 1375, 1373, 1373, 1373, 1373, + 1373, 1373, 1379, 1373, 1373, 1373, 1373, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1377, 1380, 1378, 1373, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 189, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1373, 1373, 1379, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1380, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1373, 1381, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + + 1376, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1381, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1373, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, 1378, + 1378, 1378, 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, + 1376, 1378, 1378, 1378, 1378, 1378, 1376, 1376, 1376, 1376, + 1378, 1378, 1378, 1378, 1376, 1376, 1378, 1378, 1376, 1378, + 1376, 1378, 0, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373 } ; -static yyconst flex_int16_t yy_nxt[3297] = +static yyconst flex_int16_t yy_nxt[3499] = { 0, 4, 5, 6, 5, 7, 8, 4, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 19, 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, 34, - 49, 50, 51, 52, 4, 53, 54, 55, 80, 55, - 80, 85, 85, 85, 85, 86, 94, 87, 87, 87, - 87, 91, 92, 171, 80, 171, 80, 94, 250, 250, - 94, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, - - 75, 76, 77, 78, 79, 65, 86, 101, 87, 87, - 87, 87, 94, 124, 94, 94, 94, 94, 88, 94, - 94, 94, 85, 85, 85, 85, 94, 171, 174, 171, - 174, 89, 96, 97, 94, 94, 94, 94, 128, 90, - 118, 288, 170, 102, 98, 94, 103, 104, 99, 100, - 105, 119, 94, 106, 120, 109, 110, 94, 107, 111, - 121, 94, 108, 112, 114, 94, 115, 116, 94, 113, - 122, 253, 123, 94, 94, 117, 125, 94, 165, 94, - 135, 94, 94, 126, 127, 94, 94, 129, 133, 137, - 136, 130, 258, 174, 134, 131, 141, 138, 94, 139, - - 140, 132, 207, 94, 142, 147, 163, 143, 164, 148, - 144, 149, 145, 150, 169, 146, 94, 151, 94, 94, - 94, 152, 158, 94, 305, 153, 159, 94, 94, 160, - 174, 154, 155, 174, 94, 156, 161, 166, 162, 259, - 157, 174, 94, 94, 167, 255, 180, 175, 176, 193, - 94, 194, 195, 168, 94, 261, 174, 174, 260, 177, - 196, 197, 94, 178, 179, 94, 200, 254, 174, 94, - 339, 94, 198, 188, 189, 199, 201, 190, 202, 174, - 94, 191, 94, 174, 94, 208, 173, 192, 181, 209, - 262, 182, 183, 210, 174, 184, 174, 264, 185, 211, - - 94, 94, 203, 186, 204, 94, 263, 187, 94, 212, - 94, 205, 206, 94, 174, 213, 94, 94, 94, 174, - 286, 526, 174, 214, 251, 251, 251, 220, 94, 216, - 174, 174, 273, 215, 94, 221, 272, 217, 222, 218, - 219, 223, 174, 224, 230, 173, 225, 226, 231, 244, - 248, 227, 232, 228, 94, 229, 237, 173, 233, 234, - 238, 94, 235, 239, 173, 285, 94, 236, 174, 94, - 240, 94, 241, 94, 94, 174, 85, 85, 85, 85, - 245, 94, 94, 174, 94, 94, 242, 246, 243, 94, - 94, 94, 249, 94, 94, 86, 247, 87, 87, 87, - - 87, 94, 256, 94, 270, 265, 274, 266, 257, 267, - 271, 94, 287, 275, 276, 268, 277, 278, 269, 290, - 279, 289, 295, 94, 292, 291, 280, 94, 281, 282, - 94, 94, 283, 94, 94, 293, 284, 94, 294, 300, - 94, 94, 94, 94, 94, 94, 298, 94, 94, 94, - 299, 94, 94, 94, 94, 301, 94, 94, 307, 296, - 297, 94, 310, 312, 94, 302, 308, 303, 304, 306, - 322, 319, 309, 313, 314, 320, 321, 311, 94, 326, - 315, 316, 318, 327, 324, 317, 323, 325, 94, 340, - 94, 94, 328, 94, 329, 94, 94, 94, 94, 94, - - 330, 94, 94, 341, 94, 94, 94, 94, 94, 332, - 331, 333, 334, 94, 335, 94, 342, 94, 343, 94, - 344, 336, 354, 250, 250, 94, 337, 338, 347, 346, - 352, 345, 348, 351, 479, 358, 349, 353, 363, 355, - 357, 356, 360, 362, 361, 94, 359, 94, 350, 364, - 94, 94, 94, 94, 94, 94, 94, 94, 489, 174, - 94, 174, 94, 94, 174, 174, 174, 174, 174, 174, - 371, 174, 368, 369, 372, 94, 94, 174, 94, 370, - 367, 366, 375, 94, 374, 398, 94, 500, 377, 174, - 174, 94, 174, 373, 251, 251, 251, 174, 376, 378, - - 174, 379, 386, 380, 389, 383, 390, 391, 173, 381, - 392, 384, 382, 385, 482, 94, 393, 94, 394, 395, - 94, 387, 94, 94, 94, 94, 94, 94, 388, 174, - 94, 174, 94, 94, 174, 94, 396, 174, 174, 174, - 397, 174, 94, 481, 94, 400, 174, 94, 401, 174, - 94, 485, 402, 94, 94, 492, 399, 403, 174, 94, - 94, 174, 94, 404, 174, 405, 94, 406, 174, 411, - 407, 94, 94, 412, 174, 94, 174, 94, 478, 94, - 174, 408, 94, 409, 410, 174, 174, 414, 490, 174, - 94, 174, 413, 174, 94, 488, 94, 94, 94, 420, - - 415, 94, 416, 417, 423, 94, 94, 421, 419, 422, - 174, 174, 174, 418, 480, 174, 94, 94, 425, 424, - 174, 94, 432, 94, 483, 94, 487, 94, 426, 427, - 174, 174, 544, 94, 94, 428, 94, 174, 429, 433, - 434, 174, 430, 431, 94, 94, 435, 174, 174, 94, - 174, 94, 94, 484, 94, 94, 94, 491, 174, 174, - 94, 436, 94, 174, 94, 174, 439, 438, 174, 452, - 174, 440, 94, 443, 437, 94, 174, 94, 174, 453, - 441, 94, 442, 444, 94, 455, 174, 456, 457, 174, - 493, 174, 94, 94, 862, 94, 494, 94, 174, 458, - - 486, 94, 94, 445, 454, 446, 447, 174, 448, 174, - 459, 464, 460, 94, 461, 449, 174, 94, 462, 94, - 450, 451, 495, 94, 94, 465, 94, 174, 94, 496, - 463, 174, 94, 174, 94, 94, 467, 174, 174, 94, - 174, 94, 174, 466, 94, 94, 174, 94, 174, 174, - 94, 94, 94, 94, 94, 94, 471, 468, 470, 473, - 469, 474, 94, 94, 174, 94, 94, 472, 502, 476, - 475, 94, 94, 497, 498, 511, 94, 94, 503, 94, - 477, 499, 501, 94, 508, 94, 94, 94, 505, 506, - 512, 504, 507, 94, 94, 517, 94, 94, 509, 510, - - 515, 513, 94, 94, 514, 94, 94, 519, 516, 94, - 94, 518, 524, 94, 516, 94, 525, 520, 94, 527, - 521, 94, 522, 523, 94, 94, 531, 532, 94, 94, - 94, 94, 528, 537, 529, 533, 542, 94, 530, 541, - 534, 94, 94, 536, 538, 535, 94, 539, 554, 555, - 540, 549, 94, 550, 94, 94, 545, 548, 543, 546, - 94, 94, 94, 94, 547, 94, 94, 94, 552, 556, - 94, 94, 94, 94, 551, 94, 94, 553, 94, 94, - 94, 558, 94, 94, 94, 561, 94, 94, 94, 94, - 560, 94, 557, 559, 563, 562, 564, 566, 570, 94, - - 565, 572, 174, 571, 94, 569, 94, 94, 567, 568, - 94, 94, 577, 94, 574, 684, 575, 573, 580, 578, - 576, 579, 94, 94, 174, 174, 94, 174, 94, 581, - 94, 94, 685, 688, 94, 94, 174, 174, 94, 94, - 174, 687, 174, 94, 174, 174, 582, 585, 174, 174, - 94, 586, 174, 174, 583, 584, 589, 590, 94, 94, - 587, 94, 94, 588, 174, 94, 94, 94, 94, 94, - 94, 591, 174, 174, 94, 174, 174, 94, 94, 174, - 174, 174, 174, 174, 174, 94, 94, 94, 174, 94, - 94, 174, 174, 94, 592, 593, 596, 94, 595, 597, - - 594, 174, 94, 174, 599, 94, 718, 174, 94, 600, - 94, 598, 601, 94, 94, 686, 174, 94, 94, 174, - 602, 94, 174, 700, 174, 94, 603, 174, 605, 604, - 94, 606, 174, 94, 94, 174, 94, 607, 94, 174, - 689, 94, 94, 94, 174, 707, 94, 174, 174, 612, - 608, 94, 174, 94, 609, 174, 174, 610, 94, 615, - 174, 713, 611, 613, 94, 174, 692, 174, 94, 94, - 614, 94, 174, 94, 616, 618, 621, 94, 174, 617, - 619, 94, 174, 174, 94, 174, 622, 174, 620, 94, - 94, 174, 94, 94, 623, 620, 624, 94, 174, 94, - - 94, 630, 94, 174, 174, 625, 174, 174, 94, 628, - 626, 174, 629, 174, 627, 631, 174, 94, 94, 94, - 94, 705, 174, 94, 709, 94, 94, 94, 94, 94, - 94, 174, 174, 174, 174, 632, 633, 174, 634, 635, - 636, 174, 641, 174, 174, 640, 646, 94, 637, 94, - 94, 94, 710, 638, 94, 642, 94, 94, 639, 643, - 94, 644, 94, 174, 174, 174, 645, 94, 174, 94, - 174, 174, 94, 94, 174, 94, 174, 94, 653, 726, - 94, 174, 690, 649, 654, 691, 647, 652, 650, 174, - 94, 174, 648, 651, 174, 554, 555, 94, 94, 94, - - 94, 94, 656, 658, 655, 94, 94, 94, 94, 94, - 94, 174, 657, 174, 174, 174, 94, 94, 94, 174, - 174, 174, 174, 174, 174, 706, 94, 660, 717, 94, - 174, 174, 663, 94, 94, 659, 662, 94, 94, 661, - 174, 94, 664, 665, 94, 94, 94, 174, 666, 94, - 720, 174, 174, 94, 94, 174, 94, 94, 174, 174, - 667, 94, 702, 174, 668, 94, 94, 174, 672, 94, - 669, 174, 674, 94, 94, 174, 671, 701, 670, 174, - 673, 94, 94, 174, 94, 94, 94, 174, 174, 704, - 94, 679, 94, 703, 94, 675, 174, 94, 680, 676, - - 94, 677, 94, 94, 708, 678, 681, 94, 712, 682, - 693, 694, 683, 94, 94, 695, 94, 94, 94, 716, - 719, 711, 94, 696, 697, 698, 94, 94, 94, 714, - 721, 94, 699, 94, 94, 715, 724, 94, 723, 722, - 94, 730, 94, 729, 725, 733, 94, 94, 94, 727, - 94, 735, 731, 728, 734, 732, 94, 94, 94, 94, - 94, 94, 739, 740, 94, 94, 736, 94, 737, 738, - 94, 94, 741, 94, 94, 745, 94, 743, 744, 94, - 746, 748, 94, 742, 94, 94, 754, 94, 747, 94, - 94, 94, 94, 94, 94, 751, 750, 753, 752, 758, - - 94, 94, 757, 759, 755, 756, 764, 174, 765, 760, - 761, 94, 762, 766, 767, 174, 94, 94, 94, 94, - 94, 763, 768, 94, 94, 174, 94, 94, 94, 94, - 174, 174, 174, 174, 174, 859, 94, 174, 174, 94, - 174, 174, 174, 174, 770, 769, 94, 94, 94, 774, - 771, 777, 94, 773, 94, 94, 94, 94, 772, 94, - 174, 174, 775, 94, 94, 776, 94, 94, 174, 174, - 786, 174, 868, 174, 863, 94, 94, 789, 174, 785, - 174, 174, 94, 94, 860, 94, 778, 779, 787, 174, - 792, 780, 94, 94, 788, 94, 174, 174, 793, 781, - - 782, 783, 791, 94, 790, 94, 174, 794, 784, 174, - 94, 94, 872, 94, 94, 94, 853, 174, 795, 174, - 94, 94, 94, 94, 174, 174, 797, 174, 174, 174, - 798, 94, 796, 94, 174, 174, 174, 174, 94, 94, - 803, 94, 94, 94, 802, 174, 800, 799, 801, 804, - 94, 94, 174, 174, 94, 174, 174, 174, 94, 94, - 94, 94, 94, 805, 174, 174, 809, 94, 174, 811, - 94, 865, 806, 174, 174, 174, 174, 808, 807, 869, - 94, 174, 94, 94, 174, 815, 94, 94, 810, 94, - 94, 94, 94, 814, 174, 812, 174, 174, 813, 818, - - 816, 174, 94, 817, 174, 174, 820, 94, 94, 819, - 94, 94, 854, 94, 94, 94, 174, 94, 94, 94, - 94, 174, 821, 892, 174, 174, 822, 174, 174, 174, - 94, 174, 174, 174, 825, 824, 94, 823, 94, 94, - 94, 890, 94, 826, 174, 94, 94, 94, 828, 829, - 174, 94, 174, 174, 827, 830, 174, 94, 94, 174, - 174, 174, 94, 94, 94, 174, 94, 94, 831, 833, - 861, 174, 174, 832, 94, 94, 174, 174, 174, 94, - 174, 174, 834, 94, 836, 838, 835, 94, 174, 837, - 94, 94, 94, 174, 94, 94, 94, 174, 94, 94, - - 840, 839, 842, 94, 174, 174, 841, 94, 174, 174, - 174, 94, 174, 174, 94, 94, 94, 174, 94, 94, - 94, 174, 848, 94, 843, 174, 94, 845, 846, 174, - 844, 94, 174, 174, 849, 94, 847, 94, 850, 866, - 94, 851, 94, 855, 856, 870, 94, 875, 94, 864, - 94, 94, 852, 94, 867, 94, 873, 94, 94, 94, - 94, 94, 94, 874, 857, 858, 94, 871, 94, 94, - 94, 94, 883, 94, 94, 879, 94, 880, 876, 94, - 878, 877, 886, 885, 94, 94, 887, 881, 894, 895, - 884, 882, 891, 898, 893, 94, 896, 899, 900, 94, - - 94, 897, 94, 902, 94, 901, 94, 888, 889, 94, - 908, 94, 94, 94, 94, 903, 905, 906, 94, 94, - 94, 94, 907, 911, 94, 910, 94, 174, 174, 94, - 94, 909, 174, 174, 174, 174, 913, 916, 174, 912, - 174, 914, 917, 94, 918, 919, 94, 94, 94, 94, - 94, 978, 915, 94, 94, 94, 94, 174, 94, 94, - 174, 922, 174, 174, 174, 920, 921, 174, 174, 174, - 174, 94, 174, 174, 94, 923, 924, 929, 930, 932, - 94, 94, 94, 94, 926, 927, 94, 94, 174, 94, - 925, 928, 931, 933, 174, 174, 174, 174, 1001, 94, - - 174, 174, 936, 174, 94, 94, 94, 94, 94, 935, - 937, 94, 934, 174, 94, 94, 938, 94, 174, 174, - 174, 174, 174, 94, 94, 174, 94, 94, 174, 174, - 94, 174, 94, 94, 94, 939, 94, 174, 941, 94, - 940, 942, 946, 943, 174, 94, 174, 174, 174, 94, - 174, 94, 94, 944, 979, 94, 94, 945, 982, 174, - 948, 986, 94, 174, 94, 174, 174, 94, 947, 174, - 174, 94, 949, 94, 94, 950, 174, 94, 174, 94, - 94, 174, 94, 94, 94, 953, 957, 174, 954, 94, - 985, 174, 94, 174, 174, 94, 951, 952, 174, 955, - - 956, 94, 94, 961, 958, 94, 174, 94, 959, 174, - 992, 94, 960, 94, 94, 174, 174, 94, 94, 174, - 980, 174, 94, 1029, 962, 174, 94, 174, 174, 963, - 94, 174, 174, 94, 965, 94, 174, 964, 94, 94, - 174, 94, 94, 94, 968, 94, 94, 174, 94, 966, - 967, 94, 174, 174, 94, 174, 969, 174, 94, 174, - 174, 94, 174, 94, 970, 174, 94, 973, 174, 972, - 94, 94, 971, 981, 94, 174, 94, 174, 94, 991, - 174, 975, 94, 94, 974, 174, 94, 94, 988, 983, - 94, 94, 94, 984, 94, 94, 976, 989, 987, 94, - - 94, 94, 94, 94, 94, 94, 94, 94, 94, 997, - 94, 977, 94, 994, 993, 999, 990, 996, 1000, 1002, - 94, 1003, 995, 1007, 998, 94, 94, 1009, 94, 94, - 94, 1013, 94, 94, 1006, 1004, 94, 1005, 94, 94, - 1008, 1011, 1012, 1010, 174, 94, 174, 174, 1014, 94, - 174, 1016, 1015, 94, 1032, 94, 1031, 94, 94, 174, - 94, 1087, 94, 174, 94, 1030, 1033, 94, 1028, 174, - 94, 94, 174, 1094, 1017, 1018, 174, 94, 174, 1019, - 1089, 174, 1088, 1020, 1021, 174, 1036, 1022, 94, 1023, - 1039, 174, 1024, 1025, 1026, 1027, 1035, 1086, 94, 1034, - - 94, 94, 174, 94, 94, 94, 94, 1037, 94, 94, - 94, 1038, 1040, 94, 174, 174, 94, 174, 174, 174, - 174, 94, 1041, 174, 174, 94, 1043, 174, 1095, 1177, - 94, 1042, 94, 94, 94, 174, 94, 94, 94, 1048, - 94, 1046, 1044, 1045, 174, 1047, 1049, 174, 174, 1051, - 174, 1050, 174, 1097, 174, 1053, 94, 94, 94, 1054, - 94, 94, 94, 94, 1090, 1055, 1052, 1056, 94, 94, - 174, 174, 174, 94, 174, 174, 174, 174, 1057, 94, - 94, 94, 174, 174, 94, 94, 94, 174, 94, 94, - 94, 94, 1058, 174, 174, 174, 94, 94, 1061, 174, - - 174, 1060, 1063, 174, 1059, 174, 1106, 94, 94, 94, - 1062, 174, 94, 94, 94, 94, 94, 94, 1064, 1065, - 1066, 174, 174, 174, 94, 1171, 174, 174, 1067, 174, - 174, 174, 1091, 1068, 94, 1070, 94, 94, 174, 94, - 1069, 1071, 1072, 94, 94, 94, 1073, 94, 174, 94, - 1074, 1075, 94, 174, 1076, 173, 1077, 174, 174, 1078, - 1079, 1080, 1081, 94, 94, 94, 1082, 94, 1083, 1093, - 1085, 1102, 1092, 94, 1104, 1098, 1084, 94, 94, 94, - 94, 1096, 94, 94, 94, 94, 94, 1100, 1099, 94, - 1103, 1091, 94, 94, 94, 94, 94, 94, 94, 1101, - - 94, 1108, 1109, 1110, 94, 1111, 94, 1113, 1114, 174, - 1107, 94, 94, 94, 94, 94, 1105, 1126, 1112, 1115, - 1116, 1117, 1118, 1121, 94, 1119, 1120, 1122, 174, 174, - 1123, 94, 94, 94, 94, 94, 94, 94, 1125, 94, - 1164, 1124, 94, 1163, 94, 174, 174, 174, 174, 174, - 174, 174, 94, 174, 1127, 94, 174, 1130, 174, 94, - 94, 94, 94, 94, 1128, 94, 174, 1131, 94, 1133, - 1132, 94, 94, 174, 174, 1129, 1129, 174, 1134, 174, - 94, 1135, 1136, 94, 94, 1137, 174, 94, 94, 94, - 94, 94, 94, 1165, 174, 1138, 94, 174, 174, 94, - - 1178, 174, 174, 174, 174, 174, 174, 1141, 1175, 94, - 174, 1144, 94, 174, 1139, 1142, 94, 94, 1140, 1146, - 94, 94, 1147, 174, 1145, 94, 174, 94, 94, 94, - 1143, 174, 1148, 94, 174, 174, 94, 94, 94, 174, - 1149, 174, 174, 174, 94, 94, 94, 174, 1151, 94, - 174, 1152, 174, 94, 94, 1150, 94, 94, 174, 174, - 174, 94, 1166, 1154, 94, 1155, 1153, 174, 174, 94, - 174, 174, 94, 94, 94, 174, 1158, 1156, 1157, 1159, - 94, 94, 94, 1160, 1162, 94, 174, 174, 174, 94, - 94, 94, 94, 94, 174, 94, 94, 1168, 94, 1167, - - 94, 94, 94, 94, 1169, 1170, 94, 94, 94, 94, - 94, 1172, 1161, 1174, 1173, 1182, 94, 1181, 94, 1184, - 174, 94, 1179, 174, 1180, 94, 1176, 94, 1189, 1186, - 1187, 1216, 174, 94, 1185, 174, 94, 1183, 94, 174, - 94, 1188, 94, 94, 94, 1190, 94, 174, 94, 1229, - 174, 94, 174, 1219, 174, 94, 174, 174, 174, 94, - 174, 94, 174, 1192, 94, 174, 1195, 1196, 1191, 174, - 1193, 94, 94, 174, 94, 1194, 94, 94, 174, 94, - 94, 1198, 1231, 1197, 94, 174, 174, 94, 174, 94, - 174, 174, 94, 174, 174, 1200, 1199, 94, 174, 94, - - 1203, 174, 94, 174, 94, 94, 174, 94, 94, 94, - 94, 1201, 1202, 174, 94, 94, 1204, 94, 174, 174, - 94, 174, 174, 174, 174, 94, 1208, 1207, 1210, 1205, - 94, 174, 1214, 94, 94, 1206, 94, 1215, 1217, 174, - 94, 94, 94, 1211, 1212, 94, 1221, 1209, 1213, 94, - 94, 94, 94, 94, 1218, 94, 94, 1220, 94, 1222, - 94, 94, 94, 1223, 1227, 1228, 174, 174, 1230, 174, - 1224, 1225, 1233, 1226, 174, 174, 174, 94, 94, 94, - 94, 1232, 94, 94, 1236, 1237, 94, 94, 1234, 94, - 1235, 174, 174, 174, 174, 1255, 174, 174, 94, 94, - - 174, 174, 94, 174, 94, 94, 94, 94, 94, 1240, - 94, 94, 1241, 1242, 94, 1239, 174, 1238, 174, 174, - 174, 174, 174, 94, 174, 1243, 1246, 94, 174, 94, - 1248, 1250, 1244, 1245, 94, 1247, 1249, 174, 1257, 1256, - 94, 174, 94, 174, 1251, 94, 94, 94, 1253, 94, - 1252, 94, 94, 94, 94, 1254, 94, 94, 94, 94, - 174, 94, 94, 1258, 94, 174, 174, 174, 1260, 1259, - 1261, 174, 174, 174, 94, 174, 174, 94, 174, 94, - 1262, 94, 94, 94, 94, 94, 1271, 94, 174, 94, - 94, 174, 94, 174, 94, 174, 174, 174, 1263, 174, - - 1266, 1265, 94, 174, 174, 1264, 174, 94, 1267, 94, - 94, 94, 1268, 94, 94, 1269, 94, 94, 94, 1272, - 1270, 174, 94, 174, 1274, 174, 94, 174, 174, 94, - 1273, 174, 174, 1281, 94, 94, 174, 94, 94, 1279, - 94, 94, 94, 1275, 94, 1277, 94, 94, 1276, 174, - 1278, 1280, 1283, 1288, 174, 174, 174, 1289, 174, 94, - 174, 174, 1282, 94, 1285, 1290, 94, 1287, 94, 94, - 94, 94, 94, 174, 94, 1284, 94, 174, 1286, 94, - 94, 94, 1291, 174, 174, 94, 174, 94, 174, 94, - 94, 1292, 94, 94, 1294, 1293, 94, 1295, 81, 81, - - 94, 81, 81, 81, 81, 81, 81, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 95, 95, 94, 95, - 95, 95, 172, 94, 94, 94, 94, 172, 172, 173, - 173, 173, 173, 173, 173, 252, 94, 252, 365, 365, - 365, 365, 365, 749, 749, 94, 749, 749, 749, 749, - 749, 749, 94, 94, 94, 94, 94, 904, 94, 94, - 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, - 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, - 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, - 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, - - 94, 94, 94, 94, 94, 174, 94, 94, 94, 94, - 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, - 94, 94, 94, 94, 94, 94, 174, 94, 94, 94, - 94, 84, 82, 94, 93, 84, 82, 1296, 3, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296 + 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, + 20, 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, 35, 50, 51, 52, 53, 4, 54, 55, 56, + 57, 58, 83, 58, 83, 88, 88, 88, 88, 88, + 89, 97, 90, 90, 90, 90, 90, 94, 95, 176, + 83, 176, 83, 97, 97, 257, 257, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, + + 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + 82, 68, 89, 97, 90, 90, 90, 90, 90, 127, + 97, 97, 302, 97, 97, 91, 214, 178, 97, 97, + 215, 97, 257, 257, 216, 99, 100, 97, 92, 179, + 217, 112, 113, 97, 97, 114, 93, 101, 97, 115, + 97, 102, 103, 104, 105, 116, 124, 106, 107, 97, + 117, 108, 118, 119, 109, 121, 125, 137, 126, 110, + 97, 120, 138, 111, 128, 140, 122, 97, 139, 123, + 97, 129, 130, 97, 131, 141, 97, 176, 132, 176, + 97, 133, 97, 97, 97, 134, 97, 97, 97, 135, + + 97, 146, 543, 142, 97, 136, 320, 97, 175, 147, + 97, 143, 148, 144, 145, 149, 97, 150, 152, 156, + 151, 170, 153, 157, 154, 163, 155, 158, 168, 164, + 169, 171, 165, 159, 160, 174, 97, 161, 172, 166, + 97, 167, 162, 258, 258, 258, 258, 173, 97, 730, + 97, 261, 179, 244, 178, 97, 179, 245, 180, 181, + 246, 178, 97, 97, 179, 97, 179, 247, 97, 248, + 182, 97, 185, 186, 183, 184, 187, 188, 179, 97, + 189, 179, 198, 190, 199, 200, 193, 194, 191, 97, + 195, 97, 192, 201, 196, 179, 97, 208, 299, 312, + + 197, 97, 97, 97, 205, 179, 260, 179, 271, 97, + 202, 97, 179, 97, 206, 218, 207, 179, 179, 179, + 219, 203, 209, 97, 204, 179, 220, 212, 221, 210, + 211, 213, 97, 97, 97, 223, 251, 262, 222, 179, + 97, 97, 97, 224, 227, 225, 226, 97, 179, 179, + 327, 97, 228, 233, 97, 229, 179, 234, 230, 235, + 231, 236, 265, 232, 237, 178, 313, 249, 238, 250, + 97, 268, 239, 97, 97, 255, 97, 263, 240, 241, + 292, 97, 242, 264, 97, 97, 179, 243, 97, 293, + 179, 252, 88, 88, 88, 88, 88, 266, 253, 256, + + 88, 88, 88, 88, 88, 269, 89, 254, 90, 90, + 90, 90, 90, 272, 97, 273, 267, 274, 279, 97, + 97, 270, 281, 275, 97, 97, 276, 97, 97, 282, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + 280, 97, 97, 97, 294, 753, 277, 283, 97, 284, + 285, 290, 278, 286, 296, 291, 295, 97, 97, 287, + 305, 288, 289, 297, 306, 303, 304, 300, 308, 298, + 301, 309, 307, 310, 311, 314, 317, 97, 97, 97, + 97, 97, 323, 315, 97, 318, 97, 97, 324, 97, + 97, 316, 97, 97, 97, 97, 97, 97, 97, 97, + + 319, 321, 97, 97, 97, 328, 329, 331, 97, 330, + 97, 322, 97, 97, 97, 349, 97, 325, 97, 97, + 332, 326, 335, 337, 334, 350, 340, 336, 97, 338, + 333, 339, 368, 355, 358, 342, 341, 343, 344, 351, + 345, 352, 97, 353, 356, 97, 364, 346, 357, 367, + 362, 369, 347, 348, 370, 97, 366, 354, 97, 97, + 97, 97, 363, 359, 97, 97, 97, 360, 97, 97, + 365, 97, 97, 97, 97, 97, 97, 179, 97, 361, + 179, 374, 179, 97, 371, 179, 501, 372, 179, 179, + 179, 97, 375, 379, 382, 97, 373, 380, 97, 179, + + 97, 378, 377, 381, 383, 97, 97, 179, 97, 388, + 97, 179, 97, 493, 179, 97, 386, 514, 97, 509, + 385, 179, 179, 384, 179, 497, 179, 97, 179, 397, + 394, 389, 387, 390, 179, 391, 395, 97, 496, 97, + 97, 392, 396, 179, 393, 409, 400, 398, 401, 402, + 178, 97, 403, 179, 399, 179, 179, 97, 404, 97, + 405, 406, 407, 412, 411, 410, 408, 179, 97, 97, + 97, 97, 97, 179, 97, 179, 97, 97, 97, 97, + 413, 97, 97, 97, 179, 179, 179, 179, 179, 414, + 179, 97, 179, 422, 416, 415, 97, 423, 179, 179, + + 97, 97, 417, 425, 500, 418, 97, 179, 419, 420, + 421, 494, 179, 97, 424, 97, 179, 179, 426, 97, + 427, 428, 179, 430, 97, 97, 445, 429, 97, 179, + 97, 179, 432, 97, 431, 434, 97, 438, 97, 437, + 433, 179, 435, 97, 179, 97, 179, 439, 97, 179, + 97, 97, 179, 495, 179, 97, 498, 436, 97, 179, + 97, 446, 440, 447, 448, 97, 179, 179, 441, 442, + 97, 179, 444, 443, 179, 97, 179, 97, 97, 97, + 97, 179, 97, 503, 97, 505, 179, 452, 97, 454, + 449, 179, 453, 451, 450, 179, 179, 467, 179, 457, + + 97, 466, 455, 459, 456, 460, 461, 515, 462, 458, + 97, 97, 97, 97, 97, 463, 179, 97, 499, 97, + 464, 465, 506, 469, 468, 470, 179, 179, 179, 179, + 179, 97, 97, 179, 476, 179, 97, 97, 477, 471, + 97, 97, 97, 97, 472, 97, 97, 179, 179, 475, + 478, 474, 479, 480, 97, 473, 482, 179, 179, 179, + 481, 179, 179, 97, 97, 97, 97, 507, 97, 508, + 179, 258, 258, 258, 258, 504, 97, 486, 485, 179, + 179, 483, 484, 488, 179, 97, 97, 487, 502, 491, + 97, 97, 489, 97, 97, 97, 97, 97, 510, 97, + + 492, 490, 97, 97, 97, 97, 97, 97, 97, 97, + 511, 97, 97, 97, 97, 97, 517, 523, 97, 97, + 97, 512, 518, 516, 97, 513, 526, 97, 97, 97, + 532, 524, 520, 521, 97, 519, 522, 97, 525, 529, + 97, 527, 528, 530, 534, 533, 536, 538, 537, 531, + 535, 531, 539, 540, 541, 97, 97, 547, 545, 542, + 97, 97, 544, 546, 97, 555, 556, 554, 97, 97, + 97, 97, 97, 97, 97, 97, 548, 97, 549, 550, + 97, 97, 97, 97, 573, 574, 97, 551, 97, 560, + 557, 97, 552, 97, 558, 97, 97, 553, 97, 559, + + 97, 568, 97, 567, 569, 564, 97, 561, 565, 563, + 571, 566, 97, 562, 570, 97, 575, 579, 97, 572, + 97, 577, 97, 576, 97, 581, 97, 97, 97, 97, + 578, 583, 582, 97, 580, 97, 97, 97, 97, 584, + 97, 97, 97, 97, 586, 97, 97, 97, 585, 590, + 97, 179, 592, 97, 97, 591, 589, 587, 179, 588, + 97, 179, 179, 179, 97, 594, 179, 595, 593, 597, + 601, 596, 599, 600, 97, 97, 598, 97, 97, 97, + 602, 603, 97, 97, 604, 97, 97, 97, 97, 725, + 179, 179, 97, 179, 179, 179, 711, 605, 179, 179, + + 606, 179, 179, 179, 610, 609, 97, 97, 179, 607, + 611, 97, 608, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 179, 179, 612, 712, 97, 179, 97, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 97, 97, + 97, 613, 179, 97, 179, 616, 97, 615, 614, 617, + 619, 97, 97, 620, 179, 179, 621, 624, 97, 618, + 623, 622, 179, 97, 748, 97, 97, 179, 179, 97, + 97, 626, 97, 97, 179, 625, 97, 97, 97, 179, + 627, 179, 179, 97, 97, 179, 179, 97, 179, 179, + 97, 632, 179, 628, 179, 635, 629, 97, 97, 179, + + 179, 630, 97, 179, 631, 633, 179, 97, 634, 641, + 636, 638, 727, 637, 639, 97, 97, 97, 179, 643, + 642, 97, 640, 179, 97, 644, 97, 97, 640, 97, + 645, 179, 179, 179, 97, 731, 728, 179, 652, 97, + 179, 646, 179, 179, 97, 179, 97, 97, 647, 97, + 179, 650, 651, 97, 653, 179, 648, 97, 97, 97, + 649, 97, 179, 179, 97, 179, 97, 97, 97, 179, + 734, 97, 97, 179, 179, 179, 97, 179, 657, 97, + 658, 659, 179, 179, 664, 656, 654, 179, 655, 660, + 97, 97, 663, 97, 661, 179, 97, 97, 665, 662, + + 666, 667, 97, 97, 669, 97, 179, 179, 97, 668, + 97, 97, 179, 179, 905, 97, 899, 97, 179, 179, + 710, 179, 97, 97, 179, 97, 179, 179, 97, 670, + 673, 179, 677, 179, 676, 671, 672, 97, 674, 678, + 680, 675, 573, 574, 179, 97, 97, 97, 97, 679, + 97, 97, 97, 682, 681, 97, 97, 97, 97, 97, + 740, 179, 179, 179, 179, 97, 179, 179, 179, 1082, + 732, 179, 179, 179, 179, 179, 684, 97, 97, 97, + 97, 179, 688, 686, 97, 683, 685, 97, 690, 97, + 97, 97, 689, 687, 179, 179, 179, 97, 691, 97, + + 179, 97, 97, 179, 97, 179, 179, 179, 693, 97, + 777, 97, 97, 179, 692, 697, 97, 179, 179, 694, + 698, 97, 699, 696, 97, 179, 695, 179, 179, 97, + 709, 97, 179, 97, 97, 713, 97, 97, 701, 97, + 702, 700, 97, 704, 703, 179, 714, 97, 706, 717, + 705, 97, 97, 707, 97, 97, 97, 97, 726, 718, + 719, 708, 735, 97, 720, 97, 738, 729, 715, 97, + 97, 716, 721, 722, 723, 736, 733, 737, 744, 97, + 742, 724, 97, 97, 97, 745, 739, 743, 97, 741, + 97, 97, 97, 97, 97, 97, 97, 746, 97, 97, + + 747, 97, 97, 97, 751, 97, 97, 750, 749, 97, + 97, 97, 761, 97, 97, 757, 756, 758, 97, 763, + 754, 752, 97, 755, 759, 762, 97, 760, 767, 97, + 768, 775, 764, 97, 769, 765, 766, 97, 770, 97, + 783, 97, 772, 773, 771, 774, 776, 778, 97, 97, + 97, 97, 97, 97, 97, 97, 97, 780, 784, 97, + 97, 785, 97, 781, 97, 97, 97, 97, 782, 97, + 97, 97, 97, 97, 789, 97, 795, 787, 786, 97, + 97, 796, 788, 790, 797, 792, 793, 791, 179, 798, + 97, 179, 794, 97, 97, 799, 179, 97, 97, 97, + + 97, 97, 97, 97, 97, 898, 179, 97, 896, 179, + 179, 97, 952, 179, 179, 179, 179, 179, 179, 179, + 179, 800, 97, 179, 801, 97, 805, 179, 808, 97, + 802, 804, 817, 809, 810, 97, 803, 97, 811, 806, + 97, 179, 807, 97, 97, 179, 812, 813, 814, 97, + 97, 179, 97, 179, 97, 815, 179, 97, 97, 179, + 816, 97, 820, 97, 818, 179, 179, 1165, 179, 890, + 179, 97, 97, 179, 819, 97, 97, 824, 97, 179, + 822, 97, 821, 823, 97, 826, 97, 179, 179, 825, + 97, 179, 179, 827, 179, 897, 828, 179, 902, 829, + + 179, 97, 179, 97, 97, 97, 835, 97, 97, 97, + 97, 833, 97, 831, 830, 891, 832, 179, 834, 179, + 179, 179, 97, 179, 179, 179, 179, 97, 179, 97, + 839, 836, 97, 97, 97, 97, 97, 97, 179, 837, + 97, 97, 97, 838, 97, 179, 97, 844, 179, 840, + 179, 179, 179, 179, 842, 97, 179, 179, 179, 841, + 179, 97, 179, 97, 97, 913, 97, 848, 849, 847, + 97, 179, 97, 843, 845, 97, 852, 179, 850, 846, + 179, 851, 179, 97, 97, 97, 179, 97, 179, 854, + 853, 179, 97, 97, 97, 915, 97, 97, 97, 179, + + 179, 179, 97, 855, 97, 97, 97, 97, 179, 856, + 859, 858, 857, 179, 179, 907, 97, 97, 179, 97, + 179, 179, 179, 179, 860, 97, 866, 908, 97, 97, + 97, 861, 179, 179, 97, 179, 97, 862, 864, 865, + 97, 179, 97, 863, 179, 179, 179, 97, 97, 867, + 179, 97, 179, 869, 97, 97, 179, 97, 868, 97, + 97, 97, 97, 179, 179, 97, 97, 871, 870, 97, + 873, 179, 874, 872, 97, 179, 179, 179, 179, 875, + 906, 179, 179, 909, 97, 179, 97, 879, 97, 97, + 179, 97, 97, 97, 97, 97, 877, 97, 876, 878, + + 179, 97, 179, 97, 179, 179, 97, 179, 179, 179, + 179, 179, 885, 179, 97, 97, 880, 179, 886, 887, + 888, 882, 97, 881, 883, 892, 893, 97, 884, 97, + 97, 97, 97, 97, 97, 97, 889, 97, 97, 97, + 903, 97, 97, 900, 97, 97, 894, 895, 97, 97, + 910, 901, 904, 97, 97, 911, 97, 97, 921, 914, + 912, 97, 917, 918, 97, 929, 924, 925, 97, 97, + 926, 916, 97, 919, 934, 922, 923, 920, 97, 930, + 97, 97, 97, 931, 932, 97, 935, 97, 97, 937, + 97, 927, 928, 938, 933, 97, 97, 941, 936, 97, + + 97, 97, 97, 939, 940, 97, 97, 942, 97, 97, + 944, 948, 97, 97, 943, 950, 97, 97, 97, 947, + 945, 953, 951, 954, 179, 179, 97, 949, 179, 956, + 97, 97, 179, 957, 955, 97, 97, 959, 97, 97, + 97, 960, 179, 97, 97, 97, 179, 958, 961, 962, + 97, 179, 179, 1030, 179, 179, 179, 1029, 97, 179, + 179, 179, 97, 97, 97, 97, 179, 97, 1035, 963, + 964, 967, 966, 965, 179, 972, 97, 97, 179, 179, + 969, 970, 97, 973, 968, 971, 975, 97, 97, 97, + 97, 97, 179, 179, 1051, 97, 97, 976, 179, 1028, + + 974, 1055, 97, 179, 179, 179, 179, 179, 97, 97, + 979, 179, 179, 97, 97, 980, 977, 978, 179, 97, + 97, 97, 97, 97, 981, 179, 97, 97, 97, 179, + 179, 97, 1027, 97, 982, 179, 179, 179, 179, 179, + 97, 97, 179, 179, 179, 97, 983, 179, 990, 179, + 986, 984, 97, 97, 987, 97, 179, 179, 97, 985, + 97, 179, 97, 97, 988, 97, 97, 97, 989, 991, + 97, 179, 97, 993, 179, 97, 179, 992, 179, 179, + 97, 179, 179, 994, 995, 1037, 179, 998, 179, 97, + 1041, 179, 97, 97, 97, 1004, 179, 97, 97, 97, + + 999, 1003, 97, 1083, 1000, 996, 997, 97, 179, 179, + 179, 1001, 1049, 1002, 179, 179, 97, 97, 179, 1007, + 97, 97, 97, 179, 97, 97, 1052, 97, 1006, 1005, + 97, 97, 179, 179, 97, 97, 1008, 179, 179, 97, + 179, 179, 1010, 179, 97, 97, 179, 1009, 97, 1085, + 1011, 179, 1031, 1013, 97, 179, 1012, 97, 97, 97, + 179, 179, 97, 97, 179, 1014, 97, 97, 1016, 1015, + 179, 97, 97, 179, 179, 179, 97, 97, 179, 1018, + 97, 97, 179, 179, 1017, 1019, 97, 179, 1022, 97, + 97, 97, 1020, 179, 97, 97, 1021, 179, 97, 97, + + 1036, 1034, 179, 1039, 97, 179, 179, 179, 97, 97, + 1024, 1040, 1023, 97, 97, 1032, 97, 97, 97, 1033, + 1038, 97, 1025, 97, 97, 97, 97, 97, 97, 97, + 1046, 1043, 1042, 1026, 97, 97, 97, 97, 97, 97, + 1045, 1050, 1044, 1054, 97, 1053, 1059, 97, 1047, 97, + 97, 1061, 97, 1048, 1056, 97, 97, 97, 1058, 1066, + 97, 1057, 97, 179, 1063, 1060, 179, 1062, 179, 97, + 97, 1064, 1068, 179, 1065, 1067, 1086, 1069, 1070, 97, + 97, 97, 97, 1084, 97, 179, 179, 97, 97, 1087, + 97, 1145, 97, 97, 1149, 1156, 179, 179, 179, 1150, + + 179, 97, 1071, 1072, 179, 1095, 179, 1073, 179, 179, + 97, 1074, 1075, 1090, 1091, 1076, 97, 1077, 1092, 1094, + 1078, 1079, 1080, 1081, 1089, 97, 179, 1088, 97, 97, + 1098, 1093, 179, 97, 97, 97, 97, 97, 97, 97, + 97, 179, 97, 97, 179, 179, 97, 97, 1096, 179, + 1097, 179, 179, 179, 179, 179, 179, 1244, 179, 179, + 1105, 97, 97, 1101, 97, 97, 1108, 1099, 1102, 1104, + 1147, 1100, 97, 1103, 97, 1106, 97, 179, 179, 97, + 179, 1107, 97, 1153, 97, 97, 1109, 97, 179, 97, + 179, 1110, 179, 1111, 97, 179, 1112, 1154, 179, 1113, + + 179, 179, 97, 179, 97, 179, 97, 97, 97, 97, + 179, 97, 97, 1114, 97, 97, 97, 97, 179, 97, + 179, 97, 179, 179, 179, 1118, 1115, 179, 179, 97, + 179, 1120, 1116, 179, 97, 179, 1117, 179, 97, 97, + 97, 1146, 97, 97, 97, 1119, 1122, 1121, 97, 1123, + 179, 97, 1161, 97, 179, 179, 179, 1125, 1124, 179, + 179, 97, 97, 97, 179, 97, 97, 179, 1128, 179, + 97, 97, 97, 1127, 97, 97, 1126, 179, 179, 179, + 1155, 179, 179, 97, 97, 97, 179, 1129, 97, 97, + 97, 97, 97, 97, 1144, 97, 1148, 1157, 97, 1142, + + 1151, 97, 97, 97, 179, 1143, 1141, 97, 1152, 1159, + 1158, 1130, 1131, 97, 1162, 1163, 1132, 1168, 97, 1150, + 1133, 1134, 1164, 97, 1135, 1160, 1136, 1166, 97, 1137, + 1138, 1139, 1140, 1167, 97, 97, 1176, 97, 1169, 1173, + 97, 97, 97, 1170, 97, 97, 97, 97, 1171, 97, + 97, 97, 97, 1172, 97, 97, 97, 97, 97, 1174, + 1175, 179, 97, 97, 97, 179, 179, 179, 97, 1178, + 1179, 179, 1177, 1188, 1186, 1187, 1189, 1180, 1182, 1181, + 1183, 1185, 97, 97, 1184, 97, 97, 97, 97, 1190, + 97, 97, 1229, 97, 97, 97, 97, 97, 179, 179, + + 97, 179, 179, 179, 179, 1227, 179, 179, 1192, 179, + 179, 179, 179, 179, 97, 97, 179, 97, 97, 1193, + 1195, 1198, 1194, 97, 1199, 1200, 1191, 1191, 1196, 97, + 1197, 179, 97, 179, 179, 1228, 97, 97, 97, 179, + 97, 97, 97, 97, 97, 179, 97, 1203, 1204, 97, + 97, 1201, 179, 179, 1202, 1305, 179, 179, 1205, 179, + 179, 1207, 179, 97, 97, 179, 179, 97, 97, 1209, + 97, 1210, 1230, 97, 1211, 97, 97, 97, 1208, 179, + 179, 1206, 97, 179, 179, 97, 179, 97, 1212, 179, + 97, 179, 1213, 179, 97, 97, 97, 97, 179, 97, + + 1215, 179, 97, 179, 97, 1214, 179, 1216, 1232, 97, + 179, 179, 179, 179, 97, 179, 1217, 97, 179, 97, + 179, 97, 97, 1219, 1220, 1218, 97, 97, 97, 97, + 179, 1221, 1222, 179, 1223, 179, 1231, 179, 179, 97, + 97, 97, 1224, 179, 179, 97, 1225, 97, 97, 97, + 97, 97, 97, 97, 1234, 97, 97, 97, 97, 97, + 97, 1233, 1226, 97, 1235, 97, 97, 97, 97, 1237, + 97, 97, 1239, 1240, 97, 97, 1250, 97, 97, 1236, + 97, 1238, 179, 1249, 1252, 1247, 1245, 1242, 1241, 1243, + 1246, 1248, 1255, 179, 1254, 1253, 179, 97, 1251, 97, + + 97, 1257, 97, 1256, 97, 97, 1258, 97, 97, 97, + 97, 97, 97, 179, 97, 179, 179, 1289, 179, 97, + 179, 179, 97, 179, 179, 179, 179, 179, 179, 97, + 179, 1260, 97, 1263, 1264, 179, 1259, 1261, 179, 97, + 97, 97, 1262, 97, 97, 179, 97, 1266, 179, 1265, + 97, 97, 97, 97, 97, 179, 1267, 179, 97, 1268, + 179, 97, 179, 97, 1269, 97, 179, 179, 179, 179, + 179, 97, 97, 97, 1273, 97, 97, 179, 97, 179, + 1270, 1271, 97, 97, 1272, 97, 1274, 179, 179, 179, + 97, 179, 179, 97, 179, 1285, 97, 1279, 179, 1278, + + 97, 179, 1286, 1281, 1276, 1275, 1277, 97, 1287, 179, + 97, 97, 179, 97, 97, 1288, 97, 97, 97, 1280, + 1282, 1284, 1283, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 1291, 1292, 97, 1290, + 97, 1293, 1294, 1295, 1300, 97, 97, 179, 1302, 1298, + 1296, 1297, 1303, 1307, 1304, 1299, 1301, 97, 97, 97, + 97, 179, 179, 97, 97, 97, 97, 1306, 1349, 1333, + 97, 97, 97, 179, 179, 179, 179, 97, 97, 179, + 179, 179, 1308, 1309, 1310, 1311, 179, 179, 179, 1331, + 97, 97, 97, 179, 179, 97, 97, 97, 1315, 1314, + + 1312, 97, 1313, 97, 97, 1316, 1317, 179, 179, 97, + 97, 179, 179, 179, 97, 97, 1318, 179, 97, 179, + 179, 97, 97, 1319, 1320, 179, 179, 1328, 1323, 1324, + 1321, 179, 97, 1326, 1322, 1325, 97, 179, 179, 97, + 1327, 97, 97, 97, 97, 1330, 97, 1334, 179, 97, + 97, 97, 97, 1332, 97, 97, 97, 97, 97, 179, + 179, 1335, 179, 1329, 97, 179, 1337, 1338, 1336, 97, + 179, 179, 179, 179, 179, 97, 97, 97, 97, 1339, + 179, 97, 97, 97, 97, 179, 97, 97, 1347, 97, + 97, 179, 179, 179, 179, 97, 97, 1340, 179, 179, + + 179, 1343, 179, 179, 1342, 179, 179, 97, 97, 97, + 97, 179, 1341, 1344, 1345, 97, 97, 97, 97, 1350, + 1346, 97, 97, 97, 179, 179, 179, 97, 97, 97, + 97, 1351, 179, 179, 179, 1348, 97, 179, 179, 97, + 97, 97, 1356, 97, 97, 179, 1352, 97, 1358, 1353, + 1354, 1365, 1357, 1360, 97, 1355, 179, 179, 97, 179, + 179, 97, 97, 97, 97, 1359, 1362, 97, 1366, 1364, + 179, 97, 97, 97, 179, 1367, 97, 1361, 179, 179, + 179, 1363, 97, 1368, 97, 97, 97, 179, 1369, 179, + 97, 97, 1371, 97, 97, 97, 97, 97, 1370, 97, + + 179, 97, 97, 97, 97, 97, 946, 97, 97, 1372, + 84, 84, 97, 84, 84, 84, 84, 84, 84, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 98, 98, + 97, 98, 98, 98, 177, 97, 97, 97, 97, 177, + 177, 178, 178, 178, 178, 178, 178, 259, 97, 259, + 376, 376, 376, 376, 376, 779, 779, 97, 779, 779, + 779, 779, 779, 779, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + + 97, 97, 179, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 179, 97, 97, 97, 97, 87, + 85, 97, 96, 87, 85, 1373, 3, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373 } ; -static yyconst flex_int16_t yy_chk[3297] = +static yyconst flex_int16_t yy_chk[3499] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 5, 2, - 5, 16, 16, 16, 16, 19, 1294, 19, 19, 19, - 19, 22, 22, 55, 80, 55, 80, 26, 88, 88, - 32, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 5, 2, 5, 17, 17, 17, 17, 17, + 20, 1371, 20, 20, 20, 20, 20, 23, 23, 58, + 83, 58, 83, 124, 33, 91, 91, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 18, 26, 18, 18, - 18, 18, 25, 32, 65, 35, 173, 116, 18, 48, - 27, 30, 85, 85, 85, 85, 1288, 171, 65, 171, - 173, 18, 25, 25, 29, 96, 28, 31, 35, 18, - 30, 116, 48, 27, 25, 45, 27, 27, 25, 25, - 27, 30, 33, 27, 30, 28, 28, 38, 27, 28, - 31, 37, 27, 28, 29, 39, 29, 29, 36, 28, - 31, 96, 31, 100, 44, 29, 33, 40, 45, 66, - 38, 47, 128, 33, 33, 1283, 41, 36, 37, 39, - 38, 36, 100, 66, 37, 36, 40, 39, 42, 39, - - 39, 36, 66, 43, 40, 41, 44, 40, 44, 41, - 40, 41, 40, 41, 47, 40, 57, 42, 46, 60, - 101, 42, 43, 98, 128, 42, 43, 56, 102, 43, - 57, 42, 42, 60, 97, 42, 43, 46, 43, 101, - 42, 56, 61, 62, 46, 98, 57, 56, 56, 60, - 149, 60, 60, 46, 59, 102, 61, 62, 101, 56, - 60, 61, 104, 56, 56, 58, 62, 97, 59, 63, - 149, 103, 61, 59, 59, 61, 62, 59, 62, 58, - 64, 59, 68, 63, 114, 67, 67, 59, 58, 67, - 103, 58, 58, 67, 64, 58, 68, 104, 58, 67, - - 69, 107, 63, 58, 64, 70, 103, 58, 71, 68, - 310, 64, 64, 108, 69, 68, 76, 78, 1281, 70, - 114, 310, 71, 69, 89, 89, 89, 71, 72, 70, - 76, 78, 108, 69, 112, 71, 107, 70, 71, 70, - 70, 71, 72, 71, 73, 73, 71, 72, 73, 76, - 78, 72, 73, 72, 75, 72, 74, 74, 73, 73, - 74, 77, 73, 74, 74, 112, 1270, 73, 75, 79, - 74, 109, 74, 1261, 106, 77, 86, 86, 86, 86, - 77, 99, 105, 79, 1260, 121, 75, 77, 75, 118, - 115, 119, 79, 110, 117, 87, 77, 87, 87, 87, - - 87, 124, 99, 120, 106, 105, 109, 105, 99, 105, - 106, 111, 115, 109, 110, 105, 110, 110, 105, 118, - 110, 117, 121, 122, 119, 118, 110, 123, 110, 110, - 126, 127, 111, 129, 130, 120, 111, 132, 120, 124, - 131, 133, 134, 142, 135, 136, 123, 137, 141, 144, - 123, 140, 138, 139, 143, 126, 145, 146, 130, 122, - 122, 151, 132, 133, 150, 127, 130, 127, 127, 129, - 140, 137, 131, 133, 134, 138, 139, 132, 147, 144, - 134, 135, 136, 145, 142, 135, 141, 143, 153, 150, - 148, 154, 146, 155, 146, 152, 159, 157, 158, 160, - - 147, 162, 257, 151, 163, 165, 164, 166, 169, 148, - 147, 148, 148, 156, 148, 167, 152, 168, 152, 170, - 153, 148, 160, 250, 250, 270, 148, 148, 155, 154, - 158, 153, 156, 157, 257, 165, 156, 159, 170, 162, - 164, 163, 167, 169, 168, 175, 166, 176, 156, 170, - 177, 179, 178, 183, 191, 180, 1255, 181, 270, 175, - 283, 176, 1232, 182, 177, 179, 178, 183, 191, 180, - 179, 181, 177, 178, 180, 185, 184, 182, 186, 178, - 176, 175, 182, 187, 181, 191, 188, 283, 183, 185, - 184, 260, 186, 180, 251, 251, 251, 187, 182, 184, - - 188, 184, 187, 184, 189, 185, 189, 189, 189, 184, - 189, 185, 184, 186, 260, 190, 189, 192, 189, 189, - 193, 188, 259, 194, 195, 196, 274, 197, 188, 190, - 264, 192, 198, 1230, 193, 199, 190, 194, 195, 196, - 190, 197, 254, 259, 200, 194, 198, 201, 195, 199, - 202, 264, 196, 272, 203, 274, 193, 197, 200, 268, - 204, 201, 205, 197, 202, 198, 206, 199, 203, 202, - 199, 207, 208, 202, 204, 209, 205, 210, 254, 211, - 206, 200, 258, 201, 201, 207, 208, 205, 272, 209, - 326, 210, 203, 211, 261, 268, 212, 213, 216, 209, - - 206, 214, 206, 206, 211, 267, 215, 209, 208, 210, - 212, 213, 216, 207, 258, 214, 217, 218, 212, 211, - 215, 262, 216, 220, 261, 273, 267, 219, 212, 213, - 217, 218, 326, 221, 222, 213, 223, 220, 214, 217, - 218, 219, 214, 215, 224, 225, 219, 221, 222, 228, - 223, 226, 694, 262, 229, 277, 232, 273, 224, 225, - 276, 220, 230, 228, 231, 226, 223, 222, 229, 228, - 232, 224, 233, 226, 221, 236, 230, 234, 231, 229, - 225, 265, 225, 226, 227, 231, 233, 231, 232, 236, - 276, 234, 278, 237, 694, 235, 277, 279, 227, 232, - - 265, 1229, 238, 227, 230, 227, 227, 237, 227, 235, - 233, 236, 234, 239, 235, 227, 238, 240, 235, 241, - 227, 227, 278, 242, 243, 237, 244, 239, 245, 279, - 235, 240, 246, 241, 247, 248, 239, 242, 243, 280, - 244, 281, 245, 238, 282, 286, 246, 284, 247, 248, - 249, 287, 289, 290, 295, 291, 244, 241, 243, 246, - 242, 247, 293, 296, 249, 292, 298, 245, 286, 249, - 248, 297, 299, 280, 281, 295, 300, 301, 287, 302, - 249, 282, 284, 303, 292, 306, 307, 308, 289, 290, - 295, 287, 291, 309, 313, 299, 311, 314, 292, 293, - - 298, 296, 315, 323, 297, 316, 317, 301, 298, 320, - 319, 300, 308, 324, 299, 321, 309, 302, 322, 311, - 303, 325, 306, 307, 327, 328, 316, 316, 329, 331, - 330, 332, 313, 319, 314, 316, 324, 333, 315, 323, - 316, 334, 335, 317, 320, 316, 337, 321, 336, 336, - 322, 331, 336, 332, 338, 340, 327, 330, 325, 328, - 342, 343, 345, 346, 329, 348, 349, 347, 334, 337, - 350, 351, 353, 354, 333, 355, 356, 335, 357, 358, - 359, 340, 360, 363, 361, 345, 481, 1228, 366, 1226, - 343, 1222, 338, 342, 347, 346, 348, 350, 355, 364, - - 349, 357, 366, 356, 487, 354, 486, 484, 351, 353, - 367, 368, 360, 369, 359, 481, 359, 358, 363, 360, - 359, 361, 370, 371, 367, 368, 372, 369, 373, 364, - 374, 375, 484, 487, 376, 377, 370, 371, 378, 379, - 372, 486, 373, 1219, 374, 375, 367, 372, 376, 377, - 380, 373, 378, 379, 370, 371, 377, 378, 381, 382, - 374, 384, 383, 375, 380, 385, 386, 387, 388, 389, - 390, 380, 381, 382, 391, 384, 383, 392, 393, 385, - 386, 387, 388, 389, 390, 485, 513, 394, 391, 395, - 493, 392, 393, 397, 381, 383, 387, 1218, 386, 389, - - 385, 394, 396, 395, 391, 398, 513, 397, 399, 392, - 400, 390, 393, 401, 500, 485, 396, 488, 402, 398, - 394, 403, 399, 493, 400, 404, 395, 401, 397, 396, - 405, 399, 402, 406, 407, 403, 507, 400, 408, 404, - 488, 409, 410, 490, 405, 500, 411, 406, 407, 405, - 400, 413, 408, 412, 402, 409, 410, 403, 415, 408, - 411, 507, 404, 405, 414, 413, 490, 412, 416, 417, - 406, 418, 415, 419, 408, 410, 412, 420, 414, 409, - 411, 498, 416, 417, 421, 418, 413, 419, 411, 422, - 423, 420, 424, 425, 414, 412, 415, 426, 421, 427, - - 503, 423, 428, 422, 423, 416, 424, 425, 430, 421, - 419, 426, 422, 427, 420, 424, 428, 431, 429, 432, - 433, 498, 430, 437, 503, 1217, 504, 434, 1216, 435, - 436, 431, 429, 432, 433, 426, 427, 437, 428, 429, - 429, 434, 432, 435, 436, 430, 437, 489, 429, 438, - 439, 440, 504, 429, 441, 433, 444, 442, 429, 434, - 443, 435, 445, 438, 439, 440, 436, 446, 441, 526, - 444, 442, 1215, 1214, 443, 447, 445, 448, 444, 526, - 450, 446, 489, 440, 445, 489, 438, 443, 441, 447, - 499, 448, 439, 442, 450, 449, 449, 451, 512, 449, - - 452, 453, 447, 450, 446, 454, 455, 456, 457, 458, - 459, 451, 448, 449, 452, 453, 460, 461, 517, 454, - 455, 456, 457, 458, 459, 499, 462, 453, 512, 495, - 460, 461, 458, 464, 1187, 451, 456, 463, 465, 455, - 462, 466, 459, 460, 467, 468, 1180, 464, 461, 470, - 517, 463, 465, 469, 494, 466, 496, 471, 467, 468, - 462, 473, 495, 470, 463, 472, 497, 469, 468, 474, - 464, 471, 470, 475, 476, 473, 467, 494, 466, 472, - 469, 501, 477, 474, 505, 506, 511, 475, 476, 497, - 492, 473, 508, 496, 515, 471, 477, 519, 473, 472, - - 509, 472, 520, 521, 501, 472, 474, 524, 506, 476, - 492, 492, 477, 522, 527, 492, 528, 529, 530, 511, - 515, 505, 531, 492, 492, 492, 532, 533, 534, 508, - 519, 535, 492, 537, 538, 509, 522, 540, 521, 520, - 541, 530, 542, 529, 524, 532, 545, 546, 547, 527, - 550, 534, 531, 528, 533, 531, 548, 552, 553, 556, - 557, 558, 540, 541, 562, 559, 535, 563, 537, 538, - 566, 564, 542, 571, 572, 548, 567, 546, 547, 573, - 550, 553, 574, 545, 575, 577, 562, 576, 552, 581, - 578, 579, 1178, 582, 1174, 557, 556, 559, 558, 567, - - 691, 583, 566, 571, 563, 564, 576, 582, 577, 572, - 573, 584, 574, 578, 579, 583, 585, 586, 587, 588, - 589, 575, 581, 590, 591, 584, 592, 593, 594, 595, - 585, 586, 587, 588, 589, 691, 700, 590, 591, 695, - 592, 593, 594, 595, 588, 585, 597, 598, 1171, 592, - 589, 594, 692, 591, 601, 599, 1170, 600, 590, 604, - 597, 598, 593, 1165, 602, 593, 596, 603, 601, 599, - 598, 600, 700, 604, 695, 605, 1162, 601, 602, 597, - 596, 603, 606, 607, 692, 706, 596, 596, 599, 605, - 604, 596, 608, 685, 600, 609, 606, 607, 605, 596, - - 596, 596, 603, 610, 602, 611, 608, 607, 596, 609, - 612, 613, 706, 614, 616, 615, 685, 610, 608, 611, - 617, 618, 620, 619, 612, 613, 610, 614, 616, 615, - 611, 621, 609, 697, 617, 618, 620, 619, 622, 623, - 617, 624, 625, 626, 616, 621, 613, 612, 615, 619, - 627, 628, 622, 623, 629, 624, 625, 626, 701, 630, - 631, 632, 634, 621, 627, 628, 626, 633, 629, 630, - 635, 697, 623, 630, 631, 632, 634, 625, 624, 701, - 636, 633, 637, 638, 635, 634, 733, 639, 628, 686, - 640, 641, 1114, 633, 636, 631, 637, 638, 632, 636, - - 635, 639, 642, 635, 640, 641, 638, 643, 731, 637, - 644, 645, 686, 646, 647, 648, 642, 649, 650, 651, - 1113, 643, 639, 733, 644, 645, 641, 646, 647, 648, - 653, 649, 650, 651, 645, 644, 652, 642, 654, 655, - 693, 731, 656, 646, 653, 658, 657, 660, 650, 651, - 652, 659, 654, 655, 649, 652, 656, 661, 662, 658, - 657, 660, 663, 664, 665, 659, 666, 667, 654, 657, - 693, 661, 662, 656, 668, 1112, 663, 664, 665, 669, - 666, 667, 658, 670, 660, 664, 659, 1111, 668, 661, - 671, 672, 1108, 669, 673, 674, 675, 670, 676, 677, - - 666, 665, 669, 678, 671, 672, 668, 682, 673, 674, - 675, 679, 676, 677, 696, 680, 698, 678, 681, 683, - 710, 682, 678, 688, 673, 679, 702, 675, 676, 680, - 674, 699, 681, 683, 679, 704, 677, 707, 680, 698, - 708, 681, 711, 688, 688, 702, 713, 710, 717, 696, - 716, 719, 683, 721, 699, 724, 707, 725, 734, 728, - 732, 737, 736, 708, 688, 688, 730, 704, 738, 735, - 739, 744, 721, 745, 743, 717, 746, 719, 711, 748, - 716, 713, 728, 725, 751, 757, 730, 719, 735, 736, - 724, 719, 732, 739, 734, 753, 737, 743, 744, 755, - - 758, 738, 761, 746, 762, 745, 763, 730, 730, 764, - 757, 767, 768, 769, 770, 748, 751, 753, 772, 771, - 774, 775, 755, 762, 773, 761, 776, 769, 770, 853, - 1103, 758, 772, 771, 774, 775, 764, 770, 773, 763, - 776, 767, 771, 777, 773, 773, 778, 1102, 779, 780, - 781, 853, 768, 782, 783, 784, 785, 777, 786, 788, - 778, 776, 779, 780, 781, 773, 773, 782, 783, 784, - 785, 881, 786, 788, 787, 777, 778, 783, 784, 786, - 789, 790, 791, 792, 780, 781, 794, 793, 787, 795, - 779, 782, 785, 787, 789, 790, 791, 792, 881, 796, - - 794, 793, 792, 795, 797, 798, 799, 800, 801, 791, - 793, 803, 789, 796, 802, 805, 795, 804, 797, 798, - 799, 800, 801, 806, 856, 803, 865, 1100, 802, 805, - 807, 804, 808, 809, 810, 796, 811, 806, 801, 862, - 798, 802, 806, 804, 807, 812, 808, 809, 810, 813, - 811, 814, 816, 804, 856, 815, 817, 804, 862, 812, - 810, 865, 818, 813, 819, 814, 816, 820, 809, 815, - 817, 864, 813, 822, 871, 815, 818, 821, 819, 823, - 824, 820, 1099, 860, 825, 816, 820, 822, 817, 912, - 864, 821, 826, 823, 824, 827, 815, 815, 825, 818, - - 819, 828, 829, 824, 821, 830, 826, 831, 822, 827, - 871, 832, 823, 833, 834, 828, 829, 836, 835, 830, - 860, 831, 837, 912, 828, 832, 838, 833, 834, 829, - 1091, 836, 835, 839, 831, 861, 837, 830, 840, 841, - 838, 842, 870, 843, 837, 844, 845, 839, 846, 833, - 835, 847, 840, 841, 848, 842, 839, 843, 867, 844, - 845, 849, 846, 850, 841, 847, 851, 846, 848, 845, - 863, 852, 842, 861, 868, 849, 866, 850, 869, 870, - 851, 848, 872, 873, 847, 852, 874, 875, 867, 863, - 877, 878, 882, 863, 879, 880, 851, 868, 866, 883, - - 884, 890, 891, 893, 892, 894, 895, 897, 896, 877, - 900, 852, 901, 873, 872, 879, 869, 875, 880, 882, - 902, 883, 874, 892, 878, 903, 911, 894, 913, 914, - 917, 900, 916, 918, 891, 884, 919, 890, 979, 986, - 893, 896, 897, 895, 917, 920, 916, 918, 901, 921, - 919, 903, 902, 907, 916, 922, 914, 981, 924, 920, - 980, 979, 923, 921, 939, 913, 919, 925, 911, 922, - 978, 927, 924, 986, 907, 907, 923, 928, 939, 907, - 981, 925, 980, 907, 907, 927, 925, 907, 926, 907, - 927, 928, 907, 907, 907, 907, 924, 978, 988, 923, - - 929, 930, 926, 931, 932, 934, 933, 926, 1109, 936, - 937, 926, 928, 935, 929, 930, 990, 931, 932, 934, - 933, 938, 929, 936, 937, 1090, 931, 935, 988, 1109, - 940, 930, 982, 941, 942, 938, 943, 1089, 944, 936, - 945, 934, 932, 933, 940, 935, 937, 941, 942, 940, - 943, 938, 944, 990, 945, 942, 946, 947, 948, 943, - 949, 950, 951, 952, 982, 944, 941, 945, 953, 954, - 946, 947, 948, 956, 949, 950, 951, 952, 946, 955, - 957, 958, 953, 954, 1002, 960, 959, 956, 1098, 961, - 983, 962, 947, 955, 957, 958, 1030, 964, 955, 960, - - 959, 954, 957, 961, 953, 962, 1002, 963, 965, 966, - 956, 964, 967, 968, 1029, 970, 971, 972, 958, 959, - 960, 963, 965, 966, 973, 1098, 967, 968, 963, 970, - 971, 972, 983, 964, 974, 966, 998, 985, 973, 975, - 965, 969, 969, 976, 977, 989, 969, 1000, 974, 984, - 969, 969, 992, 975, 969, 969, 969, 976, 977, 969, - 969, 969, 969, 993, 996, 997, 973, 999, 974, 985, - 976, 998, 984, 1001, 1000, 992, 975, 1004, 1005, 1006, - 1008, 989, 1010, 1011, 1013, 1015, 1017, 996, 993, 1020, - 999, 984, 1021, 1018, 1019, 1034, 1022, 1023, 1031, 997, - - 1028, 1005, 1006, 1008, 1027, 1010, 1026, 1013, 1015, 1034, - 1004, 1025, 1024, 1088, 1032, 1033, 1001, 1034, 1011, 1017, - 1018, 1019, 1020, 1023, 1087, 1021, 1022, 1023, 1032, 1033, - 1031, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1033, 1042, - 1088, 1032, 1043, 1087, 1044, 1035, 1036, 1037, 1038, 1039, - 1040, 1041, 1045, 1042, 1035, 1016, 1043, 1038, 1044, 1046, - 1047, 1092, 1014, 1048, 1036, 1049, 1045, 1039, 1110, 1042, - 1040, 1106, 1050, 1046, 1047, 1037, 1038, 1048, 1043, 1049, - 1051, 1044, 1046, 1052, 1053, 1047, 1050, 1055, 1054, 1056, - 1057, 1058, 1061, 1092, 1051, 1050, 1059, 1052, 1053, 1060, - - 1110, 1055, 1054, 1056, 1057, 1058, 1061, 1053, 1106, 1062, - 1059, 1056, 1063, 1060, 1051, 1054, 1012, 1064, 1052, 1059, - 1065, 1066, 1060, 1062, 1058, 1067, 1063, 1068, 1069, 1070, - 1055, 1064, 1062, 1071, 1065, 1066, 1072, 1093, 1073, 1067, - 1064, 1068, 1069, 1070, 1074, 1075, 1076, 1071, 1067, 1086, - 1072, 1069, 1073, 1077, 1078, 1065, 1079, 1080, 1074, 1075, - 1076, 1081, 1093, 1072, 1095, 1073, 1071, 1077, 1078, 1094, - 1079, 1080, 1082, 1083, 1084, 1081, 1076, 1074, 1075, 1077, - 1085, 1096, 1097, 1077, 1086, 1101, 1082, 1083, 1084, 1104, - 1105, 1107, 1115, 1116, 1085, 1117, 1118, 1095, 1119, 1094, - - 1120, 1121, 1122, 1009, 1096, 1097, 1124, 1123, 1166, 1125, - 1007, 1101, 1085, 1105, 1104, 1118, 1169, 1117, 1126, 1120, - 1124, 1127, 1115, 1125, 1116, 1128, 1107, 1182, 1125, 1122, - 1123, 1166, 1126, 1129, 1121, 1127, 1130, 1119, 1131, 1128, - 1132, 1124, 1133, 1134, 1135, 1126, 1136, 1129, 1137, 1182, - 1130, 1138, 1131, 1169, 1132, 1139, 1133, 1134, 1135, 1140, - 1136, 1184, 1137, 1131, 1141, 1138, 1134, 1135, 1130, 1139, - 1132, 1142, 1143, 1140, 1144, 1133, 1146, 1145, 1141, 1147, - 1149, 1139, 1184, 1136, 1148, 1142, 1143, 1150, 1144, 1151, - 1146, 1145, 1152, 1147, 1149, 1143, 1142, 1163, 1148, 1153, - - 1147, 1150, 1164, 1151, 1154, 1155, 1152, 1156, 1157, 1158, - 1159, 1144, 1145, 1153, 1168, 1167, 1148, 1160, 1154, 1155, - 1173, 1156, 1157, 1158, 1159, 1161, 1156, 1155, 1158, 1153, - 1172, 1160, 1163, 1175, 1179, 1154, 1177, 1164, 1167, 1161, - 1176, 1185, 1181, 1159, 1160, 1183, 1173, 1157, 1161, 1003, - 995, 1186, 1188, 1189, 1168, 1190, 994, 1172, 1221, 1175, - 1191, 1192, 1193, 1176, 1179, 1181, 1188, 1189, 1183, 1190, - 1176, 1176, 1186, 1177, 1191, 1192, 1193, 1194, 1195, 1196, - 1197, 1185, 1198, 1200, 1192, 1193, 1199, 1201, 1189, 1203, - 1190, 1194, 1195, 1196, 1197, 1221, 1198, 1200, 1223, 991, - - 1199, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1209, 1198, - 1211, 1224, 1199, 1201, 1208, 1195, 1202, 1194, 1204, 1205, - 1206, 1207, 1209, 1210, 1211, 1202, 1203, 1212, 1208, 1213, - 1207, 1209, 1202, 1202, 1220, 1205, 1208, 1210, 1224, 1223, - 1225, 1212, 1227, 1213, 1210, 1231, 1234, 1233, 1212, 1256, - 1211, 1235, 1236, 1237, 987, 1220, 915, 1238, 1239, 1240, - 1234, 1241, 1242, 1225, 1243, 1235, 1236, 1237, 1231, 1227, - 1233, 1238, 1239, 1240, 1244, 1241, 1242, 1245, 1243, 1246, - 1240, 1247, 1248, 1249, 1254, 1250, 1256, 1257, 1244, 1251, - 1252, 1245, 1253, 1246, 1258, 1247, 1248, 1249, 1241, 1250, - - 1245, 1244, 1259, 1251, 1252, 1243, 1253, 1262, 1247, 1263, - 1272, 1264, 1251, 1265, 1266, 1253, 1271, 1267, 1268, 1257, - 1254, 1262, 1269, 1263, 1259, 1264, 1273, 1265, 1266, 1274, - 1258, 1267, 1268, 1272, 1280, 1275, 1269, 910, 1282, 1267, - 1276, 1277, 1278, 1262, 1279, 1265, 1284, 1285, 1264, 1275, - 1266, 1271, 1274, 1280, 1276, 1277, 1278, 1282, 1279, 1287, - 1284, 1285, 1273, 1286, 1277, 1284, 1289, 1279, 909, 1290, - 1291, 1292, 1295, 1287, 1293, 1276, 908, 1286, 1278, 906, - 905, 899, 1286, 1290, 1291, 898, 1295, 889, 1293, 888, - 887, 1289, 886, 885, 1292, 1291, 876, 1293, 1297, 1297, - - 859, 1297, 1297, 1297, 1297, 1297, 1297, 1298, 1298, 1298, - 1298, 1298, 1298, 1298, 1298, 1298, 1299, 1299, 858, 1299, - 1299, 1299, 1300, 857, 855, 854, 766, 1300, 1300, 1301, - 1301, 1301, 1301, 1301, 1301, 1302, 765, 1302, 1303, 1303, - 1303, 1303, 1303, 1304, 1304, 760, 1304, 1304, 1304, 1304, - 1304, 1304, 759, 756, 754, 752, 750, 749, 747, 742, - 741, 740, 729, 727, 726, 723, 722, 720, 718, 715, - 714, 712, 709, 705, 703, 690, 689, 687, 684, 580, - 570, 569, 568, 565, 561, 560, 551, 549, 544, 543, - 539, 536, 525, 523, 518, 516, 514, 510, 502, 491, - - 483, 482, 480, 479, 478, 365, 362, 352, 344, 341, - 339, 318, 312, 305, 304, 294, 288, 285, 275, 271, - 269, 266, 263, 256, 255, 253, 172, 161, 125, 113, - 95, 83, 81, 34, 24, 8, 7, 3, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, - 1296, 1296, 1296, 1296, 1296, 1296 + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 19, 26, 19, 19, 19, 19, 19, 33, + 29, 27, 124, 68, 1365, 19, 70, 70, 30, 28, + 70, 32, 257, 257, 70, 26, 26, 1360, 19, 68, + 70, 29, 29, 38, 31, 29, 19, 26, 34, 29, + 39, 26, 26, 27, 28, 29, 32, 28, 28, 36, + 30, 28, 30, 30, 28, 31, 32, 38, 32, 28, + 37, 30, 38, 28, 34, 39, 31, 40, 38, 31, + 41, 34, 34, 49, 36, 39, 46, 176, 36, 176, + 318, 37, 137, 1358, 45, 37, 1347, 42, 43, 37, + + 48, 41, 318, 40, 44, 37, 137, 513, 49, 41, + 47, 40, 41, 40, 40, 41, 100, 41, 42, 43, + 41, 46, 42, 43, 42, 44, 42, 43, 45, 44, + 45, 47, 44, 43, 43, 48, 59, 43, 47, 44, + 60, 44, 43, 92, 92, 92, 92, 47, 61, 513, + 63, 100, 59, 77, 77, 131, 60, 77, 59, 59, + 77, 77, 66, 122, 61, 62, 63, 77, 99, 77, + 59, 107, 60, 61, 59, 59, 61, 61, 66, 65, + 61, 62, 63, 61, 63, 63, 62, 62, 61, 64, + 62, 71, 61, 63, 62, 65, 67, 66, 122, 131, + + 62, 79, 69, 72, 65, 64, 99, 71, 107, 73, + 64, 141, 67, 101, 65, 71, 65, 79, 69, 72, + 71, 64, 67, 74, 64, 73, 71, 69, 72, 67, + 67, 69, 75, 78, 132, 73, 79, 101, 72, 74, + 81, 103, 105, 73, 74, 73, 73, 115, 75, 78, + 141, 117, 74, 75, 102, 74, 81, 75, 74, 75, + 74, 75, 103, 74, 76, 76, 132, 78, 76, 78, + 80, 105, 76, 1338, 82, 81, 104, 102, 76, 76, + 115, 110, 76, 102, 106, 112, 80, 76, 108, 117, + 82, 80, 88, 88, 88, 88, 88, 104, 80, 82, + + 89, 89, 89, 89, 89, 106, 90, 80, 90, 90, + 90, 90, 90, 108, 109, 108, 104, 108, 110, 111, + 118, 106, 112, 108, 113, 120, 108, 125, 114, 112, + 119, 121, 127, 123, 543, 130, 1337, 133, 1332, 126, + 111, 129, 135, 1306, 118, 543, 109, 113, 139, 113, + 113, 114, 109, 113, 120, 114, 119, 134, 136, 113, + 126, 113, 113, 121, 126, 125, 125, 123, 129, 121, + 123, 130, 127, 130, 130, 133, 135, 138, 140, 142, + 146, 143, 139, 134, 144, 136, 145, 147, 139, 148, + 149, 134, 151, 154, 150, 156, 169, 160, 155, 158, + + 136, 138, 152, 164, 1304, 142, 143, 145, 159, 144, + 168, 138, 162, 171, 153, 154, 167, 140, 157, 170, + 146, 140, 149, 150, 148, 155, 152, 149, 163, 151, + 147, 151, 169, 158, 160, 153, 152, 153, 153, 156, + 153, 157, 161, 157, 158, 165, 164, 153, 159, 168, + 162, 170, 153, 153, 171, 172, 167, 157, 173, 174, + 175, 178, 163, 161, 180, 272, 181, 161, 1303, 182, + 165, 1302, 188, 184, 183, 261, 284, 178, 289, 161, + 180, 175, 181, 185, 172, 182, 272, 173, 188, 184, + 183, 186, 175, 182, 184, 187, 174, 183, 190, 185, + + 267, 181, 180, 183, 185, 191, 189, 186, 192, 188, + 193, 187, 196, 261, 190, 266, 187, 289, 197, 284, + 186, 191, 189, 185, 192, 267, 193, 198, 196, 192, + 190, 189, 187, 189, 197, 189, 190, 200, 266, 195, + 199, 189, 191, 198, 189, 196, 194, 193, 194, 194, + 194, 201, 194, 200, 193, 195, 199, 202, 194, 203, + 194, 194, 195, 200, 199, 198, 195, 201, 204, 205, + 209, 206, 207, 202, 208, 203, 210, 264, 1300, 1299, + 201, 271, 211, 212, 204, 205, 209, 206, 207, 202, + 208, 213, 210, 207, 203, 202, 214, 207, 211, 212, + + 223, 216, 204, 210, 271, 204, 215, 213, 205, 206, + 206, 264, 214, 219, 208, 217, 223, 216, 211, 265, + 211, 211, 215, 213, 268, 218, 223, 212, 220, 219, + 221, 217, 215, 222, 214, 216, 224, 219, 225, 218, + 215, 218, 217, 226, 220, 275, 221, 219, 279, 222, + 227, 228, 224, 265, 225, 230, 268, 217, 229, 226, + 231, 224, 220, 225, 226, 232, 227, 228, 220, 221, + 236, 230, 222, 221, 229, 233, 231, 1298, 290, 235, + 237, 232, 234, 275, 269, 279, 236, 230, 280, 231, + 227, 233, 230, 229, 228, 235, 237, 236, 234, 233, + + 238, 235, 232, 234, 232, 234, 234, 290, 234, 233, + 239, 240, 241, 242, 243, 234, 238, 245, 269, 244, + 234, 234, 280, 238, 237, 238, 239, 240, 241, 242, + 243, 246, 247, 245, 242, 244, 281, 283, 242, 238, + 277, 248, 250, 249, 239, 251, 252, 246, 247, 241, + 242, 240, 243, 244, 253, 239, 246, 248, 250, 249, + 245, 251, 252, 254, 255, 274, 285, 281, 256, 283, + 253, 258, 258, 258, 258, 277, 286, 251, 250, 254, + 255, 248, 249, 253, 256, 287, 291, 252, 274, 256, + 288, 293, 254, 294, 296, 297, 299, 298, 285, 300, + + 256, 255, 303, 302, 304, 306, 309, 305, 307, 310, + 286, 1294, 308, 314, 315, 313, 293, 299, 322, 324, + 1292, 287, 294, 291, 323, 288, 302, 316, 326, 329, + 306, 299, 296, 297, 317, 294, 298, 319, 300, 304, + 328, 302, 303, 305, 308, 307, 309, 313, 310, 306, + 308, 305, 314, 315, 316, 325, 330, 324, 322, 317, + 331, 332, 319, 323, 333, 328, 329, 326, 334, 335, + 336, 337, 338, 339, 340, 343, 325, 341, 325, 325, + 342, 344, 345, 348, 346, 346, 353, 325, 346, 333, + 330, 347, 325, 350, 331, 352, 354, 325, 357, 332, + + 356, 341, 358, 340, 342, 337, 359, 334, 338, 336, + 344, 339, 360, 335, 343, 361, 347, 353, 362, 345, + 364, 350, 365, 348, 366, 356, 367, 368, 369, 370, + 352, 358, 357, 372, 354, 377, 374, 371, 375, 359, + 1290, 1289, 378, 1288, 361, 379, 380, 381, 360, 366, + 382, 377, 368, 1287, 508, 367, 365, 362, 378, 364, + 1286, 379, 380, 381, 500, 370, 382, 370, 369, 371, + 375, 370, 372, 374, 383, 384, 371, 385, 386, 387, + 378, 381, 388, 389, 382, 390, 392, 391, 501, 508, + 383, 384, 393, 385, 386, 387, 500, 383, 388, 389, + + 384, 390, 392, 391, 389, 388, 394, 395, 393, 385, + 391, 396, 386, 397, 398, 399, 401, 400, 402, 403, + 404, 406, 394, 395, 392, 501, 405, 396, 407, 397, + 398, 399, 401, 400, 402, 403, 404, 406, 408, 409, + 1285, 394, 405, 535, 407, 398, 410, 397, 396, 400, + 402, 411, 412, 403, 408, 409, 404, 407, 413, 401, + 406, 405, 410, 414, 535, 415, 418, 411, 412, 417, + 416, 410, 419, 420, 413, 408, 421, 510, 422, 414, + 411, 415, 418, 424, 423, 417, 416, 425, 419, 420, + 426, 416, 421, 411, 422, 419, 413, 511, 514, 424, + + 423, 414, 427, 425, 415, 416, 426, 428, 417, 423, + 419, 421, 510, 420, 422, 429, 430, 431, 427, 425, + 424, 432, 422, 428, 433, 425, 435, 434, 423, 436, + 426, 429, 430, 431, 437, 514, 511, 432, 435, 438, + 433, 427, 435, 434, 518, 436, 439, 441, 430, 440, + 437, 433, 434, 443, 436, 438, 431, 442, 444, 445, + 432, 446, 439, 441, 1255, 440, 447, 448, 1248, 443, + 518, 449, 719, 442, 444, 445, 725, 446, 442, 450, + 442, 442, 447, 448, 445, 441, 439, 449, 440, 442, + 451, 452, 443, 499, 442, 450, 454, 453, 446, 442, + + 447, 448, 455, 456, 450, 457, 451, 452, 458, 449, + 460, 461, 454, 453, 725, 459, 719, 462, 455, 456, + 499, 457, 1245, 524, 458, 954, 460, 461, 464, 451, + 454, 459, 458, 462, 457, 452, 453, 515, 455, 459, + 461, 456, 463, 463, 464, 465, 463, 466, 467, 460, + 468, 469, 470, 464, 462, 471, 472, 473, 474, 475, + 524, 465, 463, 466, 467, 476, 468, 469, 470, 954, + 515, 471, 472, 473, 474, 475, 467, 571, 477, 478, + 479, 476, 473, 470, 480, 465, 469, 481, 475, 482, + 483, 484, 474, 471, 477, 478, 479, 485, 476, 496, + + 480, 486, 487, 481, 502, 482, 483, 484, 478, 489, + 571, 488, 490, 485, 477, 483, 491, 486, 487, 479, + 484, 503, 485, 482, 505, 489, 481, 488, 490, 492, + 496, 504, 491, 509, 519, 502, 520, 507, 487, 522, + 487, 486, 512, 488, 487, 492, 503, 523, 489, 505, + 488, 516, 521, 491, 526, 527, 528, 530, 509, 507, + 507, 492, 519, 532, 507, 534, 522, 512, 504, 536, + 537, 504, 507, 507, 507, 520, 516, 521, 528, 539, + 527, 507, 541, 544, 545, 530, 523, 527, 546, 526, + 547, 550, 549, 548, 552, 553, 551, 532, 555, 556, + + 534, 558, 560, 564, 539, 559, 578, 537, 536, 563, + 567, 565, 550, 566, 569, 547, 546, 548, 575, 552, + 544, 541, 572, 545, 549, 551, 576, 549, 558, 577, + 559, 567, 553, 580, 560, 555, 556, 582, 563, 583, + 578, 584, 564, 565, 563, 566, 569, 572, 586, 587, + 592, 591, 593, 595, 594, 596, 597, 575, 580, 598, + 601, 582, 1240, 576, 599, 1236, 1235, 1230, 577, 1227, + 1175, 716, 602, 718, 587, 603, 596, 584, 583, 789, + 604, 597, 586, 591, 598, 593, 594, 592, 602, 599, + 605, 603, 595, 606, 607, 601, 604, 608, 609, 610, + + 611, 612, 613, 614, 615, 718, 605, 618, 716, 606, + 607, 616, 789, 608, 609, 610, 611, 612, 613, 614, + 615, 605, 1051, 618, 608, 617, 612, 616, 614, 619, + 609, 611, 618, 616, 616, 620, 610, 621, 616, 613, + 622, 617, 613, 623, 710, 619, 616, 616, 616, 626, + 624, 620, 625, 621, 629, 616, 622, 628, 722, 623, + 617, 717, 621, 627, 619, 626, 624, 1051, 625, 710, + 629, 630, 631, 628, 620, 632, 633, 625, 634, 627, + 623, 635, 622, 624, 637, 628, 636, 630, 631, 627, + 711, 632, 633, 629, 634, 717, 630, 635, 722, 631, + + 637, 638, 636, 639, 640, 641, 637, 642, 643, 644, + 645, 636, 647, 633, 632, 711, 635, 638, 636, 639, + 640, 641, 646, 642, 643, 644, 645, 736, 647, 648, + 644, 639, 649, 1174, 650, 651, 652, 653, 646, 641, + 654, 655, 656, 643, 657, 648, 658, 652, 649, 645, + 650, 651, 652, 653, 648, 659, 654, 655, 656, 646, + 657, 660, 658, 741, 661, 736, 662, 656, 657, 655, + 663, 659, 664, 650, 653, 665, 659, 660, 658, 654, + 661, 658, 662, 666, 667, 668, 663, 1173, 664, 661, + 660, 665, 669, 729, 727, 741, 1172, 670, 671, 666, + + 667, 668, 672, 662, 673, 676, 674, 675, 669, 664, + 668, 667, 665, 670, 671, 727, 677, 678, 672, 679, + 673, 676, 674, 675, 669, 680, 676, 729, 681, 682, + 683, 672, 677, 678, 684, 679, 685, 672, 674, 675, + 686, 680, 1169, 673, 681, 682, 683, 687, 688, 678, + 684, 1163, 685, 681, 731, 689, 686, 726, 680, 690, + 691, 692, 694, 687, 688, 693, 695, 683, 682, 696, + 685, 689, 687, 684, 697, 690, 691, 692, 694, 689, + 726, 693, 695, 731, 698, 696, 699, 694, 700, 702, + 697, 703, 701, 704, 705, 706, 691, 707, 690, 693, + + 698, 708, 699, 713, 700, 702, 720, 703, 701, 704, + 705, 706, 703, 707, 721, 723, 698, 708, 704, 705, + 706, 700, 738, 699, 701, 713, 713, 724, 702, 732, + 733, 735, 742, 743, 748, 745, 708, 747, 752, 751, + 723, 758, 755, 720, 759, 761, 713, 713, 757, 760, + 732, 721, 724, 763, 766, 733, 762, 764, 747, 738, + 735, 765, 743, 745, 771, 758, 752, 755, 767, 770, + 757, 742, 773, 745, 763, 748, 751, 745, 774, 759, + 775, 776, 778, 760, 761, 781, 764, 783, 784, 766, + 786, 757, 757, 767, 762, 788, 792, 773, 765, 794, + + 795, 798, 793, 770, 771, 799, 1161, 774, 800, 803, + 776, 783, 801, 898, 775, 786, 802, 1159, 897, 781, + 778, 792, 788, 793, 800, 803, 804, 784, 801, 795, + 805, 902, 802, 798, 794, 806, 807, 801, 808, 809, + 810, 802, 804, 811, 812, 813, 805, 799, 804, 804, + 814, 806, 807, 898, 808, 809, 810, 897, 815, 811, + 812, 813, 816, 817, 923, 919, 814, 893, 902, 804, + 804, 809, 808, 807, 815, 814, 818, 819, 816, 817, + 811, 812, 820, 815, 810, 813, 817, 821, 822, 823, + 824, 825, 818, 819, 919, 826, 827, 818, 820, 893, + + 816, 923, 828, 821, 822, 823, 824, 825, 890, 829, + 823, 826, 827, 830, 831, 824, 820, 822, 828, 832, + 833, 834, 835, 837, 826, 829, 836, 838, 839, 830, + 831, 840, 890, 841, 827, 832, 833, 834, 835, 837, + 842, 844, 836, 838, 839, 843, 829, 840, 838, 841, + 834, 832, 908, 904, 836, 845, 842, 844, 846, 833, + 847, 843, 848, 849, 836, 850, 855, 955, 836, 839, + 851, 845, 852, 843, 846, 853, 847, 842, 848, 849, + 854, 850, 855, 846, 848, 904, 851, 849, 852, 917, + 908, 853, 856, 857, 858, 855, 854, 920, 859, 860, + + 850, 854, 861, 955, 851, 848, 848, 862, 856, 857, + 858, 852, 917, 853, 859, 860, 863, 864, 861, 858, + 957, 865, 866, 862, 867, 868, 920, 869, 857, 856, + 870, 899, 863, 864, 1158, 871, 861, 865, 866, 872, + 867, 868, 864, 869, 873, 874, 870, 862, 875, 957, + 865, 871, 899, 867, 876, 872, 866, 877, 878, 879, + 873, 874, 880, 906, 875, 869, 881, 883, 873, 871, + 876, 882, 907, 877, 878, 879, 903, 884, 880, 876, + 901, 885, 881, 883, 874, 878, 886, 882, 883, 887, + 888, 889, 879, 884, 900, 905, 882, 885, 909, 910, + + 903, 901, 886, 906, 911, 887, 888, 889, 912, 914, + 885, 907, 884, 915, 916, 900, 918, 929, 922, 900, + 905, 921, 888, 930, 931, 932, 933, 934, 935, 936, + 914, 910, 909, 889, 937, 940, 942, 943, 944, 949, + 912, 918, 911, 922, 956, 921, 932, 960, 915, 945, + 961, 934, 959, 916, 929, 1032, 1039, 962, 931, 942, + 1031, 930, 1027, 960, 936, 933, 961, 935, 959, 963, + 964, 937, 944, 962, 940, 943, 959, 945, 949, 950, + 965, 972, 971, 956, 967, 963, 964, 1150, 966, 962, + 975, 1027, 968, 969, 1031, 1039, 965, 972, 971, 1032, + + 967, 1149, 950, 950, 966, 972, 975, 950, 968, 969, + 970, 950, 950, 968, 969, 950, 973, 950, 969, 971, + 950, 950, 950, 950, 967, 974, 970, 966, 976, 978, + 975, 970, 973, 977, 1170, 980, 979, 981, 982, 983, + 984, 974, 985, 986, 976, 978, 1029, 1035, 973, 977, + 974, 980, 979, 981, 982, 983, 984, 1170, 985, 986, + 983, 987, 988, 978, 989, 1037, 986, 976, 979, 981, + 1029, 977, 990, 980, 991, 984, 992, 987, 988, 993, + 989, 985, 994, 1035, 995, 996, 987, 997, 990, 998, + 991, 988, 992, 989, 999, 993, 990, 1037, 994, 991, + + 995, 996, 1000, 997, 1001, 998, 1002, 1003, 1004, 1148, + 999, 1005, 1006, 992, 1007, 1047, 1028, 1008, 1000, 1009, + 1001, 1010, 1002, 1003, 1004, 1001, 998, 1005, 1006, 1084, + 1007, 1003, 999, 1008, 1011, 1009, 1000, 1010, 1012, 1013, + 1014, 1028, 1038, 1015, 1016, 1002, 1005, 1004, 1017, 1006, + 1011, 1019, 1047, 1020, 1012, 1013, 1014, 1011, 1009, 1015, + 1016, 1021, 1022, 1023, 1017, 1025, 1024, 1019, 1014, 1020, + 1026, 1030, 1041, 1013, 1034, 1033, 1012, 1021, 1022, 1023, + 1038, 1025, 1024, 1042, 1045, 1048, 1026, 1017, 1018, 1046, + 1049, 1083, 1056, 1050, 1025, 1082, 1030, 1041, 1055, 1023, + + 1033, 1081, 1063, 1052, 1018, 1024, 1022, 1070, 1034, 1045, + 1042, 1018, 1018, 1057, 1048, 1049, 1018, 1056, 1058, 1033, + 1018, 1018, 1050, 1060, 1018, 1046, 1018, 1052, 1062, 1018, + 1018, 1018, 1018, 1055, 1066, 1068, 1070, 1071, 1057, 1063, + 1072, 1073, 1074, 1058, 1075, 1086, 1076, 1085, 1060, 1088, + 1087, 1089, 1077, 1062, 1080, 1090, 1079, 1078, 1069, 1066, + 1068, 1086, 1067, 1147, 1065, 1088, 1087, 1089, 1145, 1072, + 1073, 1090, 1071, 1088, 1086, 1087, 1089, 1074, 1076, 1075, + 1077, 1085, 1091, 1092, 1077, 1093, 1094, 1095, 1096, 1090, + 1097, 1098, 1147, 1099, 1102, 1103, 1100, 1101, 1091, 1092, + + 1104, 1093, 1094, 1095, 1096, 1145, 1097, 1098, 1092, 1099, + 1102, 1103, 1100, 1101, 1146, 1105, 1104, 1106, 1107, 1093, + 1096, 1100, 1094, 1108, 1101, 1104, 1091, 1092, 1097, 1109, + 1098, 1105, 1252, 1106, 1107, 1146, 1110, 1111, 1151, 1108, + 1112, 1113, 1064, 1114, 1115, 1109, 1116, 1107, 1108, 1117, + 1118, 1105, 1110, 1111, 1106, 1252, 1112, 1113, 1109, 1114, + 1115, 1111, 1116, 1119, 1120, 1117, 1118, 1121, 1122, 1115, + 1123, 1116, 1151, 1124, 1117, 1125, 1153, 1126, 1114, 1119, + 1120, 1110, 1127, 1121, 1122, 1128, 1123, 1129, 1119, 1124, + 1130, 1125, 1121, 1126, 1131, 1132, 1133, 1134, 1127, 1137, + + 1125, 1128, 1135, 1129, 1138, 1122, 1130, 1127, 1153, 1152, + 1131, 1132, 1133, 1134, 1136, 1137, 1129, 1139, 1135, 1140, + 1138, 1141, 1142, 1131, 1132, 1130, 1154, 1143, 1144, 1155, + 1136, 1133, 1134, 1139, 1135, 1140, 1152, 1141, 1142, 1156, + 1157, 1160, 1136, 1143, 1144, 1164, 1136, 1162, 1165, 1166, + 1167, 1168, 1171, 1177, 1155, 1180, 1176, 1181, 1178, 1179, + 1183, 1154, 1144, 1182, 1156, 1184, 1186, 1185, 1061, 1160, + 1059, 1054, 1164, 1165, 1053, 1233, 1180, 1188, 1044, 1157, + 1187, 1162, 1186, 1179, 1182, 1177, 1171, 1167, 1166, 1168, + 1176, 1178, 1185, 1188, 1184, 1183, 1187, 1189, 1181, 1190, + + 1191, 1187, 1192, 1186, 1193, 1194, 1188, 1195, 1196, 1197, + 1198, 1199, 1200, 1189, 1202, 1190, 1191, 1233, 1192, 1201, + 1193, 1194, 1203, 1195, 1196, 1197, 1198, 1199, 1200, 1204, + 1202, 1193, 1205, 1196, 1197, 1201, 1192, 1194, 1203, 1206, + 1043, 1207, 1195, 1040, 1208, 1204, 1209, 1201, 1205, 1198, + 1210, 1211, 1212, 1213, 1214, 1206, 1203, 1207, 1228, 1205, + 1208, 1215, 1209, 1216, 1206, 1229, 1210, 1211, 1212, 1213, + 1214, 1217, 1218, 1219, 1211, 1220, 1221, 1215, 1222, 1216, + 1207, 1208, 1223, 1231, 1209, 1224, 1212, 1217, 1218, 1219, + 1232, 1220, 1221, 1225, 1222, 1228, 1226, 1221, 1223, 1220, + + 1234, 1224, 1229, 1223, 1218, 1217, 1219, 1237, 1231, 1225, + 1238, 1243, 1226, 1239, 1241, 1232, 1244, 1246, 1242, 1222, + 1224, 1226, 1225, 1249, 1247, 1253, 1295, 1036, 1250, 1251, + 1254, 1256, 958, 953, 1334, 952, 1237, 1238, 951, 1234, + 948, 1239, 1241, 1242, 1246, 1257, 1258, 1256, 1249, 1243, + 1242, 1242, 1250, 1254, 1251, 1244, 1247, 1259, 1262, 1260, + 1261, 1257, 1258, 1263, 1264, 1265, 1291, 1253, 1334, 1295, + 1266, 1267, 1269, 1259, 1262, 1260, 1261, 1268, 1270, 1263, + 1264, 1265, 1257, 1258, 1260, 1261, 1266, 1267, 1269, 1291, + 947, 1271, 1272, 1268, 1270, 1273, 1274, 1276, 1267, 1266, + + 1262, 1275, 1263, 1277, 1281, 1268, 1270, 1271, 1272, 1279, + 1278, 1273, 1274, 1276, 1293, 1280, 1271, 1275, 1296, 1277, + 1281, 1282, 1283, 1271, 1271, 1279, 1278, 1281, 1275, 1276, + 1272, 1280, 1284, 1279, 1273, 1278, 1297, 1282, 1283, 1301, + 1280, 1305, 1307, 1308, 1309, 1283, 1310, 1296, 1284, 1311, + 1331, 941, 939, 1293, 1312, 1313, 1314, 1315, 1316, 1308, + 1309, 1297, 1310, 1282, 1317, 1311, 1305, 1307, 1301, 1318, + 1312, 1313, 1314, 1315, 1316, 1319, 1320, 1321, 1322, 1314, + 1317, 1335, 1323, 1325, 1324, 1318, 1326, 1327, 1331, 1328, + 1329, 1319, 1320, 1321, 1322, 1330, 1333, 1316, 1323, 1325, + + 1324, 1320, 1326, 1327, 1319, 1328, 1329, 1336, 1339, 1340, + 1341, 1330, 1318, 1324, 1328, 1348, 1342, 1343, 1344, 1335, + 1330, 1345, 1346, 1349, 1339, 1340, 1341, 1350, 1351, 1352, + 1357, 1336, 1342, 1343, 1344, 1333, 938, 1345, 1346, 928, + 1353, 1354, 1344, 1355, 1356, 1352, 1339, 1359, 1349, 1341, + 1342, 1357, 1348, 1351, 1361, 1343, 1353, 1354, 1362, 1355, + 1356, 1366, 1363, 1364, 1367, 1350, 1354, 1369, 1359, 1356, + 1361, 1368, 927, 1372, 1362, 1361, 926, 1353, 1363, 1364, + 1367, 1355, 925, 1363, 1370, 924, 913, 1368, 1366, 1372, + 896, 895, 1369, 894, 892, 891, 797, 796, 1368, 791, + + 1370, 790, 787, 785, 782, 780, 779, 777, 772, 1370, + 1374, 1374, 769, 1374, 1374, 1374, 1374, 1374, 1374, 1375, + 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1376, 1376, + 768, 1376, 1376, 1376, 1377, 756, 754, 753, 750, 1377, + 1377, 1378, 1378, 1378, 1378, 1378, 1378, 1379, 749, 1379, + 1380, 1380, 1380, 1380, 1380, 1381, 1381, 746, 1381, 1381, + 1381, 1381, 1381, 1381, 744, 740, 739, 737, 734, 730, + 728, 715, 714, 712, 709, 600, 590, 589, 588, 585, + 581, 579, 570, 568, 562, 561, 557, 554, 542, 540, + 538, 533, 531, 529, 525, 517, 506, 498, 497, 495, + + 494, 493, 376, 373, 363, 355, 351, 349, 327, 321, + 320, 312, 311, 301, 295, 292, 282, 278, 276, 273, + 270, 263, 262, 260, 177, 166, 128, 116, 98, 86, + 84, 35, 25, 8, 7, 3, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, + 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373 } ; @@ -1670,7 +1739,7 @@ void count(); -#line 1674 "lex.yy.c" +#line 1743 "lex.yy.c" #define INITIAL 0 @@ -1860,11 +1929,11 @@ register char *yy_cp, *yy_bp; register int yy_act; -#line 239 "basicParse.l" +#line 247 "basicParse.l" -#line 1868 "lex.yy.c" +#line 1937 "lex.yy.c" if ( !(yy_init) ) { @@ -1918,13 +1987,13 @@ 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 >= 1297 ) + if ( yy_current_state >= 1374 ) 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] != 3239 ); + while ( yy_base[yy_current_state] != 3437 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1950,7 +2019,7 @@ case 1: YY_RULE_SETUP -#line 242 "basicParse.l" +#line 250 "basicParse.l" { char *temp; char *c, *d; @@ -1990,32 +2059,32 @@ YY_BREAK case 2: YY_RULE_SETUP -#line 278 "basicParse.l" +#line 286 "basicParse.l" { count(); yylval.number = atoi(yytext); return B256INTEGER; } YY_BREAK case 3: YY_RULE_SETUP -#line 279 "basicParse.l" +#line 287 "basicParse.l" { count(); yylval.number = strtol(yytext+2, NULL, 16); return B256INTEGER; } YY_BREAK case 4: YY_RULE_SETUP -#line 280 "basicParse.l" +#line 288 "basicParse.l" { count(); yylval.number = strtol(yytext+2, NULL, 8); return B256INTEGER; } YY_BREAK case 5: YY_RULE_SETUP -#line 281 "basicParse.l" +#line 289 "basicParse.l" { count(); yylval.number = strtol(yytext+2, NULL, 2); return B256INTEGER; } YY_BREAK case 6: YY_RULE_SETUP -#line 282 "basicParse.l" +#line 290 "basicParse.l" { count(); yylval.floatnum = atof(yytext); return B256FLOAT; } YY_BREAK case 7: YY_RULE_SETUP -#line 283 "basicParse.l" +#line 291 "basicParse.l" { int len; count(); len = strlen(yytext); yylval.string = strdup(yytext + 1); yylval.string[len - 2] = 0; @@ -2023,966 +2092,1021 @@ YY_BREAK case 8: YY_RULE_SETUP -#line 287 "basicParse.l" +#line 295 "basicParse.l" { count(); return B256TOINT; } YY_BREAK case 9: YY_RULE_SETUP -#line 288 "basicParse.l" +#line 296 "basicParse.l" { count(); return B256TOSTRING; } YY_BREAK case 10: YY_RULE_SETUP -#line 289 "basicParse.l" +#line 297 "basicParse.l" { count(); return B256LENGTH; } YY_BREAK case 11: YY_RULE_SETUP -#line 290 "basicParse.l" +#line 298 "basicParse.l" { count(); return B256MID; } YY_BREAK case 12: YY_RULE_SETUP -#line 291 "basicParse.l" +#line 299 "basicParse.l" { count(); return B256LEFT; } YY_BREAK case 13: YY_RULE_SETUP -#line 292 "basicParse.l" +#line 300 "basicParse.l" { count(); return B256RIGHT; } YY_BREAK case 14: YY_RULE_SETUP -#line 293 "basicParse.l" +#line 301 "basicParse.l" { count(); return B256UPPER; } YY_BREAK case 15: YY_RULE_SETUP -#line 294 "basicParse.l" +#line 302 "basicParse.l" { count(); return B256LOWER; } YY_BREAK case 16: YY_RULE_SETUP -#line 295 "basicParse.l" +#line 303 "basicParse.l" { count(); return B256INSTR; } YY_BREAK case 17: YY_RULE_SETUP -#line 296 "basicParse.l" +#line 304 "basicParse.l" { count(); return B256CEIL; } YY_BREAK case 18: YY_RULE_SETUP -#line 297 "basicParse.l" +#line 305 "basicParse.l" { count(); return B256FLOOR; } YY_BREAK case 19: YY_RULE_SETUP -#line 298 "basicParse.l" +#line 306 "basicParse.l" { count(); return B256ABS; } YY_BREAK case 20: YY_RULE_SETUP -#line 299 "basicParse.l" +#line 307 "basicParse.l" { count(); return B256SIN; } YY_BREAK case 21: YY_RULE_SETUP -#line 300 "basicParse.l" +#line 308 "basicParse.l" { count(); return B256COS; } YY_BREAK case 22: YY_RULE_SETUP -#line 301 "basicParse.l" +#line 309 "basicParse.l" { count(); return B256TAN; } YY_BREAK case 23: YY_RULE_SETUP -#line 302 "basicParse.l" +#line 310 "basicParse.l" { count(); return B256ASIN; } YY_BREAK case 24: YY_RULE_SETUP -#line 303 "basicParse.l" +#line 311 "basicParse.l" { count(); return B256ACOS; } YY_BREAK case 25: YY_RULE_SETUP -#line 304 "basicParse.l" +#line 312 "basicParse.l" { count(); return B256ATAN; } YY_BREAK case 26: YY_RULE_SETUP -#line 305 "basicParse.l" +#line 313 "basicParse.l" { count(); return B256DEGREES; } YY_BREAK case 27: YY_RULE_SETUP -#line 306 "basicParse.l" +#line 314 "basicParse.l" { count(); return B256RADIANS; } YY_BREAK case 28: YY_RULE_SETUP -#line 307 "basicParse.l" +#line 315 "basicParse.l" { count(); return B256LOG; } YY_BREAK case 29: YY_RULE_SETUP -#line 308 "basicParse.l" +#line 316 "basicParse.l" { count(); return B256LOGTEN; } YY_BREAK case 30: YY_RULE_SETUP -#line 309 "basicParse.l" +#line 317 "basicParse.l" { count(); return B256RAND; } YY_BREAK case 31: YY_RULE_SETUP -#line 310 "basicParse.l" +#line 318 "basicParse.l" { count(); return B256PI; } YY_BREAK case 32: YY_RULE_SETUP -#line 311 "basicParse.l" +#line 319 "basicParse.l" { count(); return B256AND; } YY_BREAK case 33: YY_RULE_SETUP -#line 312 "basicParse.l" +#line 320 "basicParse.l" { count(); return B256OR; } YY_BREAK case 34: YY_RULE_SETUP -#line 313 "basicParse.l" +#line 321 "basicParse.l" { count(); return B256XOR; } YY_BREAK case 35: YY_RULE_SETUP -#line 314 "basicParse.l" +#line 322 "basicParse.l" { count(); return B256NOT; } YY_BREAK case 36: YY_RULE_SETUP -#line 315 "basicParse.l" +#line 323 "basicParse.l" { count(); return B256PRINT; } YY_BREAK case 37: YY_RULE_SETUP -#line 316 "basicParse.l" +#line 324 "basicParse.l" { count(); return B256DIM; } YY_BREAK case 38: YY_RULE_SETUP -#line 317 "basicParse.l" +#line 325 "basicParse.l" { count(); return B256REDIM; } YY_BREAK case 39: YY_RULE_SETUP -#line 318 "basicParse.l" +#line 326 "basicParse.l" { count(); return B256CLS; } YY_BREAK case 40: YY_RULE_SETUP -#line 319 "basicParse.l" +#line 327 "basicParse.l" { count(); return B256CLG; } YY_BREAK case 41: YY_RULE_SETUP -#line 320 "basicParse.l" +#line 328 "basicParse.l" { count(); return B256PLOT; } YY_BREAK case 42: YY_RULE_SETUP -#line 321 "basicParse.l" +#line 329 "basicParse.l" { count(); return B256CIRCLE; } YY_BREAK case 43: YY_RULE_SETUP -#line 322 "basicParse.l" +#line 330 "basicParse.l" { count(); return B256RECT; } YY_BREAK case 44: YY_RULE_SETUP -#line 323 "basicParse.l" +#line 331 "basicParse.l" { count(); return B256POLY; } YY_BREAK case 45: YY_RULE_SETUP -#line 324 "basicParse.l" +#line 332 "basicParse.l" { count(); return B256STAMP; } YY_BREAK case 46: YY_RULE_SETUP -#line 325 "basicParse.l" +#line 333 "basicParse.l" { count(); return B256LINE; } YY_BREAK case 47: YY_RULE_SETUP -#line 326 "basicParse.l" +#line 334 "basicParse.l" { count(); return B256SOUND; } YY_BREAK case 48: YY_RULE_SETUP -#line 327 "basicParse.l" +#line 335 "basicParse.l" { count(); return B256FASTGRAPHICS; } YY_BREAK case 49: YY_RULE_SETUP -#line 328 "basicParse.l" +#line 336 "basicParse.l" { count(); return B256GRAPHSIZE; } YY_BREAK case 50: YY_RULE_SETUP -#line 329 "basicParse.l" +#line 337 "basicParse.l" { count(); return B256GRAPHWIDTH; } YY_BREAK case 51: YY_RULE_SETUP -#line 330 "basicParse.l" +#line 338 "basicParse.l" { count(); return B256GRAPHHEIGHT; } YY_BREAK case 52: YY_RULE_SETUP -#line 331 "basicParse.l" +#line 339 "basicParse.l" { count(); return B256REFRESH; } YY_BREAK case 53: YY_RULE_SETUP -#line 332 "basicParse.l" +#line 340 "basicParse.l" { count(); return B256PIXEL; } YY_BREAK case 54: YY_RULE_SETUP -#line 333 "basicParse.l" +#line 341 "basicParse.l" { count(); return B256RGB; } YY_BREAK case 55: YY_RULE_SETUP -#line 334 "basicParse.l" +#line 342 "basicParse.l" { count(); return B256SETCOLOR; } YY_BREAK case 56: YY_RULE_SETUP -#line 335 "basicParse.l" +#line 343 "basicParse.l" { count(); return B256GETCOLOR; } YY_BREAK case 57: YY_RULE_SETUP -#line 336 "basicParse.l" +#line 344 "basicParse.l" { count(); return B256SETCOLOR; } YY_BREAK case 58: YY_RULE_SETUP -#line 337 "basicParse.l" +#line 345 "basicParse.l" { count(); return B256CLEAR; } YY_BREAK case 59: YY_RULE_SETUP -#line 338 "basicParse.l" +#line 346 "basicParse.l" { count(); return B256WHITE; } YY_BREAK case 60: YY_RULE_SETUP -#line 339 "basicParse.l" +#line 347 "basicParse.l" { count(); return B256BLACK; } YY_BREAK case 61: YY_RULE_SETUP -#line 340 "basicParse.l" +#line 348 "basicParse.l" { count(); return B256RED; } YY_BREAK case 62: YY_RULE_SETUP -#line 341 "basicParse.l" +#line 349 "basicParse.l" { count(); return B256DARKRED; } YY_BREAK case 63: YY_RULE_SETUP -#line 342 "basicParse.l" +#line 350 "basicParse.l" { count(); return B256GREEN; } YY_BREAK case 64: YY_RULE_SETUP -#line 343 "basicParse.l" +#line 351 "basicParse.l" { count(); return B256DARKGREEN; } YY_BREAK case 65: YY_RULE_SETUP -#line 344 "basicParse.l" +#line 352 "basicParse.l" { count(); return B256BLUE; } YY_BREAK case 66: YY_RULE_SETUP -#line 345 "basicParse.l" +#line 353 "basicParse.l" { count(); return B256DARKBLUE; } YY_BREAK case 67: YY_RULE_SETUP -#line 346 "basicParse.l" +#line 354 "basicParse.l" { count(); return B256CYAN; } YY_BREAK case 68: YY_RULE_SETUP -#line 347 "basicParse.l" +#line 355 "basicParse.l" { count(); return B256DARKCYAN; } YY_BREAK case 69: YY_RULE_SETUP -#line 348 "basicParse.l" +#line 356 "basicParse.l" { count(); return B256PURPLE; } YY_BREAK case 70: YY_RULE_SETUP -#line 349 "basicParse.l" +#line 357 "basicParse.l" { count(); return B256DARKPURPLE; } YY_BREAK case 71: YY_RULE_SETUP -#line 350 "basicParse.l" +#line 358 "basicParse.l" { count(); return B256YELLOW; } YY_BREAK case 72: YY_RULE_SETUP -#line 351 "basicParse.l" +#line 359 "basicParse.l" { count(); return B256DARKYELLOW; } YY_BREAK case 73: YY_RULE_SETUP -#line 352 "basicParse.l" +#line 360 "basicParse.l" { count(); return B256ORANGE; } YY_BREAK case 74: YY_RULE_SETUP -#line 353 "basicParse.l" +#line 361 "basicParse.l" { count(); return B256DARKORANGE; } YY_BREAK case 75: YY_RULE_SETUP -#line 354 "basicParse.l" +#line 362 "basicParse.l" { count(); return B256GREY; } YY_BREAK case 76: YY_RULE_SETUP -#line 355 "basicParse.l" +#line 363 "basicParse.l" { count(); return B256DARKGREY; } YY_BREAK case 77: YY_RULE_SETUP -#line 356 "basicParse.l" +#line 364 "basicParse.l" { count(); return B256GOTO; } YY_BREAK case 78: YY_RULE_SETUP -#line 357 "basicParse.l" +#line 365 "basicParse.l" { count(); return B256IF; } YY_BREAK case 79: YY_RULE_SETUP -#line 358 "basicParse.l" +#line 366 "basicParse.l" { count(); return B256THEN; } YY_BREAK case 80: YY_RULE_SETUP -#line 359 "basicParse.l" +#line 367 "basicParse.l" { count(); return B256ELSE; } YY_BREAK case 81: YY_RULE_SETUP -#line 360 "basicParse.l" +#line 368 "basicParse.l" { count(); return B256ENDIF; } YY_BREAK case 82: YY_RULE_SETUP -#line 361 "basicParse.l" +#line 369 "basicParse.l" { count(); return B256WHILE; } YY_BREAK case 83: YY_RULE_SETUP -#line 362 "basicParse.l" +#line 370 "basicParse.l" { count(); return B256ENDWHILE; } YY_BREAK case 84: YY_RULE_SETUP -#line 363 "basicParse.l" +#line 371 "basicParse.l" { count(); return B256DO; } YY_BREAK case 85: YY_RULE_SETUP -#line 364 "basicParse.l" +#line 372 "basicParse.l" { count(); return B256UNTIL; } YY_BREAK case 86: YY_RULE_SETUP -#line 365 "basicParse.l" +#line 373 "basicParse.l" { count(); return B256FOR; } YY_BREAK case 87: YY_RULE_SETUP -#line 366 "basicParse.l" +#line 374 "basicParse.l" { count(); return B256TO; } YY_BREAK case 88: YY_RULE_SETUP -#line 367 "basicParse.l" +#line 375 "basicParse.l" { count(); return B256STEP; } YY_BREAK case 89: YY_RULE_SETUP -#line 368 "basicParse.l" +#line 376 "basicParse.l" { count(); return B256NEXT; } YY_BREAK case 90: YY_RULE_SETUP -#line 369 "basicParse.l" +#line 377 "basicParse.l" { count(); return B256OPEN; } YY_BREAK case 91: YY_RULE_SETUP -#line 370 "basicParse.l" +#line 378 "basicParse.l" { count(); return B256READ; } YY_BREAK case 92: YY_RULE_SETUP -#line 371 "basicParse.l" +#line 379 "basicParse.l" { count(); return B256WRITE; } YY_BREAK case 93: YY_RULE_SETUP -#line 372 "basicParse.l" +#line 380 "basicParse.l" { count(); return B256CLOSE; } YY_BREAK case 94: YY_RULE_SETUP -#line 373 "basicParse.l" +#line 381 "basicParse.l" { count(); return B256RESET; } YY_BREAK case 95: YY_RULE_SETUP -#line 374 "basicParse.l" +#line 382 "basicParse.l" { count(); return B256INPUT; } YY_BREAK case 96: YY_RULE_SETUP -#line 375 "basicParse.l" +#line 383 "basicParse.l" { count(); return B256KEY; } YY_BREAK case 97: YY_RULE_SETUP -#line 376 "basicParse.l" +#line 384 "basicParse.l" { count(); return B256GOSUB; } YY_BREAK case 98: YY_RULE_SETUP -#line 377 "basicParse.l" +#line 385 "basicParse.l" { count(); return B256RETURN; } YY_BREAK case 99: YY_RULE_SETUP -#line 378 "basicParse.l" +#line 386 "basicParse.l" { count(); return B256PAUSE; } YY_BREAK case 100: YY_RULE_SETUP -#line 379 "basicParse.l" +#line 387 "basicParse.l" { count(); return B256ASC; } YY_BREAK case 101: YY_RULE_SETUP -#line 380 "basicParse.l" +#line 388 "basicParse.l" { count(); return B256CHR; } YY_BREAK case 102: YY_RULE_SETUP -#line 381 "basicParse.l" +#line 389 "basicParse.l" { count(); return B256TOFLOAT; } YY_BREAK case 103: YY_RULE_SETUP -#line 382 "basicParse.l" +#line 390 "basicParse.l" { count(); return B256READLINE; } YY_BREAK case 104: YY_RULE_SETUP -#line 383 "basicParse.l" +#line 391 "basicParse.l" { count(); return B256WRITELINE; } YY_BREAK case 105: YY_RULE_SETUP -#line 384 "basicParse.l" +#line 392 "basicParse.l" { count(); return B256BOOLEOF; } YY_BREAK case 106: YY_RULE_SETUP -#line 385 "basicParse.l" +#line 393 "basicParse.l" { count(); return B256BOOLTRUE; } YY_BREAK case 107: YY_RULE_SETUP -#line 386 "basicParse.l" +#line 394 "basicParse.l" { count(); return B256BOOLFALSE; } YY_BREAK case 108: YY_RULE_SETUP -#line 387 "basicParse.l" +#line 395 "basicParse.l" { count(); return B256YEAR; } YY_BREAK case 109: YY_RULE_SETUP -#line 388 "basicParse.l" +#line 396 "basicParse.l" { count(); return B256MONTH; } YY_BREAK case 110: YY_RULE_SETUP -#line 389 "basicParse.l" +#line 397 "basicParse.l" { count(); return B256DAY; } YY_BREAK case 111: YY_RULE_SETUP -#line 390 "basicParse.l" +#line 398 "basicParse.l" { count(); return B256HOUR; } YY_BREAK case 112: YY_RULE_SETUP -#line 391 "basicParse.l" +#line 399 "basicParse.l" { count(); return B256MINUTE; } YY_BREAK case 113: YY_RULE_SETUP -#line 392 "basicParse.l" +#line 400 "basicParse.l" { count(); return B256SECOND; } YY_BREAK case 114: YY_RULE_SETUP -#line 393 "basicParse.l" +#line 401 "basicParse.l" { count(); return B256TEXT; } YY_BREAK case 115: YY_RULE_SETUP -#line 394 "basicParse.l" +#line 402 "basicParse.l" { count(); return B256FONT; } YY_BREAK case 116: YY_RULE_SETUP -#line 395 "basicParse.l" +#line 403 "basicParse.l" { count(); return B256SAY; } YY_BREAK case 117: YY_RULE_SETUP -#line 396 "basicParse.l" +#line 404 "basicParse.l" { count(); return B256WAVPLAY; } YY_BREAK case 118: YY_RULE_SETUP -#line 397 "basicParse.l" +#line 405 "basicParse.l" { count(); return B256WAVSTOP; } YY_BREAK case 119: YY_RULE_SETUP -#line 398 "basicParse.l" +#line 406 "basicParse.l" { count(); return B256WAVWAIT; } YY_BREAK case 120: YY_RULE_SETUP -#line 399 "basicParse.l" +#line 407 "basicParse.l" { count(); return B256GETSLICE; } YY_BREAK case 121: YY_RULE_SETUP -#line 400 "basicParse.l" +#line 408 "basicParse.l" { count(); return B256PUTSLICE; } YY_BREAK case 122: YY_RULE_SETUP -#line 401 "basicParse.l" +#line 409 "basicParse.l" { count(); return B256IMGLOAD; } YY_BREAK case 123: YY_RULE_SETUP -#line 402 "basicParse.l" -{ count(); return B256SPRITEDIM; } +#line 410 "basicParse.l" +{ count(); return B256IMGSAVE; } YY_BREAK case 124: YY_RULE_SETUP -#line 403 "basicParse.l" -{ count(); return B256SPRITELOAD; } +#line 411 "basicParse.l" +{ count(); return B256SPRITEDIM; } YY_BREAK case 125: YY_RULE_SETUP -#line 404 "basicParse.l" -{ count(); return B256SPRITESLICE; } +#line 412 "basicParse.l" +{ count(); return B256SPRITELOAD; } YY_BREAK case 126: YY_RULE_SETUP -#line 405 "basicParse.l" -{ count(); return B256SPRITEPLACE; } +#line 413 "basicParse.l" +{ count(); return B256SPRITESLICE; } YY_BREAK case 127: YY_RULE_SETUP -#line 406 "basicParse.l" -{ count(); return B256SPRITEMOVE; } +#line 414 "basicParse.l" +{ count(); return B256SPRITEPLACE; } YY_BREAK case 128: YY_RULE_SETUP -#line 407 "basicParse.l" -{ count(); return B256SPRITEHIDE; } +#line 415 "basicParse.l" +{ count(); return B256SPRITEMOVE; } YY_BREAK case 129: YY_RULE_SETUP -#line 408 "basicParse.l" -{ count(); return B256SPRITESHOW; } +#line 416 "basicParse.l" +{ count(); return B256SPRITEHIDE; } YY_BREAK case 130: YY_RULE_SETUP -#line 409 "basicParse.l" -{ count(); return B256SPRITECOLLIDE; } +#line 417 "basicParse.l" +{ count(); return B256SPRITESHOW; } YY_BREAK case 131: YY_RULE_SETUP -#line 410 "basicParse.l" -{ count(); return B256SPRITEX; } +#line 418 "basicParse.l" +{ count(); return B256SPRITECOLLIDE; } YY_BREAK case 132: YY_RULE_SETUP -#line 411 "basicParse.l" -{ count(); return B256SPRITEY; } +#line 419 "basicParse.l" +{ count(); return B256SPRITEX; } YY_BREAK case 133: YY_RULE_SETUP -#line 412 "basicParse.l" -{ count(); return B256SPRITEH; } +#line 420 "basicParse.l" +{ count(); return B256SPRITEY; } YY_BREAK case 134: YY_RULE_SETUP -#line 413 "basicParse.l" -{ count(); return B256SPRITEW; } +#line 421 "basicParse.l" +{ count(); return B256SPRITEH; } YY_BREAK case 135: YY_RULE_SETUP -#line 414 "basicParse.l" -{ count(); return B256SPRITEV; } +#line 422 "basicParse.l" +{ count(); return B256SPRITEW; } YY_BREAK case 136: YY_RULE_SETUP -#line 415 "basicParse.l" -{ count(); return B256SEEK; } +#line 423 "basicParse.l" +{ count(); return B256SPRITEV; } YY_BREAK case 137: YY_RULE_SETUP -#line 416 "basicParse.l" -{ count(); return B256SIZE; } +#line 424 "basicParse.l" +{ count(); return B256SEEK; } YY_BREAK case 138: YY_RULE_SETUP -#line 417 "basicParse.l" -{ count(); return B256EXISTS; } +#line 425 "basicParse.l" +{ count(); return B256SIZE; } YY_BREAK case 139: YY_RULE_SETUP -#line 418 "basicParse.l" -{ count(); return B256MOUSEX; } +#line 426 "basicParse.l" +{ count(); return B256EXISTS; } YY_BREAK case 140: YY_RULE_SETUP -#line 419 "basicParse.l" -{ count(); return B256MOUSEY; } +#line 427 "basicParse.l" +{ count(); return B256MOUSEX; } YY_BREAK case 141: YY_RULE_SETUP -#line 420 "basicParse.l" -{ count(); return B256MOUSEB; } +#line 428 "basicParse.l" +{ count(); return B256MOUSEY; } YY_BREAK case 142: YY_RULE_SETUP -#line 421 "basicParse.l" -{ count(); return B256CLICKCLEAR; } +#line 429 "basicParse.l" +{ count(); return B256MOUSEB; } YY_BREAK case 143: YY_RULE_SETUP -#line 422 "basicParse.l" -{ count(); return B256CLICKX; } +#line 430 "basicParse.l" +{ count(); return B256CLICKCLEAR; } YY_BREAK case 144: YY_RULE_SETUP -#line 423 "basicParse.l" -{ count(); return B256CLICKY; } +#line 431 "basicParse.l" +{ count(); return B256CLICKX; } YY_BREAK case 145: YY_RULE_SETUP -#line 424 "basicParse.l" -{ count(); return B256CLICKB; } +#line 432 "basicParse.l" +{ count(); return B256CLICKY; } YY_BREAK case 146: YY_RULE_SETUP -#line 425 "basicParse.l" -{ count(); return B256SYSTEM; } +#line 433 "basicParse.l" +{ count(); return B256CLICKB; } YY_BREAK case 147: YY_RULE_SETUP -#line 426 "basicParse.l" -{ count(); return B256VOLUME; } +#line 434 "basicParse.l" +{ count(); return B256SYSTEM; } YY_BREAK case 148: YY_RULE_SETUP -#line 427 "basicParse.l" -{ count(); return B256CURRENTDIR; } +#line 435 "basicParse.l" +{ count(); return B256VOLUME; } YY_BREAK case 149: YY_RULE_SETUP -#line 428 "basicParse.l" -{ count(); return B256CHANGEDIR; } +#line 436 "basicParse.l" +{ count(); return B256CURRENTDIR; } YY_BREAK case 150: YY_RULE_SETUP -#line 429 "basicParse.l" -{ count(); return B256DECIMAL; } +#line 437 "basicParse.l" +{ count(); return B256CHANGEDIR; } YY_BREAK case 151: YY_RULE_SETUP -#line 430 "basicParse.l" -{ count(); return B256DBOPEN; } +#line 438 "basicParse.l" +{ count(); return B256DECIMAL; } YY_BREAK case 152: YY_RULE_SETUP -#line 431 "basicParse.l" -{ count(); return B256DBCLOSE; } +#line 439 "basicParse.l" +{ count(); return B256DBOPEN; } YY_BREAK case 153: YY_RULE_SETUP -#line 432 "basicParse.l" -{ count(); return B256DBEXECUTE; } +#line 440 "basicParse.l" +{ count(); return B256DBCLOSE; } YY_BREAK case 154: YY_RULE_SETUP -#line 433 "basicParse.l" -{ count(); return B256DBOPENSET; } +#line 441 "basicParse.l" +{ count(); return B256DBEXECUTE; } YY_BREAK case 155: YY_RULE_SETUP -#line 434 "basicParse.l" -{ count(); return B256DBCLOSESET; } +#line 442 "basicParse.l" +{ count(); return B256DBOPENSET; } YY_BREAK case 156: YY_RULE_SETUP -#line 435 "basicParse.l" -{ count(); return B256DBROW; } +#line 443 "basicParse.l" +{ count(); return B256DBCLOSESET; } YY_BREAK case 157: YY_RULE_SETUP -#line 436 "basicParse.l" -{ count(); return B256DBINT; } +#line 444 "basicParse.l" +{ count(); return B256DBROW; } YY_BREAK case 158: YY_RULE_SETUP -#line 437 "basicParse.l" -{ count(); return B256DBFLOAT; } +#line 445 "basicParse.l" +{ count(); return B256DBINT; } YY_BREAK case 159: YY_RULE_SETUP -#line 438 "basicParse.l" -{ count(); return B256DBSTRING; } +#line 446 "basicParse.l" +{ count(); return B256DBFLOAT; } YY_BREAK case 160: YY_RULE_SETUP -#line 439 "basicParse.l" -{ count(); return B256ONERROR; } +#line 447 "basicParse.l" +{ count(); return B256DBSTRING; } YY_BREAK case 161: YY_RULE_SETUP -#line 440 "basicParse.l" -{ count(); return B256OFFERROR; } +#line 448 "basicParse.l" +{ count(); return B256ONERROR; } YY_BREAK case 162: YY_RULE_SETUP -#line 441 "basicParse.l" -{ count(); return B256LASTERROR; } +#line 449 "basicParse.l" +{ count(); return B256OFFERROR; } YY_BREAK case 163: YY_RULE_SETUP -#line 442 "basicParse.l" -{ count(); return B256LASTERRORMESSAGE; } +#line 450 "basicParse.l" +{ count(); return B256LASTERROR; } YY_BREAK case 164: YY_RULE_SETUP -#line 443 "basicParse.l" -{ count(); return B256LASTERRORLINE; } +#line 451 "basicParse.l" +{ count(); return B256LASTERRORMESSAGE; } YY_BREAK case 165: YY_RULE_SETUP -#line 444 "basicParse.l" -{ count(); return B256LASTERROREXTRA; } +#line 452 "basicParse.l" +{ count(); return B256LASTERRORLINE; } YY_BREAK case 166: YY_RULE_SETUP -#line 445 "basicParse.l" -{ count(); return B256NETLISTEN; } +#line 453 "basicParse.l" +{ count(); return B256LASTERROREXTRA; } YY_BREAK case 167: YY_RULE_SETUP -#line 446 "basicParse.l" -{ count(); return B256NETCONNECT; } +#line 454 "basicParse.l" +{ count(); return B256NETLISTEN; } YY_BREAK case 168: YY_RULE_SETUP -#line 447 "basicParse.l" -{ count(); return B256NETWRITE; } +#line 455 "basicParse.l" +{ count(); return B256NETCONNECT; } YY_BREAK case 169: YY_RULE_SETUP -#line 448 "basicParse.l" -{ count(); return B256NETREAD; } +#line 456 "basicParse.l" +{ count(); return B256NETWRITE; } YY_BREAK case 170: YY_RULE_SETUP -#line 449 "basicParse.l" -{ count(); return B256NETCLOSE; } +#line 457 "basicParse.l" +{ count(); return B256NETREAD; } YY_BREAK case 171: YY_RULE_SETUP -#line 450 "basicParse.l" -{ count(); return B256NETDATA; } +#line 458 "basicParse.l" +{ count(); return B256NETCLOSE; } YY_BREAK case 172: +YY_RULE_SETUP +#line 459 "basicParse.l" +{ count(); return B256NETDATA; } + YY_BREAK +case 173: +YY_RULE_SETUP +#line 460 "basicParse.l" +{ count(); return B256NETADDRESS; } + YY_BREAK +case 174: +YY_RULE_SETUP +#line 461 "basicParse.l" +{ count(); return B256KILL; } + YY_BREAK +case 175: +YY_RULE_SETUP +#line 462 "basicParse.l" +{ count(); return B256MD5; } + YY_BREAK +case 176: +YY_RULE_SETUP +#line 463 "basicParse.l" +{ count(); return B256GETSETTING; } + YY_BREAK +case 177: +YY_RULE_SETUP +#line 464 "basicParse.l" +{ count(); return B256SETSETTING; } + YY_BREAK +case 178: +YY_RULE_SETUP +#line 465 "basicParse.l" +{ count(); return B256PORTIN; } + YY_BREAK +case 179: +YY_RULE_SETUP +#line 466 "basicParse.l" +{ count(); return B256PORTOUT; } + YY_BREAK +case 180: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 451 "basicParse.l" +#line 467 "basicParse.l" { count(); return '\n'; } YY_BREAK -case 173: +case 181: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 452 "basicParse.l" +#line 468 "basicParse.l" { count(); return '\n'; } YY_BREAK -case 174: +case 182: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 453 "basicParse.l" +#line 469 "basicParse.l" { count(); return '\n'; } YY_BREAK -case 175: +case 183: YY_RULE_SETUP -#line 454 "basicParse.l" +#line 470 "basicParse.l" { count(); return B256END; } YY_BREAK -case 176: +case 184: YY_RULE_SETUP -#line 455 "basicParse.l" +#line 471 "basicParse.l" { count(); return B256GTE; } YY_BREAK -case 177: +case 185: YY_RULE_SETUP -#line 456 "basicParse.l" +#line 472 "basicParse.l" { count(); return B256LTE; } YY_BREAK -case 178: +case 186: YY_RULE_SETUP -#line 457 "basicParse.l" +#line 473 "basicParse.l" { count(); return B256NE; } YY_BREAK -case 179: +case 187: YY_RULE_SETUP -#line 458 "basicParse.l" +#line 474 "basicParse.l" { count(); return '+'; } YY_BREAK -case 180: +case 188: YY_RULE_SETUP -#line 459 "basicParse.l" +#line 475 "basicParse.l" { count(); return '-'; } YY_BREAK -case 181: +case 189: YY_RULE_SETUP -#line 460 "basicParse.l" +#line 476 "basicParse.l" { count(); return '*'; } YY_BREAK -case 182: +case 190: YY_RULE_SETUP -#line 461 "basicParse.l" +#line 477 "basicParse.l" { count(); return B256INTDIV; } YY_BREAK -case 183: +case 191: YY_RULE_SETUP -#line 462 "basicParse.l" +#line 478 "basicParse.l" { count(); return B256MOD; } YY_BREAK -case 184: +case 192: YY_RULE_SETUP -#line 463 "basicParse.l" +#line 479 "basicParse.l" +{ count(); return B256BINARYOR; } + YY_BREAK +case 193: +YY_RULE_SETUP +#line 480 "basicParse.l" +{ count(); return B256BINARYAND; } + YY_BREAK +case 194: +YY_RULE_SETUP +#line 481 "basicParse.l" +{ count(); return B256BINARYNOT; } + YY_BREAK +case 195: +YY_RULE_SETUP +#line 482 "basicParse.l" { count(); return '/'; } YY_BREAK -case 185: +case 196: YY_RULE_SETUP -#line 464 "basicParse.l" +#line 483 "basicParse.l" { count(); return '^'; } YY_BREAK -case 186: +case 197: YY_RULE_SETUP -#line 465 "basicParse.l" +#line 484 "basicParse.l" { count(); return '='; } YY_BREAK -case 187: +case 198: YY_RULE_SETUP -#line 466 "basicParse.l" +#line 485 "basicParse.l" { count(); return '<'; } YY_BREAK -case 188: +case 199: YY_RULE_SETUP -#line 467 "basicParse.l" +#line 486 "basicParse.l" { count(); return '>'; } YY_BREAK -case 189: +case 200: YY_RULE_SETUP -#line 468 "basicParse.l" +#line 487 "basicParse.l" { count(); return ','; } YY_BREAK -case 190: +case 201: YY_RULE_SETUP -#line 469 "basicParse.l" +#line 488 "basicParse.l" { count(); return ';'; } YY_BREAK -case 191: +case 202: YY_RULE_SETUP -#line 470 "basicParse.l" +#line 489 "basicParse.l" { count(); return ':'; } YY_BREAK -case 192: +case 203: YY_RULE_SETUP -#line 471 "basicParse.l" +#line 490 "basicParse.l" { count(); return '('; } YY_BREAK -case 193: +case 204: YY_RULE_SETUP -#line 472 "basicParse.l" +#line 491 "basicParse.l" { count(); return ')'; } YY_BREAK -case 194: +case 205: YY_RULE_SETUP -#line 473 "basicParse.l" +#line 492 "basicParse.l" { count(); return '{'; } YY_BREAK -case 195: +case 206: YY_RULE_SETUP -#line 474 "basicParse.l" +#line 493 "basicParse.l" { count(); return '}'; } YY_BREAK -case 196: +case 207: YY_RULE_SETUP -#line 475 "basicParse.l" +#line 494 "basicParse.l" { count(); return '['; } YY_BREAK -case 197: +case 208: YY_RULE_SETUP -#line 476 "basicParse.l" +#line 495 "basicParse.l" { count(); return ']'; } YY_BREAK -case 198: +case 209: YY_RULE_SETUP -#line 477 "basicParse.l" +#line 496 "basicParse.l" { int num; count(); @@ -2998,9 +3122,9 @@ return B256VARIABLE; } YY_BREAK -case 199: +case 210: YY_RULE_SETUP -#line 491 "basicParse.l" +#line 510 "basicParse.l" { int num; count(); @@ -3016,28 +3140,28 @@ return B256STRINGVAR; } YY_BREAK -case 200: -/* rule 200 can match eol */ +case 211: +/* rule 211 can match eol */ YY_RULE_SETUP -#line 506 "basicParse.l" +#line 525 "basicParse.l" {count(); linenumber++; return '\n'; } YY_BREAK -case 201: +case 212: YY_RULE_SETUP -#line 508 "basicParse.l" +#line 527 "basicParse.l" /* ignore whitespace */ YY_BREAK -case 202: +case 213: YY_RULE_SETUP -#line 509 "basicParse.l" +#line 528 "basicParse.l" { count(); return yytext[0]; } YY_BREAK -case 203: +case 214: YY_RULE_SETUP -#line 512 "basicParse.l" +#line 531 "basicParse.l" ECHO; YY_BREAK -#line 3041 "lex.yy.c" +#line 3165 "lex.yy.c" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -3330,7 +3454,7 @@ 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 >= 1297 ) + if ( yy_current_state >= 1374 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -3358,11 +3482,11 @@ 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 >= 1297 ) + if ( yy_current_state >= 1374 ) 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 == 1296); + yy_is_jam = (yy_current_state == 1373); return yy_is_jam ? 0 : yy_current_state; } @@ -4038,7 +4162,7 @@ #define YYTABLES_NAME "yytables" -#line 512 "basicParse.l" +#line 531 "basicParse.l" diff -Nru basic256-0.9.6.32/localepoint.kbs basic256-0.9.6.48/localepoint.kbs --- basic256-0.9.6.32/localepoint.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/localepoint.kbs 2010-10-15 17:27:33.000000000 +0200 @@ -0,0 +1 @@ +print 1.23 \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/Main.cpp basic256-0.9.6.48/Main.cpp --- basic256-0.9.6.32/Main.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/Main.cpp 2010-10-15 17:14:25.000000000 +0200 @@ -24,6 +24,7 @@ #include #include #include +#include #if !defined(WIN32) || defined(__MINGW32__) #include #endif @@ -34,79 +35,80 @@ int main(int argc, char *argv[]) { - QApplication qapp(argc, argv); - char *lang = NULL; // locale code passed with argument -l on command line - bool ok; - QString localecode; // either lang or the system localle - stored on mainwin for help display - -#if !defined(WIN32) || defined(__MINGW32__) - int opt = getopt(argc, argv, "l:"); - while (opt != -1) - { - switch ((char) opt) - { - case 'l': - lang = optarg; - break; - default: - break; - } - opt = getopt(argc, argv, "l:"); - } -#endif - -if (lang) { -localecode = QString(lang); -} else { -localecode = QLocale::system().name(); -} - - QTranslator qtTranslator; - ok = qtTranslator.load("qt_" + localecode); - qapp.installTranslator(&qtTranslator); + QApplication qapp(argc, argv); + char *lang = NULL; // locale code passed with argument -l on command line + bool ok; + QString localecode; // either lang or the system localle - stored on mainwin for help display + + #if !defined(WIN32) || defined(__MINGW32__) + int opt = getopt(argc, argv, "l:"); + while (opt != -1) + { + switch ((char) opt) + { + case 'l': + lang = optarg; + break; + default: + break; + } + opt = getopt(argc, argv, "l:"); + } + #endif + + if (lang) { + localecode = QString(lang); + } else { + localecode = QLocale::system().name(); + } + + QTranslator qtTranslator; + ok = qtTranslator.load("qt_" + localecode); + qapp.installTranslator(&qtTranslator); - QTranslator kbTranslator; -#ifdef WIN32 - ok = kbTranslator.load("basic256_" + localecode, qApp->applicationDirPath() + "/Translations/"); -#else - ok = kbTranslator.load("basic256_" + localecode, "/usr/share/basic256/"); -#endif - qapp.installTranslator(&kbTranslator); + QTranslator kbTranslator; + #ifdef WIN32 + ok = kbTranslator.load("basic256_" + localecode, qApp->applicationDirPath() + "/Translations/"); + #else + ok = kbTranslator.load("basic256_" + localecode, "/usr/share/basic256/"); + #endif + qapp.installTranslator(&kbTranslator); + MainWindow *mainwin = new MainWindow(); - MainWindow *mainwin = new MainWindow(); - - mainwin->setObjectName( "mainwin" ); - mainwin->setWindowState(mainwin->windowState() & Qt::WindowMaximized); - mainwin->resize(800,600); - mainwin->setWindowTitle(QObject::tr("Untitled - BASIC-256")); - mainwin->statusBar()->showMessage(QObject::tr("Ready.")); - mainwin->localecode = localecode; - mainwin->show(); - -#ifndef WIN32 - // load initial file - if (argv[optind]) { - QString s = QString::fromAscii(argv[optind]); - if (s.endsWith(".kbs")) { - QFileInfo fi(s); - if (fi.exists()) { - mainwin->editor->loadFile(fi.absoluteFilePath()); - } - } - } -#else - if (argc >= 1 && argv[1] != NULL) - { - QString s = QString::fromAscii(argv[1]); - if (s.endsWith(".kbs")) { - QFileInfo fi(s); - if (fi.exists()) { - mainwin->editor->loadFile(fi.absoluteFilePath()); - } - } - } -#endif + mainwin->setObjectName( "mainwin" ); + //mainwin->setWindowState(mainwin->windowState() & Qt::WindowMaximized); + //mainwin->resize(800,600); + mainwin->setWindowTitle(QObject::tr("Untitled - BASIC-256")); + mainwin->statusBar()->showMessage(QObject::tr("Ready.")); + mainwin->localecode = localecode; + mainwin->show(); + + #ifndef WIN32 + // load initial file + if (argv[optind]) { + QString s = QString::fromAscii(argv[optind]); + if (s.endsWith(".kbs")) { + QFileInfo fi(s); + if (fi.exists()) { + mainwin->editor->loadFile(fi.absoluteFilePath()); + } + } + } + #else + if (argc >= 1 && argv[1] != NULL) + { + QString s = QString::fromAscii(argv[1]); + if (s.endsWith(".kbs")) { + QFileInfo fi(s); + if (fi.exists()) { + mainwin->editor->loadFile(fi.absoluteFilePath()); + } + } + } + #endif + + setlocale(LC_ALL,"C"); - return qapp.exec(); + return qapp.exec(); } diff -Nru basic256-0.9.6.32/MainWindow.cpp basic256-0.9.6.48/MainWindow.cpp --- basic256-0.9.6.32/MainWindow.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/MainWindow.cpp 2010-11-01 16:09:00.000000000 +0100 @@ -33,6 +33,7 @@ #include "PauseButton.h" #include "DockWidget.h" #include "MainWindow.h" +#include "Settings.h" #include "Version.h" MainWindow::MainWindow(QWidget * parent, Qt::WindowFlags f) @@ -74,7 +75,7 @@

Copyright © 2006, The BASIC-256 Team

\

Please visit our web site at http://www.basic256.org for tutorials and documentation.

\

Please see the CONTRIBUTORS file for a list of developers and translators for this project.

\ -

You should have received a copy of the GNU General Public License along
\ +

You should have received a copy of the GNU General Public License along
\ with this program; if not, write to the Free Software Foundation, Inc.,
\ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

",VERSION); @@ -103,14 +104,43 @@ QAction *printact = filemenu->addAction(QObject::tr("&Print")); printact->setShortcut(Qt::Key_P + Qt::CTRL); filemenu->addSeparator(); + recentact[0] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[0]->setShortcut(Qt::Key_1 + Qt::CTRL); + recentact[1] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[1]->setShortcut(Qt::Key_2 + Qt::CTRL); + recentact[2] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[2]->setShortcut(Qt::Key_3 + Qt::CTRL); + recentact[3] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[3]->setShortcut(Qt::Key_4 + Qt::CTRL); + recentact[4] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[4]->setShortcut(Qt::Key_5 + Qt::CTRL); + recentact[5] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[5]->setShortcut(Qt::Key_6 + Qt::CTRL); + recentact[6] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[6]->setShortcut(Qt::Key_7 + Qt::CTRL); + recentact[7] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[7]->setShortcut(Qt::Key_8 + Qt::CTRL); + recentact[8] = filemenu->addAction(QIcon(":images/open.png"), QObject::tr("")); + recentact[8]->setShortcut(Qt::Key_9 + Qt::CTRL); + filemenu->addSeparator(); QAction *exitact = filemenu->addAction(QObject::tr("&Exit")); exitact->setShortcut(Qt::Key_Q + Qt::CTRL); // + QObject::connect(filemenu, SIGNAL(aboutToShow()), this, SLOT(updateRecent())); QObject::connect(newact, SIGNAL(triggered()), editor, SLOT(newProgram())); QObject::connect(openact, SIGNAL(triggered()), editor, SLOT(loadProgram())); QObject::connect(saveact, SIGNAL(triggered()), editor, SLOT(saveProgram())); QObject::connect(saveasact, SIGNAL(triggered()), editor, SLOT(saveAsProgram())); QObject::connect(printact, SIGNAL(triggered()), editor, SLOT(slotPrint())); + QObject::connect(recentact[0], SIGNAL(triggered()), editor, SLOT(loadRecent0())); + QObject::connect(recentact[1], SIGNAL(triggered()), editor, SLOT(loadRecent1())); + QObject::connect(recentact[2], SIGNAL(triggered()), editor, SLOT(loadRecent2())); + QObject::connect(recentact[3], SIGNAL(triggered()), editor, SLOT(loadRecent3())); + QObject::connect(recentact[4], SIGNAL(triggered()), editor, SLOT(loadRecent4())); + QObject::connect(recentact[5], SIGNAL(triggered()), editor, SLOT(loadRecent5())); + QObject::connect(recentact[6], SIGNAL(triggered()), editor, SLOT(loadRecent6())); + QObject::connect(recentact[7], SIGNAL(triggered()), editor, SLOT(loadRecent7())); + QObject::connect(recentact[8], SIGNAL(triggered()), editor, SLOT(loadRecent8())); QObject::connect(exitact, SIGNAL(triggered()), this, SLOT(close())); // Edit menu @@ -133,6 +163,9 @@ selectallact->setShortcut(Qt::Key_A + Qt::CTRL); editmenu->addSeparator(); QAction *beautifyact = editmenu->addAction(QObject::tr("&Beautify")); + editmenu->addSeparator(); + QAction *prefact = editmenu->addAction(QObject::tr("Preferences")); + QObject::connect(prefact, SIGNAL(triggered()), rc, SLOT(showPreferences())); // QObject::connect(cutact, SIGNAL(triggered()), editor, SLOT(cut())); QObject::connect(copyact, SIGNAL(triggered()), editor, SLOT(copy())); @@ -218,15 +251,15 @@ stopact = runmenu->addAction(QIcon(":images/stop.png"), QObject::tr("&Stop")); stopact->setShortcut(Qt::Key_F5 + Qt::SHIFT); stopact->setEnabled(false); - runmenu->addSeparator(); - QAction *saveByteCode = runmenu->addAction(QObject::tr("Save Compiled &Byte Code")); + //runmenu->addSeparator(); + //QAction *saveByteCode = runmenu->addAction(QObject::tr("Save Compiled &Byte Code")); QObject::connect(runact, SIGNAL(triggered()), rc, SLOT(startRun())); QObject::connect(debugact, SIGNAL(triggered()), rc, SLOT(startDebug())); QObject::connect(stepact, SIGNAL(triggered()), rc, SLOT(stepThrough())); QObject::connect(stopact, SIGNAL(triggered()), rc, SLOT(stopRun())); - QObject::connect(saveByteCode, SIGNAL(triggered()), rc, SLOT(saveByteCode())); + //QObject::connect(saveByteCode, SIGNAL(triggered()), rc, SLOT(saveByteCode())); - // About menu + // Help menu QMenu *helpmenu = menuBar()->addMenu(QObject::tr("&Help")); QAction *docact = helpmenu->addAction(QIcon(":images/help.png"), QObject::tr("&Help")); docact->setShortcut(Qt::Key_F1); @@ -268,8 +301,34 @@ addDockWidget(Qt::RightDockWidgetArea, gdock); addDockWidget(Qt::LeftDockWidgetArea, vardock); setContextMenuPolicy(Qt::NoContextMenu); + + // position where it was last on screen + QSettings settings(SETTINGSORG, SETTINGSAPP); + resize(settings.value(SETTINGSSIZE, QSize(800, 600)).toSize()); + move(settings.value(SETTINGSPOS, QPoint(100, 100)).toPoint()); + +} + +void MainWindow::updateRecent() +{ + //update recent list on file menu + QSettings settings(SETTINGSORG, SETTINGSAPP); + settings.beginGroup(SETTINGSGROUPHIST); + for (int i=0; i<9; i++) { + QString fn = settings.value(QString::number(i), "").toString(); + QString path = QDir::currentPath() + "/"; + if (QString::compare(path, fn.left(path.length()))==0) { + fn = fn.right(fn.length()-path.length()); + } + recentact[i]->setEnabled(fn.length()!=0); + recentact[i]->setVisible(fn.length()!=0); + recentact[i]->setText("&" + QString::number(i+1) + " - " + fn); + } + settings.endGroup(); + } + MainWindow::~MainWindow() { } @@ -290,4 +349,10 @@ } else { e->ignore(); } + + // save current screen posision + QSettings settings(SETTINGSORG, SETTINGSAPP); + settings.setValue(SETTINGSSIZE, size()); + settings.setValue(SETTINGSPOS, pos()); + } diff -Nru basic256-0.9.6.32/MainWindow.h basic256-0.9.6.48/MainWindow.h --- basic256-0.9.6.32/MainWindow.h 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/MainWindow.h 2010-09-13 17:24:14.000000000 +0200 @@ -30,7 +30,9 @@ #include "BasicGraph.h" #include "VariableWin.h" #include "DocumentationWin.h" +#include "PreferencesWin.h" #include "EditSyntaxHighlighter.h" +#include "Settings.h" class MainWindow : public QMainWindow @@ -52,6 +54,13 @@ EditSyntaxHighlighter * editsyntax; QString localecode; + +private: + QAction *recentact[SETTINGSGROUPHISTN]; + +private slots: + void updateRecent(); + }; #endif diff -Nru basic256-0.9.6.32/Makefile basic256-0.9.6.48/Makefile --- basic256-0.9.6.32/Makefile 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/Makefile 2010-11-03 16:24:38.000000000 +0100 @@ -1,6 +1,6 @@ ############################################################################# # Makefile for building: BASIC256 -# Generated by qmake (2.01a) (Qt 4.6.2) on: Mon Aug 16 23:00:14 2010 +# Generated by qmake (2.01a) (Qt 4.6.2) on: Wed Nov 3 11:24:38 2010 # Project: BASIC256.pro # Template: app # Command: /usr/bin/qmake -unix -o Makefile BASIC256.pro diff -Nru basic256-0.9.6.32/Makefile.Debug basic256-0.9.6.48/Makefile.Debug --- basic256-0.9.6.32/Makefile.Debug 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/Makefile.Debug 2010-11-03 16:24:38.000000000 +0100 @@ -1,6 +1,6 @@ ############################################################################# # Makefile for building: BASIC256 -# Generated by qmake (2.01a) (Qt 4.6.2) on: Mon Aug 16 23:00:14 2010 +# Generated by qmake (2.01a) (Qt 4.6.2) on: Wed Nov 3 11:24:38 2010 # Project: BASIC256.pro # Template: app ############################################################################# @@ -9,7 +9,7 @@ CC = gcc CXX = g++ -DEFINES = -DLINUX_ESPEAK -DUSESDL -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED +DEFINES = -DLINUX -DLINUX_ESPEAK -DUSESDL -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED CFLAGS = -pipe -g -D_REENTRANT -Wall -W $(DEFINES) CXXFLAGS = -g -g -D_REENTRANT -Wall -W $(DEFINES) INCPATH = -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtWebKit -I/usr/include/qt4 -I. -I/usr/include/espeak -Itmp/moc @@ -60,7 +60,9 @@ VariableWin.cpp \ DocumentationWin.cpp \ EditSyntaxHighlighter.cpp \ - Stack.cpp tmp/moc/moc_BasicEdit.cpp \ + Stack.cpp \ + PreferencesWin.cpp \ + md5.cpp tmp/moc/moc_BasicEdit.cpp \ tmp/moc/moc_Interpreter.cpp \ tmp/moc/moc_RunController.cpp \ tmp/moc/moc_BasicOutput.cpp \ @@ -74,6 +76,7 @@ tmp/moc/moc_VariableWin.cpp \ tmp/moc/moc_DocumentationWin.cpp \ tmp/moc/moc_EditSyntaxHighlighter.cpp \ + tmp/moc/moc_PreferencesWin.cpp \ debug/qrc_resource.cpp OBJECTS = tmp/obj/lex.yy.o \ tmp/obj/basicParse.tab.o \ @@ -94,6 +97,8 @@ tmp/obj/DocumentationWin.o \ tmp/obj/EditSyntaxHighlighter.o \ tmp/obj/Stack.o \ + tmp/obj/PreferencesWin.o \ + tmp/obj/md5.o \ tmp/obj/moc_BasicEdit.o \ tmp/obj/moc_Interpreter.o \ tmp/obj/moc_RunController.o \ @@ -108,6 +113,7 @@ tmp/obj/moc_VariableWin.o \ tmp/obj/moc_DocumentationWin.o \ tmp/obj/moc_EditSyntaxHighlighter.o \ + tmp/obj/moc_PreferencesWin.o \ tmp/obj/qrc_resource.o DIST = /usr/share/qt4/mkspecs/common/g++.conf \ /usr/share/qt4/mkspecs/common/unix.conf \ @@ -167,7 +173,7 @@ dist: @$(CHK_DIR_EXISTS) tmp/obj/BASIC2561.0.0 || $(MKDIR) tmp/obj/BASIC2561.0.0 - $(COPY_FILE) --parents $(SOURCES) $(DIST) tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/basicParse.tab.h BasicEdit.h Interpreter.h RunController.h BasicOutput.h BasicGraph.h GhostButton.h PauseButton.h DockWidget.h BasicWidget.h ToolBar.h ViewWidgetIFace.h MainWindow.h VariableWin.h DocumentationWin.h Version.h EditSyntaxHighlighter.h Stack.h tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents resources/resource.qrc tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/lex.yy.c LEX/basicParse.tab.c BasicEdit.cpp Interpreter.cpp RunController.cpp Main.cpp BasicOutput.cpp BasicGraph.cpp GhostButton.cpp PauseButton.cpp DockWidget.cpp BasicWidget.cpp ToolBar.cpp ViewWidgetIFace.cpp MainWindow.cpp VariableWin.cpp DocumentationWin.cpp EditSyntaxHighlighter.cpp Stack.cpp tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents Translations/basic256_en_US.ts Translations/basic256_de.ts Translations/basic256_ru_RU.ts Translations/basic256_sp.ts Translations/basic256_nl.ts tmp/obj/BASIC2561.0.0/ && (cd `dirname tmp/obj/BASIC2561.0.0` && $(TAR) BASIC2561.0.0.tar BASIC2561.0.0 && $(COMPRESS) BASIC2561.0.0.tar) && $(MOVE) `dirname tmp/obj/BASIC2561.0.0`/BASIC2561.0.0.tar.gz . && $(DEL_FILE) -r tmp/obj/BASIC2561.0.0 + $(COPY_FILE) --parents $(SOURCES) $(DIST) tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/basicParse.tab.h BasicEdit.h Interpreter.h RunController.h BasicOutput.h BasicGraph.h GhostButton.h PauseButton.h DockWidget.h BasicWidget.h ToolBar.h ViewWidgetIFace.h MainWindow.h VariableWin.h DocumentationWin.h Version.h EditSyntaxHighlighter.h Stack.h PreferencesWin.h md5.h tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents resources/resource.qrc tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/lex.yy.c LEX/basicParse.tab.c BasicEdit.cpp Interpreter.cpp RunController.cpp Main.cpp BasicOutput.cpp BasicGraph.cpp GhostButton.cpp PauseButton.cpp DockWidget.cpp BasicWidget.cpp ToolBar.cpp ViewWidgetIFace.cpp MainWindow.cpp VariableWin.cpp DocumentationWin.cpp EditSyntaxHighlighter.cpp Stack.cpp PreferencesWin.cpp md5.cpp tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents Translations/basic256_en_US.ts Translations/basic256_de.ts Translations/basic256_ru_RU.ts Translations/basic256_sp.ts Translations/basic256_nl.ts tmp/obj/BASIC2561.0.0/ && (cd `dirname tmp/obj/BASIC2561.0.0` && $(TAR) BASIC2561.0.0.tar BASIC2561.0.0 && $(COMPRESS) BASIC2561.0.0.tar) && $(MOVE) `dirname tmp/obj/BASIC2561.0.0`/BASIC2561.0.0.tar.gz . && $(DEL_FILE) -r tmp/obj/BASIC2561.0.0 clean:compiler_clean @@ -186,9 +192,9 @@ mocables: compiler_moc_header_make_all compiler_moc_source_make_all -compiler_moc_header_make_all: tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp +compiler_moc_header_make_all: tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp tmp/moc/moc_PreferencesWin.cpp compiler_moc_header_clean: - -$(DEL_FILE) tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp + -$(DEL_FILE) tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp tmp/moc/moc_PreferencesWin.cpp tmp/moc/moc_BasicEdit.cpp: ViewWidgetIFace.h \ ToolBar.h \ BasicEdit.h @@ -213,7 +219,9 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ RunController.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) RunController.h -o tmp/moc/moc_RunController.cpp @@ -252,7 +260,9 @@ BasicGraph.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ MainWindow.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) MainWindow.h -o tmp/moc/moc_MainWindow.cpp @@ -265,6 +275,9 @@ tmp/moc/moc_EditSyntaxHighlighter.cpp: EditSyntaxHighlighter.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) EditSyntaxHighlighter.h -o tmp/moc/moc_EditSyntaxHighlighter.cpp +tmp/moc/moc_PreferencesWin.cpp: PreferencesWin.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) PreferencesWin.h -o tmp/moc/moc_PreferencesWin.cpp + compiler_rcc_make_all: debug/qrc_resource.cpp compiler_rcc_clean: -$(DEL_FILE) debug/qrc_resource.cpp @@ -312,7 +325,8 @@ tmp/obj/BasicEdit.o: BasicEdit.cpp BasicEdit.h \ ViewWidgetIFace.h \ - ToolBar.h + ToolBar.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicEdit.o BasicEdit.cpp tmp/obj/Interpreter.o: Interpreter.cpp LEX/basicParse.tab.h \ @@ -322,7 +336,9 @@ ViewWidgetIFace.h \ ToolBar.h \ BasicOutput.h \ - Stack.h + Stack.h \ + md5.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Interpreter.o Interpreter.cpp tmp/obj/RunController.o: RunController.cpp RunController.h \ @@ -337,7 +353,10 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h \ + md5.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/RunController.o RunController.cpp tmp/obj/Main.o: Main.cpp MainWindow.h \ @@ -349,10 +368,13 @@ BasicGraph.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Main.o Main.cpp -tmp/obj/BasicOutput.o: BasicOutput.cpp BasicOutput.h \ +tmp/obj/BasicOutput.o: BasicOutput.cpp Settings.h \ + BasicOutput.h \ ViewWidgetIFace.h \ ToolBar.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicOutput.o BasicOutput.cpp @@ -366,7 +388,9 @@ BasicEdit.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicGraph.o BasicGraph.cpp tmp/obj/GhostButton.o: GhostButton.cpp GhostButton.h @@ -403,7 +427,9 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ PauseButton.h \ GhostButton.h \ DockWidget.h \ @@ -422,7 +448,9 @@ BasicEdit.h \ BasicGraph.h \ VariableWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/DocumentationWin.o DocumentationWin.cpp tmp/obj/EditSyntaxHighlighter.o: EditSyntaxHighlighter.cpp EditSyntaxHighlighter.h @@ -431,6 +459,24 @@ tmp/obj/Stack.o: Stack.cpp Stack.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Stack.o Stack.cpp +tmp/obj/PreferencesWin.o: PreferencesWin.cpp PreferencesWin.h \ + Settings.h \ + MainWindow.h \ + BasicWidget.h \ + BasicOutput.h \ + ViewWidgetIFace.h \ + ToolBar.h \ + BasicEdit.h \ + BasicGraph.h \ + VariableWin.h \ + DocumentationWin.h \ + EditSyntaxHighlighter.h \ + md5.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/PreferencesWin.o PreferencesWin.cpp + +tmp/obj/md5.o: md5.cpp md5.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/md5.o md5.cpp + tmp/obj/moc_BasicEdit.o: tmp/moc/moc_BasicEdit.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_BasicEdit.o tmp/moc/moc_BasicEdit.cpp @@ -473,6 +519,9 @@ tmp/obj/moc_EditSyntaxHighlighter.o: tmp/moc/moc_EditSyntaxHighlighter.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_EditSyntaxHighlighter.o tmp/moc/moc_EditSyntaxHighlighter.cpp +tmp/obj/moc_PreferencesWin.o: tmp/moc/moc_PreferencesWin.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_PreferencesWin.o tmp/moc/moc_PreferencesWin.cpp + tmp/obj/qrc_resource.o: debug/qrc_resource.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/qrc_resource.o debug/qrc_resource.cpp @@ -480,8 +529,8 @@ install_examplesDiceFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/dice/dice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/dice/dicewood.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/dice/dice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/dice/dicewood.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ uninstall_examplesDiceFiles: FORCE @@ -492,11 +541,11 @@ install_examplesImgloadFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/animatedhelp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/imgload.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/rotate.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/animatedhelp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/imgload.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/rotate.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ uninstall_examplesImgloadFiles: FORCE @@ -510,14 +559,16 @@ install_examplesNetworkingFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netclient.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netgetmany.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netgoogle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netserver.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netclient.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgethomepage.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgetmany.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgoogle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netserver.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ uninstall_examplesNetworkingFiles: FORCE -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netclient.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgethomepage.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgetmany.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgoogle.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netserver.kbs @@ -526,20 +577,20 @@ install_examplesSpritesFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/bounce.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/breakout.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spriteslice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest3.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/3062__SpeedY__bleep.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/4359__NoiseCollector__PongBlipF4.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/4361__NoiseCollector__pongblipA_3.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/ball.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/block.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/paddle.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/bounce.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/breakout.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spriteslice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest3.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/3062__SpeedY__bleep.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/4359__NoiseCollector__PongBlipF4.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/4361__NoiseCollector__pongblipA_3.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/ball.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/block.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/paddle.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ uninstall_examplesSpritesFiles: FORCE @@ -562,27 +613,28 @@ install_examplesTestingFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/2darraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/2dstrarraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/beautifytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/fontdemo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/input_numeric_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/input_string_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/KalRGB.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/random_one.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/tes_oo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_dountil.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_logicalops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_multiline_if.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_slice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_while_loops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testchr.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testlineio.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testmath.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testmodulo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testtextfont.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testtime.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/uaarray.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/2darraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/2dstrarraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/beautifytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/fontdemo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/input_numeric_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/input_string_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/KalRGB.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/random_one.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/tes_oo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_dountil.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_logicalops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_multiline_if.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_slice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_while_loops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testchr.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testimagesave.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testlineio.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testmath.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testmodulo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testtextfont.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testtime.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/uaarray.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ uninstall_examplesTestingFiles: FORCE @@ -601,6 +653,7 @@ -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/test_slice.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/test_while_loops.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testchr.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testimagesave.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testlineio.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testmath.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testmodulo.kbs @@ -612,41 +665,42 @@ install_examplesFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/15puzzle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/arrays.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ballaccel.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ballanim.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/BASICtest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/card_suites.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/cards_deal5.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/checkerboard.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/collision.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/databasefoo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/errortrapping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/hangman.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/hello.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/mandelbrot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/mousedoodle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/moving_squares.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/paddle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/plot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/plot2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/poly.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/polytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/quotations.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/rainbow.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ring_01.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/rotating3dcube.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sliceanimation.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sqrt.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/stamp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/stamp_flower.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/story.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/tictactoe.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/tictactoe_comp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/trig.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/uniformRV.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/15puzzle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/arrays.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ballaccel.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ballanim.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/basic256_icon.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/BASICtest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/card_suites.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/cards_deal5.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/checkerboard.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/collision.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/databasefoo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/errortrapping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/hangman.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/hello.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/mandelbrot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/mousedoodle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/moving_squares.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/paddle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/plot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/plot2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/poly.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/polytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/quotations.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/rainbow.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ring_01.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/rotating3dcube.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sliceanimation.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sqrt.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/stamp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/stamp_flower.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/story.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/tictactoe.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/tictactoe_comp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/trig.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/uniformRV.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ uninstall_examplesFiles: FORCE @@ -654,6 +708,7 @@ -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/arrays.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/ballaccel.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/ballanim.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/basic256_icon.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/BASICtest1.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/card_suites.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/cards_deal5.kbs @@ -690,11 +745,11 @@ install_transFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_de.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_en_US.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_nl.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_ru_RU.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_sp.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_de.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_en_US.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_nl.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_ru_RU.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_sp.qm $(INSTALL_ROOT)/usr/share/basic256/ uninstall_transFiles: FORCE diff -Nru basic256-0.9.6.32/Makefile.Release basic256-0.9.6.48/Makefile.Release --- basic256-0.9.6.32/Makefile.Release 2010-08-17 05:00:14.000000000 +0200 +++ basic256-0.9.6.48/Makefile.Release 2010-11-03 16:24:38.000000000 +0100 @@ -1,6 +1,6 @@ ############################################################################# # Makefile for building: BASIC256 -# Generated by qmake (2.01a) (Qt 4.6.2) on: Mon Aug 16 23:00:14 2010 +# Generated by qmake (2.01a) (Qt 4.6.2) on: Wed Nov 3 11:24:38 2010 # Project: BASIC256.pro # Template: app ############################################################################# @@ -9,7 +9,7 @@ CC = gcc CXX = g++ -DEFINES = -DLINUX_ESPEAK -DUSESDL -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED +DEFINES = -DLINUX -DLINUX_ESPEAK -DUSESDL -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED CFLAGS = -pipe -O2 -D_REENTRANT -Wall -W $(DEFINES) CXXFLAGS = -g -O2 -D_REENTRANT -Wall -W $(DEFINES) INCPATH = -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtWebKit -I/usr/include/qt4 -I. -I/usr/include/espeak -Itmp/moc @@ -60,7 +60,9 @@ VariableWin.cpp \ DocumentationWin.cpp \ EditSyntaxHighlighter.cpp \ - Stack.cpp tmp/moc/moc_BasicEdit.cpp \ + Stack.cpp \ + PreferencesWin.cpp \ + md5.cpp tmp/moc/moc_BasicEdit.cpp \ tmp/moc/moc_Interpreter.cpp \ tmp/moc/moc_RunController.cpp \ tmp/moc/moc_BasicOutput.cpp \ @@ -74,6 +76,7 @@ tmp/moc/moc_VariableWin.cpp \ tmp/moc/moc_DocumentationWin.cpp \ tmp/moc/moc_EditSyntaxHighlighter.cpp \ + tmp/moc/moc_PreferencesWin.cpp \ release/qrc_resource.cpp OBJECTS = tmp/obj/lex.yy.o \ tmp/obj/basicParse.tab.o \ @@ -94,6 +97,8 @@ tmp/obj/DocumentationWin.o \ tmp/obj/EditSyntaxHighlighter.o \ tmp/obj/Stack.o \ + tmp/obj/PreferencesWin.o \ + tmp/obj/md5.o \ tmp/obj/moc_BasicEdit.o \ tmp/obj/moc_Interpreter.o \ tmp/obj/moc_RunController.o \ @@ -108,6 +113,7 @@ tmp/obj/moc_VariableWin.o \ tmp/obj/moc_DocumentationWin.o \ tmp/obj/moc_EditSyntaxHighlighter.o \ + tmp/obj/moc_PreferencesWin.o \ tmp/obj/qrc_resource.o DIST = /usr/share/qt4/mkspecs/common/g++.conf \ /usr/share/qt4/mkspecs/common/unix.conf \ @@ -167,7 +173,7 @@ dist: @$(CHK_DIR_EXISTS) tmp/obj/BASIC2561.0.0 || $(MKDIR) tmp/obj/BASIC2561.0.0 - $(COPY_FILE) --parents $(SOURCES) $(DIST) tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/basicParse.tab.h BasicEdit.h Interpreter.h RunController.h BasicOutput.h BasicGraph.h GhostButton.h PauseButton.h DockWidget.h BasicWidget.h ToolBar.h ViewWidgetIFace.h MainWindow.h VariableWin.h DocumentationWin.h Version.h EditSyntaxHighlighter.h Stack.h tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents resources/resource.qrc tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/lex.yy.c LEX/basicParse.tab.c BasicEdit.cpp Interpreter.cpp RunController.cpp Main.cpp BasicOutput.cpp BasicGraph.cpp GhostButton.cpp PauseButton.cpp DockWidget.cpp BasicWidget.cpp ToolBar.cpp ViewWidgetIFace.cpp MainWindow.cpp VariableWin.cpp DocumentationWin.cpp EditSyntaxHighlighter.cpp Stack.cpp tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents Translations/basic256_en_US.ts Translations/basic256_de.ts Translations/basic256_ru_RU.ts Translations/basic256_sp.ts Translations/basic256_nl.ts tmp/obj/BASIC2561.0.0/ && (cd `dirname tmp/obj/BASIC2561.0.0` && $(TAR) BASIC2561.0.0.tar BASIC2561.0.0 && $(COMPRESS) BASIC2561.0.0.tar) && $(MOVE) `dirname tmp/obj/BASIC2561.0.0`/BASIC2561.0.0.tar.gz . && $(DEL_FILE) -r tmp/obj/BASIC2561.0.0 + $(COPY_FILE) --parents $(SOURCES) $(DIST) tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/basicParse.tab.h BasicEdit.h Interpreter.h RunController.h BasicOutput.h BasicGraph.h GhostButton.h PauseButton.h DockWidget.h BasicWidget.h ToolBar.h ViewWidgetIFace.h MainWindow.h VariableWin.h DocumentationWin.h Version.h EditSyntaxHighlighter.h Stack.h PreferencesWin.h md5.h tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents resources/resource.qrc tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents LEX/lex.yy.c LEX/basicParse.tab.c BasicEdit.cpp Interpreter.cpp RunController.cpp Main.cpp BasicOutput.cpp BasicGraph.cpp GhostButton.cpp PauseButton.cpp DockWidget.cpp BasicWidget.cpp ToolBar.cpp ViewWidgetIFace.cpp MainWindow.cpp VariableWin.cpp DocumentationWin.cpp EditSyntaxHighlighter.cpp Stack.cpp PreferencesWin.cpp md5.cpp tmp/obj/BASIC2561.0.0/ && $(COPY_FILE) --parents Translations/basic256_en_US.ts Translations/basic256_de.ts Translations/basic256_ru_RU.ts Translations/basic256_sp.ts Translations/basic256_nl.ts tmp/obj/BASIC2561.0.0/ && (cd `dirname tmp/obj/BASIC2561.0.0` && $(TAR) BASIC2561.0.0.tar BASIC2561.0.0 && $(COMPRESS) BASIC2561.0.0.tar) && $(MOVE) `dirname tmp/obj/BASIC2561.0.0`/BASIC2561.0.0.tar.gz . && $(DEL_FILE) -r tmp/obj/BASIC2561.0.0 clean:compiler_clean @@ -186,9 +192,9 @@ mocables: compiler_moc_header_make_all compiler_moc_source_make_all -compiler_moc_header_make_all: tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp +compiler_moc_header_make_all: tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp tmp/moc/moc_PreferencesWin.cpp compiler_moc_header_clean: - -$(DEL_FILE) tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp + -$(DEL_FILE) tmp/moc/moc_BasicEdit.cpp tmp/moc/moc_Interpreter.cpp tmp/moc/moc_RunController.cpp tmp/moc/moc_BasicOutput.cpp tmp/moc/moc_BasicGraph.cpp tmp/moc/moc_GhostButton.cpp tmp/moc/moc_PauseButton.cpp tmp/moc/moc_DockWidget.cpp tmp/moc/moc_BasicWidget.cpp tmp/moc/moc_ToolBar.cpp tmp/moc/moc_MainWindow.cpp tmp/moc/moc_VariableWin.cpp tmp/moc/moc_DocumentationWin.cpp tmp/moc/moc_EditSyntaxHighlighter.cpp tmp/moc/moc_PreferencesWin.cpp tmp/moc/moc_BasicEdit.cpp: ViewWidgetIFace.h \ ToolBar.h \ BasicEdit.h @@ -213,7 +219,9 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ RunController.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) RunController.h -o tmp/moc/moc_RunController.cpp @@ -252,7 +260,9 @@ BasicGraph.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ MainWindow.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) MainWindow.h -o tmp/moc/moc_MainWindow.cpp @@ -265,6 +275,9 @@ tmp/moc/moc_EditSyntaxHighlighter.cpp: EditSyntaxHighlighter.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) EditSyntaxHighlighter.h -o tmp/moc/moc_EditSyntaxHighlighter.cpp +tmp/moc/moc_PreferencesWin.cpp: PreferencesWin.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) PreferencesWin.h -o tmp/moc/moc_PreferencesWin.cpp + compiler_rcc_make_all: release/qrc_resource.cpp compiler_rcc_clean: -$(DEL_FILE) release/qrc_resource.cpp @@ -312,7 +325,8 @@ tmp/obj/BasicEdit.o: BasicEdit.cpp BasicEdit.h \ ViewWidgetIFace.h \ - ToolBar.h + ToolBar.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicEdit.o BasicEdit.cpp tmp/obj/Interpreter.o: Interpreter.cpp LEX/basicParse.tab.h \ @@ -322,7 +336,9 @@ ViewWidgetIFace.h \ ToolBar.h \ BasicOutput.h \ - Stack.h + Stack.h \ + md5.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Interpreter.o Interpreter.cpp tmp/obj/RunController.o: RunController.cpp RunController.h \ @@ -337,7 +353,10 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h \ + md5.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/RunController.o RunController.cpp tmp/obj/Main.o: Main.cpp MainWindow.h \ @@ -349,10 +368,13 @@ BasicGraph.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Main.o Main.cpp -tmp/obj/BasicOutput.o: BasicOutput.cpp BasicOutput.h \ +tmp/obj/BasicOutput.o: BasicOutput.cpp Settings.h \ + BasicOutput.h \ ViewWidgetIFace.h \ ToolBar.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicOutput.o BasicOutput.cpp @@ -366,7 +388,9 @@ BasicEdit.h \ VariableWin.h \ DocumentationWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/BasicGraph.o BasicGraph.cpp tmp/obj/GhostButton.o: GhostButton.cpp GhostButton.h @@ -403,7 +427,9 @@ BasicWidget.h \ VariableWin.h \ DocumentationWin.h \ + PreferencesWin.h \ EditSyntaxHighlighter.h \ + Settings.h \ PauseButton.h \ GhostButton.h \ DockWidget.h \ @@ -422,7 +448,9 @@ BasicEdit.h \ BasicGraph.h \ VariableWin.h \ - EditSyntaxHighlighter.h + PreferencesWin.h \ + EditSyntaxHighlighter.h \ + Settings.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/DocumentationWin.o DocumentationWin.cpp tmp/obj/EditSyntaxHighlighter.o: EditSyntaxHighlighter.cpp EditSyntaxHighlighter.h @@ -431,6 +459,24 @@ tmp/obj/Stack.o: Stack.cpp Stack.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/Stack.o Stack.cpp +tmp/obj/PreferencesWin.o: PreferencesWin.cpp PreferencesWin.h \ + Settings.h \ + MainWindow.h \ + BasicWidget.h \ + BasicOutput.h \ + ViewWidgetIFace.h \ + ToolBar.h \ + BasicEdit.h \ + BasicGraph.h \ + VariableWin.h \ + DocumentationWin.h \ + EditSyntaxHighlighter.h \ + md5.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/PreferencesWin.o PreferencesWin.cpp + +tmp/obj/md5.o: md5.cpp md5.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/md5.o md5.cpp + tmp/obj/moc_BasicEdit.o: tmp/moc/moc_BasicEdit.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_BasicEdit.o tmp/moc/moc_BasicEdit.cpp @@ -473,6 +519,9 @@ tmp/obj/moc_EditSyntaxHighlighter.o: tmp/moc/moc_EditSyntaxHighlighter.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_EditSyntaxHighlighter.o tmp/moc/moc_EditSyntaxHighlighter.cpp +tmp/obj/moc_PreferencesWin.o: tmp/moc/moc_PreferencesWin.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/moc_PreferencesWin.o tmp/moc/moc_PreferencesWin.cpp + tmp/obj/qrc_resource.o: release/qrc_resource.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o tmp/obj/qrc_resource.o release/qrc_resource.cpp @@ -480,8 +529,8 @@ install_examplesDiceFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/dice/dice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/dice/dicewood.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/dice/dice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/dice/dicewood.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/dice/ uninstall_examplesDiceFiles: FORCE @@ -492,11 +541,11 @@ install_examplesImgloadFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/animatedhelp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/imgload.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/rotate.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/imgload/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/animatedhelp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/imgload.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/rotate.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/imgload/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/imgload/ uninstall_examplesImgloadFiles: FORCE @@ -510,14 +559,16 @@ install_examplesNetworkingFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netclient.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netgetmany.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netgoogle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/networking/netserver.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netclient.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgethomepage.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgetmany.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netgoogle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/networking/netserver.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/ uninstall_examplesNetworkingFiles: FORCE -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netclient.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgethomepage.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgetmany.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netgoogle.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/networking/netserver.kbs @@ -526,20 +577,20 @@ install_examplesSpritesFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/bounce.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/breakout.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spriteslice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/spritetest3.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/3062__SpeedY__bleep.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/4359__NoiseCollector__PongBlipF4.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/4361__NoiseCollector__pongblipA_3.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/ball.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/block.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/paddle.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sprites/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/bounce.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/breakout.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spriteslice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/spritetest3.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/3062__SpeedY__bleep.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/4359__NoiseCollector__PongBlipF4.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/4361__NoiseCollector__pongblipA_3.wav $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/ball.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/block.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/help.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/paddle.png $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sprites/test.bmp $(INSTALL_ROOT)/usr/share/basic256/Examples/sprites/ uninstall_examplesSpritesFiles: FORCE @@ -562,27 +613,28 @@ install_examplesTestingFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/2darraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/2dstrarraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/beautifytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/fontdemo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/input_numeric_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/input_string_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/KalRGB.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/random_one.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/tes_oo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_dountil.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_logicalops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_multiline_if.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_slice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/test_while_loops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testchr.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testlineio.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testmath.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testmodulo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testtextfont.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/testtime.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/testing/uaarray.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/2darraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/2dstrarraytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/beautifytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/fontdemo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/input_numeric_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/input_string_test.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/KalRGB.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/random_one.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/tes_oo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_dountil.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_logicalops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_multiline_if.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_slice.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/test_while_loops.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testchr.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testimagesave.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testlineio.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testmath.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testmodulo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testtextfont.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/testtime.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/testing/uaarray.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/ uninstall_examplesTestingFiles: FORCE @@ -601,6 +653,7 @@ -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/test_slice.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/test_while_loops.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testchr.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testimagesave.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testlineio.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testmath.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/testing/testmodulo.kbs @@ -612,41 +665,42 @@ install_examplesFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/Examples/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/15puzzle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/arrays.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ballaccel.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ballanim.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/BASICtest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/card_suites.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/cards_deal5.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/checkerboard.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/collision.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/databasefoo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/errortrapping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/hangman.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/hello.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/mandelbrot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/mousedoodle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/moving_squares.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/paddle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/plot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/plot2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/poly.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/polytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/quotations.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/rainbow.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/ring_01.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/rotating3dcube.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sliceanimation.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/sqrt.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/stamp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/stamp_flower.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/story.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/tictactoe.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/tictactoe_comp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/trig.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Examples/uniformRV.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/15puzzle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/arrays.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ballaccel.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ballanim.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/basic256_icon.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/BASICtest1.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/card_suites.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/cards_deal5.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/checkerboard.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/collision.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/databasefoo.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/errortrapping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/hangman.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/hello.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/mandelbrot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/mousedoodle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/moving_squares.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/paddle.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ping.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/plot.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/plot2.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/poly.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/polytest.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/quotations.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/rainbow.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/ring_01.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/rotating3dcube.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sliceanimation.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/sqrt.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/stamp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/stamp_flower.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/story.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/tictactoe.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/tictactoe_comp.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/trig.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Examples/uniformRV.kbs $(INSTALL_ROOT)/usr/share/basic256/Examples/ uninstall_examplesFiles: FORCE @@ -654,6 +708,7 @@ -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/arrays.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/ballaccel.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/ballanim.kbs + -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/basic256_icon.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/BASICtest1.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/card_suites.kbs -$(DEL_FILE) -r $(INSTALL_ROOT)/usr/share/basic256/Examples/cards_deal5.kbs @@ -690,11 +745,11 @@ install_transFiles: first FORCE @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)/usr/share/basic256/ || $(MKDIR) $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_de.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_en_US.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_nl.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_ru_RU.qm $(INSTALL_ROOT)/usr/share/basic256/ - -$(INSTALL_FILE) /home/jim/Desktop/basic256/trunk/Translations/basic256_sp.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_de.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_en_US.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_nl.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_ru_RU.qm $(INSTALL_ROOT)/usr/share/basic256/ + -$(INSTALL_FILE) /home/busweb/Desktop/basic256/trunk/Translations/basic256_sp.qm $(INSTALL_ROOT)/usr/share/basic256/ uninstall_transFiles: FORCE diff -Nru basic256-0.9.6.32/md5.cpp basic256-0.9.6.48/md5.cpp --- basic256-0.9.6.32/md5.cpp 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/md5.cpp 2010-09-13 17:24:14.000000000 +0200 @@ -0,0 +1,367 @@ +/* MD5 + converted to C++ class by Frank Thilo (thilo@unix-ag.org) + for bzflag (http://www.bzflag.org) + + based on: + + md5.h and md5.c + reference implemantion of RFC 1321 + + Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All +rights reserved. + +License to copy and use this software is granted provided that it +is identified as the "RSA Data Security, Inc. MD5 Message-Digest +Algorithm" in all material mentioning or referencing this software +or this function. + +License is also granted to make and use derivative works provided +that such works are identified as "derived from the RSA Data +Security, Inc. MD5 Message-Digest Algorithm" in all material +mentioning or referencing the derived work. + +RSA Data Security, Inc. makes no representations concerning either +the merchantability of this software or the suitability of this +software for any particular purpose. It is provided "as is" +without express or implied warranty of any kind. + +These notices must be retained in any copies of any part of this +documentation and/or software. + +*/ + +/* interface header */ +#include "md5.h" + +/* system implementation headers */ +#include +#include +#include + + +// Constants for MD5Transform routine. +#define S11 7 +#define S12 12 +#define S13 17 +#define S14 22 +#define S21 5 +#define S22 9 +#define S23 14 +#define S24 20 +#define S31 4 +#define S32 11 +#define S33 16 +#define S34 23 +#define S41 6 +#define S42 10 +#define S43 15 +#define S44 21 + +/////////////////////////////////////////////// + +// F, G, H and I are basic MD5 functions. +inline MD5::uint4 MD5::F(uint4 x, uint4 y, uint4 z) { + return x&y | ~x&z; +} + +inline MD5::uint4 MD5::G(uint4 x, uint4 y, uint4 z) { + return x&z | y&~z; +} + +inline MD5::uint4 MD5::H(uint4 x, uint4 y, uint4 z) { + return x^y^z; +} + +inline MD5::uint4 MD5::I(uint4 x, uint4 y, uint4 z) { + return y ^ (x | ~z); +} + +// rotate_left rotates x left n bits. +inline MD5::uint4 MD5::rotate_left(uint4 x, int n) { + return (x << n) | (x >> (32-n)); +} + +// FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. +// Rotation is separate from addition to prevent recomputation. +inline void MD5::FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { + a = rotate_left(a+ F(b,c,d) + x + ac, s) + b; +} + +inline void MD5::GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { + a = rotate_left(a + G(b,c,d) + x + ac, s) + b; +} + +inline void MD5::HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { + a = rotate_left(a + H(b,c,d) + x + ac, s) + b; +} + +inline void MD5::II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) { + a = rotate_left(a + I(b,c,d) + x + ac, s) + b; +} + +////////////////////////////////////////////// + +// default ctor, just initailize +MD5::MD5() +{ + init(); +} + +////////////////////////////////////////////// + +// nifty shortcut ctor, compute MD5 for string and finalize it right away +MD5::MD5(const std::string &text) +{ + init(); + update(text.c_str(), text.length()); + finalize(); +} + +////////////////////////////// + +void MD5::init() +{ + finalized=false; + + count[0] = 0; + count[1] = 0; + + // load magic initialization constants. + state[0] = 0x67452301; + state[1] = 0xefcdab89; + state[2] = 0x98badcfe; + state[3] = 0x10325476; +} + +////////////////////////////// + +// decodes input (unsigned char) into output (uint4). Assumes len is a multiple of 4. +void MD5::decode(uint4 output[], const uint1 input[], size_type len) +{ + for (unsigned int i = 0, j = 0; j < len; i++, j += 4) + output[i] = ((uint4)input[j]) | (((uint4)input[j+1]) << 8) | + (((uint4)input[j+2]) << 16) | (((uint4)input[j+3]) << 24); +} + +////////////////////////////// + +// encodes input (uint4) into output (unsigned char). Assumes len is +// a multiple of 4. +void MD5::encode(uint1 output[], const uint4 input[], size_type len) +{ + for (size_type i = 0, j = 0; j < len; i++, j += 4) { + output[j] = input[i] & 0xff; + output[j+1] = (input[i] >> 8) & 0xff; + output[j+2] = (input[i] >> 16) & 0xff; + output[j+3] = (input[i] >> 24) & 0xff; + } +} + +////////////////////////////// + +// apply MD5 algo on a block +void MD5::transform(const uint1 block[blocksize]) +{ + uint4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; + decode (x, block, blocksize); + + /* Round 1 */ + FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ + FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ + FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ + FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ + FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ + FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ + FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ + FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */ + FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */ + FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */ + FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */ + FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */ + FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */ + FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */ + FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */ + FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */ + + /* Round 2 */ + GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */ + GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */ + GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */ + GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */ + GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */ + GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */ + GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */ + GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */ + GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */ + GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */ + GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */ + GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */ + GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */ + GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */ + GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */ + GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */ + + /* Round 3 */ + HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */ + HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ + HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ + HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ + HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */ + HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ + HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ + HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ + HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ + HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ + HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */ + HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */ + HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */ + HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */ + HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */ + HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */ + + /* Round 4 */ + II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */ + II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */ + II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */ + II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */ + II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */ + II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */ + II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */ + II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */ + II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */ + II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */ + II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */ + II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */ + II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */ + II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */ + II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */ + II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */ + + state[0] += a; + state[1] += b; + state[2] += c; + state[3] += d; + + // Zeroize sensitive information. + memset(x, 0, sizeof x); +} + +////////////////////////////// + +// MD5 block update operation. Continues an MD5 message-digest +// operation, processing another message block +void MD5::update(const unsigned char input[], size_type length) +{ + // compute number of bytes mod 64 + size_type index = count[0] / 8 % blocksize; + + // Update number of bits + if ((count[0] += (length << 3)) < (length << 3)) + count[1]++; + count[1] += (length >> 29); + + // number of bytes we need to fill in buffer + size_type firstpart = 64 - index; + + size_type i; + + // transform as many times as possible. + if (length >= firstpart) + { + // fill buffer first, transform + memcpy(&buffer[index], input, firstpart); + transform(buffer); + + // transform chunks of blocksize (64 bytes) + for (i = firstpart; i + blocksize <= length; i += blocksize) + transform(&input[i]); + + index = 0; + } + else + i = 0; + + // buffer remaining input + memcpy(&buffer[index], &input[i], length-i); +} + +////////////////////////////// + +// for convenience provide a verson with signed char +void MD5::update(const char input[], size_type length) +{ + update((const unsigned char*)input, length); +} + +////////////////////////////// + +// MD5 finalization. Ends an MD5 message-digest operation, writing the +// the message digest and zeroizing the context. +MD5& MD5::finalize() +{ + static unsigned char padding[64] = { + 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + }; + + if (!finalized) { + // Save number of bits + unsigned char bits[8]; + encode(bits, count, 8); + + // pad out to 56 mod 64. + size_type index = count[0] / 8 % 64; + size_type padLen = (index < 56) ? (56 - index) : (120 - index); + update(padding, padLen); + + // Append length (before padding) + update(bits, 8); + + // Store state in digest + encode(digest, state, 16); + + // Zeroize sensitive information. + memset(buffer, 0, sizeof buffer); + memset(count, 0, sizeof count); + + finalized=true; + } + + return *this; +} + +////////////////////////////// + +// return hex representation of digest as char * +// rember to free when finished +char * MD5::hexdigest() +{ + char *buf; + buf = (char*) malloc(33 * sizeof(char)); + buf[0] = 0; + + if (finalized) { + + for (int i=0; i<16; i++) + sprintf(buf+i*2, "%02x", digest[i]); + buf[32]=0; + } + return buf; +} + +////////////////////////////// + +std::ostream& operator<<(std::ostream& out, MD5 md5) +{ + return out << md5.hexdigest(); +} + +////////////////////////////// + +std::string md5(const std::string str) +{ + MD5 md5 = MD5(str); + + return md5.hexdigest(); +} diff -Nru basic256-0.9.6.32/md5.h basic256-0.9.6.48/md5.h --- basic256-0.9.6.32/md5.h 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/md5.h 2010-09-13 17:24:14.000000000 +0200 @@ -0,0 +1,93 @@ +/* MD5 + converted to C++ class by Frank Thilo (thilo@unix-ag.org) + for bzflag (http://www.bzflag.org) + + based on: + + md5.h and md5.c + reference implementation of RFC 1321 + + Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All +rights reserved. + +License to copy and use this software is granted provided that it +is identified as the "RSA Data Security, Inc. MD5 Message-Digest +Algorithm" in all material mentioning or referencing this software +or this function. + +License is also granted to make and use derivative works provided +that such works are identified as "derived from the RSA Data +Security, Inc. MD5 Message-Digest Algorithm" in all material +mentioning or referencing the derived work. + +RSA Data Security, Inc. makes no representations concerning either +the merchantability of this software or the suitability of this +software for any particular purpose. It is provided "as is" +without express or implied warranty of any kind. + +These notices must be retained in any copies of any part of this +documentation and/or software. + +*/ + +#ifndef BZF_MD5_H +#define BZF_MD5_H + +#include +#include + + +// a small class for calculating MD5 hashes of strings or byte arrays +// it is not meant to be fast or secure +// +// usage: 1) feed it blocks of uchars with update() +// 2) finalize() +// 3) get hexdigest() string +// or +// MD5(std::string).hexdigest() +// +// assumes that char is 8 bit and int is 32 bit +class MD5 +{ +public: + typedef unsigned int size_type; // must be 32bit + + MD5(); + MD5(const std::string& text); + void update(const unsigned char *buf, size_type length); + void update(const char *buf, size_type length); + MD5& finalize(); + char * hexdigest(); + friend std::ostream& operator<<(std::ostream&, MD5 md5); + +private: + void init(); + typedef unsigned char uint1; // 8bit + typedef unsigned int uint4; // 32bit + enum {blocksize = 64}; // VC6 won't eat a const static int here + + void transform(const uint1 block[blocksize]); + static void decode(uint4 output[], const uint1 input[], size_type len); + static void encode(uint1 output[], const uint4 input[], size_type len); + + bool finalized; + uint1 buffer[blocksize]; // bytes that didn't fit in last 64 byte chunk + uint4 count[2]; // 64bit counter for number of bits (lo, hi) + uint4 state[4]; // digest so far + uint1 digest[16]; // the result + + // low level logic operations + static inline uint4 F(uint4 x, uint4 y, uint4 z); + static inline uint4 G(uint4 x, uint4 y, uint4 z); + static inline uint4 H(uint4 x, uint4 y, uint4 z); + static inline uint4 I(uint4 x, uint4 y, uint4 z); + static inline uint4 rotate_left(uint4 x, int n); + static inline void FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac); + static inline void GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac); + static inline void HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac); + static inline void II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac); +}; + +std::string md5(const std::string str); + +#endif diff -Nru basic256-0.9.6.32/netclient.kbs basic256-0.9.6.48/netclient.kbs --- basic256-0.9.6.32/netclient.kbs 2010-08-15 21:59:19.000000000 +0200 +++ basic256-0.9.6.48/netclient.kbs 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -# have the user enter a message and send it to the server -# ten times with a delay, then send server message to quit -input "enter message?", m$ -netconnect "127.0.0.1", 9997 -for t = 1 to 10 - pause rand - netwrite t + " " + m$ - print netread -next t -netwrite "end" -print netread -netclose \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/netgoogle.kbs basic256-0.9.6.48/netgoogle.kbs --- basic256-0.9.6.32/netgoogle.kbs 2010-08-13 21:15:24.000000000 +0200 +++ basic256-0.9.6.48/netgoogle.kbs 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -NETCONNECT "www.google.com", 80 -print "connected" -NETWRITE "GET HTTP/1.1" + chr(13) + chr(10) + chr(13) + chr(10) -print "written" -print NETREAD -NETCLOSE \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/netserver.kbs basic256-0.9.6.48/netserver.kbs --- basic256-0.9.6.32/netserver.kbs 2010-08-15 21:56:02.000000000 +0200 +++ basic256-0.9.6.48/netserver.kbs 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -# get a message and send back success -netlisten 9997 -do - while not netdata - print "."; - pause .1 - end while - n$ = netread - print n$ - netwrite "I got '" + n$ + "'." -until n$ = "end" -netclose \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/PreferencesWin.cpp basic256-0.9.6.48/PreferencesWin.cpp --- basic256-0.9.6.32/PreferencesWin.cpp 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/PreferencesWin.cpp 2010-09-22 22:54:50.000000000 +0200 @@ -0,0 +1,114 @@ +/** Copyright (C) 2010, J.M.Reneau + ** + ** 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 2 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, write to the Free Software Foundation, Inc., + ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + **/ + +#include + +using namespace std; + +#include "PreferencesWin.h" +#include "Settings.h" +#include "MainWindow.h" +#include "md5.h" + +PreferencesWin::PreferencesWin (QWidget * parent) + :QDialog(parent) +{ + + // position where it was last on screen + QSettings settings(SETTINGSORG, SETTINGSAPP); + //resize(settings.value(SETTINGSPREFSIZE, QSize(500, 500)).toSize()); + move(settings.value(SETTINGSPREFPOS, QPoint(200, 200)).toPoint()); + setWindowTitle(tr("BASIC-256 Preferences and Settings")); + + QGridLayout * layout = new QGridLayout(); + int r=0; + + passwordlabel = new QLabel(tr("Preferences and Settings Password:"),this); + passwordinput = new QLineEdit(QString::null,this); + passwordinput->setText(settings.value(SETTINGSPREFPASSWORD, "").toString()); + passwordinput->setMaxLength(32); + passwordinput->setEchoMode(QLineEdit::Password); + layout->addWidget(passwordlabel,r,1,1,1); + layout->addWidget(passwordinput,r,2,1,2); + // + r++; + systemcheckbox = new QCheckBox(tr("Allow SYSTEM statement"),this); + systemcheckbox->setChecked(settings.value(SETTINGSALLOWSYSTEM, SETTINGSALLOWSYSTEMDEFAULT).toBool()); + layout->addWidget(systemcheckbox,r,2,1,2); + // + r++; + settingcheckbox = new QCheckBox(tr("Allow GETSETTING/SETSETTING statements"),this); + settingcheckbox->setChecked(settings.value(SETTINGSALLOWSETTING, SETTINGSALLOWSETTINGDEFAULT).toBool()); + layout->addWidget(settingcheckbox,r,2,1,2); + // + r++; + portcheckbox = new QCheckBox(tr("Allow PORTIN/PORTOUT statements"),this); + portcheckbox->setChecked(settings.value(SETTINGSALLOWPORT, SETTINGSALLOWPORTDEFAULT).toBool()); + layout->addWidget(portcheckbox,r,2,1,2); + // + r++; + cancelbutton = new QPushButton(tr("Cancel"), this); + connect(cancelbutton, SIGNAL(clicked()), this, SLOT (clickCancelButton())); + savebutton = new QPushButton(tr("Save"), this); + connect(savebutton, SIGNAL(clicked()), this, SLOT (clickSaveButton())); + layout->addWidget(cancelbutton,r,2,1,1); + layout->addWidget(savebutton,r,3,1,1); + + this->setLayout(layout); + this->show(); + +} + +void PreferencesWin::clickCancelButton() { + close(); +} + +void PreferencesWin::clickSaveButton() { + QSettings settings(SETTINGSORG, SETTINGSAPP); + + // if password has changed - digest and save + QString currentpw = settings.value(SETTINGSPREFPASSWORD, "").toString(); + if(QString::compare(currentpw,passwordinput->text())!=0) { + QString pw(""); + if(passwordinput->text().length()!=0) { + pw = MD5(passwordinput->text().toUtf8().data()).hexdigest(); + } + settings.setValue(SETTINGSPREFPASSWORD, pw); + } + // + settings.setValue(SETTINGSALLOWSYSTEM, systemcheckbox->isChecked()); + settings.setValue(SETTINGSALLOWSETTING, settingcheckbox->isChecked()); + settings.setValue(SETTINGSALLOWPORT, portcheckbox->isChecked()); + // + QMessageBox msgBox; + msgBox.setText("Preferences and settings have been saved."); + msgBox.setStandardButtons(QMessageBox::Ok); + msgBox.setDefaultButton(QMessageBox::Ok); + msgBox.exec(); + // + close(); +} + +void PreferencesWin::closeEvent(QCloseEvent *e) { + // save current screen posision + QSettings settings(SETTINGSORG, SETTINGSAPP); + //settings.setValue(SETTINGSPREFSIZE, size()); + settings.setValue(SETTINGSPREFPOS, pos()); + + +} + diff -Nru basic256-0.9.6.32/PreferencesWin.h basic256-0.9.6.48/PreferencesWin.h --- basic256-0.9.6.32/PreferencesWin.h 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/PreferencesWin.h 2010-09-22 22:54:50.000000000 +0200 @@ -0,0 +1,62 @@ +/** Copyright (C) 2010, J.M.Reneau. + ** + ** 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 2 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, write to the Free Software Foundation, Inc., + ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + **/ + + + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifndef PREFERENCESWINH + +#define PREFERENCESWINH + +class PreferencesWin : public QDialog +{ + Q_OBJECT; + + public: + PreferencesWin(QWidget * parent); + void closeEvent(QCloseEvent *); + +private slots: + void clickCancelButton(); + void clickSaveButton(); + + +private: + QLabel *passwordlabel; + QLineEdit *passwordinput; + QCheckBox *systemcheckbox; + QCheckBox *settingcheckbox; + QCheckBox *portcheckbox; + QPushButton *cancelbutton; + QPushButton *savebutton; + +}; + +#endif diff -Nru basic256-0.9.6.32/RunController.cpp basic256-0.9.6.48/RunController.cpp --- basic256-0.9.6.32/RunController.cpp 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/RunController.cpp 2010-10-25 14:45:16.000000000 +0200 @@ -23,11 +23,14 @@ #include #include #include +#include #include #include using namespace std; #include "RunController.h" +#include "Settings.h" +#include "md5.h" #ifdef WIN32 #include @@ -37,28 +40,35 @@ #include #include #else - #ifdef LINUX_ESPEAK - #include - #endif - #ifdef LINUX_FLITE - #include - extern "C" - { - cst_voice* register_cmu_us_kal(); - } - #endif #include #include #include #include #include +#endif + +#ifdef LINUX #include #endif + +#ifdef LINUX_ESPEAK + #include +#endif + +#ifdef LINUX_FLITE + #include + extern "C" + { + cst_voice* register_cmu_us_kal(); + } +#endif + #ifdef USEQSOUND #include QSound wavsound(QString("")); #endif + #ifdef USESDL #include #include @@ -101,7 +111,7 @@ QObject::connect(i, SIGNAL(goToLine(int)), te, SLOT(goToLine(int))); QObject::connect(i, SIGNAL(setVolume(int)), this, SLOT(setVolume(int))); - QObject::connect(i, SIGNAL(system(char*)), this, SLOT(system(char*))); + QObject::connect(i, SIGNAL(executeSystem(char*)), this, SLOT(executeSystem(char*))); QObject::connect(i, SIGNAL(playSounds(int, int*)), this, SLOT(playSounds(int, int*))); QObject::connect(i, SIGNAL(speakWords(QString)), this, SLOT(speakWords(QString))); QObject::connect(i, SIGNAL(playWAV(QString)), this, SLOT(playWAV(QString))); @@ -187,7 +197,7 @@ #endif -#ifdef LINUX_DSPSOUND +#ifdef USEDSPSOUND // Code loosely based on idea from TONEGEN by Timothy Pozar // - Plays a sine wave via the dsp or standard out. @@ -334,6 +344,13 @@ //while (clock() < endwait) {} #endif +#ifdef MACX_SAY + // easy macosX implementation - call the command line say statement + text.replace("\""," quote "); + text.prepend("say \""); + text.append("\""); + executeSystem(text.toLatin1().data()); +#endif } void @@ -344,9 +361,14 @@ } void -RunController::system(char* text) +RunController::executeSystem(char* text) { + //fprintf(stderr,"system b4 %s\n", text); + mutex.lock(); system(text); + waitCond.wakeAll(); + mutex.unlock(); + //fprintf(stderr,"system af %s\n", text); } void RunController::playWAV(QString file) @@ -593,3 +615,31 @@ docwin->activateWindow(); } +void +RunController::showPreferences() +{ + bool good = true; + QSettings settings(SETTINGSORG, SETTINGSAPP); + QString prefpass = settings.value(SETTINGSPREFPASSWORD,"").toString(); + if (prefpass.length()!=0) { + char * digest; + QString text = QInputDialog::getText(mainwin, tr("BASIC-256 Preferences and Settings"), + tr("Password:"), QLineEdit::Password, QString:: null); + digest = MD5(text.toUtf8().data()).hexdigest(); + good = (QString::compare(digest, prefpass)==0); + free(digest); + } + if (good) { + PreferencesWin *w = new PreferencesWin(mainwin); + w->show(); + w->raise(); + w->activateWindow(); + } else { + QMessageBox msgBox; + msgBox.setText("Incorrect password."); + msgBox.setStandardButtons(QMessageBox::Ok); + msgBox.setDefaultButton(QMessageBox::Ok); + msgBox.exec(); + } +} + diff -Nru basic256-0.9.6.32/RunController.h basic256-0.9.6.48/RunController.h --- basic256-0.9.6.32/RunController.h 2010-08-12 14:27:17.000000000 +0200 +++ basic256-0.9.6.48/RunController.h 2010-09-14 19:19:56.000000000 +0200 @@ -29,7 +29,6 @@ #include "Interpreter.h" #include "MainWindow.h" - class RunController : public QObject { Q_OBJECT; @@ -44,10 +43,10 @@ void runResumed(); public slots: - void playSounds(int, int*); + void playSounds(int, int*); void speakWords(QString); void setVolume(int); - void system(char*); + void executeSystem(char*); void playWAV(QString); void stopWAV(); void waitWAV(); @@ -63,6 +62,7 @@ void saveByteCode(); void stepThrough(); void showDocumentation(); + void showPreferences(); private: Interpreter *i; diff -Nru basic256-0.9.6.32/seektest.txt basic256-0.9.6.48/seektest.txt --- basic256-0.9.6.32/seektest.txt 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/seektest.txt 2010-10-11 21:41:02.000000000 +0200 @@ -0,0 +1 @@ +abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ diff -Nru basic256-0.9.6.32/seektext.kbs basic256-0.9.6.48/seektext.kbs --- basic256-0.9.6.32/seektext.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/seektext.kbs 2010-10-11 21:44:54.000000000 +0200 @@ -0,0 +1,6 @@ +open 3, "seektest.txt" +seek 3,asc("O")-asc("A")+26 +print left(readline(3),1); +seek 3,asc("k")-asc("a") +print left(readline(3),1) +close 3 diff -Nru basic256-0.9.6.32/Settings.h basic256-0.9.6.48/Settings.h --- basic256-0.9.6.32/Settings.h 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/Settings.h 2010-11-01 16:09:00.000000000 +0100 @@ -0,0 +1,58 @@ +/** Copyright (C) 2010, J.M.Reneau. + ** + ** 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 2 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, write to the Free Software Foundation, Inc., + ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + **/ + + + +#include + +#ifndef SETTINGSH + #define SETTINGSH + #define SETTINGSORG "BASIC-256 Consortium" + #define SETTINGSAPP "BASIC-256 IDE" + + // main window + #define SETTINGSSIZE "Main/Size" + #define SETTINGSPOS "Main/Pos" + #define SETTINGSFONTSIZE "Main/FontSize" + #define SETTINGSFONTSIZEDEFAULT 10 + + // documentation window + #define SETTINGSDOCSIZE "Doc/Size" + #define SETTINGSDOCPOS "Doc/Pos" + + // preferences window + #define SETTINGSPREFPOS "Pref/Pos" + #define SETTINGSPREFPASSWORD "Pref/Password" + + // permissions + #define SETTINGSALLOWSYSTEM "Allow/System" + #define SETTINGSALLOWSYSTEMDEFAULT true + #define SETTINGSALLOWSETTING "Allow/Setting" + #define SETTINGSALLOWSETTINGDEFAULT true + #define SETTINGSALLOWPORT "Allow/Port" + #define SETTINGSALLOWPORTDEFAULT true + + + // store history of files as SaveHistory/0 ... SaveHistory/8 + #define SETTINGSGROUPHIST "SaveHistory" + #define SETTINGSGROUPHISTN 9 + + // store user settings (setsetting/getsetting) in seperate group + #define SETTINGSGROUPUSER "UserSettings" + + +#endif diff -Nru basic256-0.9.6.32/settingtest.kbs basic256-0.9.6.48/settingtest.kbs --- basic256-0.9.6.32/settingtest.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/settingtest.kbs 2010-09-14 20:23:31.000000000 +0200 @@ -0,0 +1,3 @@ +print getsetting("foo","bar") +setsetting "foo","bar","val" +print getsetting("foo","bar") \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/systemtest.kbs basic256-0.9.6.48/systemtest.kbs --- basic256-0.9.6.32/systemtest.kbs 1970-01-01 01:00:00.000000000 +0100 +++ basic256-0.9.6.48/systemtest.kbs 2010-09-14 19:45:10.000000000 +0200 @@ -0,0 +1,4 @@ +system "ls" +system "beep" +system "sleep 1" +system "echo done" \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/testlex.kbs basic256-0.9.6.48/testlex.kbs --- basic256-0.9.6.32/testlex.kbs 2010-08-17 04:51:36.000000000 +0200 +++ basic256-0.9.6.48/testlex.kbs 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -dim a(4) -a = {1000,100,1500,200} -sound(a) \ No hay ningún carácter de nueva línea al final del archivo diff -Nru basic256-0.9.6.32/Version.h basic256-0.9.6.48/Version.h --- basic256-0.9.6.32/Version.h 2010-08-17 17:21:09.000000000 +0200 +++ basic256-0.9.6.48/Version.h 2010-11-03 16:24:29.000000000 +0100 @@ -19,6 +19,6 @@ #ifndef __VERSION #define __VERSION -#define VERSION "0.9.6.32 (2010-08-17)" +#define VERSION "0.9.6.48 (2010-11-03)" #endif