diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 87fc58a718..dc9b341574 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,44 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-02-07 12:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/rdd/dbfcdx/dbfcdx1.c + * minor code cleanup + + * harbour/src/vm/macro.c + % eliminated memory allocation in macro compiler for object item assign + operation + * updated hb_macroGenMessage() to work like hb_compilerGenMessage() + + * harbour/src/vm/memvars.c + * reverted HB_ISIZ -> int + + * harbour/include/hbmacro.h + * harbour/include/hbexprop.h + * harbour/include/hbexpra.c + * harbour/src/common/expropt1.c + - eliminated old hb_compExprNewSend()/hb_macroExprNewSend() + + added common for compiler and macrocompiler functions: + hb_compExprNewSend(), + hb_compExprNewMacroSend(), + hb_compExprNewMethodObject() + + * harbour/include/hbcomp.h + * harbour/src/compiler/harbour.y + * harbour/src/compiler/harbour.yyc + * harbour/src/compiler/harbour.yyh + * use new functions for send coperator + % eliminated asMessage structure - it was the biggest one so this + modification reduce total memory usage by grammar stack + + added new terminal symbol MacroAny and simplified some rules using it + + added static function hb_compCheckMethod() used for enumerator + messages + - eliminated public function hb_compForEachVarError() + + * harbour/src/macro/macro.y + * harbour/src/macro/macro.yyc + * use new functions for send coperator + 2010-02-07 10:47 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * include/hbapi.h * src/vm/memvars.c diff --git a/harbour/include/hbcomp.h b/harbour/include/hbcomp.h index 57f384c14a..3cb43dfd4f 100644 --- a/harbour/include/hbcomp.h +++ b/harbour/include/hbcomp.h @@ -178,8 +178,6 @@ extern void hb_compLoopKill( PFUNCTION ); extern void hb_compGenError( HB_COMP_DECL, const char * szErrors[], char cPrefix, int iError, const char * szError1, const char * szError2 ); /* generic parsing error management function */ extern void hb_compGenWarning( HB_COMP_DECL, const char * szWarnings[], char cPrefix, int iWarning, const char * szWarning1, const char * szWarning2); /* generic parsing warning management function */ -extern HB_BOOL hb_compForEachVarError( HB_COMP_DECL, const char * ); /* checks if it is FOR EACH enumerator variable and generates a warning */ - extern ULONG hb_compGenJump( LONG, HB_COMP_DECL ); /* generates the pcode to jump to a specific offset */ extern ULONG hb_compGenJumpFalse( LONG, HB_COMP_DECL ); /* generates the pcode to jump if false */ extern ULONG hb_compGenJumpTrue( LONG, HB_COMP_DECL ); /* generates the pcode to jump if true */ diff --git a/harbour/include/hbexpra.c b/harbour/include/hbexpra.c index e855e3bf44..9a1b32f698 100644 --- a/harbour/include/hbexpra.c +++ b/harbour/include/hbexpra.c @@ -179,9 +179,9 @@ HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COM { HB_COMP_EXPR_DELETE( pParms ); HB_COMP_EXPR_DELETE( pName ); - return hb_compExprNewMethodCall( hb_compExprNewSend( - hb_compExprNewVar( szName, HB_COMP_PARAM ), - szMessage, NULL, HB_COMP_PARAM ), NULL ); + return hb_compExprNewMethodObject( + hb_compExprNewSend( szMessage, HB_COMP_PARAM ), + hb_compExprNewVar( szName, HB_COMP_PARAM ) ); } } } @@ -194,18 +194,18 @@ HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COM else if( iLen == 4 && memcmp( "EVAL", pName->value.asSymbol, 4 ) == 0 ) { HB_EXPR_PTR pEval; + /* Optimize Eval( bBlock, [ArgList] ) to: bBlock:Eval( [ArgList] ) */ if( !HB_SUPPORT_HARBOUR ) pParms = HB_EXPR_USE( pParms, HB_EA_REDUCE ); -#ifdef HB_MACRO_SUPPORT + pEval = hb_compExprNewMethodCall( - hb_macroExprNewSend( pParms->value.asList.pExprList, "EVAL", NULL, HB_COMP_PARAM ), - hb_compExprNewArgList( pParms->value.asList.pExprList->pNext, HB_COMP_PARAM ) ); -#else - pEval = hb_compExprNewMethodCall( - hb_compExprNewSend( pParms->value.asList.pExprList, "EVAL", NULL, HB_COMP_PARAM ), - hb_compExprNewArgList( pParms->value.asList.pExprList->pNext, HB_COMP_PARAM ) ); -#endif + hb_compExprNewMethodObject( + hb_compExprNewSend( "EVAL", HB_COMP_PARAM ), + pParms->value.asList.pExprList ), + hb_compExprNewArgList( + pParms->value.asList.pExprList->pNext, + HB_COMP_PARAM ) ); pParms->value.asList.pExprList = NULL; HB_COMP_EXPR_DELETE( pParms ); HB_COMP_EXPR_DELETE( pName ); @@ -457,66 +457,6 @@ HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COM return pExpr; } -/* Creates new send expression - * pObject : szMessage - */ -#ifdef HB_MACRO_SUPPORT -HB_EXPR_PTR hb_macroExprNewSend( HB_EXPR_PTR pObject, const char * szMessage, - HB_EXPR_PTR pMessage, HB_COMP_DECL ) -#else -HB_EXPR_PTR hb_compExprNewSend( HB_EXPR_PTR pObject, const char * szMessage, - HB_EXPR_PTR pMessage, HB_COMP_DECL ) -#endif -{ - HB_EXPR_PTR pExpr; - - HB_TRACE(HB_TR_DEBUG, ("hb_compExprNewSend(%p,%s,%p,%p)", pObject, szMessage, pMessage, HB_COMP_PARAM)); - - pExpr = HB_COMP_EXPR_NEW( HB_ET_SEND ); - pExpr->value.asMessage.pObject = pObject; - pExpr->value.asMessage.pParms = NULL; - - if( szMessage != NULL ) - { - pExpr->value.asMessage.szMessage = szMessage; - pExpr->value.asMessage.pMessage = NULL; -#ifndef HB_MACRO_SUPPORT - if( pObject && szMessage[ 0 ] == '_' && strncmp( "__ENUM", szMessage, 6 ) == 0 ) - { - if( strcmp( "INDEX", szMessage + 6 ) == 0 || - strcmp( "KEY", szMessage + 6 ) == 0 || - strcmp( "BASE", szMessage + 6 ) == 0 || - strcmp( "VALUE", szMessage + 6 ) == 0 ) - { - if( pObject->ExprType == HB_ET_VARIABLE ) - { - if( ! hb_compForEachVarError( HB_COMP_PARAM, pObject->value.asSymbol ) ) - { - /* pExpr->value.asMessage.pObject = hb_compExprNewVarRef( pObject->value.asSymbol, HB_COMP_PARAM ); */ - /* NOTE: direct type change */ - pObject->ExprType = HB_ET_VARREF; - } - } - } - } -#endif - } - else - { - pExpr->value.asMessage.pMessage = pMessage; - pExpr->value.asMessage.szMessage = NULL; - if( pMessage->ExprType == HB_ET_MACRO ) - { - /* Signal that macro compiler have to generate a pcode that will - * return function name as symbol instead of usual value - */ - pMessage->value.asMacro.SubType = HB_ET_MACRO_SYMBOL; - } - } - - return pExpr; -} - /* Creates new array access expression * pArray[ pIndex ] * NOTE: In case of multiple indexes it is called recursively diff --git a/harbour/include/hbexprop.h b/harbour/include/hbexprop.h index cc3ac799ea..cc62f6d0f5 100644 --- a/harbour/include/hbexprop.h +++ b/harbour/include/hbexprop.h @@ -127,7 +127,9 @@ extern HB_EXPR_PTR hb_compExprNewFunRef( const char *, HB_COMP_DECL ); extern HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR, HB_EXPR_PTR, HB_COMP_DECL ); extern HB_EXPR_PTR hb_compExprNewRef( HB_EXPR_PTR, HB_COMP_DECL ); extern HB_EXPR_PTR hb_compExprNewCodeblockExpr( HB_EXPR_PTR, HB_EXPR_PTR ); -extern HB_EXPR_PTR hb_compExprNewSend( HB_EXPR_PTR, const char *szMessage, HB_EXPR_PTR pMessage, HB_COMP_DECL ); +extern HB_EXPR_PTR hb_compExprNewSend( const char *, HB_COMP_DECL ); +extern HB_EXPR_PTR hb_compExprNewMacroSend( HB_EXPR_PTR, HB_COMP_DECL ); +extern HB_EXPR_PTR hb_compExprNewMethodObject( HB_EXPR_PTR, HB_EXPR_PTR ); extern HB_EXPR_PTR hb_compExprNewMethodCall( HB_EXPR_PTR, HB_EXPR_PTR ); extern HB_EXPR_PTR hb_compExprNewList( HB_EXPR_PTR, HB_COMP_DECL ); extern HB_EXPR_PTR hb_compExprNewArgList( HB_EXPR_PTR, HB_COMP_DECL ); diff --git a/harbour/include/hbmacro.h b/harbour/include/hbmacro.h index 9f1693158c..208d66ab60 100644 --- a/harbour/include/hbmacro.h +++ b/harbour/include/hbmacro.h @@ -109,7 +109,6 @@ extern HB_EXPR_PTR hb_macroExprGenPop( HB_EXPR_PTR, HB_COMP_DECL ); extern HB_EXPR_PTR hb_macroExprNewArrayAt( HB_EXPR_PTR pArray, HB_EXPR_PTR pIndex, HB_COMP_DECL ); extern HB_EXPR_PTR hb_macroExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COMP_DECL ); -extern HB_EXPR_PTR hb_macroExprNewSend( HB_EXPR_PTR pObject, const char * szMessage, HB_EXPR_PTR pMessage, HB_COMP_DECL ); /* Size of pcode buffer incrementation */ diff --git a/harbour/src/common/expropt1.c b/harbour/src/common/expropt1.c index 016d3f68f8..6fbfa6b21b 100644 --- a/harbour/src/common/expropt1.c +++ b/harbour/src/common/expropt1.c @@ -673,6 +673,67 @@ HB_EXPR_PTR hb_compExprNewAliasExpr( HB_EXPR_PTR pAlias, HB_EXPR_PTR pExpList, return pExpr; } +/* Creates new send expression + * : -> ( expression ) + */ +HB_EXPR_PTR hb_compExprNewSend( const char * szMessage, HB_COMP_DECL ) +{ + HB_EXPR_PTR pExpr; + + HB_TRACE(HB_TR_DEBUG, ("hb_compExprNewSend(%s,%p)", szMessage, HB_COMP_PARAM)); + + pExpr = HB_COMP_EXPR_NEW( HB_ET_SEND ); + pExpr->value.asMessage.pObject = NULL; + pExpr->value.asMessage.pParms = NULL; + + pExpr->value.asMessage.szMessage = szMessage; + pExpr->value.asMessage.pMessage = NULL; + + return pExpr; +} + +/* Creates new macro send expression + * : & -> ( expression ) + */ +HB_EXPR_PTR hb_compExprNewMacroSend( HB_EXPR_PTR pMessage, HB_COMP_DECL ) +{ + HB_EXPR_PTR pExpr; + + HB_TRACE(HB_TR_DEBUG, ("hb_compExprNewMacroSend(%p,%p)", pMessage, HB_COMP_PARAM)); + + pExpr = HB_COMP_EXPR_NEW( HB_ET_SEND ); + pExpr->value.asMessage.pObject = NULL; + pExpr->value.asMessage.pParms = NULL; + + pExpr->value.asMessage.szMessage = NULL; + pExpr->value.asMessage.pMessage = pMessage; + + if( pMessage->ExprType == HB_ET_MACRO ) + { + /* Signal that macro compiler have to generate a pcode that will + * return function name as symbol instead of usual value + */ + pMessage->value.asMacro.SubType = HB_ET_MACRO_SYMBOL; + } + + return pExpr; +} + +/* Set object in send expression + * pObject : pExpr + * + * pExpr = is an expression returned by hb_compExprNewSend + * pObject = is an object + */ +HB_EXPR_PTR hb_compExprNewMethodObject( HB_EXPR_PTR pExpr, HB_EXPR_PTR pObject ) +{ + HB_TRACE(HB_TR_DEBUG, ("hb_compExprNewMethodObject(%p,%p,%p)", pExpr, pObject, HB_COMP_PARAM)); + + pExpr->value.asMessage.pObject = pObject; + + return pExpr; +} + /* Creates new method call * pObject : identifier ( pArgList ) * diff --git a/harbour/src/compiler/harbour.y b/harbour/src/compiler/harbour.y index f0e8e47fa5..463126878e 100644 --- a/harbour/src/compiler/harbour.y +++ b/harbour/src/compiler/harbour.y @@ -94,6 +94,7 @@ static void hb_compSwitchStart( HB_COMP_DECL, HB_EXPR_PTR ); static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR ); static void hb_compSwitchEnd( HB_COMP_DECL ); +static HB_EXPR_PTR hb_compCheckMethod( HB_COMP_DECL, HB_EXPR_PTR pExpr ); static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ); #ifdef HB_YYDEBUG @@ -146,15 +147,6 @@ static void hb_compDebugStart( void ) { } int length; int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */ } asCodeblock; - struct - { - HB_BOOL bMacro; - union - { - char * string; - HB_EXPR_PTR macro; - } value; - } asMessage; PHB_VARTYPE asVarType; }; @@ -230,7 +222,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme %type IfElseIf Cases %type Argument ExtArgument RefArgument ArgList ElemList %type BlockHead BlockExpList BlockVars BlockVarList -%type DoName DoProc DoArgs DoArgument DoArgList +%type DoProc DoArgs DoArgument DoArgList %type NumValue NumAlias %type NilValue NilAlias %type LiteralValue LiteralAlias @@ -244,6 +236,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme %type Variable VarAlias %type MacroVar MacroVarAlias %type MacroExpr MacroExprAlias +%type MacroAny %type AliasId AliasVar AliasExpr %type VariableAt VariableAtAlias %type FunIdentCall FunCall FunCallAlias FunRef @@ -263,7 +256,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme %type ForVar ForList ForExpr ForArgs %type SwitchStart SwitchBegin %type CBSTART -%type SendId +%type SendId %type AsType StrongType AsArrayType AsArray /* @@ -375,13 +368,7 @@ Statement : ExecFlow CrlfStmnt | FunCall CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } | AliasExpr CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } | ObjectMethod CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } - | MacroVar CrlfStmnt { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); - else - HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( $1 ) ); - HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; - } - | MacroExpr CrlfStmnt { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) + | MacroAny CrlfStmnt { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); else HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( $1 ) ); @@ -682,6 +669,10 @@ MacroExpr : '&' PareExpList { $$ = hb_compExprNewMacro( $2, 0, NULL, HB_COMP_P MacroExprAlias : MacroExpr ALIASOP ; +MacroAny : MacroVar + | MacroExpr + ; + /* Aliased variables */ /* special case: _FIELD-> and FIELD-> can be nested @@ -709,8 +700,7 @@ FieldVarAlias : FieldAlias VarAlias { HB_COMP_EXPR_DELETE( $1 ); $$ ; AliasId : IdentName { $$ = hb_compExprNewVar( $1, HB_COMP_PARAM ); } - | MacroVar - | MacroExpr + | MacroAny ; AliasVar : NumAlias AliasId { $$ = hb_compExprNewAliasVar( $1, $2, HB_COMP_PARAM ); } @@ -763,8 +753,7 @@ VariableAt : NumValue ArrayIndex { $$ = $2; } | Variable ArrayIndex { $$ = $2; } | AliasVar ArrayIndex { $$ = $2; } | AliasExpr ArrayIndex { $$ = $2; } - | MacroVar ArrayIndex { $$ = $2; } - | MacroExpr ArrayIndex { $$ = $2; } + | MacroAny ArrayIndex { $$ = $2; } | ObjectData ArrayIndex { $$ = $2; } | ObjectMethod ArrayIndex { $$ = $2; } | FunCall ArrayIndex { $$ = $2; } @@ -780,8 +769,7 @@ FunIdentCall: IdentName '(' ArgList ')' { $$ = hb_compExprNewFunCall( hb_compE ; FunCall : FunIdentCall - | MacroVar '(' ArgList ')' { $$ = hb_compExprNewFunCall( $1, $3, HB_COMP_PARAM ); } - | MacroExpr '(' ArgList ')' { $$ = hb_compExprNewFunCall( $1, $3, HB_COMP_PARAM ); } + | MacroAny '(' ArgList ')' { $$ = hb_compExprNewFunCall( $1, $3, HB_COMP_PARAM ); } ; /* FunRef : '@' FunCall { $$ = hb_compCheckPassByRef( HB_COMP_PARAM, $2 ); } */ @@ -812,21 +800,20 @@ ExtArgument : EPSILON { $$ = hb_compExprNewArgRef( HB_COMP_PARAM ); } /* Object's instance variable */ -ObjectData : LeftExpression ':' SendId { $$ = ($3.bMacro ? hb_compExprNewSend( $1, NULL, $3.value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( $1, $3.value.string, NULL, HB_COMP_PARAM )); } - | ObjectRef ':' SendId { $$ = ($3.bMacro ? hb_compExprNewSend( $1, NULL, $3.value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( $1, $3.value.string, NULL, HB_COMP_PARAM )); } +ObjectData : LeftExpression ':' SendId { $$ = hb_compCheckMethod( HB_COMP_PARAM, hb_compExprNewMethodObject( $3, $1 ) ); } + | ObjectRef ':' SendId { $$ = hb_compExprNewMethodObject( $3, $1 ); } | ':' SendId { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL ); - $$ = ($2.bMacro ? hb_compExprNewSend( NULL, NULL, $2.value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, $2.value.string, NULL, HB_COMP_PARAM )); + $$ = $2; } ; -SendId : IdentName { $$.value.string = $1; $$.bMacro=FALSE; } - | MacroVar { $$.value.macro = $1; $$.bMacro=TRUE; } - | MacroExpr { $$.value.macro = $1; $$.bMacro=TRUE; } +SendId : IdentName { $$ = hb_compExprNewSend( $1, HB_COMP_PARAM ); } + | MacroAny { $$ = hb_compExprNewMacroSend( $1, HB_COMP_PARAM ); } ; ObjectRef : '(' '@' IdentName ')' { $$ = hb_compExprNewVarRef( $3, HB_COMP_PARAM ); } - + ; ObjectDataAlias : ObjectData ALIASOP ; @@ -921,8 +908,7 @@ LeftExpression : NumValue | Hash | AliasVar | AliasExpr - | MacroVar - | MacroExpr + | MacroAny | Variable | VariableAt | PareExpList @@ -1886,11 +1872,7 @@ RecoverUsing : RECOVERUSING IdentName * DO .. WITH ++variable * will pass the value of variable not a reference */ -DoName : MacroVar - | MacroExpr - ; - -DoProc : DO DoName DoArgs +DoProc : DO MacroAny DoArgs { $$ = hb_compExprNewFunCall( $2, $3, HB_COMP_PARAM ); } @@ -2467,7 +2449,7 @@ static void hb_compForStart( HB_COMP_DECL, const char *szVarName, HB_BOOL bForEa pEnumVar->pNext = NULL; } -HB_BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName ) +static HB_BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName ) { HB_ENUMERATOR_PTR pEnumVar; @@ -2790,6 +2772,29 @@ static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ) return pExpr; } +static HB_EXPR_PTR hb_compCheckMethod( HB_COMP_DECL, HB_EXPR_PTR pExpr ) +{ + if( pExpr->value.asMessage.szMessage && + pExpr->value.asMessage.pObject && + pExpr->value.asMessage.pObject->ExprType == HB_ET_VARIABLE && + pExpr->value.asMessage.szMessage[ 0 ] == '_' && + strncmp( "__ENUM", pExpr->value.asMessage.szMessage, 6 ) == 0 ) + { + const char * szMessage = pExpr->value.asMessage.szMessage + 6; + + if( strcmp( "INDEX", szMessage ) == 0 || + strcmp( "KEY", szMessage ) == 0 || + strcmp( "BASE", szMessage ) == 0 || + strcmp( "VALUE", szMessage ) == 0 ) + { + if( ! hb_compForEachVarError( HB_COMP_PARAM, pExpr->value.asMessage.pObject->value.asSymbol ) ) + pExpr->value.asMessage.pObject->ExprType = HB_ET_VARREF; + } + } + + return pExpr; +} + /* ************************************************************************* */ HB_BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc ) diff --git a/harbour/src/compiler/harbour.yyc b/harbour/src/compiler/harbour.yyc index 839696ea82..b4c72ba361 100644 --- a/harbour/src/compiler/harbour.yyc +++ b/harbour/src/compiler/harbour.yyc @@ -393,6 +393,7 @@ static void hb_compSwitchStart( HB_COMP_DECL, HB_EXPR_PTR ); static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR ); static void hb_compSwitchEnd( HB_COMP_DECL ); +static HB_EXPR_PTR hb_compCheckMethod( HB_COMP_DECL, HB_EXPR_PTR pExpr ); static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ); #ifdef HB_YYDEBUG @@ -428,7 +429,7 @@ static void hb_compDebugStart( void ) { } #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 113 "harbour.y" +#line 114 "harbour.y" { char * string; /* to hold a string returned by lex */ int iNumber; /* to hold a temporary integer number */ @@ -465,19 +466,10 @@ typedef union YYSTYPE int length; int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */ } asCodeblock; - struct - { - HB_BOOL bMacro; - union - { - char * string; - HB_EXPR_PTR macro; - } value; - } asMessage; PHB_VARTYPE asVarType; } /* Line 187 of yacc.c. */ -#line 481 "harboury.c" +#line 473 "harboury.c" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 @@ -487,7 +479,7 @@ typedef union YYSTYPE /* Copy the second part of user declarations. */ -#line 161 "harbour.y" +#line 153 "harbour.y" /* This must be placed after the above union - the union is * typedef-ined to YYSTYPE @@ -497,7 +489,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme /* Line 216 of yacc.c. */ -#line 501 "harboury.c" +#line 493 "harboury.c" #ifdef short # undef short @@ -710,18 +702,18 @@ union yyalloc #endif /* YYFINAL -- State number of the termination state. */ -#define YYFINAL 281 +#define YYFINAL 280 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 9174 +#define YYLAST 9050 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 134 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 242 /* YYNRULES -- Number of rules. */ -#define YYNRULES 618 +#define YYNRULES 612 /* YYNRULES -- Number of states. */ -#define YYNSTATES 964 +#define YYNSTATES 955 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -784,69 +776,69 @@ static const yytype_uint16 yyprhs[] = 110, 112, 114, 116, 118, 121, 123, 125, 127, 129, 131, 133, 135, 137, 139, 141, 144, 147, 152, 155, 158, 161, 164, 167, 170, 173, 176, 179, 182, 185, - 188, 191, 194, 197, 198, 203, 206, 209, 212, 213, - 218, 219, 220, 226, 227, 228, 234, 236, 238, 240, - 244, 248, 249, 254, 259, 261, 265, 266, 269, 271, - 273, 275, 277, 279, 281, 286, 294, 299, 307, 308, - 310, 312, 314, 316, 319, 320, 322, 324, 328, 330, - 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, - 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, - 374, 376, 378, 380, 383, 386, 388, 391, 393, 396, - 399, 401, 403, 406, 408, 411, 415, 418, 421, 424, - 428, 432, 435, 439, 445, 447, 450, 452, 454, 457, - 460, 463, 466, 470, 473, 476, 479, 482, 485, 488, - 491, 494, 497, 500, 503, 506, 509, 512, 514, 516, - 518, 521, 524, 527, 530, 533, 536, 539, 542, 545, - 548, 551, 554, 557, 560, 563, 566, 569, 572, 575, - 578, 581, 584, 587, 590, 593, 596, 599, 602, 605, - 608, 611, 614, 617, 620, 623, 626, 629, 632, 635, - 638, 641, 644, 647, 650, 653, 656, 661, 663, 668, - 673, 676, 679, 681, 685, 687, 689, 692, 695, 698, - 701, 704, 706, 708, 712, 716, 719, 721, 723, 725, - 730, 733, 738, 741, 743, 745, 747, 749, 751, 753, - 755, 757, 760, 762, 764, 766, 768, 770, 772, 774, - 776, 778, 781, 783, 785, 788, 790, 793, 795, 797, - 799, 801, 803, 805, 807, 809, 811, 813, 815, 818, - 821, 823, 825, 827, 828, 830, 832, 834, 836, 838, - 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, - 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, - 880, 882, 884, 886, 888, 890, 892, 895, 898, 901, - 904, 907, 910, 914, 918, 922, 926, 930, 934, 938, - 942, 944, 946, 948, 950, 952, 954, 958, 962, 966, - 970, 974, 978, 982, 986, 990, 994, 998, 1002, 1006, - 1010, 1014, 1018, 1022, 1025, 1028, 1032, 1037, 1039, 1043, - 1044, 1049, 1050, 1052, 1054, 1058, 1061, 1066, 1068, 1072, - 1073, 1074, 1080, 1081, 1087, 1089, 1093, 1097, 1100, 1109, - 1112, 1113, 1118, 1119, 1124, 1125, 1131, 1132, 1137, 1139, - 1143, 1145, 1149, 1151, 1154, 1159, 1163, 1166, 1167, 1173, - 1177, 1180, 1183, 1187, 1192, 1193, 1199, 1202, 1207, 1208, - 1211, 1212, 1217, 1220, 1225, 1226, 1235, 1236, 1242, 1246, - 1251, 1255, 1256, 1264, 1266, 1270, 1272, 1275, 1277, 1280, - 1281, 1288, 1289, 1293, 1294, 1296, 1298, 1302, 1303, 1305, - 1307, 1309, 1313, 1317, 1323, 1325, 1329, 1331, 1334, 1338, - 1344, 1349, 1355, 1363, 1367, 1372, 1379, 1385, 1392, 1401, - 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1420, 1424, - 1428, 1433, 1434, 1435, 1442, 1443, 1448, 1449, 1450, 1457, - 1458, 1459, 1467, 1469, 1471, 1473, 1477, 1481, 1484, 1489, - 1491, 1493, 1495, 1496, 1500, 1502, 1505, 1506, 1507, 1514, - 1515, 1516, 1524, 1525, 1526, 1532, 1533, 1539, 1540, 1541, - 1549, 1551, 1553, 1555, 1557, 1558, 1559, 1560, 1573, 1575, - 1577, 1578, 1581, 1584, 1586, 1589, 1591, 1594, 1596, 1598, - 1600, 1604, 1607, 1609, 1611, 1615, 1616, 1617, 1618, 1629, - 1630, 1632, 1633, 1638, 1641, 1643, 1645, 1647, 1648, 1653, - 1655, 1658, 1659, 1665, 1666, 1673, 1675, 1678, 1679, 1680, - 1686, 1687, 1688, 1689, 1690, 1702, 1704, 1706, 1707, 1710, - 1711, 1715, 1717, 1718, 1722, 1726, 1728, 1731, 1733, 1735, - 1739, 1742, 1743, 1746, 1748, 1751, 1753, 1756, 1760, 1762, - 1764, 1766, 1768, 1770, 1771, 1778, 1780, 1782, 1784 + 188, 191, 194, 195, 200, 203, 206, 209, 210, 215, + 216, 217, 223, 224, 225, 231, 233, 235, 237, 241, + 245, 246, 251, 256, 258, 262, 263, 266, 268, 270, + 272, 274, 276, 278, 283, 291, 296, 304, 305, 307, + 309, 311, 313, 316, 317, 319, 321, 325, 327, 331, + 333, 335, 337, 339, 341, 343, 345, 347, 349, 351, + 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, + 373, 375, 377, 380, 383, 385, 388, 390, 393, 396, + 398, 400, 403, 405, 408, 412, 415, 418, 421, 425, + 429, 432, 436, 442, 444, 447, 449, 451, 454, 457, + 460, 462, 464, 467, 471, 474, 477, 480, 483, 486, + 489, 492, 495, 498, 501, 504, 507, 510, 513, 515, + 517, 520, 523, 526, 529, 532, 535, 538, 541, 544, + 547, 550, 553, 556, 559, 562, 565, 568, 571, 574, + 577, 580, 583, 586, 589, 592, 595, 598, 601, 604, + 607, 610, 613, 616, 619, 622, 625, 628, 631, 634, + 637, 640, 643, 646, 649, 652, 657, 659, 664, 667, + 670, 672, 676, 678, 680, 683, 686, 689, 692, 695, + 697, 699, 703, 707, 710, 712, 714, 719, 722, 727, + 730, 732, 734, 736, 738, 740, 742, 744, 746, 749, + 751, 753, 755, 757, 759, 761, 763, 765, 767, 770, + 772, 774, 777, 779, 782, 784, 786, 788, 790, 792, + 794, 796, 798, 800, 802, 804, 807, 810, 812, 814, + 816, 817, 819, 821, 823, 825, 827, 829, 831, 833, + 835, 837, 839, 841, 843, 845, 847, 849, 851, 853, + 855, 857, 859, 861, 863, 865, 867, 869, 871, 873, + 875, 877, 879, 882, 885, 888, 891, 894, 897, 901, + 905, 909, 913, 917, 921, 925, 929, 931, 933, 935, + 937, 939, 941, 945, 949, 953, 957, 961, 965, 969, + 973, 977, 981, 985, 989, 993, 997, 1001, 1005, 1009, + 1012, 1015, 1019, 1024, 1026, 1030, 1031, 1036, 1037, 1039, + 1041, 1045, 1048, 1053, 1055, 1059, 1060, 1061, 1067, 1068, + 1074, 1076, 1080, 1084, 1087, 1096, 1099, 1100, 1105, 1106, + 1111, 1112, 1118, 1119, 1124, 1126, 1130, 1132, 1136, 1138, + 1141, 1146, 1150, 1153, 1154, 1160, 1164, 1167, 1170, 1174, + 1179, 1180, 1186, 1189, 1194, 1195, 1198, 1199, 1204, 1207, + 1212, 1213, 1222, 1223, 1229, 1233, 1238, 1242, 1243, 1251, + 1253, 1257, 1259, 1262, 1264, 1267, 1268, 1275, 1276, 1280, + 1281, 1283, 1285, 1289, 1290, 1292, 1294, 1296, 1300, 1304, + 1310, 1312, 1316, 1318, 1321, 1325, 1331, 1336, 1342, 1350, + 1354, 1359, 1366, 1372, 1379, 1388, 1390, 1392, 1394, 1396, + 1398, 1400, 1402, 1404, 1407, 1411, 1415, 1420, 1421, 1422, + 1429, 1430, 1435, 1436, 1437, 1444, 1445, 1446, 1454, 1456, + 1458, 1460, 1464, 1468, 1471, 1476, 1478, 1480, 1482, 1483, + 1487, 1489, 1492, 1493, 1494, 1501, 1502, 1503, 1511, 1512, + 1513, 1519, 1520, 1526, 1527, 1528, 1536, 1538, 1540, 1542, + 1544, 1545, 1546, 1547, 1560, 1562, 1564, 1565, 1568, 1571, + 1573, 1576, 1578, 1581, 1583, 1585, 1587, 1591, 1594, 1596, + 1598, 1602, 1603, 1604, 1605, 1616, 1617, 1619, 1620, 1625, + 1628, 1630, 1632, 1634, 1635, 1640, 1642, 1645, 1646, 1652, + 1653, 1660, 1662, 1665, 1666, 1667, 1673, 1674, 1675, 1676, + 1677, 1689, 1691, 1693, 1694, 1697, 1698, 1702, 1704, 1705, + 1709, 1713, 1715, 1718, 1722, 1725, 1726, 1729, 1731, 1734, + 1736, 1739, 1743, 1745, 1747, 1749, 1751, 1753, 1754, 1761, + 1763, 1765, 1767 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 135, 0, -1, 136, -1, -1, 375, -1, 274, -1, + 135, 0, -1, 136, -1, -1, 375, -1, 275, -1, 138, -1, 150, -1, 137, -1, 1, 375, -1, 136, - 375, -1, 136, 274, -1, 136, 138, -1, 136, 150, + 375, -1, 136, 275, -1, 136, 138, -1, 136, 150, -1, 136, 137, -1, 136, 1, 375, -1, 71, 10, 19, 375, -1, 71, 10, 19, 122, 19, 375, -1, -1, 143, 3, 168, 139, 375, -1, -1, 143, 4, @@ -859,237 +851,235 @@ static const yytype_int16 yyrhs[] = -1, 82, -1, 148, -1, 74, -1, 93, -1, 89, -1, 91, -1, 92, -1, 87, -1, 88, -1, 94, -1, 90, 168, -1, 168, 145, -1, 149, 125, 168, - 145, -1, 290, 159, -1, 253, 159, -1, 203, 159, - -1, 199, 159, -1, 214, 159, -1, 191, 159, -1, - 193, 159, -1, 251, 159, -1, 224, 159, -1, 223, - 159, -1, 234, 159, -1, 226, 159, -1, 227, 159, - -1, 368, 159, -1, 63, 159, -1, -1, 63, 151, - 217, 375, -1, 26, 159, -1, 44, 159, -1, 6, - 159, -1, -1, 6, 152, 217, 375, -1, -1, -1, - 30, 153, 261, 154, 375, -1, -1, -1, 61, 155, - 261, 156, 375, -1, 255, -1, 267, -1, 271, -1, - 23, 166, 375, -1, 24, 167, 375, -1, -1, 22, - 168, 157, 375, -1, 95, 158, 127, 375, -1, 19, - -1, 19, 114, 19, -1, -1, 160, 375, -1, 375, - -1, 150, -1, 274, -1, 137, -1, 162, -1, 1, - -1, 163, 3, 168, 375, -1, 163, 3, 168, 126, - 144, 127, 375, -1, 163, 4, 168, 375, -1, 163, - 4, 168, 126, 144, 127, 375, -1, -1, 12, -1, - 25, -1, 26, -1, 161, -1, 164, 161, -1, -1, - 164, -1, 168, -1, 166, 125, 168, -1, 168, -1, - 167, 125, 168, -1, 5, -1, 48, -1, 47, -1, - 44, -1, 26, -1, 52, -1, 84, -1, 23, -1, - 24, -1, 22, -1, 11, -1, 42, -1, 12, -1, - 61, -1, 30, -1, 53, -1, 95, -1, 99, -1, - 108, -1, 8, -1, 10, -1, 104, -1, 105, -1, - 10, 36, -1, 8, 36, -1, 7, -1, 173, 36, - -1, 19, -1, 175, 36, -1, 246, 36, -1, 20, - -1, 21, -1, 178, 36, -1, 70, -1, 180, 36, - -1, 128, 240, 129, -1, 182, 36, -1, 182, 238, - -1, 184, 36, -1, 128, 107, 129, -1, 128, 188, - 129, -1, 186, 36, -1, 217, 107, 219, -1, 188, - 125, 217, 107, 219, -1, 168, -1, 168, 36, -1, - 72, -1, 73, -1, 191, 36, -1, 121, 251, -1, - 193, 36, -1, 51, 36, -1, 51, 36, 195, -1, - 195, 190, -1, 195, 172, -1, 195, 252, -1, 195, - 192, -1, 195, 194, -1, 195, 174, -1, 195, 176, - -1, 195, 179, -1, 195, 177, -1, 195, 181, -1, - 195, 183, -1, 195, 185, -1, 195, 187, -1, 195, - 254, -1, 168, -1, 191, -1, 193, -1, 172, 197, - -1, 192, 197, -1, 194, 197, -1, 252, 197, -1, - 174, 197, -1, 176, 197, -1, 179, 197, -1, 177, - 197, -1, 187, 197, -1, 181, 197, -1, 183, 197, - -1, 185, 197, -1, 201, 197, -1, 254, 197, -1, - 205, 197, -1, 213, 197, -1, 215, 197, -1, 190, - 197, -1, 195, 197, -1, 196, 197, -1, 172, 251, - -1, 190, 251, -1, 192, 251, -1, 194, 251, -1, - 252, 251, -1, 195, 251, -1, 169, 238, -1, 173, - 238, -1, 170, 238, -1, 171, 238, -1, 175, 238, - -1, 246, 238, -1, 178, 238, -1, 186, 238, -1, - 180, 238, -1, 189, 238, -1, 198, 238, -1, 199, - 238, -1, 191, 238, -1, 193, 238, -1, 210, 238, - -1, 214, 238, -1, 203, 238, -1, 253, 238, -1, - 251, 238, -1, 200, 36, -1, 168, 126, 206, 127, - -1, 202, -1, 191, 126, 206, 127, -1, 193, 126, - 206, 127, -1, 122, 202, -1, 203, 36, -1, 209, - -1, 206, 125, 209, -1, 219, -1, 208, -1, 122, - 168, -1, 122, 191, -1, 122, 198, -1, 122, 210, - -1, 122, 200, -1, 106, -1, 207, -1, 221, 130, - 211, -1, 212, 130, 211, -1, 130, 211, -1, 168, - -1, 191, -1, 193, -1, 126, 122, 168, 127, -1, - 210, 36, -1, 210, 126, 206, 127, -1, 214, 36, - -1, 169, -1, 173, -1, 170, -1, 171, -1, 175, - -1, 246, -1, 178, -1, 180, -1, 180, 147, -1, - 182, -1, 184, -1, 186, -1, 198, -1, 199, -1, - 191, -1, 193, -1, 200, -1, 203, -1, 203, 147, - -1, 253, -1, 210, -1, 210, 147, -1, 214, -1, - 214, 147, -1, 227, -1, 234, -1, 223, -1, 224, - -1, 225, -1, 235, -1, 236, -1, 237, -1, 216, - -1, 189, -1, 251, -1, 189, 147, -1, 251, 147, - -1, 204, -1, 106, -1, 217, -1, -1, 217, -1, - 168, -1, 198, -1, 191, -1, 193, -1, 210, -1, - 200, -1, 251, -1, 169, -1, 173, -1, 170, -1, - 171, -1, 175, -1, 246, -1, 178, -1, 180, -1, - 182, -1, 184, -1, 186, -1, 198, -1, 199, -1, - 191, -1, 193, -1, 189, -1, 200, -1, 251, -1, - 203, -1, 253, -1, 210, -1, 214, -1, 34, -1, - 35, -1, 221, 222, -1, 34, 217, -1, 35, 217, - -1, 29, 217, -1, 115, 217, -1, 114, 217, -1, - 221, 110, 217, -1, 221, 9, 217, -1, 221, 54, - 217, -1, 221, 55, 217, -1, 221, 56, 217, -1, - 221, 57, 217, -1, 221, 60, 217, -1, 221, 59, - 217, -1, 228, -1, 229, -1, 230, -1, 231, -1, - 232, -1, 233, -1, 217, 114, 217, -1, 217, 115, - 217, -1, 217, 116, 217, -1, 217, 117, 217, -1, - 217, 118, 217, -1, 217, 58, 217, -1, 217, 27, - 217, -1, 217, 28, 217, -1, 217, 31, 217, -1, - 217, 111, 217, -1, 217, 112, 217, -1, 217, 49, - 217, -1, 217, 50, 217, -1, 217, 32, 217, -1, - 217, 33, 217, -1, 217, 113, 217, -1, 217, 110, - 217, -1, 239, 131, -1, 132, 218, -1, 239, 125, - 218, -1, 239, 131, 132, 218, -1, 209, -1, 240, - 125, 209, -1, -1, 96, 242, 243, 133, -1, -1, - 106, -1, 244, -1, 244, 125, 106, -1, 168, 145, - -1, 244, 125, 168, 145, -1, 217, -1, 245, 125, - 217, -1, -1, -1, 241, 247, 245, 248, 129, -1, - -1, 241, 375, 249, 165, 129, -1, 217, -1, 250, - 125, 217, -1, 126, 250, 127, -1, 251, 36, -1, - 13, 126, 217, 125, 207, 125, 207, 127, -1, 253, - 36, -1, -1, 11, 256, 260, 375, -1, -1, 12, - 257, 260, 375, -1, -1, 108, 12, 258, 260, 375, - -1, -1, 53, 259, 273, 375, -1, 263, -1, 260, - 125, 263, -1, 262, -1, 261, 125, 262, -1, 263, - -1, 191, 145, -1, 191, 145, 9, 217, -1, 191, - 265, 146, -1, 168, 145, -1, -1, 168, 145, 264, - 9, 217, -1, 168, 265, 146, -1, 266, 131, -1, - 132, 217, -1, 266, 125, 217, -1, 266, 131, 132, - 217, -1, -1, 51, 268, 269, 270, 375, -1, 168, - 145, -1, 269, 125, 168, 145, -1, -1, 52, 168, - -1, -1, 42, 272, 273, 375, -1, 168, 145, -1, - 273, 125, 168, 145, -1, -1, 83, 168, 126, 275, - 284, 127, 145, 375, -1, -1, 83, 168, 276, 279, - 375, -1, 85, 168, 375, -1, 85, 168, 168, 375, - -1, 86, 280, 375, -1, -1, 86, 128, 145, 277, - 278, 129, 375, -1, 282, -1, 278, 125, 282, -1, - 280, -1, 279, 280, -1, 282, -1, 279, 282, -1, - -1, 168, 126, 281, 285, 127, 145, -1, -1, 168, - 283, 145, -1, -1, 288, -1, 289, -1, 288, 125, - 289, -1, -1, 288, -1, 289, -1, 106, -1, 288, - 125, 106, -1, 288, 125, 289, -1, 288, 125, 289, - 125, 106, -1, 287, -1, 286, 125, 287, -1, 219, - -1, 168, 145, -1, 122, 168, 145, -1, 122, 168, - 126, 286, 127, -1, 288, 125, 168, 145, -1, 288, - 125, 122, 168, 145, -1, 288, 125, 122, 168, 126, - 286, 127, -1, 84, 168, 145, -1, 84, 122, 168, - 145, -1, 84, 122, 168, 126, 286, 127, -1, 289, - 125, 84, 168, 145, -1, 289, 125, 84, 122, 168, - 145, -1, 289, 125, 84, 122, 168, 126, 286, 127, - -1, 291, -1, 304, -1, 319, -1, 325, -1, 355, - -1, 337, -1, 342, -1, 372, -1, 292, 302, -1, - 292, 295, 302, -1, 292, 297, 302, -1, 292, 297, - 295, 302, -1, -1, -1, 14, 250, 293, 375, 294, - 165, -1, -1, 15, 375, 296, 165, -1, -1, -1, - 16, 298, 250, 375, 299, 165, -1, -1, -1, 297, - 16, 300, 250, 375, 301, 165, -1, 303, -1, 18, - -1, 17, -1, 309, 310, 305, -1, 309, 315, 305, - -1, 309, 305, -1, 309, 310, 315, 305, -1, 306, - -1, 40, -1, 17, -1, -1, 37, 308, 375, -1, - 307, -1, 307, 164, -1, -1, -1, 38, 311, 250, - 375, 312, 165, -1, -1, -1, 310, 38, 313, 250, - 375, 314, 165, -1, -1, -1, 39, 316, 375, 317, - 165, -1, -1, 315, 39, 318, 375, 165, -1, -1, - -1, 322, 250, 375, 320, 165, 321, 323, -1, 43, - -1, 324, -1, 41, -1, 17, -1, -1, -1, -1, - 45, 220, 329, 217, 326, 47, 250, 330, 327, 375, - 328, 331, -1, 110, -1, 9, -1, -1, 48, 250, - -1, 165, 332, -1, 46, -1, 46, 168, -1, 17, - -1, 17, 168, -1, 168, -1, 198, -1, 333, -1, - 334, 125, 333, -1, 122, 168, -1, 217, -1, 335, - -1, 336, 125, 335, -1, -1, -1, -1, 98, 334, - 52, 336, 338, 341, 339, 375, 340, 331, -1, -1, - 99, -1, -1, 348, 343, 349, 344, -1, 348, 344, - -1, 345, -1, 101, -1, 17, -1, -1, 100, 347, - 217, 375, -1, 346, -1, 346, 164, -1, -1, 38, - 217, 350, 375, 165, -1, -1, 349, 38, 217, 351, - 375, 165, -1, 352, -1, 349, 352, -1, -1, -1, - 39, 353, 375, 354, 165, -1, -1, -1, -1, -1, - 62, 356, 361, 375, 165, 357, 364, 358, 362, 359, - 360, -1, 67, -1, 17, -1, -1, 69, 217, -1, - -1, 363, 375, 165, -1, 66, -1, -1, 365, 375, - 165, -1, 366, 375, 165, -1, 64, -1, 65, 168, - -1, 191, -1, 193, -1, 68, 367, 369, -1, 97, - 369, -1, -1, 69, 370, -1, 125, -1, 125, 371, - -1, 371, -1, 370, 125, -1, 370, 125, 371, -1, - 168, -1, 208, -1, 204, -1, 216, -1, 251, -1, - -1, 102, 217, 375, 373, 165, 374, -1, 103, -1, - 17, -1, 123, -1, 124, -1 + 145, -1, 291, 159, -1, 254, 159, -1, 204, 159, + -1, 200, 159, -1, 215, 159, -1, 195, 159, -1, + 252, 159, -1, 225, 159, -1, 224, 159, -1, 235, + 159, -1, 227, 159, -1, 228, 159, -1, 368, 159, + -1, 63, 159, -1, -1, 63, 151, 218, 375, -1, + 26, 159, -1, 44, 159, -1, 6, 159, -1, -1, + 6, 152, 218, 375, -1, -1, -1, 30, 153, 262, + 154, 375, -1, -1, -1, 61, 155, 262, 156, 375, + -1, 256, -1, 268, -1, 272, -1, 23, 166, 375, + -1, 24, 167, 375, -1, -1, 22, 168, 157, 375, + -1, 95, 158, 127, 375, -1, 19, -1, 19, 114, + 19, -1, -1, 160, 375, -1, 375, -1, 150, -1, + 275, -1, 137, -1, 162, -1, 1, -1, 163, 3, + 168, 375, -1, 163, 3, 168, 126, 144, 127, 375, + -1, 163, 4, 168, 375, -1, 163, 4, 168, 126, + 144, 127, 375, -1, -1, 12, -1, 25, -1, 26, + -1, 161, -1, 164, 161, -1, -1, 164, -1, 168, + -1, 166, 125, 168, -1, 168, -1, 167, 125, 168, + -1, 5, -1, 48, -1, 47, -1, 44, -1, 26, + -1, 52, -1, 84, -1, 23, -1, 24, -1, 22, + -1, 11, -1, 42, -1, 12, -1, 61, -1, 30, + -1, 53, -1, 95, -1, 99, -1, 108, -1, 8, + -1, 10, -1, 104, -1, 105, -1, 10, 36, -1, + 8, 36, -1, 7, -1, 173, 36, -1, 19, -1, + 175, 36, -1, 247, 36, -1, 20, -1, 21, -1, + 178, 36, -1, 70, -1, 180, 36, -1, 128, 241, + 129, -1, 182, 36, -1, 182, 239, -1, 184, 36, + -1, 128, 107, 129, -1, 128, 188, 129, -1, 186, + 36, -1, 218, 107, 220, -1, 188, 125, 218, 107, + 220, -1, 168, -1, 168, 36, -1, 72, -1, 73, + -1, 191, 36, -1, 121, 252, -1, 193, 36, -1, + 191, -1, 193, -1, 51, 36, -1, 51, 36, 196, + -1, 196, 190, -1, 196, 172, -1, 196, 253, -1, + 196, 192, -1, 196, 194, -1, 196, 174, -1, 196, + 176, -1, 196, 179, -1, 196, 177, -1, 196, 181, + -1, 196, 183, -1, 196, 185, -1, 196, 187, -1, + 196, 255, -1, 168, -1, 195, -1, 172, 198, -1, + 192, 198, -1, 194, 198, -1, 253, 198, -1, 174, + 198, -1, 176, 198, -1, 179, 198, -1, 177, 198, + -1, 187, 198, -1, 181, 198, -1, 183, 198, -1, + 185, 198, -1, 202, 198, -1, 255, 198, -1, 206, + 198, -1, 214, 198, -1, 216, 198, -1, 190, 198, + -1, 196, 198, -1, 197, 198, -1, 172, 252, -1, + 190, 252, -1, 192, 252, -1, 194, 252, -1, 253, + 252, -1, 196, 252, -1, 169, 239, -1, 173, 239, + -1, 170, 239, -1, 171, 239, -1, 175, 239, -1, + 247, 239, -1, 178, 239, -1, 186, 239, -1, 180, + 239, -1, 189, 239, -1, 199, 239, -1, 200, 239, + -1, 195, 239, -1, 211, 239, -1, 215, 239, -1, + 204, 239, -1, 254, 239, -1, 252, 239, -1, 201, + 36, -1, 168, 126, 207, 127, -1, 203, -1, 195, + 126, 207, 127, -1, 122, 203, -1, 204, 36, -1, + 210, -1, 207, 125, 210, -1, 220, -1, 209, -1, + 122, 168, -1, 122, 191, -1, 122, 199, -1, 122, + 211, -1, 122, 201, -1, 106, -1, 208, -1, 222, + 130, 212, -1, 213, 130, 212, -1, 130, 212, -1, + 168, -1, 195, -1, 126, 122, 168, 127, -1, 211, + 36, -1, 211, 126, 207, 127, -1, 215, 36, -1, + 169, -1, 173, -1, 170, -1, 171, -1, 175, -1, + 247, -1, 178, -1, 180, -1, 180, 147, -1, 182, + -1, 184, -1, 186, -1, 199, -1, 200, -1, 191, + -1, 193, -1, 201, -1, 204, -1, 204, 147, -1, + 254, -1, 211, -1, 211, 147, -1, 215, -1, 215, + 147, -1, 228, -1, 235, -1, 224, -1, 225, -1, + 226, -1, 236, -1, 237, -1, 238, -1, 217, -1, + 189, -1, 252, -1, 189, 147, -1, 252, 147, -1, + 205, -1, 106, -1, 218, -1, -1, 218, -1, 168, + -1, 199, -1, 191, -1, 193, -1, 211, -1, 201, + -1, 252, -1, 169, -1, 173, -1, 170, -1, 171, + -1, 175, -1, 247, -1, 178, -1, 180, -1, 182, + -1, 184, -1, 186, -1, 199, -1, 200, -1, 195, + -1, 189, -1, 201, -1, 252, -1, 204, -1, 254, + -1, 211, -1, 215, -1, 34, -1, 35, -1, 222, + 223, -1, 34, 218, -1, 35, 218, -1, 29, 218, + -1, 115, 218, -1, 114, 218, -1, 222, 110, 218, + -1, 222, 9, 218, -1, 222, 54, 218, -1, 222, + 55, 218, -1, 222, 56, 218, -1, 222, 57, 218, + -1, 222, 60, 218, -1, 222, 59, 218, -1, 229, + -1, 230, -1, 231, -1, 232, -1, 233, -1, 234, + -1, 218, 114, 218, -1, 218, 115, 218, -1, 218, + 116, 218, -1, 218, 117, 218, -1, 218, 118, 218, + -1, 218, 58, 218, -1, 218, 27, 218, -1, 218, + 28, 218, -1, 218, 31, 218, -1, 218, 111, 218, + -1, 218, 112, 218, -1, 218, 49, 218, -1, 218, + 50, 218, -1, 218, 32, 218, -1, 218, 33, 218, + -1, 218, 113, 218, -1, 218, 110, 218, -1, 240, + 131, -1, 132, 219, -1, 240, 125, 219, -1, 240, + 131, 132, 219, -1, 210, -1, 241, 125, 210, -1, + -1, 96, 243, 244, 133, -1, -1, 106, -1, 245, + -1, 245, 125, 106, -1, 168, 145, -1, 245, 125, + 168, 145, -1, 218, -1, 246, 125, 218, -1, -1, + -1, 242, 248, 246, 249, 129, -1, -1, 242, 375, + 250, 165, 129, -1, 218, -1, 251, 125, 218, -1, + 126, 251, 127, -1, 252, 36, -1, 13, 126, 218, + 125, 208, 125, 208, 127, -1, 254, 36, -1, -1, + 11, 257, 261, 375, -1, -1, 12, 258, 261, 375, + -1, -1, 108, 12, 259, 261, 375, -1, -1, 53, + 260, 274, 375, -1, 264, -1, 261, 125, 264, -1, + 263, -1, 262, 125, 263, -1, 264, -1, 191, 145, + -1, 191, 145, 9, 218, -1, 191, 266, 146, -1, + 168, 145, -1, -1, 168, 145, 265, 9, 218, -1, + 168, 266, 146, -1, 267, 131, -1, 132, 218, -1, + 267, 125, 218, -1, 267, 131, 132, 218, -1, -1, + 51, 269, 270, 271, 375, -1, 168, 145, -1, 270, + 125, 168, 145, -1, -1, 52, 168, -1, -1, 42, + 273, 274, 375, -1, 168, 145, -1, 274, 125, 168, + 145, -1, -1, 83, 168, 126, 276, 285, 127, 145, + 375, -1, -1, 83, 168, 277, 280, 375, -1, 85, + 168, 375, -1, 85, 168, 168, 375, -1, 86, 281, + 375, -1, -1, 86, 128, 145, 278, 279, 129, 375, + -1, 283, -1, 279, 125, 283, -1, 281, -1, 280, + 281, -1, 283, -1, 280, 283, -1, -1, 168, 126, + 282, 286, 127, 145, -1, -1, 168, 284, 145, -1, + -1, 289, -1, 290, -1, 289, 125, 290, -1, -1, + 289, -1, 290, -1, 106, -1, 289, 125, 106, -1, + 289, 125, 290, -1, 289, 125, 290, 125, 106, -1, + 288, -1, 287, 125, 288, -1, 220, -1, 168, 145, + -1, 122, 168, 145, -1, 122, 168, 126, 287, 127, + -1, 289, 125, 168, 145, -1, 289, 125, 122, 168, + 145, -1, 289, 125, 122, 168, 126, 287, 127, -1, + 84, 168, 145, -1, 84, 122, 168, 145, -1, 84, + 122, 168, 126, 287, 127, -1, 290, 125, 84, 168, + 145, -1, 290, 125, 84, 122, 168, 145, -1, 290, + 125, 84, 122, 168, 126, 287, 127, -1, 292, -1, + 305, -1, 320, -1, 326, -1, 356, -1, 338, -1, + 343, -1, 372, -1, 293, 303, -1, 293, 296, 303, + -1, 293, 298, 303, -1, 293, 298, 296, 303, -1, + -1, -1, 14, 251, 294, 375, 295, 165, -1, -1, + 15, 375, 297, 165, -1, -1, -1, 16, 299, 251, + 375, 300, 165, -1, -1, -1, 298, 16, 301, 251, + 375, 302, 165, -1, 304, -1, 18, -1, 17, -1, + 310, 311, 306, -1, 310, 316, 306, -1, 310, 306, + -1, 310, 311, 316, 306, -1, 307, -1, 40, -1, + 17, -1, -1, 37, 309, 375, -1, 308, -1, 308, + 164, -1, -1, -1, 38, 312, 251, 375, 313, 165, + -1, -1, -1, 311, 38, 314, 251, 375, 315, 165, + -1, -1, -1, 39, 317, 375, 318, 165, -1, -1, + 316, 39, 319, 375, 165, -1, -1, -1, 323, 251, + 375, 321, 165, 322, 324, -1, 43, -1, 325, -1, + 41, -1, 17, -1, -1, -1, -1, 45, 221, 330, + 218, 327, 47, 251, 331, 328, 375, 329, 332, -1, + 110, -1, 9, -1, -1, 48, 251, -1, 165, 333, + -1, 46, -1, 46, 168, -1, 17, -1, 17, 168, + -1, 168, -1, 199, -1, 334, -1, 335, 125, 334, + -1, 122, 168, -1, 218, -1, 336, -1, 337, 125, + 336, -1, -1, -1, -1, 98, 335, 52, 337, 339, + 342, 340, 375, 341, 332, -1, -1, 99, -1, -1, + 349, 344, 350, 345, -1, 349, 345, -1, 346, -1, + 101, -1, 17, -1, -1, 100, 348, 218, 375, -1, + 347, -1, 347, 164, -1, -1, 38, 218, 351, 375, + 165, -1, -1, 350, 38, 218, 352, 375, 165, -1, + 353, -1, 350, 353, -1, -1, -1, 39, 354, 375, + 355, 165, -1, -1, -1, -1, -1, 62, 357, 362, + 375, 165, 358, 365, 359, 363, 360, 361, -1, 67, + -1, 17, -1, -1, 69, 218, -1, -1, 364, 375, + 165, -1, 66, -1, -1, 366, 375, 165, -1, 367, + 375, 165, -1, 64, -1, 65, 168, -1, 68, 195, + 369, -1, 97, 369, -1, -1, 69, 370, -1, 125, + -1, 125, 371, -1, 371, -1, 370, 125, -1, 370, + 125, 371, -1, 168, -1, 209, -1, 205, -1, 217, + -1, 252, -1, -1, 102, 218, 375, 373, 165, 374, + -1, 103, -1, 17, -1, 123, -1, 124, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 285, 285, 286, 289, 290, 291, 292, 293, 294, - 295, 296, 297, 298, 299, 300, 303, 308, 316, 316, - 317, 317, 318, 318, 319, 319, 322, 323, 324, 325, - 328, 329, 330, 331, 334, 335, 338, 339, 342, 343, - 344, 345, 346, 347, 348, 349, 350, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 364, 365, 373, 374, - 375, 376, 377, 378, 384, 390, 391, 392, 393, 394, - 395, 396, 397, 399, 399, 405, 406, 407, 419, 419, - 439, 441, 439, 445, 447, 445, 451, 452, 453, 454, - 455, 456, 456, 470, 473, 481, 500, 500, 503, 504, - 505, 506, 507, 508, 521, 522, 523, 524, 527, 528, - 529, 530, 533, 534, 537, 538, 541, 542, 545, 546, - 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, - 559, 560, 561, 562, 563, 564, 565, 566, 567, 572, - 573, 576, 579, 582, 583, 588, 591, 596, 602, 607, - 612, 613, 616, 621, 624, 635, 638, 643, 646, 649, - 650, 653, 656, 657, 662, 665, 670, 671, 674, 679, - 682, 689, 690, 695, 696, 697, 698, 699, 700, 701, - 702, 703, 704, 705, 706, 707, 708, 711, 712, 713, + 0, 278, 278, 279, 282, 283, 284, 285, 286, 287, + 288, 289, 290, 291, 292, 293, 296, 301, 309, 309, + 310, 310, 311, 311, 312, 312, 315, 316, 317, 318, + 321, 322, 323, 324, 327, 328, 331, 332, 335, 336, + 337, 338, 339, 340, 341, 342, 343, 346, 347, 348, + 349, 350, 351, 352, 353, 354, 357, 358, 366, 367, + 368, 369, 370, 371, 377, 378, 379, 380, 381, 382, + 383, 384, 386, 386, 392, 393, 394, 406, 406, 426, + 428, 426, 432, 434, 432, 438, 439, 440, 441, 442, + 443, 443, 457, 460, 468, 487, 487, 490, 491, 492, + 493, 494, 495, 508, 509, 510, 511, 514, 515, 516, + 517, 520, 521, 524, 525, 528, 529, 532, 533, 536, + 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, + 547, 548, 549, 550, 551, 552, 553, 554, 559, 560, + 563, 566, 569, 570, 575, 578, 583, 589, 594, 599, + 600, 603, 608, 611, 622, 625, 630, 633, 636, 637, + 640, 643, 644, 649, 652, 657, 658, 661, 666, 669, + 672, 673, 680, 681, 686, 687, 688, 689, 690, 691, + 692, 693, 694, 695, 696, 697, 698, 699, 702, 703, + 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, - 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, - 744, 745, 746, 747, 748, 749, 754, 755, 756, 757, - 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, - 768, 769, 770, 771, 772, 775, 779, 782, 783, 784, - 788, 791, 794, 795, 798, 799, 802, 803, 804, 805, - 806, 809, 810, 815, 816, 817, 823, 824, 825, 828, - 831, 836, 839, 848, 849, 850, 851, 852, 853, 854, + 734, 735, 736, 737, 738, 739, 744, 745, 746, 747, + 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, + 758, 759, 760, 761, 764, 768, 771, 772, 776, 779, + 782, 783, 786, 787, 790, 791, 792, 793, 794, 797, + 798, 803, 804, 805, 811, 812, 815, 818, 823, 826, + 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, + 845, 846, 847, 848, 849, 850, 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, 882, 883, 884, 885, 886, - 887, 890, 891, 894, 895, 898, 899, 900, 901, 902, - 903, 904, 911, 912, 913, 914, 915, 916, 917, 918, - 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, - 929, 930, 931, 932, 938, 939, 942, 945, 946, 949, - 950, 951, 954, 957, 960, 963, 966, 969, 972, 975, - 978, 979, 980, 981, 982, 983, 986, 987, 988, 989, - 990, 991, 994, 995, 998, 999, 1000, 1001, 1002, 1003, - 1004, 1005, 1006, 1009, 1015, 1016, 1017, 1020, 1021, 1024, - 1024, 1030, 1031, 1032, 1033, 1036, 1037, 1040, 1041, 1045, - 1048, 1044, 1051, 1050, 1086, 1087, 1089, 1092, 1101, 1105, - 1108, 1108, 1110, 1110, 1112, 1112, 1114, 1114, 1124, 1125, - 1128, 1129, 1137, 1138, 1140, 1144, 1151, 1169, 1169, 1198, - 1204, 1207, 1208, 1209, 1212, 1212, 1219, 1220, 1223, 1224, - 1227, 1227, 1230, 1231, 1234, 1234, 1253, 1253, 1254, 1255, - 1256, 1257, 1257, 1260, 1261, 1264, 1265, 1266, 1267, 1270, - 1270, 1289, 1289, 1344, 1345, 1346, 1347, 1350, 1351, 1352, - 1353, 1354, 1355, 1356, 1359, 1360, 1363, 1366, 1367, 1368, - 1369, 1370, 1371, 1374, 1375, 1376, 1377, 1378, 1379, 1382, - 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1392, 1393, 1394, - 1395, 1399, 1401, 1398, 1406, 1406, 1410, 1412, 1410, 1420, - 1422, 1420, 1431, 1439, 1440, 1443, 1447, 1451, 1454, 1460, - 1467, 1468, 1471, 1471, 1474, 1475, 1483, 1484, 1483, 1495, - 1496, 1495, 1508, 1508, 1508, 1510, 1510, 1515, 1520, 1514, - 1534, 1543, 1547, 1548, 1552, 1565, 1570, 1551, 1618, 1619, - 1622, 1623, 1626, 1634, 1635, 1636, 1637, 1640, 1641, 1644, - 1645, 1648, 1649, 1652, 1653, 1658, 1664, 1675, 1657, 1695, - 1696, 1700, 1699, 1712, 1720, 1728, 1729, 1733, 1732, 1743, - 1744, 1753, 1753, 1756, 1756, 1759, 1761, 1764, 1764, 1764, - 1769, 1777, 1788, 1798, 1768, 1829, 1830, 1833, 1834, 1842, - 1843, 1846, 1855, 1856, 1857, 1860, 1871, 1889, 1890, 1893, - 1897, 1905, 1906, 1909, 1910, 1911, 1912, 1913, 1916, 1917, - 1918, 1919, 1920, 1924, 1923, 1946, 1947, 1950, 1951 + 865, 866, 869, 870, 871, 872, 873, 874, 877, 878, + 881, 882, 885, 886, 887, 888, 889, 890, 891, 898, + 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, + 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, + 924, 925, 928, 931, 932, 935, 936, 937, 940, 943, + 946, 949, 952, 955, 958, 961, 964, 965, 966, 967, + 968, 969, 972, 973, 974, 975, 976, 977, 980, 981, + 984, 985, 986, 987, 988, 989, 990, 991, 992, 995, + 1001, 1002, 1003, 1006, 1007, 1010, 1010, 1016, 1017, 1018, + 1019, 1022, 1023, 1026, 1027, 1031, 1034, 1030, 1037, 1036, + 1072, 1073, 1075, 1078, 1087, 1091, 1094, 1094, 1096, 1096, + 1098, 1098, 1100, 1100, 1110, 1111, 1114, 1115, 1123, 1124, + 1126, 1130, 1137, 1155, 1155, 1184, 1190, 1193, 1194, 1195, + 1198, 1198, 1205, 1206, 1209, 1210, 1213, 1213, 1216, 1217, + 1220, 1220, 1239, 1239, 1240, 1241, 1242, 1243, 1243, 1246, + 1247, 1250, 1251, 1252, 1253, 1256, 1256, 1275, 1275, 1330, + 1331, 1332, 1333, 1336, 1337, 1338, 1339, 1340, 1341, 1342, + 1345, 1346, 1349, 1352, 1353, 1354, 1355, 1356, 1357, 1360, + 1361, 1362, 1363, 1364, 1365, 1368, 1369, 1370, 1371, 1372, + 1373, 1374, 1375, 1378, 1379, 1380, 1381, 1385, 1387, 1384, + 1392, 1392, 1396, 1398, 1396, 1406, 1408, 1406, 1417, 1425, + 1426, 1429, 1433, 1437, 1440, 1446, 1453, 1454, 1457, 1457, + 1460, 1461, 1469, 1470, 1469, 1481, 1482, 1481, 1494, 1494, + 1494, 1496, 1496, 1501, 1506, 1500, 1520, 1529, 1533, 1534, + 1538, 1551, 1556, 1537, 1604, 1605, 1608, 1609, 1612, 1620, + 1621, 1622, 1623, 1626, 1627, 1630, 1631, 1634, 1635, 1638, + 1639, 1644, 1650, 1661, 1643, 1681, 1682, 1686, 1685, 1698, + 1706, 1714, 1715, 1719, 1718, 1729, 1730, 1739, 1739, 1742, + 1742, 1745, 1747, 1750, 1750, 1750, 1755, 1763, 1774, 1784, + 1754, 1815, 1816, 1819, 1820, 1828, 1829, 1832, 1841, 1842, + 1843, 1846, 1857, 1875, 1879, 1887, 1888, 1891, 1892, 1893, + 1894, 1895, 1898, 1899, 1900, 1901, 1902, 1906, 1905, 1928, + 1929, 1932, 1933 }; #endif @@ -1128,11 +1118,11 @@ static const char *const yytname[] = "CodeBlockAlias", "Logical", "LogicalAlias", "SelfValue", "SelfAlias", "Array", "ArrayAlias", "ArrayAt", "ArrayAtAlias", "Hash", "HashAlias", "HashList", "Variable", "VarAlias", "MacroVar", "MacroVarAlias", - "MacroExpr", "MacroExprAlias", "FieldAlias", "FieldVarAlias", "AliasId", - "AliasVar", "AliasExpr", "VariableAt", "VariableAtAlias", "FunIdentCall", - "FunCall", "FunRef", "FunCallAlias", "ArgList", "Argument", - "RefArgument", "ExtArgument", "ObjectData", "SendId", "ObjectRef", - "ObjectDataAlias", "ObjectMethod", "ObjectMethodAlias", + "MacroExpr", "MacroExprAlias", "MacroAny", "FieldAlias", "FieldVarAlias", + "AliasId", "AliasVar", "AliasExpr", "VariableAt", "VariableAtAlias", + "FunIdentCall", "FunCall", "FunRef", "FunCallAlias", "ArgList", + "Argument", "RefArgument", "ExtArgument", "ObjectData", "SendId", + "ObjectRef", "ObjectDataAlias", "ObjectMethod", "ObjectMethodAlias", "SimpleExpression", "Expression", "ExtExpression", "EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp", "ExprPreOp", "ExprUnary", "ExprEqual", "ExprAssign", "ExprPlusEq", "ExprMinusEq", @@ -1157,9 +1147,9 @@ static const char *const yytname[] = "EndSwitch", "EndSwitchID", "SwitchStart", "@53", "SwitchBegin", "SwitchCases", "@54", "@55", "SwitchDefault", "@56", "@57", "BeginSeq", "@58", "@59", "@60", "@61", "EndSeqID", "BlockSeq", "AlwaysSeq", - "Always", "RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoName", - "DoProc", "DoArgs", "DoArgList", "DoArgument", "WithObject", "@62", - "EndWithID", "Crlf", 0 + "Always", "RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoProc", + "DoArgs", "DoArgList", "DoArgument", "WithObject", "@62", "EndWithID", + "Crlf", 0 }; #endif @@ -1195,61 +1185,61 @@ static const yytype_uint16 yyr1[] = 147, 147, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, - 150, 150, 150, 151, 150, 150, 150, 150, 152, 150, - 153, 154, 150, 155, 156, 150, 150, 150, 150, 150, - 150, 157, 150, 150, 158, 158, 160, 159, 161, 161, - 161, 161, 161, 161, 162, 162, 162, 162, 163, 163, - 163, 163, 164, 164, 165, 165, 166, 166, 167, 167, + 150, 150, 151, 150, 150, 150, 150, 152, 150, 153, + 154, 150, 155, 156, 150, 150, 150, 150, 150, 150, + 157, 150, 150, 158, 158, 160, 159, 161, 161, 161, + 161, 161, 161, 162, 162, 162, 162, 163, 163, 163, + 163, 164, 164, 165, 165, 166, 166, 167, 167, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, - 169, 170, 171, 172, 172, 173, 174, 175, 176, 177, - 178, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 186, 187, 188, 188, 189, 190, 191, 191, 192, 193, - 194, 195, 195, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 197, 197, 197, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 199, 199, 199, 199, 199, 199, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 200, 200, 201, 202, 203, 203, 203, - 204, 205, 206, 206, 207, 207, 208, 208, 208, 208, - 208, 209, 209, 210, 210, 210, 211, 211, 211, 212, - 213, 214, 215, 216, 216, 216, 216, 216, 216, 216, - 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, - 216, 216, 216, 216, 216, 216, 216, 216, 216, 216, - 216, 216, 216, 216, 216, 217, 217, 217, 217, 217, - 217, 218, 218, 219, 219, 220, 220, 220, 220, 220, - 220, 220, 221, 221, 221, 221, 221, 221, 221, 221, - 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, - 221, 221, 221, 221, 222, 222, 223, 224, 224, 225, - 225, 225, 226, 227, 228, 229, 230, 231, 232, 233, - 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, - 235, 235, 236, 236, 237, 237, 237, 237, 237, 237, - 237, 237, 237, 238, 239, 239, 239, 240, 240, 242, - 241, 243, 243, 243, 243, 244, 244, 245, 245, 247, - 248, 246, 249, 246, 250, 250, 251, 252, 253, 254, - 256, 255, 257, 255, 258, 255, 259, 255, 260, 260, - 261, 261, 262, 262, 262, 262, 263, 264, 263, 263, - 265, 266, 266, 266, 268, 267, 269, 269, 270, 270, - 272, 271, 273, 273, 275, 274, 276, 274, 274, 274, - 274, 277, 274, 278, 278, 279, 279, 279, 279, 281, - 280, 283, 282, 284, 284, 284, 284, 285, 285, 285, - 285, 285, 285, 285, 286, 286, 287, 288, 288, 288, - 288, 288, 288, 289, 289, 289, 289, 289, 289, 290, - 290, 290, 290, 290, 290, 290, 290, 291, 291, 291, - 291, 293, 294, 292, 296, 295, 298, 299, 297, 300, - 301, 297, 302, 303, 303, 304, 304, 304, 304, 305, - 306, 306, 308, 307, 309, 309, 311, 312, 310, 313, - 314, 310, 316, 317, 315, 318, 315, 320, 321, 319, - 322, 323, 324, 324, 326, 327, 328, 325, 329, 329, - 330, 330, 331, 332, 332, 332, 332, 333, 333, 334, - 334, 335, 335, 336, 336, 338, 339, 340, 337, 341, - 341, 343, 342, 342, 344, 345, 345, 347, 346, 348, - 348, 350, 349, 351, 349, 349, 349, 353, 354, 352, - 356, 357, 358, 359, 355, 360, 360, 361, 361, 362, - 362, 363, 364, 364, 364, 365, 366, 367, 367, 368, - 368, 369, 369, 370, 370, 370, 370, 370, 371, 371, - 371, 371, 371, 373, 372, 374, 374, 375, 375 + 168, 168, 168, 168, 168, 168, 168, 168, 169, 169, + 170, 171, 172, 172, 173, 174, 175, 176, 177, 178, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 186, + 187, 188, 188, 189, 190, 191, 191, 192, 193, 194, + 195, 195, 196, 196, 197, 197, 197, 197, 197, 197, + 197, 197, 197, 197, 197, 197, 197, 197, 198, 198, + 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, + 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, + 200, 200, 200, 200, 200, 200, 201, 201, 201, 201, + 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, + 201, 201, 201, 201, 202, 203, 204, 204, 205, 206, + 207, 207, 208, 208, 209, 209, 209, 209, 209, 210, + 210, 211, 211, 211, 212, 212, 213, 214, 215, 216, + 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, + 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, + 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, + 217, 217, 218, 218, 218, 218, 218, 218, 219, 219, + 220, 220, 221, 221, 221, 221, 221, 221, 221, 222, + 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, + 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, + 223, 223, 224, 225, 225, 226, 226, 226, 227, 228, + 229, 230, 231, 232, 233, 234, 235, 235, 235, 235, + 235, 235, 236, 236, 236, 236, 236, 236, 237, 237, + 238, 238, 238, 238, 238, 238, 238, 238, 238, 239, + 240, 240, 240, 241, 241, 243, 242, 244, 244, 244, + 244, 245, 245, 246, 246, 248, 249, 247, 250, 247, + 251, 251, 252, 253, 254, 255, 257, 256, 258, 256, + 259, 256, 260, 256, 261, 261, 262, 262, 263, 263, + 263, 263, 264, 265, 264, 264, 266, 267, 267, 267, + 269, 268, 270, 270, 271, 271, 273, 272, 274, 274, + 276, 275, 277, 275, 275, 275, 275, 278, 275, 279, + 279, 280, 280, 280, 280, 282, 281, 284, 283, 285, + 285, 285, 285, 286, 286, 286, 286, 286, 286, 286, + 287, 287, 288, 289, 289, 289, 289, 289, 289, 290, + 290, 290, 290, 290, 290, 291, 291, 291, 291, 291, + 291, 291, 291, 292, 292, 292, 292, 294, 295, 293, + 297, 296, 299, 300, 298, 301, 302, 298, 303, 304, + 304, 305, 305, 305, 305, 306, 307, 307, 309, 308, + 310, 310, 312, 313, 311, 314, 315, 311, 317, 318, + 316, 319, 316, 321, 322, 320, 323, 324, 325, 325, + 327, 328, 329, 326, 330, 330, 331, 331, 332, 333, + 333, 333, 333, 334, 334, 335, 335, 336, 336, 337, + 337, 339, 340, 341, 338, 342, 342, 344, 343, 343, + 345, 346, 346, 348, 347, 349, 349, 351, 350, 352, + 350, 350, 350, 354, 355, 353, 357, 358, 359, 360, + 356, 361, 361, 362, 362, 363, 363, 364, 365, 365, + 365, 366, 367, 368, 368, 369, 369, 370, 370, 370, + 370, 370, 371, 371, 371, 371, 371, 373, 372, 374, + 374, 375, 375 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1262,61 +1252,61 @@ static const yytype_uint8 yyr2[] = 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 0, 4, 2, 2, 2, 0, 4, - 0, 0, 5, 0, 0, 5, 1, 1, 1, 3, - 3, 0, 4, 4, 1, 3, 0, 2, 1, 1, - 1, 1, 1, 1, 4, 7, 4, 7, 0, 1, - 1, 1, 1, 2, 0, 1, 1, 3, 1, 3, + 2, 2, 0, 4, 2, 2, 2, 0, 4, 0, + 0, 5, 0, 0, 5, 1, 1, 1, 3, 3, + 0, 4, 4, 1, 3, 0, 2, 1, 1, 1, + 1, 1, 1, 4, 7, 4, 7, 0, 1, 1, + 1, 1, 2, 0, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 2, 2, 1, 2, 1, 2, 2, - 1, 1, 2, 1, 2, 3, 2, 2, 2, 3, - 3, 2, 3, 5, 1, 2, 1, 1, 2, 2, - 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, + 1, 1, 2, 2, 1, 2, 1, 2, 2, 1, + 1, 2, 1, 2, 3, 2, 2, 2, 3, 3, + 2, 3, 5, 1, 2, 1, 1, 2, 2, 2, + 1, 1, 2, 3, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 4, 1, 4, 4, - 2, 2, 1, 3, 1, 1, 2, 2, 2, 2, - 2, 1, 1, 3, 3, 2, 1, 1, 1, 4, - 2, 4, 2, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 1, 1, 2, 1, 2, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, - 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 4, 1, 4, 2, 2, + 1, 3, 1, 1, 2, 2, 2, 2, 2, 1, + 1, 3, 3, 2, 1, 1, 4, 2, 4, 2, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, + 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, 2, 2, 2, 2, - 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, - 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 2, 2, 3, 4, 1, 3, 0, - 4, 0, 1, 1, 3, 2, 4, 1, 3, 0, - 0, 5, 0, 5, 1, 3, 3, 2, 8, 2, - 0, 4, 0, 4, 0, 5, 0, 4, 1, 3, - 1, 3, 1, 2, 4, 3, 2, 0, 5, 3, - 2, 2, 3, 4, 0, 5, 2, 4, 0, 2, - 0, 4, 2, 4, 0, 8, 0, 5, 3, 4, - 3, 0, 7, 1, 3, 1, 2, 1, 2, 0, - 6, 0, 3, 0, 1, 1, 3, 0, 1, 1, - 1, 3, 3, 5, 1, 3, 1, 2, 3, 5, - 4, 5, 7, 3, 4, 6, 5, 6, 8, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, - 4, 0, 0, 6, 0, 4, 0, 0, 6, 0, - 0, 7, 1, 1, 1, 3, 3, 2, 4, 1, - 1, 1, 0, 3, 1, 2, 0, 0, 6, 0, - 0, 7, 0, 0, 5, 0, 5, 0, 0, 7, - 1, 1, 1, 1, 0, 0, 0, 12, 1, 1, - 0, 2, 2, 1, 2, 1, 2, 1, 1, 1, - 3, 2, 1, 1, 3, 0, 0, 0, 10, 0, - 1, 0, 4, 2, 1, 1, 1, 0, 4, 1, - 2, 0, 5, 0, 6, 1, 2, 0, 0, 5, - 0, 0, 0, 0, 11, 1, 1, 0, 2, 0, - 3, 1, 0, 3, 3, 1, 2, 1, 1, 3, - 2, 0, 2, 1, 2, 1, 2, 3, 1, 1, - 1, 1, 1, 0, 6, 1, 1, 1, 1 + 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, + 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, + 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, + 2, 3, 4, 1, 3, 0, 4, 0, 1, 1, + 3, 2, 4, 1, 3, 0, 0, 5, 0, 5, + 1, 3, 3, 2, 8, 2, 0, 4, 0, 4, + 0, 5, 0, 4, 1, 3, 1, 3, 1, 2, + 4, 3, 2, 0, 5, 3, 2, 2, 3, 4, + 0, 5, 2, 4, 0, 2, 0, 4, 2, 4, + 0, 8, 0, 5, 3, 4, 3, 0, 7, 1, + 3, 1, 2, 1, 2, 0, 6, 0, 3, 0, + 1, 1, 3, 0, 1, 1, 1, 3, 3, 5, + 1, 3, 1, 2, 3, 5, 4, 5, 7, 3, + 4, 6, 5, 6, 8, 1, 1, 1, 1, 1, + 1, 1, 1, 2, 3, 3, 4, 0, 0, 6, + 0, 4, 0, 0, 6, 0, 0, 7, 1, 1, + 1, 3, 3, 2, 4, 1, 1, 1, 0, 3, + 1, 2, 0, 0, 6, 0, 0, 7, 0, 0, + 5, 0, 5, 0, 0, 7, 1, 1, 1, 1, + 0, 0, 0, 12, 1, 1, 0, 2, 2, 1, + 2, 1, 2, 1, 1, 1, 3, 2, 1, 1, + 3, 0, 0, 0, 10, 0, 1, 0, 4, 2, + 1, 1, 1, 0, 4, 1, 2, 0, 5, 0, + 6, 1, 2, 0, 0, 5, 0, 0, 0, 0, + 11, 1, 1, 0, 2, 0, 3, 1, 0, 3, + 3, 1, 2, 3, 2, 0, 2, 1, 2, 1, + 2, 3, 1, 1, 1, 1, 1, 0, 6, 1, + 1, 1, 1 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -1324,818 +1314,719 @@ static const yytype_uint8 yyr2[] = means the default is an error. */ static const yytype_uint16 yydefact[] = { - 0, 0, 120, 78, 145, 139, 140, 400, 402, 0, - 0, 147, 150, 151, 129, 127, 128, 28, 124, 80, - 0, 0, 512, 430, 530, 123, 0, 122, 121, 424, - 125, 406, 83, 580, 73, 0, 153, 0, 166, 167, - 0, 126, 0, 0, 136, 379, 601, 0, 137, 567, - 0, 141, 142, 138, 0, 617, 618, 0, 303, 0, - 0, 0, 8, 6, 0, 7, 164, 312, 314, 315, - 0, 313, 0, 316, 0, 0, 318, 0, 319, 0, - 320, 0, 321, 0, 322, 0, 327, 0, 325, 0, - 326, 0, 0, 0, 323, 324, 328, 0, 237, 330, - 0, 332, 0, 0, 333, 0, 0, 96, 96, 96, - 96, 350, 351, 352, 353, 354, 355, 96, 389, 317, - 329, 0, 331, 0, 86, 87, 88, 5, 96, 479, - 0, 480, 0, 0, 481, 0, 482, 484, 485, 0, - 561, 483, 96, 486, 4, 9, 0, 77, 0, 144, - 143, 0, 0, 0, 130, 132, 129, 127, 128, 124, - 0, 134, 131, 123, 0, 135, 133, 136, 138, 0, - 0, 0, 263, 265, 266, 264, 267, 269, 270, 272, - 273, 274, 296, 277, 278, 275, 276, 279, 280, 300, - 283, 285, 295, 394, 0, 289, 290, 291, 287, 288, - 292, 293, 294, 268, 491, 297, 282, 91, 0, 116, - 0, 118, 75, 0, 337, 338, 0, 0, 76, 164, - 307, 308, 306, 324, 310, 330, 309, 333, 0, 0, - 311, 331, 171, 0, 0, 0, 587, 0, 72, 597, - 598, 601, 0, 436, 0, 34, 0, 0, 94, 0, - 381, 0, 600, 164, 325, 326, 548, 329, 549, 0, - 0, 0, 404, 0, 169, 0, 0, 251, 0, 0, - 0, 252, 245, 377, 304, 244, 0, 256, 257, 258, - 255, 1, 0, 14, 12, 13, 11, 10, 0, 0, - 165, 303, 0, 216, 0, 218, 219, 187, 188, 189, - 190, 210, 146, 217, 194, 148, 220, 195, 197, 152, - 222, 196, 154, 224, 199, 156, 157, 200, 158, 201, - 161, 223, 198, 225, 207, 211, 168, 303, 63, 228, - 191, 212, 170, 303, 64, 229, 192, 213, 0, 0, - 187, 174, 0, 178, 0, 179, 181, 0, 180, 0, - 182, 0, 183, 0, 184, 0, 185, 173, 188, 176, - 189, 177, 208, 0, 215, 175, 0, 186, 209, 226, - 61, 227, 235, 202, 241, 60, 232, 204, 260, 303, - 230, 0, 205, 262, 62, 231, 206, 0, 334, 335, - 0, 0, 0, 0, 0, 0, 0, 0, 336, 67, - 66, 69, 70, 68, 0, 392, 149, 221, 397, 65, - 234, 193, 214, 399, 59, 233, 203, 58, 0, 496, - 504, 503, 0, 0, 487, 502, 103, 402, 110, 124, - 101, 99, 112, 102, 0, 0, 100, 98, 511, 516, - 522, 510, 507, 509, 0, 0, 0, 0, 566, 565, - 0, 563, 564, 71, 0, 97, 34, 0, 408, 0, - 0, 339, 341, 340, 0, 240, 47, 42, 39, 0, - 40, 41, 38, 43, 45, 52, 53, 49, 0, 50, - 51, 48, 54, 271, 46, 298, 281, 284, 286, 0, + 0, 0, 119, 77, 144, 138, 139, 396, 398, 0, + 0, 146, 149, 150, 128, 126, 127, 28, 123, 79, + 0, 0, 508, 426, 526, 122, 0, 121, 120, 420, + 124, 402, 82, 576, 72, 0, 152, 0, 165, 166, + 0, 125, 0, 0, 135, 375, 595, 0, 136, 563, + 0, 140, 141, 137, 0, 611, 612, 0, 300, 0, + 0, 0, 8, 6, 0, 7, 163, 309, 311, 312, + 0, 310, 0, 313, 0, 0, 315, 0, 316, 0, + 317, 0, 318, 0, 319, 0, 323, 0, 170, 0, + 171, 0, 322, 0, 0, 320, 321, 324, 0, 236, + 326, 0, 328, 0, 0, 329, 0, 0, 95, 95, + 95, 95, 346, 347, 348, 349, 350, 351, 95, 385, + 314, 325, 0, 327, 0, 85, 86, 87, 5, 95, + 475, 0, 476, 0, 0, 477, 0, 478, 480, 481, + 0, 557, 479, 95, 482, 4, 9, 0, 76, 0, + 143, 142, 0, 0, 0, 129, 131, 128, 126, 127, + 123, 0, 133, 130, 122, 0, 134, 132, 135, 137, + 0, 0, 0, 260, 262, 263, 261, 264, 266, 267, + 269, 270, 271, 293, 274, 275, 322, 272, 273, 276, + 277, 297, 280, 282, 292, 390, 0, 286, 287, 288, + 284, 285, 289, 290, 291, 265, 487, 294, 279, 90, + 0, 115, 0, 117, 74, 0, 333, 334, 0, 0, + 75, 163, 170, 171, 303, 321, 307, 326, 306, 329, + 0, 0, 308, 327, 172, 0, 0, 0, 583, 0, + 71, 170, 171, 595, 0, 432, 0, 34, 0, 0, + 93, 0, 377, 0, 594, 163, 544, 325, 545, 0, + 0, 0, 400, 0, 168, 0, 0, 249, 0, 0, + 0, 250, 243, 373, 301, 242, 0, 254, 255, 253, + 1, 0, 14, 12, 13, 11, 10, 0, 0, 164, + 300, 0, 216, 0, 218, 219, 188, 189, 190, 210, + 145, 217, 194, 147, 220, 195, 197, 151, 222, 196, + 153, 224, 199, 155, 156, 200, 157, 201, 160, 223, + 198, 225, 207, 211, 167, 191, 212, 169, 192, 213, + 300, 63, 228, 0, 0, 188, 175, 0, 179, 0, + 180, 182, 0, 181, 0, 183, 0, 184, 0, 185, + 0, 186, 174, 177, 178, 208, 0, 215, 176, 0, + 187, 209, 226, 61, 227, 234, 202, 239, 60, 231, + 204, 257, 300, 229, 0, 205, 259, 62, 230, 206, + 0, 330, 331, 0, 0, 0, 0, 0, 0, 0, + 0, 332, 66, 65, 68, 69, 67, 0, 388, 148, + 221, 393, 64, 233, 193, 214, 395, 59, 232, 203, + 58, 0, 492, 500, 499, 0, 0, 483, 498, 102, + 398, 109, 123, 100, 98, 111, 101, 0, 0, 99, + 97, 507, 512, 518, 506, 503, 505, 0, 0, 0, + 0, 562, 561, 0, 559, 560, 70, 0, 96, 34, + 0, 404, 0, 0, 335, 337, 336, 0, 238, 47, + 42, 39, 0, 40, 41, 38, 43, 45, 52, 53, + 49, 0, 50, 51, 48, 54, 268, 46, 295, 278, + 281, 283, 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, 299, 0, - 0, 89, 0, 90, 34, 81, 410, 412, 513, 34, - 0, 539, 538, 0, 172, 34, 428, 0, 84, 0, - 0, 0, 599, 0, 434, 0, 0, 438, 441, 35, - 449, 440, 0, 0, 382, 34, 0, 383, 603, 164, - 300, 609, 295, 0, 297, 602, 605, 0, 0, 0, - 613, 0, 0, 396, 159, 246, 247, 248, 250, 240, - 249, 0, 160, 303, 303, 155, 15, 18, 20, 0, - 242, 304, 301, 302, 374, 0, 373, 0, 0, 0, - 254, 343, 344, 345, 346, 347, 349, 348, 342, 253, - 387, 390, 0, 494, 0, 488, 499, 0, 489, 0, - 0, 113, 0, 0, 519, 505, 0, 525, 506, 527, - 0, 577, 0, 575, 79, 0, 416, 36, 0, 0, - 401, 403, 303, 44, 55, 362, 363, 364, 369, 370, - 367, 368, 361, 372, 365, 366, 371, 356, 357, 358, - 359, 360, 395, 492, 92, 117, 119, 413, 36, 0, - 0, 432, 0, 431, 534, 426, 0, 0, 0, 407, - 0, 588, 0, 74, 0, 16, 453, 451, 0, 445, - 447, 439, 0, 457, 95, 93, 385, 380, 0, 604, - 606, 0, 552, 553, 555, 550, 568, 0, 0, 259, - 0, 162, 378, 0, 0, 0, 0, 303, 236, 375, - 0, 238, 239, 261, 0, 0, 0, 0, 0, 0, - 0, 490, 0, 0, 0, 523, 0, 508, 0, 0, - 571, 0, 0, 562, 576, 421, 0, 419, 37, 0, - 420, 409, 0, 0, 0, 415, 411, 82, 34, 0, - 429, 34, 425, 85, 581, 0, 126, 0, 34, 0, - 454, 455, 34, 446, 448, 437, 451, 0, 443, 460, - 0, 458, 459, 384, 34, 607, 551, 0, 559, 0, - 405, 303, 19, 30, 21, 30, 243, 376, 388, 391, - 393, 495, 497, 0, 30, 104, 30, 106, 517, 0, - 0, 0, 528, 0, 578, 573, 0, 422, 0, 303, - 493, 414, 433, 0, 427, 592, 17, 0, 34, 34, - 467, 34, 0, 0, 452, 0, 0, 34, 0, 386, - 554, 560, 556, 616, 615, 614, 163, 31, 0, 32, - 34, 0, 0, 500, 0, 0, 0, 524, 520, 526, - 0, 0, 0, 0, 418, 423, 0, 540, 595, 0, - 582, 0, 0, 34, 473, 303, 468, 0, 0, 34, - 456, 0, 444, 442, 450, 461, 462, 0, 0, 0, - 56, 0, 498, 0, 0, 0, 518, 0, 533, 532, - 529, 531, 572, 579, 0, 398, 0, 535, 596, 589, - 0, 0, 303, 474, 466, 0, 464, 435, 34, 470, - 0, 34, 0, 557, 23, 33, 34, 25, 501, 105, - 107, 521, 574, 541, 0, 591, 583, 0, 593, 594, - 0, 303, 469, 303, 471, 34, 476, 463, 0, 57, - 536, 0, 0, 475, 465, 0, 303, 477, 0, 558, - 0, 586, 585, 584, 590, 472, 0, 545, 543, 542, - 537, 478, 546, 544 + 0, 296, 0, 0, 88, 0, 89, 34, 80, 406, + 408, 509, 34, 0, 535, 534, 0, 173, 34, 424, + 0, 83, 0, 0, 0, 593, 0, 430, 0, 0, + 434, 437, 35, 445, 436, 0, 0, 378, 34, 0, + 379, 597, 163, 297, 603, 292, 0, 294, 596, 599, + 0, 0, 0, 607, 0, 0, 392, 158, 244, 245, + 246, 248, 238, 247, 0, 159, 300, 300, 154, 15, + 18, 20, 0, 240, 301, 298, 299, 370, 0, 369, + 0, 0, 252, 339, 340, 341, 342, 343, 345, 344, + 338, 251, 383, 386, 0, 490, 0, 484, 495, 0, + 485, 0, 0, 112, 0, 0, 515, 501, 0, 521, + 502, 523, 0, 573, 0, 571, 78, 0, 412, 36, + 0, 0, 397, 399, 300, 44, 55, 358, 359, 360, + 365, 366, 363, 364, 357, 368, 361, 362, 367, 352, + 353, 354, 355, 356, 391, 488, 91, 116, 118, 409, + 36, 0, 0, 428, 0, 427, 530, 422, 0, 0, + 0, 403, 0, 584, 0, 73, 0, 16, 449, 447, + 0, 441, 443, 435, 0, 453, 94, 92, 381, 376, + 0, 598, 600, 0, 548, 549, 551, 546, 564, 0, + 0, 256, 0, 161, 374, 0, 0, 0, 0, 300, + 235, 371, 0, 237, 258, 0, 0, 0, 0, 0, + 0, 0, 486, 0, 0, 0, 519, 0, 504, 0, + 0, 567, 0, 0, 558, 572, 417, 0, 415, 37, + 0, 416, 405, 0, 0, 0, 411, 407, 81, 34, + 0, 425, 34, 421, 84, 577, 0, 125, 0, 34, + 0, 450, 451, 34, 442, 444, 433, 447, 0, 439, + 456, 0, 454, 455, 380, 34, 601, 547, 0, 555, + 0, 401, 300, 19, 30, 21, 30, 241, 372, 384, + 387, 389, 491, 493, 0, 30, 103, 30, 105, 513, + 0, 0, 0, 524, 0, 574, 569, 0, 418, 0, + 300, 489, 410, 429, 0, 423, 588, 17, 0, 34, + 34, 463, 34, 0, 0, 448, 0, 0, 34, 0, + 382, 550, 556, 552, 610, 609, 608, 162, 31, 0, + 32, 34, 0, 0, 496, 0, 0, 0, 520, 516, + 522, 0, 0, 0, 0, 414, 419, 0, 536, 591, + 0, 578, 0, 0, 34, 469, 300, 464, 0, 0, + 34, 452, 0, 440, 438, 446, 457, 458, 0, 0, + 0, 56, 0, 494, 0, 0, 0, 514, 0, 529, + 528, 525, 527, 568, 575, 0, 394, 0, 531, 592, + 585, 0, 0, 300, 470, 462, 0, 460, 431, 34, + 466, 0, 34, 0, 553, 23, 33, 34, 25, 497, + 104, 106, 517, 570, 537, 0, 587, 579, 0, 589, + 590, 0, 300, 465, 300, 467, 34, 472, 459, 0, + 57, 532, 0, 0, 471, 461, 0, 300, 473, 0, + 554, 0, 582, 581, 580, 586, 468, 0, 541, 539, + 538, 533, 474, 542, 540 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 60, 61, 430, 63, 703, 705, 704, 706, 64, - 838, 538, 737, 539, 484, 839, 431, 237, 146, 213, - 660, 235, 670, 509, 249, 212, 148, 432, 433, 434, - 716, 948, 208, 210, 66, 172, 173, 174, 70, 175, - 72, 176, 74, 75, 177, 77, 178, 79, 179, 81, - 180, 83, 181, 85, 270, 182, 87, 183, 89, 184, - 91, 92, 93, 300, 185, 186, 187, 97, 98, 188, - 189, 100, 579, 271, 272, 580, 190, 280, 102, 103, - 191, 105, 192, 581, 584, 275, 228, 194, 398, 195, - 196, 197, 109, 198, 111, 112, 113, 114, 115, 116, - 199, 200, 201, 202, 329, 294, 276, 118, 250, 546, - 547, 601, 203, 404, 715, 602, 266, 205, 121, 206, - 123, 124, 151, 152, 561, 234, 457, 515, 516, 458, - 736, 627, 628, 125, 233, 526, 668, 126, 217, 520, - 436, 676, 535, 682, 767, 678, 247, 683, 680, 762, - 759, 770, 905, 906, 760, 761, 128, 129, 130, 507, - 743, 422, 718, 423, 604, 842, 720, 883, 424, 425, - 131, 442, 443, 132, 216, 133, 444, 612, 846, 726, - 887, 445, 613, 799, 728, 134, 729, 850, 135, 890, - 891, 136, 749, 924, 950, 523, 897, 949, 959, 258, - 259, 693, 694, 137, 778, 877, 938, 832, 138, 450, - 451, 452, 139, 260, 140, 622, 803, 853, 623, 731, - 852, 141, 236, 815, 899, 941, 953, 530, 926, 927, - 860, 861, 862, 241, 142, 252, 555, 556, 143, 697, - 835, 437 + -1, 60, 61, 423, 63, 695, 697, 696, 698, 64, + 829, 531, 728, 532, 477, 830, 424, 239, 147, 215, + 652, 237, 662, 502, 251, 214, 149, 425, 426, 427, + 707, 939, 210, 212, 66, 173, 174, 175, 70, 176, + 72, 177, 74, 75, 178, 77, 179, 79, 180, 81, + 181, 83, 182, 85, 270, 183, 87, 184, 89, 185, + 91, 186, 93, 94, 298, 187, 188, 189, 98, 99, + 190, 191, 101, 572, 271, 272, 573, 192, 279, 103, + 104, 193, 106, 194, 574, 577, 275, 230, 196, 391, + 197, 198, 199, 110, 200, 112, 113, 114, 115, 116, + 117, 201, 202, 203, 204, 362, 293, 276, 119, 252, + 539, 540, 593, 205, 397, 706, 594, 266, 207, 122, + 208, 124, 125, 152, 153, 554, 236, 450, 508, 509, + 451, 727, 619, 620, 126, 235, 519, 660, 127, 219, + 513, 429, 668, 528, 674, 758, 670, 249, 675, 672, + 753, 750, 761, 896, 897, 751, 752, 129, 130, 131, + 500, 734, 415, 709, 416, 596, 833, 711, 874, 417, + 418, 132, 435, 436, 133, 218, 134, 437, 604, 837, + 717, 878, 438, 605, 790, 719, 135, 720, 841, 136, + 881, 882, 137, 740, 915, 941, 516, 888, 940, 950, + 258, 259, 685, 686, 138, 769, 868, 929, 823, 139, + 443, 444, 445, 140, 260, 141, 614, 794, 844, 615, + 722, 843, 142, 238, 806, 890, 932, 944, 523, 917, + 918, 851, 852, 853, 143, 254, 548, 549, 144, 689, + 826, 430 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -838 +#define YYPACT_NINF -657 static const yytype_int16 yypact[] = { - 4862, 238, -838, 296, -838, 7, 27, 805, 511, -44, - 7545, -838, -838, -838, 9017, 9017, 9017, -838, 35, 822, - 7545, 7545, -838, 1602, -838, 296, 4024, -838, -838, 54, - -838, 1637, 1761, -838, 296, -22, -838, 91, -838, -838, - 9017, -838, 9017, 1514, 230, -838, 44, 4024, -838, -838, - 7545, -838, -838, 213, 134, -838, -838, 7669, 3683, 8714, - 244, 4993, -838, -838, 390, -838, 26, 131, 131, 131, - 4224, 8, 8714, 16, 8714, 8714, 50, 8714, 71, 8714, - 78, 8714, 271, 8714, 215, 8714, 131, 4224, 1, 4224, - 82, 4224, 8041, 8714, 131, 191, 308, 8714, -838, 12, - 8714, 30, 144, 8714, 113, 8714, 1014, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -838, 238, 225, - 115, 4224, 118, 8714, -838, -838, -838, -838, -838, -838, - 413, -838, 5379, 415, -838, 7545, -838, -838, -838, 5507, - 87, -838, -838, -838, -838, -838, 7545, -838, 238, -838, - -838, 9017, 9017, 7545, -838, -838, -838, -838, -838, -838, - 7545, -838, -838, -838, 54, -838, -838, -838, -838, 7545, - 7545, 9017, 275, 430, 544, 222, 773, 1995, 8218, 2135, - 719, 2223, 2830, 1230, 1913, 1931, 2362, 2540, 8279, -838, - 8157, 8340, -838, 3133, 439, -838, -838, -838, -838, -838, - -838, -838, -838, 2369, 259, 8401, 2421, -838, 202, -838, - 289, -838, -838, 8759, -838, -838, 238, 9017, -838, 21, - 48, 98, 206, 131, -4, 237, 157, 260, 20, 303, - 13, 269, 385, 9017, 9017, 8759, 369, 7545, -838, -838, - -838, 44, 437, 323, 4432, 9080, 333, 238, 374, 365, - 8803, 4668, -838, 239, 154, 187, 206, 270, -838, -6, - 7545, 4464, -838, 7545, -838, 9017, 216, -838, 368, 4024, - 199, -838, -838, -838, 3864, -838, 221, -838, -838, -838, - -838, -838, 238, -838, -838, -838, -838, -838, 9017, 9017, - -838, 7297, 7421, -838, 121, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, 7297, -838, -838, - -838, -838, -838, 7297, -838, -838, -838, -838, 7, 27, - 475, -838, 480, -838, 483, -838, -838, 512, -838, 537, - -838, 78, -838, 271, -838, 538, -838, -838, 541, -838, - 555, -838, -838, 556, 557, -838, 558, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -838, -838, 7297, - -838, 8714, -838, -838, -838, -838, -838, 7545, -838, -838, - 7545, 7545, 7545, 7545, 7545, 7545, 7545, 8714, -838, -838, - -838, -838, -838, -838, 7545, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -838, 238, -838, - -838, -838, 381, 461, -838, -838, -838, 572, -838, 37, - -838, -838, -838, -838, 478, 5635, -838, -838, -838, -838, - -838, -838, -838, -838, 423, 383, 344, 5763, -838, -838, - 387, -838, -838, -838, 4464, -838, 3053, 398, -838, 398, - 3437, 1568, -838, -838, 376, -838, -838, -838, -838, 9017, - -838, -838, -838, -838, -838, -838, -838, -838, 9017, -838, - -838, -838, -838, -838, -838, -838, -838, -838, -838, 7545, - 7545, 7545, 7545, 7545, 7545, 7545, 7545, 7545, 7545, 7545, - 7545, 7545, 7545, 7545, 7545, 7545, 7545, 238, -838, 238, - 9017, -838, 9017, -838, 3053, 470, -838, -838, -838, 9080, - 403, -838, -838, 7545, -838, 9080, 160, 403, 470, 7545, - 238, 4464, -838, 420, -838, 9017, 238, -838, -838, -838, - -838, -838, 590, 238, -838, 9080, 477, 486, 7793, 265, - 431, -838, 459, 3133, 8096, 487, -838, 7917, 4024, 4464, - -838, 9017, 380, -838, -838, 168, 48, 206, -4, 136, - 157, 7545, -838, 7545, 7297, -838, -838, 488, 489, 248, - -838, 3133, -838, 3133, -838, 7421, 481, 279, 317, 425, - -838, 3133, 3133, 3133, 3133, 3133, 3133, 3133, 3133, -838, - 3133, 491, 7171, -838, 7545, -838, -838, 381, -838, 9017, - 9017, -838, 7545, 238, -838, -838, 383, -838, -838, -838, - 7545, -838, 357, -838, -838, 7545, 609, 596, 128, 9017, - -838, -838, 7793, -838, -838, 2647, 3133, 1568, 1568, 1568, - 422, 422, 561, 1568, 422, 422, 422, 262, 262, 293, - 293, 293, 3133, -838, -838, -838, -838, 611, 596, 8759, - 238, -838, 9017, -838, 3133, -838, 9017, 9017, 238, -838, - 238, 3133, 5251, -838, 603, -838, 8536, 333, 4432, -838, - -838, -838, 9017, 4795, -838, -838, -838, -838, 8866, -838, - 7793, 9017, 3133, -838, 498, -838, -838, 6531, 398, -838, - 4535, -838, -838, 238, 499, 238, 507, 7297, -838, -838, - 7421, -838, -838, -838, 7545, 495, 5121, 505, 6659, 344, - 7545, -838, 377, 386, 344, -838, 7545, -838, 238, 6787, - 3133, 238, 7545, -838, -838, 3133, 626, -838, -838, 7545, - 506, -838, 514, 5891, 7545, -838, -838, -838, 9080, 593, - -838, 9080, -838, -838, -838, 238, 8581, 9017, 9080, 515, - 519, 521, 9080, -838, -838, -838, -838, 257, -838, -838, - 520, 524, 521, -838, 9080, -838, 376, 7917, 552, 95, - -838, 7545, -838, 8910, -838, 8910, -838, -838, 3133, -838, - -838, -838, -838, 344, 8910, -838, 8910, -838, -838, 6275, - 344, 6275, -838, 238, -838, 3133, 7545, 3133, 7545, 7793, - -838, 3133, -838, 7545, -838, 466, -838, 9017, 9080, 3341, - -838, 9080, 8625, 569, -838, 9017, 238, 9080, 8492, -838, - -838, -838, -838, -838, -838, -838, -838, -838, 527, 530, - 9080, 531, 5891, -838, 533, 534, 6019, -838, -838, -838, - 47, 6147, 6147, 238, 3133, 3133, 535, -15, -838, 9017, - -838, 238, 238, 3584, -838, 7545, -838, 238, 9017, 9080, - 521, 8670, -838, -838, -838, -838, 540, 238, 238, 8973, - -838, 238, -838, 5891, 238, 238, -838, 6019, -838, -838, - -838, -838, -838, -838, 6147, -838, 7545, -838, -838, 597, - 6403, 6403, 7545, -838, -838, 432, -838, -838, 4337, -838, - 9017, 9080, -30, -838, -838, -838, 9080, -838, -838, -838, - -838, -838, -838, 259, 238, -838, -838, 238, -838, -838, - 436, 7545, -838, 7545, -838, 9015, -838, -838, 6915, -838, - -838, 41, 7043, -838, -838, 460, 7545, -838, 226, -838, - 6915, -838, -838, -838, -838, -838, 463, 9017, 9017, -838, - -838, -838, -838, -838 + 4251, -79, -657, -60, -657, 76, 203, 2147, 1417, 124, + 7209, -657, -657, -657, 8670, 8670, 8670, -657, 45, 2420, + 7209, 7209, -657, 2570, -657, -60, 3456, -657, -657, 218, + -657, 2583, 2924, -657, -60, -16, -657, 249, -657, -657, + 8670, -657, 8670, 1587, 326, -657, 199, 3456, -657, -657, + 7209, -657, -657, 261, 196, -657, -657, 7333, 6713, 8367, + 333, 4409, -657, -657, 315, -657, -3, 226, 226, 226, + 7993, 14, 8367, 35, 8367, 8367, 48, 8367, 56, 8367, + 66, 8367, 331, 8367, 139, 8367, 226, 7993, 340, 7993, + 379, 7993, 125, 4120, 8367, 226, 237, 402, 8367, -657, + -6, 8367, 31, 234, 8367, 4, 8367, 618, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -79, + 147, 54, 7993, 123, 8367, -657, -657, -657, -657, -657, + -657, 383, -657, 4795, 303, -657, 7209, -657, -657, -657, + 4923, 216, -657, -657, -657, -657, -657, 7209, -657, -79, + -657, -657, 8670, 8670, 7209, -657, -657, -657, -657, -657, + -657, 7209, -657, -657, -657, 218, -657, -657, -657, -657, + 7209, 7209, 8670, 255, 478, 512, 1308, 2959, 3083, 7719, + 3296, 2283, 3307, 3563, 1450, 1687, -44, 2427, 2796, 3335, + 7780, -657, 7658, 7841, -657, 8780, 3140, -657, -657, -657, + -657, -657, -657, -657, -657, 3556, 247, 7902, 3666, -657, + 323, -657, 328, -657, -657, 8411, -657, -657, -79, 8670, + -657, 102, 32, 42, 198, 226, 44, 149, -17, 153, + 34, 256, 18, 166, 392, 8670, 8670, 8411, 420, 7209, + -657, -657, -657, 199, 466, 369, 8037, 8945, 372, -79, + 405, 378, 8456, 6837, -657, 222, 198, 184, -657, -15, + 7209, 8676, -657, 7209, -657, 8670, 257, -657, 395, 3456, + 106, -657, -657, -657, 8708, -657, 158, -657, -657, -657, + -657, -79, -657, -657, -657, -657, -657, 8670, 8670, -657, + 6961, 7085, -657, 109, -657, -657, -657, -657, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + 6961, -657, -657, 76, 203, 484, -657, 490, -657, 491, + -657, -657, 493, -657, 494, -657, 66, -657, 331, -657, + 495, -657, -657, -657, -657, -657, 500, 503, -657, 504, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -657, 6961, -657, 8367, -657, -657, -657, -657, -657, + 7209, -657, -657, 7209, 7209, 7209, 7209, 7209, 7209, 7209, + 8367, -657, -657, -657, -657, -657, -657, 7209, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -79, -657, -657, -657, 409, 441, -657, -657, -657, + 2039, -657, 49, -657, -657, -657, -657, 427, 5051, -657, + -657, -657, -657, -657, -657, -657, -657, 354, 356, 341, + 5179, -657, -657, 423, -657, -657, -657, 8676, -657, 3836, + 347, -657, 347, 307, 2194, -657, -657, 415, -657, -657, + -657, -657, 8670, -657, -657, -657, -657, -657, -657, -657, + -657, 8670, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -657, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, + 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, + -79, -657, -79, 8670, -657, 8670, -657, 3836, 419, -657, + -657, -657, 8945, 350, -657, -657, 7209, -657, 8945, 177, + 350, 419, 7209, -79, 8676, -657, 360, -657, 8670, -79, + -657, -657, -657, -657, -657, 531, -79, -657, 8945, 421, + 428, 7457, 227, 355, -657, 368, 8780, 3759, 430, -657, + 7581, 3456, 8676, -657, 8670, 375, -657, -657, 93, 140, + 198, 44, 78, -17, 7209, -657, 7209, 6961, -657, -657, + 426, 432, 278, -657, 8780, -657, 8780, -657, 7085, 429, + 281, 314, -657, 8780, 8780, 8780, 8780, 8780, 8780, 8780, + 8780, -657, 8780, 434, 6587, -657, 7209, -657, -657, 409, + -657, 8670, 8670, -657, 7209, -79, -657, -657, 356, -657, + -657, -657, 7209, -657, 258, -657, -657, 7209, 553, 713, + 174, 8670, -657, -657, 7457, -657, -657, 8818, 8780, 2194, + 2194, 2194, 644, 644, 505, 2194, 644, 644, 644, 296, + 296, 209, 209, 209, 8780, -657, -657, -657, -657, 555, + 713, 8411, -79, -657, 8670, -657, 8780, -657, 8670, 8670, + -79, -657, -79, 8780, 4667, -657, 546, -657, 8189, 372, + 8037, -657, -657, -657, 8670, 8082, -657, -657, -657, -657, + 8500, -657, 7457, 8670, 8780, -657, 445, -657, -657, 5947, + 347, -657, 8748, -657, -657, -79, 447, -79, 449, 6961, + -657, -657, 7085, -657, -657, 7209, 448, 4537, 451, 6075, + 341, 7209, -657, 254, 265, 341, -657, 7209, -657, -79, + 6203, 8780, -79, 7209, -657, -657, 8780, 569, -657, -657, + 7209, 450, -657, 456, 5307, 7209, -657, -657, -657, 8945, + 536, -657, 8945, -657, -657, -657, -79, 8233, 8670, 8945, + 457, 460, 462, 8945, -657, -657, -657, -657, 178, -657, + -657, 461, 467, 462, -657, 8945, -657, 415, 7581, 497, + 205, -657, 7209, -657, 8563, -657, 8563, -657, -657, 8780, + -657, -657, -657, -657, 341, 8563, -657, 8563, -657, -657, + 5691, 341, 5691, -657, -79, -657, 8780, 7209, 8780, 7209, + 7457, -657, 8780, -657, 7209, -657, 403, -657, 8670, 8945, + 4314, -657, 8945, 8278, 511, -657, 8670, -79, 8945, 8126, + -657, -657, -657, -657, -657, -657, -657, -657, -657, 470, + 473, 8945, 474, 5307, -657, 476, 477, 5435, -657, -657, + -657, 25, 5563, 5563, -79, 8780, 8780, 479, 179, -657, + 8670, -657, -79, -79, 8825, -657, 7209, -657, -79, 8670, + 8945, 462, 8322, -657, -657, -657, -657, 475, -79, -79, + 8607, -657, -79, -657, 5307, -79, -79, -657, 5435, -657, + -657, -657, -657, -657, -657, 5563, -657, 7209, -657, -657, + 541, 5819, 5819, 7209, -657, -657, 381, -657, -657, 8903, + -657, 8670, 8945, 19, -657, -657, -657, 8945, -657, -657, + -657, -657, -657, -657, 247, -79, -657, -657, -79, -657, + -657, 390, 7209, -657, 7209, -657, 8924, -657, -657, 6331, + -657, -657, 41, 6459, -657, -657, 391, 7209, -657, 219, + -657, 6331, -657, -657, -657, -657, -657, 398, 8670, 8670, + -657, -657, -657, -657, -657 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -838, -838, -838, 34, 605, -838, -838, -838, -838, -838, - -716, -403, 9, -169, -585, -838, 45, -838, -838, -838, - -838, -838, -838, -838, -838, 112, -838, -419, -838, -838, - -72, -534, -838, -838, 3530, 1278, 1439, 1508, 576, 295, - 577, 311, 581, 583, 457, 586, 525, 587, 630, 588, - 645, 589, 958, 601, -838, 1669, 602, 0, 607, 94, - 608, 469, -838, 9043, 1766, 1788, 1885, -838, -167, 2115, - -249, -838, -63, -617, -245, -57, 2137, -326, -838, -838, - 2268, -838, -244, 4114, -560, -563, -838, 2373, -838, 2441, - 2561, -838, -838, 2637, -838, -838, -838, -838, -838, -838, - 2742, -838, -838, -838, 3767, -838, -838, -838, -838, -838, - -838, -838, 1159, -838, -838, -838, -7, 201, 613, 1181, - 615, -838, -838, -838, -838, -838, -144, 468, 36, -208, - -838, 194, -838, -838, -838, -838, -838, -838, -838, 476, - 56, -838, -838, -838, -838, -838, -521, -838, -658, -838, - -838, -838, -837, -222, 28, -652, -838, -838, -838, -838, - -838, 291, -838, -838, -838, -838, -838, -838, -411, -838, - -838, -427, -838, -838, -838, -838, -838, -838, -838, -838, - -838, 268, -838, -838, -838, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, -838, -838, -235, -838, 159, - -838, -56, -838, -838, -838, -838, -838, -838, -838, -838, - 101, -838, -838, -838, -838, -838, -838, -838, 102, -838, - -838, -838, -838, -838, -838, -838, -838, -838, -838, -838, - -838, -838, -838, -838, -838, 479, -838, -525, -838, -838, - -838, 3668 + -657, -657, -657, 36, 548, -657, -657, -657, -657, -657, + -544, -163, -38, -168, -585, -657, 38, -657, -657, -657, + -657, -657, -657, -657, -657, 590, -657, -419, -657, -657, + -64, -388, -657, -657, 3205, 1139, 1299, 1356, 520, 230, + 523, 336, 524, 525, 416, 527, 481, 529, 496, 530, + 727, 532, 969, 533, -657, 1511, 535, 0, 537, 60, + 539, 120, 399, -657, 8865, 1530, 1627, 1657, -657, -169, + 1844, -249, -657, -299, -596, -247, -56, 1874, -328, -657, + -657, 1990, -657, -246, 3512, -546, -556, -657, 2235, -657, + 2005, 2195, -657, -657, 2313, -657, -657, -657, -657, -657, + -657, 2381, -657, -657, -657, 3864, -657, -657, -657, -657, + -657, -657, -657, 1042, -657, -657, -657, -5, 191, 542, + 1111, 544, -657, -657, -657, -657, -657, -145, 397, -13, + -214, -657, 132, -657, -657, -657, -657, -657, -657, -657, + 404, 55, -657, -657, -657, -657, -657, -508, -657, -656, + -657, -657, -657, -631, -281, -30, -648, -657, -657, -657, + -657, -657, 232, -657, -657, -657, -657, -657, -657, -403, + -657, -657, -421, -657, -657, -657, -657, -657, -657, -657, + -657, -657, 213, -657, -657, -657, -657, -657, -657, -657, + -657, -657, -657, -657, -657, -657, -657, -657, -285, -657, + 108, -657, -111, -657, -657, -657, -657, -657, -657, -657, + -657, 46, -657, -657, -657, -657, -657, -657, -657, 47, + -657, -657, -657, -657, -657, -657, -657, -657, -657, -657, + -657, -657, -657, -657, -657, 422, -657, -512, -657, -657, + -657, 2886 }; /* 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 -613 +#define YYTABLE_NINF -607 static const yytype_int16 yytable[] = { - 88, 273, 550, 204, 465, 517, 551, 552, 459, 483, - 701, 605, 608, 485, 679, 742, 611, 615, 618, 486, - 764, 487, 488, 689, 768, 709, 220, 517, 611, 521, - -305, 772, 372, 896, 62, 239, 508, 326, -29, -29, - -111, -111, 738, 149, 302, 65, 557, 254, 374, 408, - 38, 39, 305, 626, 871, 590, 127, 290, 951, 278, - 435, 88, 290, 150, 888, 930, 378, 447, 717, 841, - 298, 599, 298, 738, 298, 298, 937, 298, 844, 298, - 845, 298, 153, 298, 326, 298, 309, 298, 889, 298, - 232, 298, 358, 298, 90, 283, 945, 298, 465, 54, - 298, 242, 569, 298, 448, 298, 285, 312, 952, 956, - 506, 657, 833, 251, 315, 147, 661, 286, 332, 558, - 221, 298, 665, 298, -96, -96, -328, 327, 446, 240, - 522, -305, 88, 292, 332, -96, -96, 218, 754, 88, - 292, 255, 686, -329, 292, 292, 238, 291, 292, 383, - 787, 408, 291, 279, 413, 90, 379, 763, -96, -96, - -96, -96, 292, 779, 299, 775, 299, 872, 299, 299, - 870, 299, -237, 299, 327, 299, 876, 299, -325, 299, - 292, 299, 292, 299, 791, 299, 360, 299, 449, 727, - 326, 299, 856, 378, 299, 802, 721, 299, 834, 299, - 328, 120, 334, 292, 290, -96, -96, 370, 333, 810, - 292, 375, 666, 514, 292, 299, 384, 299, 836, 399, - 400, 401, 402, 332, 333, 262, 90, 230, -326, 403, - 292, -313, 409, 90, 414, 514, -96, -96, -96, -96, - 417, -96, -96, 957, 281, 292, 585, 292, 257, 248, - 292, 320, 586, 739, 453, 264, -313, -313, 302, 740, - 263, 406, 120, 292, 587, 847, -237, 849, -237, 566, - 588, 301, 958, 374, 381, 290, -313, -313, -313, -313, - 327, -313, -313, 379, -312, 667, 292, -332, 325, 292, - 331, -547, 337, 364, 291, 71, 383, 611, -164, 550, - -164, 290, 904, 551, 552, 413, 408, 318, 882, -312, - -312, 73, 886, 333, -96, -96, 589, 892, 893, 292, - 496, 71, 412, 292, 571, 55, 56, 510, 572, -312, - -312, -312, -312, 120, -312, -312, -323, 73, 292, 904, - 120, 506, 71, 563, 372, 812, 574, 292, 814, 918, - 575, 496, -313, 921, 292, 820, 71, 292, 73, 824, - 922, 55, 56, 255, -547, 291, 928, 929, 904, 292, - 904, 829, 73, 707, 448, 708, 501, 502, 503, 504, - 505, 278, 825, 904, 506, 508, 826, 342, -608, -608, - -608, 291, 292, 288, 289, 732, 621, 278, 420, 421, - 438, 292, 292, 344, 707, -312, 711, 292, 954, 503, - 504, 505, 55, 56, 512, 864, 866, 698, 867, -96, - -96, 741, 617, 441, 874, 620, 621, 71, 418, 419, - 420, 421, 438, 397, 71, 88, 164, 880, 529, -314, - 438, 550, 707, 73, 712, 551, 552, 88, 387, 534, - 73, 517, 554, 439, 440, 441, 533, 76, 449, 540, - 903, 614, 440, 441, -314, -314, 909, 55, 56, 506, - 257, 494, 495, 388, 389, 279, 418, 606, 420, 421, - 496, 609, 610, 76, -314, -314, -314, -314, 542, -314, - -314, 279, 543, 390, 391, 392, 393, 564, 394, 395, - 55, 56, 291, 794, 76, 934, 291, 699, 936, 55, - 56, 290, 796, 939, -27, -27, 302, 702, 76, 305, - -132, 55, 56, 629, 465, 78, 55, 56, 662, 90, - 858, 859, 947, 498, 499, 500, 501, 502, 503, 504, - 505, 90, 674, 55, 56, -132, -132, -132, 309, 347, - 707, 78, 713, -315, -610, -610, -610, 931, 254, 932, - -314, 931, 292, 943, 71, -132, -132, -132, -132, 397, - -132, -132, 78, 312, 320, -109, -109, 326, -315, -315, - 73, -132, -611, -611, -611, 931, 78, 955, 931, 76, - 961, 332, 406, 408, 413, 659, 76, 719, -315, -315, - -315, -315, 88, -315, -315, 724, -132, -132, -132, 684, - 687, 688, 690, 710, -22, -24, 714, 349, -417, 496, - 744, -132, 755, 777, 789, 783, -132, -132, -132, -132, - 80, -132, -132, 785, 790, 806, 120, -132, 808, 809, - 813, -132, 821, -132, 822, 82, 823, 827, 120, 828, - 786, 831, 255, 871, 878, 879, 80, 78, 881, 514, - 884, 885, 895, 925, 78, 912, 284, 745, 341, 343, - 466, 82, 88, 345, -315, 346, 292, 80, 348, 350, - 352, 354, -132, 475, 476, 477, 478, 479, 480, 481, - 482, 80, 82, 356, 357, 746, 90, 88, -132, 359, - 361, 524, -132, 528, -132, 365, 82, 367, 658, 944, - 527, 771, 616, 793, 607, 960, 88, 695, 88, 800, - 532, 830, 351, 733, 734, 0, 76, 0, -321, 88, - 71, 0, 0, 0, 0, 0, 0, 353, 0, 0, - 0, 0, 71, 88, 0, 0, 73, 0, 0, 554, - 0, 0, 0, -321, -321, 318, 0, 0, 73, 257, - 0, 0, 80, 0, 0, 0, 90, 0, 0, 80, - 0, 0, 0, -321, -321, -321, -321, 82, -321, -321, - 0, 0, -316, 0, 82, 0, 0, 0, 0, 0, - 0, 90, 0, 0, 78, 0, 0, 0, 0, 88, - 0, 88, 0, 120, 0, 0, 857, -316, -316, 305, - 90, 0, 90, 0, -130, 0, 0, 0, 0, 0, - 0, 0, 0, 90, 0, 0, 0, -316, -316, -316, - -316, -134, -316, -316, 0, 0, 0, 90, 0, -130, - -130, -130, 88, 0, 0, 0, 88, 0, 0, -321, - 0, 88, 88, 71, 0, 0, -134, -134, -134, -130, - -130, -130, -130, 0, -130, -130, 0, 0, 0, 73, - 0, 0, 0, 120, 0, 0, -134, -134, -134, -134, - 0, -134, -134, 88, 0, 0, 0, 88, 0, 923, - 0, 554, 76, 90, 88, 90, 0, 71, 120, 80, - 88, 88, 0, -316, 76, 292, 0, 0, 0, 0, - 0, 0, 0, 73, 82, -130, 0, 120, 0, 120, + 88, 510, 273, 458, 543, 206, 544, 545, 452, 603, + 693, 476, 597, 600, 755, 478, 607, 610, 759, 371, + 671, 603, 479, 510, 480, 481, 222, 763, 733, 681, + 367, 580, 701, 289, 729, 241, 62, 550, 65, 501, + 376, -304, 879, 514, 55, 56, 582, 88, -29, -29, + 300, -305, -110, -110, 401, 128, 38, 39, 942, 241, + 90, 88, 591, -95, -95, 729, 880, 371, 324, 428, + 241, 303, 241, 581, 241, 241, 440, 241, 327, 241, + 365, 241, 330, 241, 307, 241, 223, 241, 291, 241, + 401, 241, 310, 88, 241, 242, 458, 282, 241, 284, + 562, 241, 313, 862, 241, 54, 241, 90, 943, 372, + 551, -302, 150, -328, -236, 291, 285, -95, -95, 242, + 92, 90, 241, 290, 241, 928, 291, -95, -95, 289, + 242, 439, 242, 88, 242, 242, 291, 242, 289, 242, + 88, 242, -304, 242, 515, 242, 291, 242, -325, 242, + 291, 242, -305, 90, 242, 243, 778, 372, 242, 406, + 863, 242, 754, 291, 242, 861, 242, 291, -95, -95, + 766, 867, -95, -95, -324, 318, 324, -95, -95, 278, + 291, 92, 242, 399, 242, 367, 291, 718, 291, 376, + 297, 121, 297, 90, 297, 297, 712, 297, 291, 297, + 90, 297, 406, 297, 847, 297, 708, 297, -236, 297, + -236, 297, -302, 297, 297, 507, 827, 232, 297, 290, + 401, 297, 824, -163, 297, -163, 297, 887, 290, 658, + 71, 564, 832, 441, 578, 565, 948, 507, 257, 151, + 579, 835, 297, 836, 297, 264, -95, -95, -95, -95, + 154, 330, 121, 92, 234, 291, 71, 291, 289, 244, + 92, 299, 921, 289, -309, 949, -170, 489, 253, 559, + -170, 291, -170, 262, -543, 441, 745, 71, 323, 291, + 326, 291, 329, 567, 357, 291, 618, 568, 603, -309, + -309, 71, 543, 936, 544, 545, 723, 613, 291, 730, + 895, 770, 659, 816, 499, 731, 947, 817, 825, -309, + -309, -309, -309, 405, -309, -309, 291, 442, 287, 288, + 431, 782, 263, 337, 121, 496, 497, 498, -320, 90, + 291, 121, 793, 280, 482, 483, 73, 895, 484, 485, + 486, 432, 433, 434, 649, 250, 801, -543, 290, 653, + -602, -602, -602, 290, 489, 657, 487, 488, 291, 442, + -95, -95, 73, 71, 374, 489, 895, 316, 895, 291, + 71, 431, 499, 431, 241, 678, 324, 55, 56, 501, + 785, 895, 499, 73, 556, -309, 390, 291, 55, 56, + 241, 787, 606, 433, 434, 609, 434, 73, 411, 412, + 413, 414, 838, 699, 840, 700, 699, 732, 703, 690, + 494, 495, 496, 497, 498, 327, 76, 490, 491, 492, + 493, 494, 495, 496, 497, 498, 413, 414, 88, 339, + 601, 602, 624, 543, 242, 544, 545, 510, 365, 699, + 88, 704, 76, 165, 547, 873, 55, 56, 503, 877, + 242, 55, 56, 505, 883, 884, 411, 598, 413, 414, + 257, 612, 613, 76, 55, 56, 499, 849, 850, 73, + 55, 56, 621, 55, 56, 654, 73, 76, -604, -604, + -604, 78, 666, 55, 56, 526, 909, -311, 90, 522, + 912, -605, -605, -605, 278, 527, 80, 913, 533, 71, + 90, 290, 691, 919, 920, 536, 922, 78, 923, 342, + 278, 694, -311, -311, 458, 922, 922, 934, 946, 535, + 289, -312, 80, 922, 557, 952, 300, 303, 78, 307, + 310, 318, -311, -311, -311, -311, 399, -311, -311, 401, + 406, 290, 78, 80, 651, 945, -312, -312, 92, 76, + 676, 88, -22, 680, 679, 682, 76, 80, -24, 705, + 92, 702, -413, 489, 735, 746, -312, -312, -312, -312, + 768, -312, -312, 774, 344, 776, 803, 780, 797, 805, + 781, 800, 799, 804, 812, 813, 811, 814, 818, 346, + 815, 710, 819, 148, 88, 862, 822, 869, 870, 715, + 903, 872, 820, 875, 876, 73, 886, 916, -311, 283, + 291, 90, 736, 336, 78, 220, 338, 340, 341, 121, + 343, 78, 345, 347, 240, 349, 351, 380, 352, 80, + 353, 121, 354, 517, 521, 358, 80, 360, 737, 650, + 520, 935, -312, 777, 291, 762, 855, 857, 599, 858, + 608, 507, 381, 382, 90, 865, 951, 821, 71, 687, + 724, 725, 0, 0, 88, 525, 0, 0, 871, 0, + 71, 0, 383, 384, 385, 386, 0, 387, 388, 0, + 0, 0, 331, 0, 0, 76, 363, 0, 0, 88, + 368, 894, 0, 487, 488, 377, 0, 900, 392, 393, + 394, 395, 489, 0, 0, 0, 784, 88, 396, 88, + 0, 402, 791, 407, 92, 0, 0, 0, 0, 410, + 88, 0, 0, 0, 90, 0, 0, 82, 389, 0, + 0, 0, 547, 446, 88, 0, 925, 0, 0, 927, + 0, 0, 257, 0, 930, 0, 0, 0, 390, 90, + 78, 0, 0, 82, 0, 491, 492, 493, 494, 495, + 496, 497, 498, 938, 73, 80, 0, 90, 0, 90, + 0, 0, 0, 0, 82, 0, 73, 0, 0, 0, + 90, 71, 0, 0, 92, 121, 0, 459, 82, 0, + 88, 0, 88, 0, 90, 0, 0, 0, 0, 848, + 468, 469, 470, 471, 472, 473, 474, 475, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 120, -130, -134, 0, 0, -130, 90, -130, 88, 0, - 90, 0, 88, 0, 120, 90, 90, 0, -134, 0, - 88, 0, -134, 0, -134, 0, 0, 0, 84, 0, - 78, 0, 0, 0, 0, 0, 0, 71, 0, 0, - 0, 0, 78, 0, 0, 0, 0, 90, 0, 0, - 0, 90, 0, 73, 84, 0, 0, 0, 90, 0, - 0, 0, 71, 0, 90, 90, 0, 0, 0, 0, - 120, 0, 120, 0, 0, 84, 0, 0, 73, 0, - 0, 71, 0, 71, 0, 76, 0, 0, 0, 84, - 0, 0, 0, 387, 71, 0, 0, 73, 0, 73, - 0, 0, 90, 0, 0, 0, 90, 0, 71, 0, - 73, 0, 0, 120, 90, 0, 0, 120, 388, 389, - 355, 0, 120, 120, 73, 0, 0, 0, 0, 76, - 0, 0, 0, 0, 0, 80, 0, 0, 390, 391, - 392, 393, 0, 394, 395, 0, 0, 80, 0, 0, - 82, 0, 0, 78, 120, 0, 0, 0, 120, 0, - 84, 0, 82, 0, 71, 120, 71, 84, 0, 0, - 0, 120, 120, 0, 0, 0, 0, 0, 0, 0, - 73, 0, 73, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 396, 0, 0, 78, 0, 76, - 0, 0, 0, 0, 0, 0, 0, 71, 0, 120, - 0, 71, 0, 120, 397, 0, 71, 71, 0, 0, - 0, 120, 0, 73, 76, 0, 0, 73, 0, 119, - 0, 0, 73, 73, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 76, 0, 76, 0, 0, 71, 0, - 0, 122, 71, 0, 0, 119, 76, 0, 80, 71, - 0, 0, 0, 0, 73, 71, 71, 78, 73, 0, - 76, 0, 0, 82, 0, 73, 119, 231, 0, 0, - 0, 73, 73, 0, 0, 0, 0, 0, 0, 0, - 119, 0, 78, 0, 0, 0, 0, 84, 231, 0, - 0, 0, 80, 71, 0, 0, 0, 71, 0, -325, - 0, 78, 122, 78, 0, 71, 0, 82, 0, 73, - 0, 363, 0, 73, 78, 0, 76, 0, 76, 0, - 0, 73, 0, 0, -325, -325, 326, 0, 78, 0, - 0, 0, 0, 366, 0, 0, 0, 0, 67, 0, - 0, 0, 0, 0, -325, -325, -325, -325, 0, -325, - -325, 119, 0, 0, 0, 0, 0, 0, 119, 76, - 0, 0, 80, 76, 67, 0, 0, 0, 76, 76, - 0, 0, 0, 122, 0, 0, 0, 82, 0, 0, - 122, 0, 0, 0, 78, 67, 78, 80, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, - 76, 0, 82, 0, 76, 0, 80, 0, 80, 0, - 0, 76, 0, 0, 0, 0, 327, 76, 76, 80, - -325, 82, 292, 82, 0, 0, 0, 78, 0, 0, - 0, 78, 0, 80, 82, 0, 78, 78, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 82, 0, - 0, 0, 0, 84, 0, 76, 0, 0, 0, 76, - 0, 0, 0, 0, 0, 84, 0, 76, 78, 0, - 67, 0, 78, 0, 0, 0, 0, 67, 0, 78, - 0, 0, 0, 0, 0, 78, 78, 0, 119, 80, - 0, 80, 0, 0, 0, 0, 0, 0, 0, 68, - 0, 0, 0, 0, 82, 0, 82, 0, 0, 0, - 231, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 78, 0, 68, 0, 78, 0, 0, - 0, 0, 80, 0, 0, 78, 80, 0, 0, 0, - 0, 80, 80, 0, 0, 0, 68, 82, 0, 0, - 0, 82, 0, 0, 0, 0, 82, 82, 0, 0, - 68, 0, 0, 0, 0, 0, 0, 0, 69, 0, - 0, 0, 0, 80, 0, 0, 84, 80, 0, 2, - 0, 0, 0, 0, 80, 154, 155, 0, 82, 0, - 80, 80, 82, 0, 69, 0, 156, 157, 158, 82, - 159, 0, 0, 0, 161, 82, 82, 67, 0, 0, - 0, 0, 0, 0, 0, 69, 162, 0, 163, 0, - 84, 27, 28, 0, 0, 0, 30, 165, 80, 69, - 0, 68, 80, 0, 0, 166, 0, 0, 68, 0, - 80, 0, 0, 82, 0, 0, 0, 82, 0, 0, - 0, 0, 0, 0, 119, 82, 0, 0, 41, 491, - 492, 493, 0, 0, 0, 0, 119, 0, 0, 167, - 0, -131, 0, 48, 0, 0, 122, 494, 495, 0, - 0, 0, 168, 0, 0, 0, 496, 0, 122, 0, - 84, 0, 0, 0, 0, 0, -131, -131, -131, 0, - 69, 0, 245, 0, 0, 0, -135, 69, 0, 0, - 0, 0, 0, 0, 0, 84, -131, -131, -131, -131, - 0, -131, -131, 0, 0, 0, 0, 0, 0, 86, - 0, -135, -135, -135, 84, 0, 84, 0, 497, 498, - 499, 500, 501, 502, 503, 504, 505, 84, 0, 0, - 0, -135, -135, -135, -135, 86, -135, -135, 0, 0, - 0, 84, 0, 0, 0, 0, 0, 0, 68, 0, - 0, 0, -131, 67, 0, 0, 86, 119, 0, 0, - 0, 0, 0, 0, 0, 67, 0, 0, -131, 0, - 86, 0, -131, 0, -131, 0, 0, 0, 0, 231, - 0, 0, 0, 0, 0, 0, 0, -135, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 84, 0, 84, - 0, 119, 0, -135, 0, 0, 94, -135, 0, -135, - -133, 0, 0, 0, 0, 0, 0, 69, 0, 0, - 0, 0, 0, 122, 0, 0, 0, 0, 95, 0, - 0, 0, 222, 0, 0, -133, -133, -133, 0, 0, - 84, 86, 0, 0, 84, 0, 0, 0, 86, 84, - 84, 0, 0, 256, 223, -133, -133, -133, -133, 0, - -133, -133, 0, 0, 0, 0, 0, 94, 0, 0, - 0, 119, 0, 0, 0, 223, 67, 0, 0, 0, - 0, 84, 0, 0, 0, 84, 0, 0, 0, 95, - 0, 0, 84, 122, 0, 0, 119, 0, 84, 84, + 348, 0, 0, 0, 71, 0, 0, 92, 0, 92, + 0, 0, 0, 88, 0, 0, 0, 88, 0, 0, + 92, 0, 88, 88, 76, 0, 0, 0, 0, 0, + 90, 0, 90, 0, 92, 121, 76, 0, 0, 0, + 82, 0, 0, 0, 0, 0, 0, 82, 0, 0, + 0, 0, 0, 547, 88, 0, 0, 0, 88, 0, + 121, 0, 914, 0, 0, 88, 0, 73, 0, 0, + 0, 88, 88, 90, 71, 0, 0, 90, 121, 0, + 121, 0, 90, 90, 0, 0, 0, 0, 0, 78, + 92, 121, 92, 0, 0, 0, 0, 0, 0, 71, + 0, 78, 0, 0, 80, 121, 0, 0, 0, 88, + 73, 0, 0, 88, 90, 0, 80, 71, 90, 71, + 0, 88, 0, 0, 0, 90, 0, 0, 0, 0, + 71, 90, 90, 92, 0, 0, 0, 92, 0, 0, + 0, 0, 92, 92, 71, 0, 0, 76, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -133, 0, 0, 68, 119, 0, 119, 122, 0, - 67, 0, 0, 0, 0, 96, 68, -133, 119, 0, - 0, -133, 0, -133, 0, 0, 84, 122, 94, 122, - 84, 0, 119, 0, 0, 94, 0, 0, 84, 0, - 122, 224, 0, 0, 0, 0, 0, 0, 0, 0, - 95, 0, -326, 0, 122, 0, 0, 95, 0, 0, - 0, 0, 96, 0, 0, 0, 0, 0, 86, 0, - -323, 0, 0, 69, 0, 0, 96, -326, -326, 332, - 67, 0, 0, 0, 0, 69, 0, 0, 119, 0, - 119, 0, 0, 0, 0, -323, -323, -326, -326, -326, - -326, 0, -326, -326, 0, 67, 0, 0, 0, 0, - 122, 0, 122, 0, 0, -323, -323, -323, -323, 0, - -323, -323, 0, 0, 67, 0, 67, 68, 0, 0, - 0, 119, 0, 0, -318, 119, 0, 67, 0, 0, - 119, 119, 0, 0, 0, 0, 0, 96, 0, 0, - 0, 67, 0, 122, 96, 0, 0, 122, 0, -318, - -318, 309, 122, 122, 0, 567, 0, 0, 0, 333, - 0, 68, 119, -326, 0, 292, 119, 0, 0, -318, - -318, -318, -318, 119, -318, -318, 0, 223, 0, 119, - 119, -323, 0, 292, 122, 0, 69, 0, 122, 0, - 0, 0, 0, 0, 0, 122, 0, 67, 0, 67, - 0, 122, 122, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 119, 0, 0, - 0, 119, 0, 0, 86, 0, 0, 0, 0, 119, - 69, 68, 0, 0, 0, 99, 86, 0, 0, 122, - 67, 0, 0, 122, 67, -318, 0, 292, 0, 67, - 67, 122, 0, 0, 0, 0, 68, 101, 0, 0, - 0, 225, 0, 0, -320, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 568, 68, 0, 68, 0, 0, - 0, 67, 225, 226, 0, 67, 0, 0, 68, -320, - -320, 315, 67, 0, 0, 0, 99, 0, 67, 67, - 69, 0, 68, 0, 101, 0, 0, 0, 0, -320, - -320, -320, -320, 0, -320, -320, 0, 0, 101, 0, - 0, 94, 0, 0, 0, 69, 0, 0, 0, 0, - 0, 0, 0, 94, 0, 0, 67, 0, 0, 0, - 67, 0, 0, 95, 69, 0, 69, 86, 67, 0, - 0, 0, -322, 0, 0, 95, 0, 69, 68, 0, - 68, 0, 0, 0, 0, 0, 0, 99, 0, 0, - 0, 69, 0, 0, 99, 0, 0, -322, -322, 320, - 0, 0, 0, 0, 0, -320, 0, 292, 104, 101, - 0, 86, 0, 0, 0, 0, 101, -322, -322, -322, - -322, 68, -322, -322, 0, 68, 0, 0, 0, 0, - 68, 68, 0, 0, 227, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 69, 0, 69, - 0, 0, 0, 0, 0, 227, 0, 0, 0, 0, - 96, 0, 68, 0, 256, 0, 68, 0, 0, 104, - 0, 0, 96, 68, 0, 0, 0, 0, 0, 68, - 68, 86, 0, 0, 0, 0, 223, 0, 0, 0, - 69, 0, 0, -322, 69, 292, 0, 0, 0, 69, - 69, 0, 0, 0, 0, 0, 86, 0, 94, 0, - 0, -324, 0, 106, 0, 0, 0, 68, -317, 0, - 0, 68, 0, 0, 225, 86, 0, 86, 0, 68, - 95, 69, 0, 0, 0, 69, -324, -324, 86, 229, - 104, 0, 69, -317, -317, 406, 570, 104, 69, 69, - 0, 0, 86, 0, 0, 0, -324, -324, -324, -324, - 229, -324, -324, -317, -317, -317, -317, 0, -317, -317, - -331, 0, 0, 0, 106, 0, 0, 0, 94, 0, - 0, 107, 0, 96, 0, 0, 69, 0, 0, 0, - 69, 0, 0, 0, 0, -331, -331, 413, 69, 0, - 95, 0, 0, 94, 0, 0, 0, 0, 86, 0, - 86, 0, 0, 0, 0, -331, -331, -331, -331, 0, - -331, -331, 94, 0, 94, 95, 0, 96, 0, 0, - 0, 0, -324, 0, 292, 94, 0, 0, 0, -317, - 0, 292, 107, 0, 95, 106, 95, 0, 0, 94, - 0, 86, 106, 0, 0, 86, 0, 95, 0, 0, - 86, 86, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 95, 0, 0, 0, 0, 0, 227, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -328, - 99, -331, 86, 292, 0, 0, 86, 96, 0, 0, - 0, 108, 99, 86, 0, 94, 0, 94, 0, 86, - 86, 0, 101, 107, -328, -328, 372, 0, 0, 0, - 107, 0, 96, 0, 101, 0, 0, 95, 0, 95, - 0, 0, 0, 0, -328, -328, -328, -328, 0, -328, - -328, 96, 0, 96, 0, 0, 0, 86, 94, 0, - 0, 86, 94, 0, 96, 0, 0, 94, 94, 86, - 0, 0, 108, 0, 0, 0, 0, 0, 96, 0, - 95, 0, 0, 0, 95, 0, 0, 110, 0, 95, - 95, 0, 229, 0, 0, 0, 0, 0, 0, 94, - 0, 0, 0, 94, 0, 0, 0, 0, 0, 0, - 94, 0, 0, 0, 0, 0, 94, 94, 0, 0, - -328, 95, 0, 225, 489, 95, 0, 0, 491, 492, - 493, 0, 95, 0, 96, 0, 96, 0, 95, 95, - 0, 0, 0, 108, 0, 101, 494, 495, 110, 0, - 108, 0, 0, 104, 94, 496, 0, 0, 94, 0, - 0, 0, 0, 0, 0, 104, 94, 99, 0, 0, - 0, 0, 0, 0, 0, 0, 95, 96, 0, 0, - 95, 96, 0, 0, 0, 0, 96, 96, 95, 101, - 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 497, 498, 499, - 500, 501, 502, 503, 504, 505, 0, 0, 96, 110, - 0, 0, 96, 0, 0, 0, 110, 0, 0, 96, - 0, 0, 0, 0, 0, 96, 96, 99, 0, 0, + 0, 121, 0, 121, 0, 0, 0, 0, 0, 90, + 0, 0, 0, 90, 92, 84, 82, 0, 92, 0, + 73, 90, 0, 0, 0, 92, 0, 0, 0, 0, + 76, 92, 92, 0, 0, 0, 84, 0, 0, 0, + 71, 0, 71, 0, 121, 73, 0, 0, 121, 0, + 84, 0, 78, 121, 121, 0, 0, 0, 0, 0, + 0, 0, 120, 73, 0, 73, 0, 80, 0, 92, + 0, 0, 0, 92, 0, 0, 73, 0, 0, 0, + 0, 92, 350, 71, 0, 121, 0, 71, 120, 121, + 73, 0, 71, 71, 0, 78, 121, 0, 0, 0, + 76, 0, 121, 121, 0, 0, 0, 0, 0, 120, + 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 84, 120, 71, 76, 0, 0, 71, 84, + 0, 123, 0, 0, 0, 71, 0, 0, 0, 0, + 121, 71, 71, 76, 121, 76, 73, 0, 73, 0, + 0, 0, 121, 0, 0, 356, 76, 233, 0, 67, + 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, + 76, 0, 0, 0, 0, 82, 0, 0, 233, 71, + 80, 0, 0, 71, 0, 67, 0, 82, 0, 73, + 78, 71, 123, 73, 0, 120, 0, 0, 73, 73, + 0, 0, 120, 0, 0, 80, 67, 0, 78, 0, + 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 67, 78, 0, 80, 359, 80, 76, 0, 76, 0, + 73, 0, 0, 0, 73, 78, 80, 0, 0, 0, + 0, 73, 0, 0, 0, 0, 0, 73, 73, 0, + 80, 0, 0, 0, 0, 0, 0, 0, 84, 0, + 0, 0, 0, 0, 123, 0, 0, 0, 0, 76, + 0, 123, 0, 76, 0, 0, 0, 0, 76, 76, + 0, 0, 0, 0, 0, 73, 0, 0, 0, 73, + 0, 78, 67, 78, 0, 0, 0, 73, 82, 67, + 0, 0, 0, 0, 0, 0, 80, 0, 80, 0, + 76, 0, 0, 0, 76, 0, 0, 0, 0, 68, + 0, 76, 0, 0, 0, 0, 0, 76, 76, 0, + 0, 120, 0, 0, 78, 0, 0, -310, 78, 0, + 0, 82, 0, 78, 78, 68, 0, 0, 0, 80, + 0, 0, 0, 80, 0, 0, 0, 0, 80, 80, + 0, 0, -310, -310, 300, 76, 68, 0, 0, 76, + 0, 0, 0, 0, 0, 78, 69, 76, 0, 78, + 68, 0, -310, -310, -310, -310, 78, -310, -310, 0, + 80, 0, 78, 78, 80, 0, 0, 0, 0, 0, + 233, 80, 69, 0, 0, 0, 0, 80, 80, 0, + 0, 82, 0, 0, 0, 0, 0, 84, 0, 0, + 0, 0, 0, 69, 0, 0, 0, 0, 67, 84, + 78, 0, 0, 0, 78, 0, 82, 69, 0, 0, + -27, -27, 78, 0, 0, 80, -131, 0, 0, 80, + 0, 0, 68, 0, 82, 0, 82, 80, -310, 68, + 291, 0, 0, 0, 0, 0, 0, 82, 0, 0, + 0, -131, -131, -131, 0, 0, 0, 0, 0, -170, + 0, 82, 0, 0, 0, 0, 0, 0, 0, 0, + 120, -131, -131, -131, -131, 0, -131, -131, 0, 0, + 0, 0, 120, 0, -170, -170, 324, 0, 0, 69, + 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, + 0, 0, 0, 0, -170, -170, -170, -170, 0, -170, + -170, 86, 0, 0, 0, 0, 0, 82, 0, 82, + 84, 0, 0, 0, 0, 0, 0, -131, 0, 0, + 95, 0, 0, 0, 0, 0, 0, 86, 0, 123, + 0, 0, 0, -131, 0, 0, 0, -131, 0, -131, + 0, 123, 0, 0, 0, 0, 224, 0, 86, 0, + 82, 0, 0, 84, 82, 0, 0, 67, 68, 82, + 82, 0, 86, 0, 0, 0, -170, 256, 0, 67, + -170, 0, -170, 0, 0, 0, 0, 0, 0, 0, + 0, 95, 2, 120, 0, 0, 0, 0, 155, 156, + 0, 82, 0, 0, 0, 82, 0, 0, 0, 157, + 158, 159, 82, 160, 0, 0, 0, 162, 82, 82, + 0, 0, 0, 0, 0, 69, 0, 96, 0, 163, + 0, 164, 0, 84, 27, 28, 120, 0, 0, 30, + 166, 0, 0, 0, 86, 0, 0, 0, 167, 0, + 0, 86, 0, 225, 0, 0, 82, 97, 84, 0, + 82, 0, 233, 95, 0, 0, 0, 0, 82, 0, + 95, 41, 0, 0, 225, 0, 84, 0, 84, 0, + 0, 0, 168, 226, 0, 0, 48, 0, 96, 84, + 67, 0, 0, 0, 0, 169, -171, 0, 0, 0, + 0, 0, 0, 84, 97, 123, 120, 0, 0, 0, + 0, 0, 0, 0, 0, 247, 0, 0, 97, 0, + 0, -171, -171, 327, 0, 0, 0, 68, 0, 0, + 0, 120, 0, 67, 0, 0, 0, 0, 0, 68, + 0, -171, -171, -171, -171, 0, -171, -171, 0, 120, + 0, 120, 0, 0, 0, 0, 0, 0, 0, 84, + 96, 84, 120, 0, 0, 0, 0, 96, 0, 0, + 0, 0, 0, 0, 0, 123, 120, 0, 0, 0, + 86, 0, 0, 0, 69, 0, 0, 0, 0, 0, + 97, 0, 0, 0, 0, 0, 69, 97, 0, 560, + 123, 0, 84, 67, 0, 0, 84, 0, 0, 0, + 0, 84, 84, -171, 0, 0, 0, -171, 123, -171, + 123, 0, 0, 0, 0, 0, 0, 0, 67, 0, + 0, 123, 120, 0, 120, 0, 0, 0, 0, 0, + 0, 0, 0, 84, 100, 123, 67, 84, 67, 0, + 68, 0, 0, 0, 84, 0, 0, 0, 0, 67, + 84, 84, 0, 0, 0, 0, 0, 0, 0, 0, + 227, 0, 0, 67, 102, 120, 0, 0, 0, 120, + 0, 0, 0, 0, 120, 120, 0, 0, 0, 0, + 0, 227, 0, 68, 0, 0, 225, 0, 84, 0, + 228, 123, 84, 123, 0, 100, 0, 69, 0, 0, + 84, 0, 0, 0, 0, 0, 120, 0, 0, 0, + 120, 102, 0, 0, 0, 0, 561, 120, 0, 67, + 0, 67, 0, 120, 120, 102, 0, 0, 0, 86, + 0, 0, 0, 0, 123, 0, 0, 0, 123, 0, + 69, 86, 0, 123, 123, 0, 0, 0, 95, 0, + 0, 0, 0, 68, 0, 0, 0, 0, 0, 0, + 95, 120, 67, 0, 0, 120, 67, 100, 0, 0, + 0, 67, 67, 120, 100, 123, 0, 0, 68, 123, + 105, 0, 0, 0, 0, 0, 123, 0, 0, 0, + 0, 0, 123, 123, 0, 108, 68, 102, 68, 0, + 0, 0, 0, 67, 102, 0, 229, 67, 0, 68, + 69, 0, 0, 0, 67, 0, 0, 0, 0, 0, + 67, 67, 0, 68, 0, 0, 0, 229, 0, 0, + 123, 0, -108, -108, 123, 69, 0, 0, -131, 0, + 0, 105, 123, 0, 0, 96, 0, 0, 0, 0, + 0, 0, 86, 69, 0, 69, 108, 96, 67, 0, + 0, 0, 67, -131, -131, -131, 69, 0, 0, 0, + 67, 256, 0, 0, 0, 97, 0, 0, 0, 68, + 69, 68, 0, -131, -131, -131, -131, 97, -131, -131, + 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, + 0, 0, 0, 227, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 105, 95, 0, 0, 0, 0, 0, + 105, 0, 68, 0, 0, 0, 68, 0, 108, 0, + 0, 68, 68, 563, 0, 108, 69, 0, 69, -131, + 0, 0, 0, 0, 0, 0, -129, 0, 0, 0, + 0, 0, 0, 0, 0, -131, 0, 0, 0, -131, + 0, -131, 0, 68, 0, 86, 0, 68, 225, 0, + 0, -129, -129, -129, 68, 0, 0, 0, 0, 69, + 68, 68, 0, 69, 95, 109, 0, 0, 69, 69, + 86, -129, -129, -129, -129, 0, -129, -129, 97, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 86, 95, + 86, 96, 0, 0, 0, 484, 485, 486, 68, 0, + 69, 86, 68, 0, 69, 107, 0, 95, 0, 95, + 68, 69, 0, 487, 488, 86, 0, 69, 69, 0, + 95, 97, 489, 0, 0, 0, 109, -129, 0, 229, + 0, 231, 0, 0, 95, 0, 0, 0, 0, 0, + 0, 0, 100, -129, 0, 0, 0, -129, 0, -129, + 0, 0, 231, 0, 100, 69, 0, 0, 0, 69, + 0, 96, -318, 0, 0, 0, 107, 69, 0, 0, + 0, 86, 102, 86, 490, 491, 492, 493, 494, 495, + 496, 497, 498, 111, 102, 0, 96, -318, -318, 316, + 95, 97, 95, 0, 0, 0, 0, 0, 109, 0, + 0, 0, 0, 0, 96, 109, 96, -318, -318, -318, + -318, 0, -318, -318, 86, 0, 97, 96, 86, 0, + 0, 0, 0, 86, 86, 0, 0, 0, 0, 0, + 0, 96, 0, 95, 97, 0, 97, 95, 107, 0, + 0, 0, 95, 95, 111, 107, 0, 97, 0, 0, + 0, 118, 0, 0, 0, 86, 0, 0, 0, 86, + 0, 97, 0, 0, 0, 227, 86, 0, 0, 0, + 0, 0, 86, 86, 95, 0, 0, 0, 95, 0, + 0, 0, 0, -318, 0, 95, 0, 96, 105, 96, + 0, 95, 95, 0, 0, 102, 0, 0, 0, -133, + 105, 0, 0, 108, 0, 0, -320, 0, 100, 0, + 86, 0, 118, 0, 86, 108, 111, 97, 0, 97, + 0, 0, 86, 111, -133, -133, -133, 0, 0, 95, + 96, -320, -320, 95, 96, 0, 0, 0, 102, 96, + 96, 95, 0, 0, -133, -133, -133, -133, 0, -133, + -133, -320, -320, -320, -320, 0, -320, -320, 0, 0, + 97, 0, 0, 0, 97, 0, 0, 0, 0, 97, + 97, 96, 0, 0, 231, 96, 0, 0, 100, 0, + 0, 0, 96, 0, 118, 0, 0, 0, 96, 96, + 0, 118, 0, 0, 0, 0, 0, 0, 0, 0, + -133, 97, 0, 100, 0, 97, 0, 0, 102, 0, + 0, 229, 97, 0, 0, 0, -133, 0, 97, 97, + -133, 100, -133, 100, 0, 0, 96, -320, 0, 291, + 96, 0, 0, 102, 100, 0, 0, 0, 96, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 100, -130, + 0, 102, 0, 102, 105, 0, 97, 0, 0, 0, + 97, 0, -134, 0, 102, 0, 0, 0, 97, 108, + 0, 0, 0, 0, -130, -130, -130, 0, 102, 0, + 0, 0, 0, 0, 0, 0, 0, -134, -134, -134, + 0, 0, 0, 109, -130, -130, -130, -130, 0, -130, + -130, 0, 0, 0, 100, 109, 100, -134, -134, -134, + -134, 0, -134, -134, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 105, 0, 0, 0, 0, 0, + 0, 0, 0, 107, 102, 0, 102, 0, 0, 108, + 0, 0, 0, 0, 0, 107, 0, 100, 0, 105, + -130, 100, 0, 0, 0, 0, 100, 100, 0, 0, + 0, 0, 0, -134, 108, 0, -130, 105, 0, 105, + -130, 0, -130, 0, 0, 0, 0, 102, 0, -134, + 105, 102, 108, -134, 108, -134, 102, 102, 100, 0, + 0, 0, 100, 0, 105, 108, 0, 0, 0, 100, + 0, 0, 0, 0, 0, 100, 100, 0, 0, 108, + 0, 111, 0, 0, 0, 0, 0, 0, 102, 0, + 0, 0, 102, 111, 0, 0, 0, 0, 0, 102, + 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, + 0, 0, 0, 100, 0, 0, 0, 100, 0, 0, + 105, 0, 105, 0, 0, 100, 231, 0, 0, 109, + 0, 0, 0, 0, 0, 108, 0, 108, 0, 0, + 0, 0, 0, 102, 0, -321, 0, 102, 0, 118, + 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, + 0, 118, 0, 105, 0, 0, 0, 105, 0, 107, + -321, -321, 105, 105, 0, 0, 0, 0, 108, 0, + 0, 0, 108, 0, 0, 0, 0, 108, 108, 0, + -321, -321, -321, -321, 0, -321, -321, 0, 0, 109, + 0, 0, 0, 0, 105, 0, 0, 0, 105, 0, + 0, 0, 0, 0, 0, 105, 0, 0, 0, 108, + 0, 105, 105, 108, 109, 0, 145, 146, 0, 0, + 108, 0, 0, 0, 0, 0, 108, 108, 0, 107, + 0, 0, 109, 0, 109, 0, 0, 111, 0, 0, + 0, 0, 0, 0, 0, 109, 0, 0, 0, 105, + 0, 0, 0, 105, 107, 0, -321, 0, 291, 109, + 0, 105, 0, -132, 108, 0, 0, 0, 108, 0, + 0, 0, 107, 0, 107, 0, 108, 286, 0, 0, + 0, 0, 0, 0, 0, 107, 0, 0, -132, -132, + -132, 0, 0, 0, 0, 0, 0, 0, -313, 107, + 0, 0, 0, 0, 0, 118, 0, 111, -132, -132, + -132, -132, 0, -132, -132, 109, 0, 109, 0, 0, + 0, 0, 0, -313, -313, 303, 0, 0, 0, 0, + 0, 0, 111, 0, 0, 398, 0, 0, 0, 0, + 0, 0, 0, -313, -313, -313, -313, 0, -313, -313, + 111, 0, 111, 0, 0, 107, 0, 107, 109, 0, + 0, 0, 109, 111, -132, 448, 0, 109, 109, 0, + 0, 0, 0, 0, 0, 118, 0, 111, 0, 0, + -132, 0, 0, 0, -132, 0, -132, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 107, 109, + 118, 0, 107, 109, 0, 0, 0, 107, 107, 0, + 109, 0, 0, 0, 0, 0, 109, 109, 118, -313, + 118, 291, -315, 0, 0, 0, 504, 0, 506, 0, + 0, 118, 0, 111, 511, 111, 0, 0, 0, 107, + 0, 0, 0, 107, 0, 118, 0, -315, -315, 307, + 107, 0, 0, 0, 109, 0, 107, 107, 109, 0, + 0, 0, 530, 0, 0, 534, 109, -315, -315, -315, + -315, 0, -315, -315, 0, 0, 111, 553, 0, 380, + 111, 0, 0, 0, 0, 111, 111, 0, 0, 0, + 0, 0, 0, 0, 107, 0, 0, 569, 107, 0, + 0, 118, 0, 118, 381, 382, 107, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 111, 0, 0, + 0, 111, 0, 0, 383, 384, 385, 386, 111, 387, + 388, 0, 0, 0, 111, 111, 0, 0, 0, 0, + 0, 0, 0, -315, 118, 291, 0, 0, 118, 209, + 211, 213, 0, 118, 118, 0, 0, 0, 0, 0, + 0, 221, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 111, 0, 0, 245, 111, 246, 248, 0, + 0, 0, 255, 0, 111, 118, 0, 0, 0, 118, + 0, 0, 0, 0, 277, 0, 118, 0, 0, 0, + 390, 0, 118, 118, 0, 296, 0, 296, 0, 296, + 296, 0, 296, 0, 296, 0, 296, 0, 296, 0, + 296, 0, 296, 0, 296, 0, 296, 595, 335, 296, + 0, 0, 0, 296, 0, -317, 296, 0, 0, 296, + 118, 296, 0, 0, 118, 0, -319, 0, 0, 0, + 0, 0, 118, 0, 0, 611, 0, 296, 0, 296, + -317, -317, 313, 616, 0, 0, 622, 0, 623, 0, + 0, -319, -319, 318, -324, 0, 0, 0, 0, 0, + -317, -317, -317, -317, 0, -317, -317, 449, 449, 0, + 0, -319, -319, -319, -319, 0, -319, -319, 0, -324, + -324, 365, 0, 0, 0, 0, 0, 457, 0, 0, + 0, 0, 0, 0, 0, 0, 645, 0, 646, -324, + -324, -324, -324, 0, -324, -324, 0, 0, 0, 655, + 0, 0, 0, 0, 0, 0, 661, 0, 0, 664, + 665, 0, 667, 0, 0, 673, 0, 0, 0, 0, + 449, 0, 677, 0, 512, 0, -317, 0, 291, 0, + 0, 0, 0, 0, 0, 0, 0, -319, 688, 291, + 518, 512, 449, 0, 0, 0, 0, 0, 0, 0, + 0, 529, 0, 0, 0, 0, 0, 538, 542, 0, + 0, 2, 0, 4, 5, -324, 6, 155, 156, 9, + 555, 0, 0, 0, 558, 11, 12, 13, 157, 158, + 159, 0, 160, 0, 0, 0, 162, 0, 0, 0, + 0, 716, 570, 571, 0, 0, 0, 0, 163, 0, + 164, 0, 0, 27, 28, 0, 0, 165, 30, 166, + 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, + 0, 0, 195, 0, 0, 0, 36, 0, 38, 39, + 0, 0, 216, 217, 0, 0, 0, 0, 738, 0, + 41, 0, 0, 0, 0, 0, 743, 0, 744, 0, + 0, 168, 45, 0, 0, 48, 756, 0, 0, 0, + 51, 52, 261, 0, 169, -314, 0, 0, 0, 195, + 274, 0, -323, 0, 0, 0, 771, 54, 0, 277, + 0, 773, 57, 775, 58, 0, 59, 0, 0, 0, + -314, -314, 399, 0, 0, 277, 783, -323, -323, 786, + 788, 789, 0, 0, 0, 792, 0, 0, 795, 0, + -314, -314, -314, -314, 0, -314, -314, -323, -323, -323, + -323, 0, -323, -323, 0, 0, 0, 0, 0, 0, + 0, 0, 807, 0, 0, 0, 0, 459, 460, 461, + 462, 463, 464, 465, 466, 467, 0, 0, 195, 0, + 468, 469, 470, 471, 472, 473, 474, 475, 0, 447, + 0, 0, 0, 0, 0, 0, 453, 625, 0, 0, + 834, 0, 0, 454, 0, -327, 626, 839, 0, 0, + 842, 0, 455, 456, 0, 0, -314, 0, 291, 0, + 0, 0, 0, -323, 0, 291, 0, 0, 0, 0, + -327, -327, 406, 864, 0, 0, 0, 0, 647, 0, + 648, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -327, -327, -327, -327, 0, -327, -327, 0, 0, 0, + 885, 0, 0, 669, 0, 0, 0, 0, 891, 892, + 0, 0, 0, 0, 898, 0, 542, 0, 0, 0, + 0, 524, 0, 0, 904, 905, 255, 0, 908, 449, + 0, 910, 911, 0, 0, 546, 0, 0, -325, 0, + 0, 0, 552, 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 117, 0, 0, 0, 0, 106, 101, - 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, - 106, 0, 0, 96, 0, 0, 227, 96, 0, 0, - 0, 99, 0, 99, 101, 96, 0, 0, 0, -327, - 0, 0, 0, 0, 99, 0, 0, 0, 0, 0, - 0, 0, 0, 101, 0, 101, 0, 0, 99, 0, - 0, 0, 0, 0, -327, -327, 101, 0, 0, 0, - 104, 0, 0, 0, 117, 0, 107, 0, 0, 0, - 101, 117, 0, 0, -327, -327, -327, -327, 107, -327, - -327, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 466, 467, 468, 469, 470, 471, - 472, 473, 474, 0, 99, 0, 99, 475, 476, 477, - 478, 479, 480, 481, 482, 0, 0, 0, 0, 0, - 0, 229, 0, 0, 0, 0, 101, 0, 101, 0, - 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, - -327, 99, 292, 0, 0, 104, 99, 99, 0, 0, - 0, 0, 0, 0, 0, 106, 0, 0, 0, 101, - 0, 0, 0, 101, 104, 0, 104, 0, 101, 101, - 0, 0, 0, 0, 0, 0, 108, 104, 99, 0, - 0, 0, 99, 0, 0, 0, 0, 0, 108, 99, - 0, 104, 0, 0, 0, 99, 99, 0, 0, 0, - 101, 0, 0, 0, 101, 0, 0, 0, 0, 0, - 0, 101, 0, 0, 0, 0, 0, 101, 101, 0, - 0, 0, 0, 107, 0, 106, 0, 0, 0, 0, - 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, - 0, 0, 0, 0, 0, 99, 0, 104, 0, 104, - 106, 0, 110, 0, 0, 101, 0, 0, 0, 101, - 0, 0, 0, 0, 110, 0, 0, 101, 0, 106, - 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, - 104, 0, 0, 107, 104, 0, 106, 0, 0, 104, - 104, 0, 0, 0, 0, 0, 0, 466, 467, 468, - 469, 470, 471, 472, 473, 474, 0, 0, 107, 0, - 475, 476, 477, 478, 479, 480, 481, 482, 0, 0, - 0, 104, 0, 0, 0, 104, 0, 107, 0, 107, - 489, 490, 104, 108, 491, 492, 493, 0, 104, 104, - 107, 0, 106, 0, 106, 0, 0, 117, 0, 0, - 0, 0, 494, 495, 107, 625, 0, 0, 0, 117, - 0, 496, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, - 104, 0, 0, 0, 0, 106, 0, 0, 104, 106, - 0, 0, 0, 0, 106, 106, 0, 0, 0, 0, - 0, 0, 0, 108, 0, 0, 0, 0, 0, 110, - 107, 0, 107, 497, 498, 499, 500, 501, 502, 503, - 504, 505, 0, 0, 0, 0, 106, 0, 108, 0, - 106, 0, 0, 0, 0, 0, 0, 106, 0, 0, - 0, 0, 0, 106, 106, 0, 0, 108, 0, 108, - 0, 0, 0, 107, 0, 0, 0, 107, 0, 0, - 108, 0, 107, 107, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 108, 0, 0, 0, 0, 110, - 0, 106, 0, 0, 0, 106, 0, 0, 0, 0, - 0, 0, 0, 106, 107, 0, 0, 0, 107, 0, - 0, 0, 0, 0, 110, 107, 0, 0, 0, 0, - 0, 107, 107, 0, 117, 0, 0, 0, 0, 0, - 0, 0, 0, 110, 0, 110, 0, 0, 0, 0, - 108, 0, 108, 0, 0, 0, 110, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, - 110, 0, 0, 107, 0, 0, 0, 0, 0, 0, - 0, 107, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 108, 0, 0, 0, 108, 0, 0, - 0, 0, 108, 108, 117, 466, 467, 468, 469, 470, - 471, 472, 473, 474, 0, 0, 0, 0, 475, 476, - 477, 478, 479, 480, 481, 482, 110, 0, 110, 117, - 0, 0, 0, 0, 108, 0, 0, 0, 108, 0, - 0, 0, 0, 0, 0, 108, 0, 0, 117, 0, - 117, 108, 108, 0, 489, 490, 0, 865, 491, 492, - 493, 117, 0, 0, 0, 0, 0, 0, 0, 110, - 0, 0, 0, 110, 0, 117, 494, 495, 110, 110, - 0, 0, 0, 0, 0, 496, 0, 0, 0, 108, - 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, - 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, - 110, 0, 0, 0, 110, 0, 0, 0, 0, 0, - 0, 110, 0, 0, 0, 0, 0, 110, 110, 0, - 0, 117, 0, 117, 207, 209, 211, 497, 498, 499, - 500, 501, 502, 503, 504, 505, 219, 0, 0, 0, - 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, - 243, 0, 244, 246, 0, 110, 0, 253, 0, 110, - 0, 0, 0, 0, 117, 0, 0, 110, 117, 277, - 0, 0, 0, 117, 117, 0, 0, 0, 0, 0, - 297, 0, 297, 0, 297, 297, 0, 297, 0, 297, - 0, 297, 0, 297, 0, 297, 0, 297, 0, 297, - 0, 297, 340, 297, 0, 117, 0, 297, 0, 117, - 297, 0, 0, 297, 0, 297, 117, 0, 0, 0, - 0, 0, 117, 117, 0, 0, 0, 0, 0, 0, - 0, 297, 0, 297, 0, 0, 0, 0, 466, 467, - 468, 469, 470, 471, 472, 473, 474, 0, 144, 145, - 0, 475, 476, 477, 478, 479, 480, 481, 482, 0, - 117, 456, 456, 0, 117, 0, 0, 0, 2, 0, - 4, 5, 117, 6, 154, 155, 9, 0, 0, 0, - 0, 464, 11, 12, 13, 156, 157, 158, 0, 159, - 902, 0, 160, 161, 0, 0, 0, 20, 21, 0, - 0, 0, 0, 0, 0, 162, 0, 163, 0, 287, - 27, 28, 0, 0, 164, 30, 165, 0, 0, 0, - 0, 0, 0, 456, 166, 0, 0, 519, 0, 0, - 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, - 0, 0, 0, 525, 519, 456, 0, 41, 0, 0, - 0, 0, 0, 0, 536, 0, 0, 0, 167, 45, - 545, 549, 48, 0, 0, 0, 405, 51, 52, 267, - 268, 168, 0, 0, 0, 562, 0, 169, 170, 565, - 0, 0, 0, 0, 54, 269, 0, 0, 0, 57, - 0, 58, 0, 59, 0, 0, 455, 0, 577, 578, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 293, 295, 296, 0, 303, 0, - 306, 0, 0, 310, 0, 313, 0, 316, 0, 0, - 0, 321, 0, 323, 0, 0, 0, 335, 0, 0, - 0, 369, 371, 0, 0, 0, 376, 0, 380, 0, - 0, 385, 0, 0, 0, 0, 511, 0, 513, 0, - 0, 0, 0, 0, 518, 0, 407, 410, 0, 415, - 0, 489, 490, 0, 0, 491, 492, 493, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 277, 537, 494, 495, 541, 0, 0, 0, 0, - 0, 0, 496, 0, 0, 0, 0, 277, 0, 560, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, - 295, 296, 303, 306, 310, 313, 316, 0, 321, 323, - 576, 335, 369, 371, 0, 376, 0, 380, 385, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 407, 573, 410, 415, 497, 498, 499, 500, 501, 502, - 503, 504, 505, 0, 0, 0, 0, 0, 335, 369, - 371, 0, 376, 380, 385, 0, 0, 410, 415, 633, - 0, 0, 0, 0, 0, 0, 0, 0, 634, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 335, 369, 410, 0, 0, 0, 0, 2, - 0, 4, 5, 0, 6, 154, 155, 9, 0, 0, - 655, 0, 656, 11, 12, 13, 156, 157, 158, 0, - 159, 0, 0, 0, 161, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 677, 162, 0, 163, 0, - 0, 27, 28, 0, 0, 164, 30, 165, 549, 0, - 0, 0, 0, 0, 0, 166, 603, 0, 253, 0, - 0, 456, 0, 0, 36, 0, 38, 39, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, - 0, 0, 0, 0, 619, 0, 0, 0, 316, 167, - 45, 0, 624, 48, 193, 630, 0, 631, 51, 52, - 0, 0, 168, 0, 214, 215, 0, 0, 0, 722, - 723, 0, 0, 0, 0, 54, 0, 0, 0, 0, - 57, 0, 58, 0, 59, 0, 0, 0, 0, 456, - 0, 0, 0, 0, 261, 0, 0, 0, 0, 0, - 0, 193, 274, 0, 0, 653, 0, 654, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 663, 456, - 0, 0, 748, 0, 0, 669, 750, 751, 672, 673, - 0, 675, 0, 0, 681, 0, 758, 0, 677, 0, - 0, 685, 766, 758, 0, 0, 0, 0, 774, 0, - 549, 776, 0, 0, 0, 0, 0, 696, 0, 2, - 0, 0, 0, 0, 0, 154, 155, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 156, 157, 158, 193, - 159, 0, 0, 0, 161, 0, 0, 0, 0, 0, - 454, 0, 0, 0, 0, 0, 162, 460, 163, 0, - 0, 27, 28, 0, 461, 0, 30, 165, 0, 0, - 0, 725, 0, 462, 463, 166, 818, 819, 0, 0, - 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, - 0, 0, 0, 840, 0, 840, 0, 0, 0, 167, - 0, 410, 0, 48, 840, 0, 840, 0, 747, 0, - 0, 0, 168, 0, 369, 0, 752, 380, 753, 0, - 0, 0, 0, 0, 0, 54, 765, 863, 0, 0, - 263, 531, 869, 0, 0, 766, 0, 0, 869, 0, - 0, 0, 0, 0, 0, 553, 780, 0, 0, 0, - 0, 782, 0, 784, 559, 0, 0, 193, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 792, 0, 898, - 795, 797, 798, 0, 0, 0, 801, 0, 908, 804, - 0, 911, 0, 0, 0, 0, 583, 0, 0, 916, - 0, 466, 467, 468, 469, 470, 471, 472, 473, 474, - 0, 0, 0, 816, 475, 476, 477, 478, 479, 480, - 481, 482, 0, 0, 0, 0, 0, 2, 0, 0, - 935, 0, 0, 154, 155, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 156, 157, 158, 0, 159, 0, - 0, 843, 161, 933, 0, 0, 0, 0, 848, 0, - 0, 851, 0, 0, 162, 0, 163, 0, 0, 27, - 28, 0, 0, 0, 30, 165, 0, 962, 963, 0, - 0, 489, 490, 166, 873, 491, 492, 493, 0, 0, - 0, 591, 0, 0, 592, 593, 594, 595, 596, 597, - 598, 0, 0, 494, 495, 0, 41, 0, 600, 0, - 0, 894, 496, 0, 0, 0, 0, 167, 0, 900, - 901, 48, 0, 0, 0, 907, 0, 0, 0, 0, - 168, 0, 0, 0, 0, 913, 914, 0, 0, 917, - 0, 0, 919, 920, 0, 55, 56, 0, 0, 0, - 0, 0, 489, 490, 0, 0, 491, 492, 493, 0, - 0, 0, 0, 0, 497, 498, 499, 500, 501, 502, - 503, 504, 505, 0, 494, 495, 0, 55, 56, 0, - 0, 0, 940, 496, 0, 942, 0, 0, 0, 0, - 0, 0, 0, 635, 636, 637, 638, 639, 640, 641, - 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, - 652, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 664, 0, 0, - 0, 0, 781, 671, 0, 497, 498, 499, 500, 501, - 502, 503, 504, 505, 0, 0, 0, 0, 0, 0, - 0, 0, 553, 0, 0, 0, 0, 0, 0, 0, - 0, 692, 0, 2, 0, 4, 5, 0, 6, 154, - 155, 9, 0, 0, 0, 700, 0, 11, 12, 13, - 156, 157, 158, 0, 159, 0, 0, 160, 161, 583, - 0, 0, 20, 21, 0, 0, 0, 0, 0, 0, - 162, 0, 163, 0, 0, 27, 28, 0, 193, 164, - 30, 165, 0, 0, 0, 0, 193, 0, 0, 166, - 0, 0, 0, 0, 730, 0, 0, 0, 36, 735, - 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 167, 45, 0, 0, 48, 0, 0, - 0, 0, 51, 52, 0, 0, 168, 0, 0, 0, - 0, 0, 169, 170, 0, 0, 0, 0, 0, 54, - 269, 0, 0, 548, 57, 0, 58, 0, 59, 0, - 2, 0, 0, 0, 553, 0, 154, 155, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 156, 157, 158, - 0, 159, 0, 0, 583, 161, 0, 0, 788, 0, - 0, 0, 0, 0, 193, 0, 0, 162, 0, 163, - 193, 0, 27, 28, 0, 0, 805, 30, 165, 0, - 0, 0, 0, 807, 0, 0, 166, 0, 811, 0, - 0, 0, -3, 1, 0, -26, -26, 2, 3, 4, - 5, 0, 6, 7, 8, 9, 10, 0, 0, 756, - 0, 11, 12, 13, 14, 15, 16, 17, 18, 0, - 167, 692, 19, 0, 48, 0, 20, 21, 0, 22, - 0, 769, 0, 168, 23, 24, 25, 26, 0, 27, - 28, 0, 0, 29, 30, 31, 0, 757, 0, 0, - 854, 0, 855, 32, 33, 34, 0, 193, 0, 0, - 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, - 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, - 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, - 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 54, 0, 55, 56, 0, 57, 0, - 58, 0, 59, -2, 282, 0, -26, -26, 2, 3, - 4, 5, 0, 6, 7, 8, 9, 10, 0, 0, - 193, 0, 11, 12, 13, 14, 15, 16, 17, 18, - 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, - 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, - 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, - 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, - 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, - 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, - 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, - 0, 58, 426, 59, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 427, 9, 10, -115, -115, -115, -115, - 11, 12, 13, 14, 15, 16, 428, 429, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, -115, - -115, -115, -115, 23, 24, 25, 26, -115, 27, 28, - 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, - 0, 0, 32, 33, 34, -115, -115, -115, -115, 35, - 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, - 48, 49, -115, 50, -115, 51, 52, 0, 0, 53, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, - -115, 59, 426, 0, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 427, 9, 10, 0, 0, -114, 0, - 11, 12, 13, 14, 15, 16, 428, 429, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, + 0, 0, 0, -325, -325, 401, -327, 0, 291, 0, + 0, 931, 0, 576, 933, 0, 713, 714, 0, 0, + 0, 0, 0, -325, -325, -325, -325, 0, -325, -325, + 0, 0, 0, 0, 0, 0, 449, 0, 0, 0, + 0, 0, 0, 459, 460, 461, 462, 463, 464, 465, + 466, 467, 0, 0, 0, 0, 468, 469, 470, 471, + 472, 473, 474, 475, 0, 0, 449, 0, 0, 739, + 0, 0, 0, 741, 742, 0, 0, 0, 0, 0, + 0, 0, 0, 749, 0, 669, 0, 0, 0, 757, + 749, 0, -606, -606, -606, 765, 0, 542, 767, -325, + 0, 291, 583, 0, 0, 584, 585, 586, 587, 588, + 589, 590, 0, 0, 0, 0, 0, 0, 0, 592, + 459, 460, 461, 462, 463, 464, 465, 466, 467, 0, + 0, 0, 0, 468, 469, 470, 471, 472, 473, 474, + 475, 292, 294, 295, 0, 301, 0, 304, 0, 0, + 308, 0, 311, 0, 314, 0, 0, 0, 319, 0, + 321, 0, 809, 810, 0, 0, 332, 0, 0, 0, + 364, 0, 0, 0, 369, 0, 373, 0, 617, 378, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, + 0, 831, 0, 0, 400, 403, 0, 408, 0, 0, + 831, 0, 831, 0, 627, 628, 629, 630, 631, 632, + 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, + 643, 644, 0, 854, 0, 0, 0, 0, 860, 0, + 0, 757, 0, 0, 860, 0, 0, 0, 656, 0, + 0, 0, 0, 0, 663, 0, 0, 292, 294, 295, + 301, 304, 308, 311, 314, 0, 319, 321, 0, 0, + 332, 0, 364, 546, 369, 889, 373, 378, 0, 0, + 0, 0, 684, 0, 899, 0, 0, 902, 0, 400, + 0, 403, 408, 0, 0, 907, 692, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, + 576, 369, 373, 378, 0, 0, 403, 408, 0, 0, + 0, 0, 0, 0, 0, 0, 926, 0, 195, 0, + 0, 0, 0, 0, 0, 0, 195, 0, 0, 0, + 0, 403, 0, 0, 721, 2, 0, 4, 333, 726, + 334, 155, 156, 9, 0, 0, 0, 0, 0, 11, + 12, 13, 157, 158, 159, 0, 160, 0, 0, 0, + 162, 0, 0, 953, 954, 0, 0, 0, 0, 0, + 0, 0, 163, 0, 164, 0, 0, 27, 28, 0, + 0, 0, 30, 166, 0, 0, 0, 0, 0, 0, + 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 38, 39, 546, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, + 314, 0, 0, 0, 576, 168, 45, 779, 0, 48, + 0, 0, 0, 195, 0, 0, 0, 0, 169, 195, + 0, 0, 0, 0, 0, 796, 0, 0, 0, 0, + 0, 54, 798, 0, 0, 0, 263, 802, 58, 0, + 0, -3, 1, 0, -26, -26, 2, 3, 4, 5, + 0, 6, 7, 8, 9, 10, 0, 0, 0, 0, + 11, 12, 13, 14, 15, 16, 17, 18, 0, 0, + 684, 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, - 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, - 0, 0, 32, 33, 34, -114, -114, -114, -114, 35, + 0, 0, 29, 30, 31, 0, 0, 0, 0, 845, + 0, 846, 32, 33, 34, 0, 195, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, - 426, 59, -108, -108, 2, 3, 4, 5, 0, 6, - 7, 427, 9, 10, 0, 0, -514, 0, 11, 12, - 13, 14, 15, 16, 428, 429, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, -514, -514, -514, + 0, 59, 0, 0, 0, 0, 0, 0, 459, 460, + 461, 462, 463, 464, 465, 466, 467, 0, 0, 195, + 0, 468, 469, 470, 471, 472, 473, 474, 475, -2, + 281, 403, -26, -26, 2, 3, 4, 5, 0, 6, + 7, 8, 9, 10, 0, 0, 0, 373, 11, 12, + 13, 14, 15, 16, 17, 18, 0, 0, 0, 19, + 856, 0, 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, @@ -2144,88 +2035,37 @@ static const yytype_int16 yytable[] = 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 54, 0, 55, 56, 0, 57, 0, 58, 426, 59, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 427, - 9, 10, 0, 0, -569, 0, 11, 12, 13, 14, - 15, 16, 428, 429, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, -569, -569, 0, 0, 23, - 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 54, 0, 55, 56, 0, 57, 0, 58, 419, 59, + -107, -107, 2, 3, 4, 5, 0, 6, 7, 420, + 9, 10, -114, -114, -114, -114, 11, 12, 13, 14, + 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, -114, -114, -114, -114, 23, + 24, 25, 26, -114, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, - 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, - 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, - 0, 0, 44, 45, 46, 47, 48, 49, -569, 50, - 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, - 55, 56, 0, 57, 0, 58, 426, 59, -108, -108, - 2, 3, 4, 5, 0, 6, 7, 427, 9, 10, - 0, 0, -515, 0, 11, 12, 13, 14, 15, 16, - 428, 429, 0, 0, 0, 19, 0, 0, 0, 20, - 21, 0, 22, -515, -515, -515, 0, 23, 24, 25, - 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, - 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, - 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, - 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, - 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, - 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, - 0, 57, 0, 58, 426, 59, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 427, 9, 10, 0, 0, - -570, 0, 11, 12, 13, 14, 15, 16, 428, 429, - 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, -570, -570, 0, 0, 23, 24, 25, 26, 0, - 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, - 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, - 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, - 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, - 46, 47, 48, 49, -570, 50, 0, 51, 52, 0, - 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, - 0, 58, 426, 59, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 427, 9, 10, -114, -114, -114, -114, - 11, 12, 13, 14, 15, 16, 428, 429, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, - 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, - 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, - 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, - 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, - 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, - 426, 59, -108, -108, 2, 3, 4, 5, 0, 6, - 7, 427, 9, 10, 0, 0, -114, 0, 11, 12, - 13, 14, 15, 16, 428, 429, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, -114, -114, -114, - 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, - 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, - 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, - 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, - 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, - 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 54, 0, 55, 56, 0, 57, 0, 58, 426, 59, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 427, - 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, - 15, 16, 428, 429, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, -114, -114, 0, 0, 23, - 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, - 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, - 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, + 34, -114, -114, -114, -114, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, -114, 50, + -114, 51, 52, 0, 0, 53, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, + 55, 56, 0, 57, 0, 58, -114, 59, 419, 0, + -107, -107, 2, 3, 4, 5, 0, 6, 7, 420, + 9, 10, 0, 0, -113, 0, 11, 12, 13, 14, + 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, + 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, + 34, -113, -113, -113, -113, 35, 0, 36, 37, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, - 55, 56, 0, 57, 0, 58, 426, 59, -108, -108, - 2, 3, 4, 5, 0, 6, 7, 427, 9, 10, - 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, - 428, 429, 0, 0, 0, 19, 0, 0, 0, 20, - 21, 0, 22, 0, -114, -114, 0, 23, 24, 25, + 55, 56, 0, 57, 0, 58, 419, 59, -107, -107, + 2, 3, 4, 5, 0, 6, 7, 420, 9, 10, + 0, 0, -510, 0, 11, 12, 13, 14, 15, 16, + 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, + 21, 0, 22, -510, -510, -510, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, @@ -2234,49 +2074,49 @@ static const yytype_int16 yytable[] = 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, - 0, 57, 0, 58, 426, 59, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 427, 9, 10, 0, 0, - -114, 0, 11, 12, 13, 14, 15, 16, 428, 429, + 0, 57, 0, 58, 419, 59, -107, -107, 2, 3, + 4, 5, 0, 6, 7, 420, 9, 10, 0, 0, + -565, 0, 11, 12, 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, + 22, -565, -565, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, - 0, 0, 0, 0, 32, 33, 34, 0, 0, -114, - -114, 35, 0, 36, 37, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, + 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, - 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, + 46, 47, 48, 49, -565, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, - 0, 58, 426, 59, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 427, 9, 10, 0, 0, -114, 0, - 11, 12, 13, 14, 15, 16, 428, 429, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, - 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, + 0, 58, 419, 59, -107, -107, 2, 3, 4, 5, + 0, 6, 7, 420, 9, 10, 0, 0, -511, 0, + 11, 12, 13, 14, 15, 16, 421, 422, 0, 0, + 0, 19, 0, 0, 0, 20, 21, 0, 22, -511, + -511, -511, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, - 48, 49, 0, 50, -114, 51, 52, 0, 0, 53, + 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, - 426, 59, -108, -108, 2, 3, 4, 5, 0, 6, - 7, 427, 9, 10, 0, 0, -114, -114, 11, 12, - 13, 14, 15, 16, 428, 429, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 419, 59, -107, -107, 2, 3, 4, 5, 0, 6, + 7, 420, 9, 10, 0, 0, -566, 0, 11, 12, + 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, -566, -566, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, - 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, + -566, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 54, 0, 55, 56, 0, 57, 0, 58, 426, 59, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 427, - 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, - 15, 16, 428, 429, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, 0, 0, 0, -114, 23, + 54, 0, 55, 56, 0, 57, 0, 58, 419, 59, + -107, -107, 2, 3, 4, 5, 0, 6, 7, 420, + 9, 10, -113, -113, -113, -113, 11, 12, 13, 14, + 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, @@ -2285,12 +2125,12 @@ static const yytype_int16 yytable[] = 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, - 55, 56, 0, 57, 0, 58, 426, 59, -108, -108, - 2, 3, 4, 5, 0, 6, 7, 427, 9, 10, - 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, - 428, 429, 0, 0, 0, 19, 0, 0, 0, 20, - 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, - 26, -114, 27, 28, 0, 0, 29, 30, 31, 0, + 55, 56, 0, 57, 0, 58, 419, 59, -107, -107, + 2, 3, 4, 5, 0, 6, 7, 420, 9, 10, + 0, 0, -113, 0, 11, 12, 13, 14, 15, 16, + 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, + 21, 0, 22, -113, -113, -113, 0, 23, 24, 25, + 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, @@ -2298,24 +2138,24 @@ static const yytype_int16 yytable[] = 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, - 0, 57, 0, 58, 426, 59, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 427, 9, 10, 0, 0, - -114, 0, 11, 12, 13, 14, 15, 16, 428, 429, + 0, 57, 0, 58, 419, 59, -107, -107, 2, 3, + 4, 5, 0, 6, 7, 420, 9, 10, 0, 0, + -113, 0, 11, 12, 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, + 22, -113, -113, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, - -114, 35, 0, 36, 37, 38, 39, 0, 0, 0, + 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, - 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, + 46, 47, 48, 49, -113, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, - 0, 58, 426, 59, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 427, 9, 10, 0, 0, 0, 0, - 11, 12, 13, 14, 15, 16, 428, 429, 0, 0, + 0, 58, 419, 59, -107, -107, 2, 3, 4, 5, + 0, 6, 7, 420, 9, 10, 0, 0, -113, 0, + 11, 12, 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, - 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, + -113, -113, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, @@ -2324,740 +2164,779 @@ static const yytype_int16 yytable[] = 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, - -114, 59, 2, 0, 4, 5, 0, 6, 154, 155, - 9, 0, 0, 0, 0, 0, 11, 12, 13, 156, - 157, 158, 0, 159, 0, 0, 160, 161, 0, 0, - 0, 20, 21, 0, 0, 0, 0, 0, 0, 162, - 0, 163, 0, 0, 27, 28, 0, 0, 164, 30, - 165, 0, 0, 0, 0, 0, 0, 0, 166, 0, + 419, 59, -107, -107, 2, 3, 4, 5, 0, 6, + 7, 420, 9, 10, 0, 0, -113, 0, 11, 12, + 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, + 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, + 32, 33, 34, 0, 0, -113, -113, 35, 0, 36, + 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, + 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, + 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 54, 0, 55, 56, 0, 57, 0, 58, 419, 59, + -107, -107, 2, 3, 4, 5, 0, 6, 7, 420, + 9, 10, 0, 0, -113, 0, 11, 12, 13, 14, + 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, + 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, + 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, + -113, 51, 52, 0, 0, 53, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, + 55, 56, 0, 57, 0, 58, 419, 59, -107, -107, + 2, 3, 4, 5, 0, 6, 7, 420, 9, 10, + 0, 0, -113, -113, 11, 12, 13, 14, 15, 16, + 421, 422, 0, 0, 0, 19, 0, 0, 0, 20, + 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, + 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, + 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, + 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, + 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, + 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, + 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 54, 0, 55, 56, + 0, 57, 0, 58, 419, 59, -107, -107, 2, 3, + 4, 5, 0, 6, 7, 420, 9, 10, 0, 0, + -113, 0, 11, 12, 13, 14, 15, 16, 421, 422, + 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, + 22, 0, 0, 0, -113, 23, 24, 25, 26, 0, + 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, + 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, + 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, + 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, + 46, 47, 48, 49, 0, 50, 0, 51, 52, 0, + 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 54, 0, 55, 56, 0, 57, + 0, 58, 419, 59, -107, -107, 2, 3, 4, 5, + 0, 6, 7, 420, 9, 10, 0, 0, -113, 0, + 11, 12, 13, 14, 15, 16, 421, 422, 0, 0, + 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, + 0, 0, 0, 23, 24, 25, 26, -113, 27, 28, + 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, + 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, + 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, + 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, + 48, 49, 0, 50, 0, 51, 52, 0, 0, 53, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 54, 0, 55, 56, 0, 57, 0, 58, + 419, 59, -107, -107, 2, 3, 4, 5, 0, 6, + 7, 420, 9, 10, 0, 0, -113, 0, 11, 12, + 13, 14, 15, 16, 421, 422, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, + 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, + 32, 33, 34, 0, 0, 0, -113, 35, 0, 36, + 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, + 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, + 0, 50, 0, 51, 52, 0, 0, 53, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 54, 0, 55, 56, 0, 57, 0, 58, 419, 59, + -107, -107, 2, 3, 4, 5, 0, 6, 7, 420, + 9, 10, 0, 0, 0, 0, 11, 12, 13, 14, + 15, 16, 421, 422, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, + 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, + 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, + 0, 51, 52, 0, 0, 53, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, + 55, 56, 0, 57, 0, 58, -113, 59, 2, 0, + 4, 5, 0, 6, 155, 156, 9, 0, 0, 0, + 0, 0, 11, 12, 13, 157, 158, 159, 0, 160, + 0, 0, 161, 162, 0, 0, 0, 20, 21, 0, + 0, 0, 0, 0, 0, 163, 0, 164, 0, 0, + 27, 28, 0, 0, 165, 30, 166, 0, 0, 0, + 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, + 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 168, 45, + 0, 0, 48, 0, 0, 0, 0, 51, 52, 267, + 268, 169, 0, 0, 0, 0, 0, 170, 171, 0, + 0, 0, 0, 0, 54, 269, 0, 0, 0, 57, + 0, 58, 2, 59, 4, 5, 0, 6, 155, 156, + 9, 0, 0, 0, 0, 0, 11, 12, 13, 157, + 158, 159, 0, 160, 0, 0, 161, 162, 0, 0, + 0, 20, 21, 0, 0, 0, 0, 0, 0, 163, + 0, 164, 0, 0, 27, 28, 0, 0, 165, 30, + 166, 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 167, 45, 0, 0, 48, 0, 0, 0, - 0, 51, 52, 267, 0, 168, 0, 0, 0, 0, - 0, 169, 170, 0, 0, 0, 0, 0, 54, 269, - 0, 0, 0, 57, 0, 58, 2, 59, 4, 5, - 0, 6, 154, 155, 9, 0, 0, 0, 0, 0, - 11, 12, 13, 156, 157, 158, 0, 159, 0, 0, - 160, 161, 0, 0, 0, 20, 21, 0, 0, 0, - 0, 0, 0, 162, 0, 163, 0, 0, 27, 28, - 0, 0, 164, 30, 165, 0, 0, 0, 0, 0, - 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 168, 45, 0, 0, 48, 0, 0, 0, + 0, 51, 52, 0, 0, 169, 0, 0, 0, 0, + 0, 170, 171, 0, 0, 0, 0, 0, 54, 269, + 0, 0, 541, 57, 0, 58, 2, 59, 4, 5, + 0, 6, 155, 156, 9, 0, 0, 0, 0, 0, + 11, 12, 13, 157, 158, 159, 0, 160, 0, 0, + 161, 162, 0, 0, 0, 20, 21, 0, 0, 0, + 0, 0, 0, 163, 0, 164, 0, 0, 27, 28, + 0, 0, 165, 30, 166, 0, 0, 0, 0, 0, + 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 167, 45, 0, 0, - 48, 0, 0, 0, 0, 51, 52, 582, 0, 168, - 0, 0, 0, 0, 0, 169, 170, 0, 0, 0, - 0, 0, 54, 171, 0, 0, 0, 57, 0, 58, - 2, 59, 4, 5, 0, 6, 154, 155, 9, 0, - 0, 0, 0, 0, 11, 12, 13, 156, 157, 158, - 0, 159, 0, 0, 160, 161, 0, 0, 0, 20, - 21, 0, 0, 0, 0, 0, 0, 162, 0, 163, - 0, 0, 27, 28, 0, 0, 164, 30, 165, 0, - 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 168, 45, 0, 0, + 48, 0, 0, 0, 0, 51, 52, 267, 0, 169, + 0, 0, 0, 0, 0, 170, 171, 0, 0, 0, + 0, 0, 54, 269, 0, 0, 0, 57, 0, 58, + 2, 59, 4, 5, 0, 6, 155, 156, 9, 0, + 0, 0, 0, 0, 11, 12, 13, 157, 158, 159, + 0, 160, 0, 0, 161, 162, 0, 0, 0, 20, + 21, 0, 0, 0, 0, 0, 0, 163, 0, 164, + 0, 0, 27, 28, 0, 0, 165, 30, 166, 0, + 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 167, 45, 0, 0, 48, 0, 0, 0, 0, 51, - 52, 0, 0, 168, 0, 0, 0, 0, 0, 169, - 170, 0, 0, 0, 0, 0, 54, 171, 0, 0, + 168, 45, 0, 0, 48, 0, 0, 0, 0, 51, + 52, 575, 0, 169, 0, 0, 0, 0, 0, 170, + 171, 0, 0, 0, 0, 0, 54, 172, 0, 0, 0, 57, 0, 58, 2, 59, 4, 5, 0, 6, - 154, 155, 9, 0, 0, 0, 0, 0, 11, 12, - 13, 156, 157, 158, 0, 159, 0, 0, 160, 161, + 155, 156, 9, 0, 0, 0, 0, 0, 11, 12, + 13, 157, 158, 159, 0, 160, 0, 0, 161, 162, 0, 0, 0, 20, 21, 0, 0, 0, 0, 0, - 0, 162, 0, 163, 0, 0, 27, 28, 0, 0, - 164, 30, 165, 0, 0, 0, 0, 0, 0, 0, - 166, 0, 0, 0, 0, 0, 0, 0, 0, 36, + 0, 163, 0, 164, 0, 0, 27, 28, 0, 0, + 165, 30, 166, 0, 0, 0, 0, 0, 0, 0, + 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 167, 45, 0, 0, 48, 0, - 0, 0, 0, 51, 52, 0, 0, 168, 0, 0, - 0, 0, 0, 169, 170, 0, 0, 0, 0, 0, - 54, 265, 0, 0, 0, 57, 0, 58, 2, 59, - 4, 5, 0, 6, 154, 155, 9, 0, 0, 0, - 0, 0, 11, 12, 13, 156, 157, 158, 0, 159, - 0, 0, 160, 161, 0, 0, 0, 20, 21, 0, - 0, 0, 0, 0, 0, 162, 0, 163, 0, 0, - 27, 28, 0, 0, 164, 30, 165, 0, 0, 0, - 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 168, 45, 0, 0, 48, 0, + 0, 0, 0, 51, 52, 0, 0, 169, 0, 0, + 0, 0, 0, 170, 171, 0, 0, 0, 0, 0, + 54, 172, 0, 0, 0, 57, 0, 58, 2, 59, + 4, 5, 0, 6, 155, 156, 9, 0, 0, 0, + 0, 0, 11, 12, 13, 157, 158, 159, 0, 160, + 0, 0, 161, 162, 0, 0, 0, 20, 21, 0, + 0, 0, 0, 0, 0, 163, 0, 164, 0, 0, + 27, 28, 0, 0, 165, 30, 166, 0, 0, 0, + 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 167, 45, + 0, 0, 0, 0, 0, 0, 0, 0, 168, 45, 0, 0, 48, 0, 0, 0, 0, 51, 52, 0, - 0, 168, 0, 0, 0, 0, 0, 169, 170, 0, - 0, 0, 0, 0, 54, 269, 0, 0, 0, 57, - 0, 58, 2, 59, 4, 5, 0, 6, 154, 155, - 9, 0, 0, 0, 0, 0, 11, 12, 13, 156, - 157, 158, 0, 159, 0, 0, 160, 161, 0, 0, - 0, 20, 21, 0, 0, 0, 0, 0, 0, 162, - 0, 163, 0, 0, 27, 28, 0, 0, 164, 30, - 165, 0, 0, 0, 0, 0, 0, 0, 166, 0, + 0, 169, 0, 0, 0, 0, 0, 170, 171, 0, + 0, 0, 0, 0, 54, 265, 0, 0, 0, 57, + 0, 58, 2, 59, 4, 5, 0, 6, 155, 156, + 9, 0, 0, 0, 0, 0, 11, 12, 13, 157, + 158, 159, 0, 160, 0, 0, 161, 162, 0, 0, + 0, 20, 21, 0, 0, 0, 0, 0, 0, 163, + 0, 164, 0, 0, 27, 28, 0, 0, 165, 30, + 166, 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 167, 45, 0, 0, 48, 0, 0, 0, - 0, 51, 52, 0, 0, 168, 0, 0, 0, 0, - 0, 169, 170, 0, 0, 0, 0, 0, 54, 691, - 0, 0, 0, 57, 0, 58, 2, 59, 4, 338, - 0, 339, 154, 155, 9, 0, 0, 0, 0, 0, - 11, 12, 13, 156, 157, 158, 0, 159, 0, 0, - 0, 161, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 162, 0, 163, 0, 0, 27, 28, - 0, 0, 0, 30, 165, 0, 0, 0, 0, 0, - 0, 0, 166, 0, 0, -329, 0, 0, 0, 0, + 0, 0, 168, 45, 0, 0, 48, 0, 0, 0, + 0, 51, 52, 0, 0, 169, 0, 0, 0, 0, + 0, 170, 171, 0, 0, 0, 0, 0, 54, 269, + 0, 0, 0, 57, 0, 58, 2, 59, 4, 5, + 0, 6, 155, 156, 9, 0, 0, 0, 0, 0, + 11, 12, 13, 157, 158, 159, 0, 160, 0, 0, + 161, 162, 0, 0, 0, 20, 21, 0, 0, 0, + 0, 0, 0, 163, 0, 164, 0, 0, 27, 28, + 0, 0, 165, 30, 166, 0, 0, 0, 0, 0, + 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, - -329, -329, 408, 0, 0, 0, 167, 45, 0, 0, - 48, 0, 0, 0, 0, 0, 0, 0, 0, 168, - -329, -329, -329, -329, 0, -329, -329, 0, 0, 0, - 0, 0, 54, 0, 0, 0, -332, 263, 0, 58, - 466, 467, 468, 469, 470, 471, 472, 473, 474, 0, - 0, 0, 0, 475, 476, 477, 478, 479, 480, 481, - 482, -332, -332, 378, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 41, 0, -328, 0, 0, + 0, 0, 0, 0, 0, 0, 168, 45, 0, 0, + 48, 0, 0, 0, 0, 51, 52, 0, 0, 169, + 0, 0, -328, -328, 371, 170, 171, 0, 0, 0, + 0, 0, 54, 683, 0, 0, 0, 57, 0, 58, + 0, 59, -328, -328, -328, -328, 0, -328, -328, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -316, 0, + 0, 0, 459, 460, 461, 462, 463, 464, 465, 466, + 467, 0, 0, 0, 0, 468, 469, 470, 471, 472, + 473, 474, 475, -316, -316, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -332, -332, -332, -332, 0, -332, -332, 0, -612, - -612, -612, 0, 0, 0, 0, -329, -319, 292, 0, - 0, 466, 467, 468, 469, 470, 471, 472, 473, 474, - 0, 0, 0, 0, 475, 476, 477, 478, 479, 480, - 481, 482, -319, -319, 312, 0, 0, 0, 0, 0, + 0, 0, 0, -316, -316, -316, -316, 0, -316, -316, + 0, 0, 0, 0, 372, 0, 0, 0, -328, -326, + 291, 0, 0, 459, 460, 461, 462, 463, 464, 465, + 466, 467, 0, 0, 0, 0, 468, 469, 470, 471, + 472, 473, 474, 475, -326, -326, 367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -319, -319, -319, -319, 0, -319, -319, 0, - 0, 0, 0, 379, 0, 0, 0, -332, -330, 292, - 0, 0, 466, 467, 468, 469, 470, 471, 472, 473, - 474, 0, 0, 0, 0, 475, 476, 477, 478, 479, - 480, 481, 482, -330, -330, 374, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -330, -330, -330, -330, 0, -330, -330, - 0, 0, 0, 0, 0, 0, 0, 0, -319, -333, - 292, 0, 0, 466, 467, 468, 469, 470, 471, 472, - 473, 474, 0, 0, 0, 0, 475, 476, 477, 478, - 479, 480, 481, 482, -333, -333, 383, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -333, -333, -333, -333, 0, -333, - -333, 0, 0, 0, 0, 0, 0, 0, 0, -330, - -329, 292, 0, 0, 466, 467, 468, 469, 470, 471, - 472, 473, 474, 0, 0, 0, 0, 475, 476, 477, - 478, 479, 480, 481, 482, -329, -329, 408, 0, 0, + 0, 0, 0, 0, -326, -326, -326, -326, 0, -326, + -326, 0, 0, 0, 0, 0, 0, 0, 0, -316, + -329, 291, 0, 0, 459, 460, 461, 462, 463, 464, + 465, 466, 467, 0, 0, 0, 0, 468, 469, 470, + 471, 472, 473, 474, 475, -329, -329, 376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -329, -329, -329, -329, 0, -329, -329, 0, 0, 0, 0, 0, 0, 0, 0, - -333, 0, 292, 0, 0, 466, 467, 468, 469, 470, - 471, 472, 473, 474, 0, 0, 0, 0, 475, 476, - 477, 478, 479, 480, 481, 482, 0, 2, 0, 0, - 0, 0, 0, 154, 155, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 156, 157, 158, 0, 159, 0, - 0, 0, 161, 0, 0, 0, 0, 0, 0, 0, - 0, -329, 0, 292, 162, 0, 163, 0, 0, 27, - 28, 2, 0, 0, 30, 165, 0, 154, 155, 0, - 0, 0, 0, 166, 0, 0, 0, 0, 156, 157, - 158, 0, 159, 0, 0, 0, 161, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 756, 0, 162, 0, - 163, 0, 0, 27, 28, 0, 2, 167, 30, 165, - 0, 48, 154, 155, 0, 0, 0, 166, 875, 0, - 168, 0, 0, 156, 157, 158, 0, 159, 0, 0, - 0, 161, 0, 0, 868, 0, 0, 0, 0, 0, - 756, 0, 0, 162, 0, 163, 0, 0, 27, 28, - 2, 167, 0, 30, 165, 48, 154, 155, 0, 0, - 0, 0, 166, 0, 168, 0, 0, 156, 157, 158, - 0, 159, 0, 0, 0, 161, 0, 0, 757, 0, - 0, 0, 0, 0, 0, 41, 0, 162, 0, 163, - 0, 0, 27, 28, 0, 2, 167, 30, 165, 0, - 48, 154, 155, 0, 0, 0, 166, 0, 0, 168, - 0, 0, 156, 157, 158, 0, 159, 0, 0, 0, - 161, 0, 0, 817, 0, 0, 0, 0, 0, 756, - 0, 0, 162, 0, 163, 0, 0, 27, 28, 2, - 167, 0, 30, 165, 48, 154, 155, 0, 0, 0, - 0, 166, 0, 168, 0, 0, 156, 157, 158, 0, - 159, 0, 0, 0, 161, 0, 0, 868, 0, 0, - 0, 0, 0, 0, 41, 0, 162, 0, 163, 0, - 0, 27, 28, 0, 2, 167, 30, 165, 0, 48, - 154, 155, 0, 0, 0, 166, 0, 0, 168, 0, - 0, 156, 157, 158, 0, 159, 38, 39, 0, 161, - 0, 0, 910, 0, 0, 0, 0, 0, 41, 0, - 0, 162, 0, 163, 0, 0, 27, 28, 2, 167, - 0, 30, 165, 48, 154, 155, 0, 0, 0, 0, - 166, 0, 168, 0, 0, 156, 157, 158, 0, 159, - 0, 38, 39, 161, 0, 54, 0, 0, 0, 0, - 0, 0, 0, 41, 0, 162, 0, 163, 0, 0, - 27, 28, 0, 0, 167, 30, 165, 0, 48, 0, - 0, 0, 0, 0, 166, 0, 0, 168, 0, 0, - 0, 2, 0, 0, 0, 0, 0, 154, 155, 0, - 0, 0, 0, 0, 0, 0, 0, 41, 156, 157, - 158, 0, 159, 0, 0, 0, 161, 0, 167, 0, - 0, 0, 48, 0, 0, 0, 0, 0, 162, 544, - 163, 168, 0, 27, 28, 2, 0, 0, 30, 165, - 0, 154, 155, 0, 0, 0, 0, 166, 0, 0, - 0, 0, 156, 157, 158, 0, 159, 0, 0, 0, - 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 41, 0, 162, 0, 163, 0, 0, 27, 28, 0, - 0, 167, 30, 165, 0, 48, 0, 0, 0, 0, - 0, 166, 773, 0, 168, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 154, 155, 0, 0, 0, 0, - 0, 0, 0, 0, 41, 156, 157, 158, 0, 159, - 0, 0, 0, 161, 0, 167, 0, 0, 0, 48, - 0, 0, 0, 0, 0, 162, 837, 163, 168, 0, - 27, 28, 2, 0, 0, 30, 165, 0, 154, 155, - 0, 0, 0, 0, 166, 0, 0, 0, 0, 156, - 157, 158, 0, 159, 0, 0, 0, 161, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 41, 0, 162, - 0, 163, 0, 0, 27, 28, 0, 0, 167, 30, - 165, 0, 48, 0, 0, 0, 0, 0, 166, 915, - 0, 168, 0, 0, 0, 0, 0, 0, 0, 466, - 467, 468, 469, 470, 471, 472, 473, 474, 0, 0, - 0, 41, 475, 476, 477, 478, 479, 480, 481, 482, - 0, 0, 167, 0, 0, 304, 48, 307, 308, 0, - 311, 0, 314, 0, 317, 168, 319, 0, 322, 0, - 324, 0, 330, 0, 336, 362, 368, 0, 0, 0, - 373, 946, 0, 377, 0, 0, 382, 0, 386, 0, - 0, 0, 0, 0, 466, 467, 468, 469, 470, 471, - 472, 473, 474, 0, 411, 0, 416, 475, 476, 477, - 478, 479, 480, 481, 482 + -326, -325, 291, 0, 0, 459, 460, 461, 462, 463, + 464, 465, 466, 467, 0, 0, 0, 0, 468, 469, + 470, 471, 472, 473, 474, 475, -325, -325, 401, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -325, -325, -325, -325, + 0, -325, -325, 0, 0, 0, 0, 0, 0, 0, + 0, -329, 0, 291, 0, 0, 459, 460, 461, 462, + 463, 464, 465, 466, 467, 0, 0, 0, 0, 468, + 469, 470, 471, 472, 473, 474, 475, 0, 2, 0, + 0, 0, 0, 0, 155, 156, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 157, 158, 159, 0, 160, + 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, + 0, 0, -325, 0, 291, 163, 0, 164, 0, 0, + 27, 28, 2, 0, 0, 30, 166, 0, 155, 156, + 0, 0, 0, 0, 167, 0, 0, 0, 0, 157, + 158, 159, 0, 160, 0, 38, 39, 162, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 163, + 0, 164, 0, 0, 27, 28, 0, 2, 168, 30, + 166, 0, 48, 155, 156, 0, 0, 0, 167, 0, + 0, 169, 0, 0, 157, 158, 159, 0, 160, 0, + 0, 0, 162, 0, 54, 0, 0, 0, 0, 263, + 0, 41, 0, 0, 163, 0, 164, 0, 0, 27, + 28, 2, 168, 0, 30, 166, 48, 155, 156, 0, + 0, 0, 0, 167, 0, 169, 0, 0, 157, 158, + 159, 0, 160, 0, 0, 0, 162, 0, 0, 0, + 55, 56, 0, 0, 0, 0, 747, 0, 163, 0, + 164, 0, 0, 27, 28, 0, 0, 168, 30, 166, + 0, 48, 0, 0, 0, 0, 0, 167, 760, 0, + 169, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 155, 156, 0, 0, 748, 0, 0, 0, 0, 0, + 747, 157, 158, 159, 0, 160, 0, 0, 0, 162, + 0, 168, 0, 0, 0, 48, 0, 0, 0, 0, + 0, 163, 866, 164, 169, 0, 27, 28, 2, 0, + 0, 30, 166, 0, 155, 156, 0, 0, 859, 0, + 167, 0, 0, 0, 0, 157, 158, 159, 0, 160, + 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 747, 0, 163, 0, 164, 0, 0, + 27, 28, 0, 2, 168, 30, 166, 0, 48, 155, + 156, 0, 0, 0, 167, 0, 0, 169, 0, 0, + 157, 158, 159, 0, 160, 0, 0, 0, 162, 0, + 0, 748, 0, 0, 0, 0, 0, 41, 0, 0, + 163, 0, 164, 0, 0, 27, 28, 2, 168, 0, + 30, 166, 48, 155, 156, 0, 0, 0, 0, 167, + 0, 169, 0, 0, 157, 158, 159, 0, 160, 0, + 0, 0, 162, 0, 0, 808, 0, 0, 0, 0, + 0, 0, 747, 0, 163, 0, 164, 0, 0, 27, + 28, 0, 2, 168, 30, 166, 0, 48, 155, 156, + 0, 0, 0, 167, 0, 0, 169, 0, 0, 157, + 158, 159, 0, 160, 0, 0, 0, 162, 0, 0, + 859, 0, 0, 0, 0, 0, 41, 0, 0, 163, + 0, 164, 0, 0, 27, 28, 2, 168, 0, 30, + 166, 48, 155, 156, 0, 0, 0, 0, 167, 0, + 169, 0, 0, 157, 158, 159, 0, 160, 0, 38, + 39, 162, 0, 0, 901, 0, 0, 0, 0, 0, + 0, 41, 0, 163, 0, 164, 0, 0, 27, 28, + 0, 2, 168, 30, 166, 0, 48, 155, 156, 0, + 0, 0, 167, 0, 0, 169, 0, 0, 157, 158, + 159, 0, 160, 38, 39, 0, 162, 0, 54, 0, + 0, 0, 0, 0, 0, 41, 0, 0, 163, 0, + 164, 0, 0, 27, 28, 2, 168, 0, 30, 166, + 48, 155, 156, 0, 0, 0, 0, 167, 0, 169, + 0, 0, 157, 158, 159, 0, 160, 0, 0, 0, + 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 41, 0, 163, 0, 164, 0, 0, 27, 28, 0, + 0, 168, 30, 166, 0, 48, 0, 0, 0, 0, + 0, 167, 537, 0, 169, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 155, 156, 0, 0, 0, 0, + 0, 0, 0, 0, 41, 157, 158, 159, 0, 160, + 0, 0, 0, 162, 0, 168, 0, 0, 0, 48, + 0, 0, 0, 0, 0, 163, 764, 164, 169, 0, + 27, 28, 2, 0, 0, 30, 166, 0, 155, 156, + 0, 0, 0, 0, 167, 0, 0, 0, 0, 157, + 158, 159, 0, 160, 0, 0, 0, 162, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 163, + 0, 164, 0, 0, 27, 28, 0, 0, 168, 30, + 166, 0, 48, 0, 0, 0, 0, 0, 167, 828, + 0, 169, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 155, 156, 0, 0, 0, 0, 0, 0, 0, + 0, 41, 157, 158, 159, 0, 160, 0, 0, 0, + 162, 0, 168, 482, 483, 0, 48, 484, 485, 486, + 0, 0, 163, 906, 164, 169, 0, 27, 28, 0, + 0, 0, 30, 166, 0, 487, 488, 0, 0, 0, + 0, 167, 0, 0, 489, 482, 483, 0, 0, 484, + 485, 486, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 41, 0, 0, 487, 488, 0, + 0, 0, 0, 0, 0, 168, 489, 0, 0, 48, + 0, 0, 0, 0, 0, 482, 483, 0, 169, 484, + 485, 486, 0, 0, 0, 0, 490, 491, 492, 493, + 494, 495, 496, 497, 498, 0, 0, 487, 488, 55, + 56, 0, 0, 0, 0, 0, 489, 482, 483, 0, + 0, 484, 485, 486, 0, 566, 0, 0, 490, 491, + 492, 493, 494, 495, 496, 497, 498, 0, 0, 487, + 488, 0, 0, 0, 0, 0, 0, 0, 489, 0, + 0, 0, 0, 0, 0, 482, 0, 0, 0, 484, + 485, 486, 0, 0, 0, 772, 0, 0, 490, 491, + 492, 493, 494, 495, 496, 497, 498, 487, 488, 0, + 0, 0, 0, 0, 0, 0, 489, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 490, 491, 492, 493, 494, 495, 496, 497, 498, 459, + 460, 461, 462, 463, 464, 465, 466, 467, 0, 0, + 0, 0, 468, 469, 470, 471, 472, 473, 474, 475, + 0, 0, 0, 0, 0, 0, 0, 0, 490, 491, + 492, 493, 494, 495, 496, 497, 498, 302, 0, 305, + 306, 0, 309, 0, 312, 0, 315, 0, 317, 0, + 320, 893, 322, 0, 325, 0, 328, 0, 355, 361, + 0, 0, 0, 366, 0, 0, 370, 0, 0, 375, + 0, 379, 0, 0, 0, 0, 0, 459, 460, 461, + 462, 463, 464, 465, 466, 467, 0, 404, 0, 409, + 468, 469, 470, 471, 472, 473, 474, 475, 459, 460, + 461, 462, 463, 464, 465, 466, 467, 0, 0, 0, + 0, 468, 469, 470, 471, 472, 473, 474, 475, 459, + 460, 461, 462, 463, 464, 465, 466, 467, 0, 924, + 0, 0, 468, 469, 470, 471, 472, 473, 474, 475, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 937 }; static const yytype_int16 yycheck[] = { - 0, 58, 251, 10, 171, 213, 251, 251, 152, 178, - 573, 422, 423, 182, 535, 632, 435, 444, 445, 188, - 678, 190, 191, 548, 682, 585, 26, 235, 447, 9, - 9, 683, 36, 48, 0, 35, 205, 36, 3, 4, - 3, 4, 627, 36, 36, 0, 52, 47, 36, 36, - 72, 73, 36, 456, 84, 381, 0, 36, 17, 59, - 132, 61, 36, 36, 17, 902, 36, 139, 602, 785, - 70, 397, 72, 658, 74, 75, 106, 77, 794, 79, - 796, 81, 126, 83, 36, 85, 36, 87, 41, 89, - 36, 91, 92, 93, 0, 61, 933, 97, 265, 121, - 100, 10, 269, 103, 17, 105, 61, 36, 67, 946, - 125, 514, 17, 69, 36, 3, 519, 61, 36, 125, - 26, 121, 525, 123, 123, 124, 130, 126, 135, 35, - 110, 110, 132, 132, 36, 123, 124, 25, 672, 139, - 132, 47, 545, 130, 132, 132, 34, 126, 132, 36, - 710, 36, 126, 59, 36, 61, 126, 678, 123, 124, - 123, 124, 132, 697, 70, 690, 72, 825, 74, 75, - 822, 77, 36, 79, 126, 81, 828, 83, 130, 85, - 132, 87, 132, 89, 718, 91, 92, 93, 101, 616, - 36, 97, 809, 36, 100, 729, 607, 103, 103, 105, - 88, 0, 90, 132, 36, 123, 124, 95, 126, 743, - 132, 99, 52, 213, 132, 121, 104, 123, 781, 107, - 108, 109, 110, 36, 126, 12, 132, 26, 130, 117, - 132, 9, 120, 139, 122, 235, 123, 124, 123, 124, - 128, 123, 124, 17, 0, 132, 125, 132, 47, 19, - 132, 36, 131, 125, 142, 54, 34, 35, 36, 131, - 126, 36, 61, 132, 327, 799, 130, 801, 132, 269, - 333, 70, 46, 36, 130, 36, 54, 55, 56, 57, - 126, 59, 60, 126, 9, 125, 132, 130, 87, 132, - 89, 52, 91, 92, 126, 0, 36, 716, 130, 548, - 132, 36, 865, 548, 548, 36, 36, 36, 842, 34, - 35, 0, 846, 126, 123, 124, 379, 851, 852, 132, - 58, 26, 121, 132, 125, 123, 124, 125, 129, 54, - 55, 56, 57, 132, 59, 60, 130, 26, 132, 902, - 139, 125, 47, 127, 36, 748, 125, 132, 751, 883, - 129, 58, 130, 887, 132, 758, 61, 132, 47, 762, - 894, 123, 124, 269, 125, 126, 900, 901, 931, 132, - 933, 774, 61, 125, 17, 127, 114, 115, 116, 117, - 118, 381, 125, 946, 125, 554, 129, 92, 123, 124, - 125, 126, 132, 3, 4, 38, 39, 397, 17, 18, - 17, 132, 132, 92, 125, 130, 127, 132, 942, 116, - 117, 118, 123, 124, 125, 818, 819, 561, 821, 123, - 124, 629, 39, 40, 827, 38, 39, 132, 15, 16, - 17, 18, 17, 130, 139, 435, 51, 840, 69, 9, - 17, 690, 125, 132, 127, 690, 690, 447, 9, 126, - 139, 659, 251, 38, 39, 40, 19, 0, 101, 126, - 863, 38, 39, 40, 34, 35, 869, 123, 124, 125, - 269, 49, 50, 34, 35, 381, 15, 16, 17, 18, - 58, 3, 4, 26, 54, 55, 56, 57, 114, 59, - 60, 397, 127, 54, 55, 56, 57, 129, 59, 60, - 123, 124, 126, 126, 47, 908, 126, 127, 911, 123, - 124, 36, 126, 916, 3, 4, 36, 574, 61, 36, - 9, 123, 124, 125, 691, 0, 123, 124, 125, 435, - 64, 65, 935, 111, 112, 113, 114, 115, 116, 117, - 118, 447, 122, 123, 124, 34, 35, 36, 36, 92, - 125, 26, 127, 9, 123, 124, 125, 125, 558, 127, - 130, 125, 132, 127, 269, 54, 55, 56, 57, 130, - 59, 60, 47, 36, 36, 3, 4, 36, 34, 35, - 269, 9, 123, 124, 125, 125, 61, 127, 125, 132, - 127, 36, 36, 36, 36, 125, 139, 604, 54, 55, - 56, 57, 602, 59, 60, 612, 34, 35, 36, 19, - 133, 125, 125, 132, 126, 126, 125, 92, 9, 58, - 9, 110, 19, 125, 129, 126, 54, 55, 56, 57, - 0, 59, 60, 126, 129, 9, 435, 126, 132, 125, - 47, 130, 127, 132, 125, 0, 125, 127, 447, 125, - 707, 99, 558, 84, 127, 125, 26, 132, 127, 659, - 127, 127, 127, 66, 139, 125, 61, 658, 92, 92, - 74, 26, 672, 92, 130, 92, 132, 47, 92, 92, - 92, 92, 110, 87, 88, 89, 90, 91, 92, 93, - 94, 61, 47, 92, 92, 659, 602, 697, 126, 92, - 92, 232, 130, 235, 132, 92, 61, 92, 514, 931, - 234, 683, 444, 720, 423, 950, 716, 558, 718, 726, - 241, 777, 92, 622, 622, -1, 269, -1, 9, 729, - 435, -1, -1, -1, -1, -1, -1, 92, -1, -1, - -1, -1, 447, 743, -1, -1, 435, -1, -1, 548, - -1, -1, -1, 34, 35, 36, -1, -1, 447, 558, - -1, -1, 132, -1, -1, -1, 672, -1, -1, 139, - -1, -1, -1, 54, 55, 56, 57, 132, 59, 60, - -1, -1, 9, -1, 139, -1, -1, -1, -1, -1, - -1, 697, -1, -1, 269, -1, -1, -1, -1, 799, - -1, 801, -1, 602, -1, -1, 813, 34, 35, 36, - 716, -1, 718, -1, 9, -1, -1, -1, -1, -1, - -1, -1, -1, 729, -1, -1, -1, 54, 55, 56, - 57, 9, 59, 60, -1, -1, -1, 743, -1, 34, - 35, 36, 842, -1, -1, -1, 846, -1, -1, 130, - -1, 851, 852, 558, -1, -1, 34, 35, 36, 54, - 55, 56, 57, -1, 59, 60, -1, -1, -1, 558, - -1, -1, -1, 672, -1, -1, 54, 55, 56, 57, - -1, 59, 60, 883, -1, -1, -1, 887, -1, 896, - -1, 690, 435, 799, 894, 801, -1, 602, 697, 269, - 900, 901, -1, 130, 447, 132, -1, -1, -1, -1, - -1, -1, -1, 602, 269, 110, -1, 716, -1, 718, + 0, 215, 58, 172, 253, 10, 253, 253, 153, 428, + 566, 179, 415, 416, 670, 183, 437, 438, 674, 36, + 528, 440, 190, 237, 192, 193, 26, 675, 624, 541, + 36, 330, 578, 36, 619, 35, 0, 52, 0, 207, + 36, 9, 17, 9, 123, 124, 374, 47, 3, 4, + 36, 9, 3, 4, 36, 0, 72, 73, 17, 59, + 0, 61, 390, 123, 124, 650, 41, 36, 36, 133, + 70, 36, 72, 372, 74, 75, 140, 77, 36, 79, + 36, 81, 126, 83, 36, 85, 26, 87, 132, 89, + 36, 91, 36, 93, 94, 35, 265, 61, 98, 61, + 269, 101, 36, 84, 104, 121, 106, 47, 67, 126, + 125, 9, 36, 130, 36, 132, 61, 123, 124, 59, + 0, 61, 122, 126, 124, 106, 132, 123, 124, 36, + 70, 136, 72, 133, 74, 75, 132, 77, 36, 79, + 140, 81, 110, 83, 110, 85, 132, 87, 130, 89, + 132, 91, 110, 93, 94, 35, 702, 126, 98, 36, + 816, 101, 670, 132, 104, 813, 106, 132, 123, 124, + 682, 819, 123, 124, 130, 36, 36, 123, 124, 59, + 132, 61, 122, 36, 124, 36, 132, 608, 132, 36, + 70, 0, 72, 133, 74, 75, 599, 77, 132, 79, + 140, 81, 36, 83, 800, 85, 594, 87, 130, 89, + 132, 91, 110, 93, 94, 215, 772, 26, 98, 126, + 36, 101, 17, 130, 104, 132, 106, 48, 126, 52, + 0, 125, 776, 17, 125, 129, 17, 237, 47, 36, + 131, 785, 122, 787, 124, 54, 123, 124, 123, 124, + 126, 126, 61, 133, 36, 132, 26, 132, 36, 10, + 140, 70, 893, 36, 9, 46, 126, 58, 69, 269, + 130, 132, 132, 12, 52, 17, 664, 47, 87, 132, + 89, 132, 91, 125, 93, 132, 449, 129, 707, 34, + 35, 61, 541, 924, 541, 541, 38, 39, 132, 125, + 856, 689, 125, 125, 125, 131, 937, 129, 103, 54, + 55, 56, 57, 122, 59, 60, 132, 101, 3, 4, + 17, 709, 126, 93, 133, 116, 117, 118, 130, 269, + 132, 140, 720, 0, 27, 28, 0, 893, 31, 32, + 33, 38, 39, 40, 507, 19, 734, 125, 126, 512, + 123, 124, 125, 126, 58, 518, 49, 50, 132, 101, + 123, 124, 26, 133, 130, 58, 922, 36, 924, 132, + 140, 17, 125, 17, 374, 538, 36, 123, 124, 547, + 126, 937, 125, 47, 127, 130, 130, 132, 123, 124, + 390, 126, 38, 39, 40, 39, 40, 61, 15, 16, + 17, 18, 790, 125, 792, 127, 125, 621, 127, 554, + 114, 115, 116, 117, 118, 36, 0, 110, 111, 112, + 113, 114, 115, 116, 117, 118, 17, 18, 428, 93, + 3, 4, 125, 682, 374, 682, 682, 651, 36, 125, + 440, 127, 26, 51, 253, 833, 123, 124, 125, 837, + 390, 123, 124, 125, 842, 843, 15, 16, 17, 18, + 269, 38, 39, 47, 123, 124, 125, 64, 65, 133, + 123, 124, 125, 123, 124, 125, 140, 61, 123, 124, + 125, 0, 122, 123, 124, 19, 874, 9, 428, 69, + 878, 123, 124, 125, 374, 126, 0, 885, 126, 269, + 440, 126, 127, 891, 892, 127, 125, 26, 127, 93, + 390, 567, 34, 35, 683, 125, 125, 127, 127, 114, + 36, 9, 26, 125, 129, 127, 36, 36, 47, 36, + 36, 36, 54, 55, 56, 57, 36, 59, 60, 36, + 36, 126, 61, 47, 125, 933, 34, 35, 428, 133, + 19, 551, 126, 125, 133, 125, 140, 61, 126, 125, + 440, 132, 9, 58, 9, 19, 54, 55, 56, 57, + 125, 59, 60, 126, 93, 126, 739, 129, 9, 742, + 129, 125, 132, 47, 127, 125, 749, 125, 127, 93, + 753, 596, 125, 3, 594, 84, 99, 127, 125, 604, + 125, 127, 765, 127, 127, 269, 127, 66, 130, 61, + 132, 551, 650, 93, 133, 25, 93, 93, 93, 428, + 93, 140, 93, 93, 34, 93, 93, 9, 93, 133, + 93, 440, 93, 234, 237, 93, 140, 93, 651, 507, + 236, 922, 130, 699, 132, 675, 809, 810, 416, 812, + 437, 651, 34, 35, 594, 818, 941, 768, 428, 551, + 614, 614, -1, -1, 664, 243, -1, -1, 831, -1, + 440, -1, 54, 55, 56, 57, -1, 59, 60, -1, + -1, -1, 92, -1, -1, 269, 96, -1, -1, 689, + 100, 854, -1, 49, 50, 105, -1, 860, 108, 109, + 110, 111, 58, -1, -1, -1, 711, 707, 118, 709, + -1, 121, 717, 123, 594, -1, -1, -1, -1, 129, + 720, -1, -1, -1, 664, -1, -1, 0, 110, -1, + -1, -1, 541, 143, 734, -1, 899, -1, -1, 902, + -1, -1, 551, -1, 907, -1, -1, -1, 130, 689, + 269, -1, -1, 26, -1, 111, 112, 113, 114, 115, + 116, 117, 118, 926, 428, 269, -1, 707, -1, 709, + -1, -1, -1, -1, 47, -1, 440, -1, -1, -1, + 720, 551, -1, -1, 664, 594, -1, 74, 61, -1, + 790, -1, 792, -1, 734, -1, -1, -1, -1, 804, + 87, 88, 89, 90, 91, 92, 93, 94, -1, 689, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 729, 126, 110, -1, -1, 130, 842, 132, 938, -1, - 846, -1, 942, -1, 743, 851, 852, -1, 126, -1, - 950, -1, 130, -1, 132, -1, -1, -1, 0, -1, - 435, -1, -1, -1, -1, -1, -1, 672, -1, -1, - -1, -1, 447, -1, -1, -1, -1, 883, -1, -1, - -1, 887, -1, 672, 26, -1, -1, -1, 894, -1, - -1, -1, 697, -1, 900, 901, -1, -1, -1, -1, - 799, -1, 801, -1, -1, 47, -1, -1, 697, -1, - -1, 716, -1, 718, -1, 558, -1, -1, -1, 61, - -1, -1, -1, 9, 729, -1, -1, 716, -1, 718, - -1, -1, 938, -1, -1, -1, 942, -1, 743, -1, - 729, -1, -1, 842, 950, -1, -1, 846, 34, 35, - 92, -1, 851, 852, 743, -1, -1, -1, -1, 602, - -1, -1, -1, -1, -1, 435, -1, -1, 54, 55, - 56, 57, -1, 59, 60, -1, -1, 447, -1, -1, - 435, -1, -1, 558, 883, -1, -1, -1, 887, -1, - 132, -1, 447, -1, 799, 894, 801, 139, -1, -1, - -1, 900, 901, -1, -1, -1, -1, -1, -1, -1, - 799, -1, 801, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 110, -1, -1, 602, -1, 672, - -1, -1, -1, -1, -1, -1, -1, 842, -1, 938, - -1, 846, -1, 942, 130, -1, 851, 852, -1, -1, - -1, 950, -1, 842, 697, -1, -1, 846, -1, 0, - -1, -1, 851, 852, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 716, -1, 718, -1, -1, 883, -1, - -1, 0, 887, -1, -1, 26, 729, -1, 558, 894, - -1, -1, -1, -1, 883, 900, 901, 672, 887, -1, - 743, -1, -1, 558, -1, 894, 47, 26, -1, -1, - -1, 900, 901, -1, -1, -1, -1, -1, -1, -1, - 61, -1, 697, -1, -1, -1, -1, 269, 47, -1, - -1, -1, 602, 938, -1, -1, -1, 942, -1, 9, - -1, 716, 61, 718, -1, 950, -1, 602, -1, 938, - -1, 92, -1, 942, 729, -1, 799, -1, 801, -1, - -1, 950, -1, -1, 34, 35, 36, -1, 743, -1, - -1, -1, -1, 92, -1, -1, -1, -1, 0, -1, + 93, -1, -1, -1, 594, -1, -1, 707, -1, 709, + -1, -1, -1, 833, -1, -1, -1, 837, -1, -1, + 720, -1, 842, 843, 428, -1, -1, -1, -1, -1, + 790, -1, 792, -1, 734, 664, 440, -1, -1, -1, + 133, -1, -1, -1, -1, -1, -1, 140, -1, -1, + -1, -1, -1, 682, 874, -1, -1, -1, 878, -1, + 689, -1, 887, -1, -1, 885, -1, 551, -1, -1, + -1, 891, 892, 833, 664, -1, -1, 837, 707, -1, + 709, -1, 842, 843, -1, -1, -1, -1, -1, 428, + 790, 720, 792, -1, -1, -1, -1, -1, -1, 689, + -1, 440, -1, -1, 428, 734, -1, -1, -1, 929, + 594, -1, -1, 933, 874, -1, 440, 707, 878, 709, + -1, 941, -1, -1, -1, 885, -1, -1, -1, -1, + 720, 891, 892, 833, -1, -1, -1, 837, -1, -1, + -1, -1, 842, 843, 734, -1, -1, 551, -1, 0, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 790, -1, 792, -1, -1, -1, -1, -1, 929, + -1, -1, -1, 933, 874, 26, 269, -1, 878, -1, + 664, 941, -1, -1, -1, 885, -1, -1, -1, -1, + 594, 891, 892, -1, -1, -1, 47, -1, -1, -1, + 790, -1, 792, -1, 833, 689, -1, -1, 837, -1, + 61, -1, 551, 842, 843, -1, -1, -1, -1, -1, + -1, -1, 0, 707, -1, 709, -1, 551, -1, 929, + -1, -1, -1, 933, -1, -1, 720, -1, -1, -1, + -1, 941, 93, 833, -1, 874, -1, 837, 26, 878, + 734, -1, 842, 843, -1, 594, 885, -1, -1, -1, + 664, -1, 891, 892, -1, -1, -1, -1, -1, 47, + 594, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 133, 61, 874, 689, -1, -1, 878, 140, + -1, 0, -1, -1, -1, 885, -1, -1, -1, -1, + 929, 891, 892, 707, 933, 709, 790, -1, 792, -1, + -1, -1, 941, -1, -1, 93, 720, 26, -1, 0, + -1, -1, -1, -1, -1, 664, -1, -1, -1, -1, + 734, -1, -1, -1, -1, 428, -1, -1, 47, 929, + 664, -1, -1, 933, -1, 26, -1, 440, -1, 833, + 689, 941, 61, 837, -1, 133, -1, -1, 842, 843, + -1, -1, 140, -1, -1, 689, 47, -1, 707, -1, + 709, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 61, 720, -1, 707, 93, 709, 790, -1, 792, -1, + 874, -1, -1, -1, 878, 734, 720, -1, -1, -1, + -1, 885, -1, -1, -1, -1, -1, 891, 892, -1, + 734, -1, -1, -1, -1, -1, -1, -1, 269, -1, + -1, -1, -1, -1, 133, -1, -1, -1, -1, 833, + -1, 140, -1, 837, -1, -1, -1, -1, 842, 843, + -1, -1, -1, -1, -1, 929, -1, -1, -1, 933, + -1, 790, 133, 792, -1, -1, -1, 941, 551, 140, + -1, -1, -1, -1, -1, -1, 790, -1, 792, -1, + 874, -1, -1, -1, 878, -1, -1, -1, -1, 0, + -1, 885, -1, -1, -1, -1, -1, 891, 892, -1, + -1, 269, -1, -1, 833, -1, -1, 9, 837, -1, + -1, 594, -1, 842, 843, 26, -1, -1, -1, 833, + -1, -1, -1, 837, -1, -1, -1, -1, 842, 843, + -1, -1, 34, 35, 36, 929, 47, -1, -1, 933, + -1, -1, -1, -1, -1, 874, 0, 941, -1, 878, + 61, -1, 54, 55, 56, 57, 885, 59, 60, -1, + 874, -1, 891, 892, 878, -1, -1, -1, -1, -1, + 269, 885, 26, -1, -1, -1, -1, 891, 892, -1, + -1, 664, -1, -1, -1, -1, -1, 428, -1, -1, + -1, -1, -1, 47, -1, -1, -1, -1, 269, 440, + 929, -1, -1, -1, 933, -1, 689, 61, -1, -1, + 3, 4, 941, -1, -1, 929, 9, -1, -1, 933, + -1, -1, 133, -1, 707, -1, 709, 941, 130, 140, + 132, -1, -1, -1, -1, -1, -1, 720, -1, -1, + -1, 34, 35, 36, -1, -1, -1, -1, -1, 9, + -1, 734, -1, -1, -1, -1, -1, -1, -1, -1, + 428, 54, 55, 56, 57, -1, 59, 60, -1, -1, + -1, -1, 440, -1, 34, 35, 36, -1, -1, 133, + -1, -1, -1, -1, -1, -1, 140, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, 59, - 60, 132, -1, -1, -1, -1, -1, -1, 139, 842, - -1, -1, 672, 846, 26, -1, -1, -1, 851, 852, - -1, -1, -1, 132, -1, -1, -1, 672, -1, -1, - 139, -1, -1, -1, 799, 47, 801, 697, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 61, - 883, -1, 697, -1, 887, -1, 716, -1, 718, -1, - -1, 894, -1, -1, -1, -1, 126, 900, 901, 729, - 130, 716, 132, 718, -1, -1, -1, 842, -1, -1, - -1, 846, -1, 743, 729, -1, 851, 852, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 743, -1, - -1, -1, -1, 435, -1, 938, -1, -1, -1, 942, - -1, -1, -1, -1, -1, 447, -1, 950, 883, -1, - 132, -1, 887, -1, -1, -1, -1, 139, -1, 894, - -1, -1, -1, -1, -1, 900, 901, -1, 269, 799, - -1, 801, -1, -1, -1, -1, -1, -1, -1, 0, - -1, -1, -1, -1, 799, -1, 801, -1, -1, -1, - 269, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 938, -1, 26, -1, 942, -1, -1, - -1, -1, 842, -1, -1, 950, 846, -1, -1, -1, - -1, 851, 852, -1, -1, -1, 47, 842, -1, -1, - -1, 846, -1, -1, -1, -1, 851, 852, -1, -1, - 61, -1, -1, -1, -1, -1, -1, -1, 0, -1, - -1, -1, -1, 883, -1, -1, 558, 887, -1, 5, - -1, -1, -1, -1, 894, 11, 12, -1, 883, -1, - 900, 901, 887, -1, 26, -1, 22, 23, 24, 894, - 26, -1, -1, -1, 30, 900, 901, 269, -1, -1, - -1, -1, -1, -1, -1, 47, 42, -1, 44, -1, - 602, 47, 48, -1, -1, -1, 52, 53, 938, 61, - -1, 132, 942, -1, -1, 61, -1, -1, 139, -1, - 950, -1, -1, 938, -1, -1, -1, 942, -1, -1, - -1, -1, -1, -1, 435, 950, -1, -1, 84, 31, - 32, 33, -1, -1, -1, -1, 447, -1, -1, 95, - -1, 9, -1, 99, -1, -1, 435, 49, 50, -1, - -1, -1, 108, -1, -1, -1, 58, -1, 447, -1, - 672, -1, -1, -1, -1, -1, 34, 35, 36, -1, - 132, -1, 128, -1, -1, -1, 9, 139, -1, -1, - -1, -1, -1, -1, -1, 697, 54, 55, 56, 57, - -1, 59, 60, -1, -1, -1, -1, -1, -1, 0, - -1, 34, 35, 36, 716, -1, 718, -1, 110, 111, - 112, 113, 114, 115, 116, 117, 118, 729, -1, -1, - -1, 54, 55, 56, 57, 26, 59, 60, -1, -1, - -1, 743, -1, -1, -1, -1, -1, -1, 269, -1, - -1, -1, 110, 435, -1, -1, 47, 558, -1, -1, - -1, -1, -1, -1, -1, 447, -1, -1, 126, -1, - 61, -1, 130, -1, 132, -1, -1, -1, -1, 558, - -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 799, -1, 801, - -1, 602, -1, 126, -1, -1, 0, 130, -1, 132, - 9, -1, -1, -1, -1, -1, -1, 269, -1, -1, - -1, -1, -1, 602, -1, -1, -1, -1, 0, -1, - -1, -1, 26, -1, -1, 34, 35, 36, -1, -1, - 842, 132, -1, -1, 846, -1, -1, -1, 139, 851, - 852, -1, -1, 47, 26, 54, 55, 56, 57, -1, - 59, 60, -1, -1, -1, -1, -1, 61, -1, -1, - -1, 672, -1, -1, -1, 47, 558, -1, -1, -1, - -1, 883, -1, -1, -1, 887, -1, -1, -1, 61, - -1, -1, 894, 672, -1, -1, 697, -1, 900, 901, + 60, 0, -1, -1, -1, -1, -1, 790, -1, 792, + 551, -1, -1, -1, -1, -1, -1, 110, -1, -1, + 0, -1, -1, -1, -1, -1, -1, 26, -1, 428, + -1, -1, -1, 126, -1, -1, -1, 130, -1, 132, + -1, 440, -1, -1, -1, -1, 26, -1, 47, -1, + 833, -1, -1, 594, 837, -1, -1, 428, 269, 842, + 843, -1, 61, -1, -1, -1, 126, 47, -1, 440, + 130, -1, 132, -1, -1, -1, -1, -1, -1, -1, + -1, 61, 5, 551, -1, -1, -1, -1, 11, 12, + -1, 874, -1, -1, -1, 878, -1, -1, -1, 22, + 23, 24, 885, 26, -1, -1, -1, 30, 891, 892, + -1, -1, -1, -1, -1, 269, -1, 0, -1, 42, + -1, 44, -1, 664, 47, 48, 594, -1, -1, 52, + 53, -1, -1, -1, 133, -1, -1, -1, 61, -1, + -1, 140, -1, 26, -1, -1, 929, 0, 689, -1, + 933, -1, 551, 133, -1, -1, -1, -1, 941, -1, + 140, 84, -1, -1, 47, -1, 707, -1, 709, -1, + -1, -1, 95, 26, -1, -1, 99, -1, 61, 720, + 551, -1, -1, -1, -1, 108, 9, -1, -1, -1, + -1, -1, -1, 734, 47, 594, 664, -1, -1, -1, + -1, -1, -1, -1, -1, 128, -1, -1, 61, -1, + -1, 34, 35, 36, -1, -1, -1, 428, -1, -1, + -1, 689, -1, 594, -1, -1, -1, -1, -1, 440, + -1, 54, 55, 56, 57, -1, 59, 60, -1, 707, + -1, 709, -1, -1, -1, -1, -1, -1, -1, 790, + 133, 792, 720, -1, -1, -1, -1, 140, -1, -1, + -1, -1, -1, -1, -1, 664, 734, -1, -1, -1, + 269, -1, -1, -1, 428, -1, -1, -1, -1, -1, + 133, -1, -1, -1, -1, -1, 440, 140, -1, 269, + 689, -1, 833, 664, -1, -1, 837, -1, -1, -1, + -1, 842, 843, 126, -1, -1, -1, 130, 707, 132, + 709, -1, -1, -1, -1, -1, -1, -1, 689, -1, + -1, 720, 790, -1, 792, -1, -1, -1, -1, -1, + -1, -1, -1, 874, 0, 734, 707, 878, 709, -1, + 551, -1, -1, -1, 885, -1, -1, -1, -1, 720, + 891, 892, -1, -1, -1, -1, -1, -1, -1, -1, + 26, -1, -1, 734, 0, 833, -1, -1, -1, 837, + -1, -1, -1, -1, 842, 843, -1, -1, -1, -1, + -1, 47, -1, 594, -1, -1, 269, -1, 929, -1, + 26, 790, 933, 792, -1, 61, -1, 551, -1, -1, + 941, -1, -1, -1, -1, -1, 874, -1, -1, -1, + 878, 47, -1, -1, -1, -1, 269, 885, -1, 790, + -1, 792, -1, 891, 892, 61, -1, -1, -1, 428, + -1, -1, -1, -1, 833, -1, -1, -1, 837, -1, + 594, 440, -1, 842, 843, -1, -1, -1, 428, -1, + -1, -1, -1, 664, -1, -1, -1, -1, -1, -1, + 440, 929, 833, -1, -1, 933, 837, 133, -1, -1, + -1, 842, 843, 941, 140, 874, -1, -1, 689, 878, + 0, -1, -1, -1, -1, -1, 885, -1, -1, -1, + -1, -1, 891, 892, -1, 0, 707, 133, 709, -1, + -1, -1, -1, 874, 140, -1, 26, 878, -1, 720, + 664, -1, -1, -1, 885, -1, -1, -1, -1, -1, + 891, 892, -1, 734, -1, -1, -1, 47, -1, -1, + 929, -1, 3, 4, 933, 689, -1, -1, 9, -1, + -1, 61, 941, -1, -1, 428, -1, -1, -1, -1, + -1, -1, 551, 707, -1, 709, 61, 440, 929, -1, + -1, -1, 933, 34, 35, 36, 720, -1, -1, -1, + 941, 551, -1, -1, -1, 428, -1, -1, -1, 790, + 734, 792, -1, 54, 55, 56, 57, 440, 59, 60, + -1, -1, -1, -1, -1, 594, -1, -1, -1, -1, + -1, -1, -1, 269, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 133, 594, -1, -1, -1, -1, -1, + 140, -1, 833, -1, -1, -1, 837, -1, 133, -1, + -1, 842, 843, 269, -1, 140, 790, -1, 792, 110, + -1, -1, -1, -1, -1, -1, 9, -1, -1, -1, + -1, -1, -1, -1, -1, 126, -1, -1, -1, 130, + -1, 132, -1, 874, -1, 664, -1, 878, 551, -1, + -1, 34, 35, 36, 885, -1, -1, -1, -1, 833, + 891, 892, -1, 837, 664, 0, -1, -1, 842, 843, + 689, 54, 55, 56, 57, -1, 59, 60, 551, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 707, 689, + 709, 594, -1, -1, -1, 31, 32, 33, 929, -1, + 874, 720, 933, -1, 878, 0, -1, 707, -1, 709, + 941, 885, -1, 49, 50, 734, -1, 891, 892, -1, + 720, 594, 58, -1, -1, -1, 61, 110, -1, 269, + -1, 26, -1, -1, 734, -1, -1, -1, -1, -1, + -1, -1, 428, 126, -1, -1, -1, 130, -1, 132, + -1, -1, 47, -1, 440, 929, -1, -1, -1, 933, + -1, 664, 9, -1, -1, -1, 61, 941, -1, -1, + -1, 790, 428, 792, 110, 111, 112, 113, 114, 115, + 116, 117, 118, 0, 440, -1, 689, 34, 35, 36, + 790, 664, 792, -1, -1, -1, -1, -1, 133, -1, + -1, -1, -1, -1, 707, 140, 709, 54, 55, 56, + 57, -1, 59, 60, 833, -1, 689, 720, 837, -1, + -1, -1, -1, 842, 843, -1, -1, -1, -1, -1, + -1, 734, -1, 833, 707, -1, 709, 837, 133, -1, + -1, -1, 842, 843, 61, 140, -1, 720, -1, -1, + -1, 0, -1, -1, -1, 874, -1, -1, -1, 878, + -1, 734, -1, -1, -1, 551, 885, -1, -1, -1, + -1, -1, 891, 892, 874, -1, -1, -1, 878, -1, + -1, -1, -1, 130, -1, 885, -1, 790, 428, 792, + -1, 891, 892, -1, -1, 551, -1, -1, -1, 9, + 440, -1, -1, 428, -1, -1, 9, -1, 594, -1, + 929, -1, 61, -1, 933, 440, 133, 790, -1, 792, + -1, -1, 941, 140, 34, 35, 36, -1, -1, 929, + 833, 34, 35, 933, 837, -1, -1, -1, 594, 842, + 843, 941, -1, -1, 54, 55, 56, 57, -1, 59, + 60, 54, 55, 56, 57, -1, 59, 60, -1, -1, + 833, -1, -1, -1, 837, -1, -1, -1, -1, 842, + 843, 874, -1, -1, 269, 878, -1, -1, 664, -1, + -1, -1, 885, -1, 133, -1, -1, -1, 891, 892, + -1, 140, -1, -1, -1, -1, -1, -1, -1, -1, + 110, 874, -1, 689, -1, 878, -1, -1, 664, -1, + -1, 551, 885, -1, -1, -1, 126, -1, 891, 892, + 130, 707, 132, 709, -1, -1, 929, 130, -1, 132, + 933, -1, -1, 689, 720, -1, -1, -1, 941, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 734, 9, + -1, 707, -1, 709, 594, -1, 929, -1, -1, -1, + 933, -1, 9, -1, 720, -1, -1, -1, 941, 594, + -1, -1, -1, -1, 34, 35, 36, -1, 734, -1, + -1, -1, -1, -1, -1, -1, -1, 34, 35, 36, + -1, -1, -1, 428, 54, 55, 56, 57, -1, 59, + 60, -1, -1, -1, 790, 440, 792, 54, 55, 56, + 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 664, -1, -1, -1, -1, -1, + -1, -1, -1, 428, 790, -1, 792, -1, -1, 664, + -1, -1, -1, -1, -1, 440, -1, 833, -1, 689, + 110, 837, -1, -1, -1, -1, 842, 843, -1, -1, + -1, -1, -1, 110, 689, -1, 126, 707, -1, 709, + 130, -1, 132, -1, -1, -1, -1, 833, -1, 126, + 720, 837, 707, 130, 709, 132, 842, 843, 874, -1, + -1, -1, 878, -1, 734, 720, -1, -1, -1, 885, + -1, -1, -1, -1, -1, 891, 892, -1, -1, 734, + -1, 428, -1, -1, -1, -1, -1, -1, 874, -1, + -1, -1, 878, 440, -1, -1, -1, -1, -1, 885, + -1, -1, -1, -1, -1, 891, 892, -1, -1, -1, + -1, -1, -1, 929, -1, -1, -1, 933, -1, -1, + 790, -1, 792, -1, -1, 941, 551, -1, -1, 594, + -1, -1, -1, -1, -1, 790, -1, 792, -1, -1, + -1, -1, -1, 929, -1, 9, -1, 933, -1, 428, + -1, -1, -1, -1, -1, 941, -1, -1, -1, -1, + -1, 440, -1, 833, -1, -1, -1, 837, -1, 594, + 34, 35, 842, 843, -1, -1, -1, -1, 833, -1, + -1, -1, 837, -1, -1, -1, -1, 842, 843, -1, + 54, 55, 56, 57, -1, 59, 60, -1, -1, 664, + -1, -1, -1, -1, 874, -1, -1, -1, 878, -1, + -1, -1, -1, -1, -1, 885, -1, -1, -1, 874, + -1, 891, 892, 878, 689, -1, 0, 1, -1, -1, + 885, -1, -1, -1, -1, -1, 891, 892, -1, 664, + -1, -1, 707, -1, 709, -1, -1, 594, -1, -1, + -1, -1, -1, -1, -1, 720, -1, -1, -1, 929, + -1, -1, -1, 933, 689, -1, 130, -1, 132, 734, + -1, 941, -1, 9, 929, -1, -1, -1, 933, -1, + -1, -1, 707, -1, 709, -1, 941, 61, -1, -1, + -1, -1, -1, -1, -1, 720, -1, -1, 34, 35, + 36, -1, -1, -1, -1, -1, -1, -1, 9, 734, + -1, -1, -1, -1, -1, 594, -1, 664, 54, 55, + 56, 57, -1, 59, 60, 790, -1, 792, -1, -1, + -1, -1, -1, 34, 35, 36, -1, -1, -1, -1, + -1, -1, 689, -1, -1, 119, -1, -1, -1, -1, + -1, -1, -1, 54, 55, 56, 57, -1, 59, 60, + 707, -1, 709, -1, -1, 790, -1, 792, 833, -1, + -1, -1, 837, 720, 110, 149, -1, 842, 843, -1, + -1, -1, -1, -1, -1, 664, -1, 734, -1, -1, + 126, -1, -1, -1, 130, -1, 132, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 833, 874, + 689, -1, 837, 878, -1, -1, -1, 842, 843, -1, + 885, -1, -1, -1, -1, -1, 891, 892, 707, 130, + 709, 132, 9, -1, -1, -1, 210, -1, 212, -1, + -1, 720, -1, 790, 218, 792, -1, -1, -1, 874, + -1, -1, -1, 878, -1, 734, -1, 34, 35, 36, + 885, -1, -1, -1, 929, -1, 891, 892, 933, -1, + -1, -1, 246, -1, -1, 249, 941, 54, 55, 56, + 57, -1, 59, 60, -1, -1, 833, 261, -1, 9, + 837, -1, -1, -1, -1, 842, 843, -1, -1, -1, + -1, -1, -1, -1, 929, -1, -1, 281, 933, -1, + -1, 790, -1, 792, 34, 35, 941, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 874, -1, -1, + -1, 878, -1, -1, 54, 55, 56, 57, 885, 59, + 60, -1, -1, -1, 891, 892, -1, -1, -1, -1, + -1, -1, -1, 130, 833, 132, -1, -1, 837, 14, + 15, 16, -1, 842, 843, -1, -1, -1, -1, -1, + -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 929, -1, -1, 40, 933, 42, 43, -1, + -1, -1, 47, -1, 941, 874, -1, -1, -1, 878, + -1, -1, -1, -1, 59, -1, 885, -1, -1, -1, + 130, -1, 891, 892, -1, 70, -1, 72, -1, 74, + 75, -1, 77, -1, 79, -1, 81, -1, 83, -1, + 85, -1, 87, -1, 89, -1, 91, 411, 93, 94, + -1, -1, -1, 98, -1, 9, 101, -1, -1, 104, + 929, 106, -1, -1, 933, -1, 9, -1, -1, -1, + -1, -1, 941, -1, -1, 439, -1, 122, -1, 124, + 34, 35, 36, 447, -1, -1, 450, -1, 452, -1, + -1, 34, 35, 36, 9, -1, -1, -1, -1, -1, + 54, 55, 56, 57, -1, 59, 60, 152, 153, -1, + -1, 54, 55, 56, 57, -1, 59, 60, -1, 34, + 35, 36, -1, -1, -1, -1, -1, 172, -1, -1, + -1, -1, -1, -1, -1, -1, 500, -1, 502, 54, + 55, 56, 57, -1, 59, 60, -1, -1, -1, 513, + -1, -1, -1, -1, -1, -1, 520, -1, -1, 523, + 524, -1, 526, -1, -1, 529, -1, -1, -1, -1, + 215, -1, 536, -1, 219, -1, 130, -1, 132, -1, + -1, -1, -1, -1, -1, -1, -1, 130, 552, 132, + 235, 236, 237, -1, -1, -1, -1, -1, -1, -1, + -1, 246, -1, -1, -1, -1, -1, 252, 253, -1, + -1, 5, -1, 7, 8, 130, 10, 11, 12, 13, + 265, -1, -1, -1, 269, 19, 20, 21, 22, 23, + 24, -1, 26, -1, -1, -1, 30, -1, -1, -1, + -1, 605, 287, 288, -1, -1, -1, -1, 42, -1, + 44, -1, -1, 47, 48, -1, -1, 51, 52, 53, + -1, -1, -1, -1, -1, -1, -1, 61, -1, -1, + -1, -1, 10, -1, -1, -1, 70, -1, 72, 73, + -1, -1, 20, 21, -1, -1, -1, -1, 652, -1, + 84, -1, -1, -1, -1, -1, 660, -1, 662, -1, + -1, 95, 96, -1, -1, 99, 670, -1, -1, -1, + 104, 105, 50, -1, 108, 9, -1, -1, -1, 57, + 58, -1, 9, -1, -1, -1, 690, 121, -1, 374, + -1, 695, 126, 697, 128, -1, 130, -1, -1, -1, + 34, 35, 36, -1, -1, 390, 710, 34, 35, 713, + 714, 715, -1, -1, -1, 719, -1, -1, 722, -1, + 54, 55, 56, 57, -1, 59, 60, 54, 55, 56, + 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, + -1, -1, 746, -1, -1, -1, -1, 74, 75, 76, + 77, 78, 79, 80, 81, 82, -1, -1, 136, -1, + 87, 88, 89, 90, 91, 92, 93, 94, -1, 147, + -1, -1, -1, -1, -1, -1, 154, 462, -1, -1, + 784, -1, -1, 161, -1, 9, 471, 791, -1, -1, + 794, -1, 170, 171, -1, -1, 130, -1, 132, -1, + -1, -1, -1, 130, -1, 132, -1, -1, -1, -1, + 34, 35, 36, 817, -1, -1, -1, -1, 503, -1, + 505, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 54, 55, 56, 57, -1, 59, 60, -1, -1, -1, + 844, -1, -1, 528, -1, -1, -1, -1, 852, 853, + -1, -1, -1, -1, 858, -1, 541, -1, -1, -1, + -1, 239, -1, -1, 868, 869, 551, -1, 872, 554, + -1, 875, 876, -1, -1, 253, -1, -1, 9, -1, + -1, -1, 260, -1, -1, 263, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 110, -1, -1, 435, 716, -1, 718, 697, -1, - 602, -1, -1, -1, -1, 0, 447, 126, 729, -1, - -1, 130, -1, 132, -1, -1, 938, 716, 132, 718, - 942, -1, 743, -1, -1, 139, -1, -1, 950, -1, - 729, 26, -1, -1, -1, -1, -1, -1, -1, -1, - 132, -1, 9, -1, 743, -1, -1, 139, -1, -1, - -1, -1, 47, -1, -1, -1, -1, -1, 269, -1, - 9, -1, -1, 435, -1, -1, 61, 34, 35, 36, - 672, -1, -1, -1, -1, 447, -1, -1, 799, -1, - 801, -1, -1, -1, -1, 34, 35, 54, 55, 56, - 57, -1, 59, 60, -1, 697, -1, -1, -1, -1, - 799, -1, 801, -1, -1, 54, 55, 56, 57, -1, - 59, 60, -1, -1, 716, -1, 718, 558, -1, -1, - -1, 842, -1, -1, 9, 846, -1, 729, -1, -1, - 851, 852, -1, -1, -1, -1, -1, 132, -1, -1, - -1, 743, -1, 842, 139, -1, -1, 846, -1, 34, - 35, 36, 851, 852, -1, 269, -1, -1, -1, 126, - -1, 602, 883, 130, -1, 132, 887, -1, -1, 54, - 55, 56, 57, 894, 59, 60, -1, 269, -1, 900, - 901, 130, -1, 132, 883, -1, 558, -1, 887, -1, - -1, -1, -1, -1, -1, 894, -1, 799, -1, 801, - -1, 900, 901, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 938, -1, -1, - -1, 942, -1, -1, 435, -1, -1, -1, -1, 950, - 602, 672, -1, -1, -1, 0, 447, -1, -1, 938, - 842, -1, -1, 942, 846, 130, -1, 132, -1, 851, - 852, 950, -1, -1, -1, -1, 697, 0, -1, -1, - -1, 26, -1, -1, 9, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 269, 716, -1, 718, -1, -1, - -1, 883, 47, 26, -1, 887, -1, -1, 729, 34, - 35, 36, 894, -1, -1, -1, 61, -1, 900, 901, - 672, -1, 743, -1, 47, -1, -1, -1, -1, 54, - 55, 56, 57, -1, 59, 60, -1, -1, 61, -1, - -1, 435, -1, -1, -1, 697, -1, -1, -1, -1, - -1, -1, -1, 447, -1, -1, 938, -1, -1, -1, - 942, -1, -1, 435, 716, -1, 718, 558, 950, -1, - -1, -1, 9, -1, -1, 447, -1, 729, 799, -1, - 801, -1, -1, -1, -1, -1, -1, 132, -1, -1, - -1, 743, -1, -1, 139, -1, -1, 34, 35, 36, - -1, -1, -1, -1, -1, 130, -1, 132, 0, 132, - -1, 602, -1, -1, -1, -1, 139, 54, 55, 56, - 57, 842, 59, 60, -1, 846, -1, -1, -1, -1, - 851, 852, -1, -1, 26, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 799, -1, 801, - -1, -1, -1, -1, -1, 47, -1, -1, -1, -1, - 435, -1, 883, -1, 558, -1, 887, -1, -1, 61, - -1, -1, 447, 894, -1, -1, -1, -1, -1, 900, - 901, 672, -1, -1, -1, -1, 558, -1, -1, -1, - 842, -1, -1, 130, 846, 132, -1, -1, -1, 851, - 852, -1, -1, -1, -1, -1, 697, -1, 602, -1, - -1, 9, -1, 0, -1, -1, -1, 938, 9, -1, - -1, 942, -1, -1, 269, 716, -1, 718, -1, 950, - 602, 883, -1, -1, -1, 887, 34, 35, 729, 26, - 132, -1, 894, 34, 35, 36, 269, 139, 900, 901, - -1, -1, 743, -1, -1, -1, 54, 55, 56, 57, - 47, 59, 60, 54, 55, 56, 57, -1, 59, 60, - 9, -1, -1, -1, 61, -1, -1, -1, 672, -1, - -1, 0, -1, 558, -1, -1, 938, -1, -1, -1, - 942, -1, -1, -1, -1, 34, 35, 36, 950, -1, - 672, -1, -1, 697, -1, -1, -1, -1, 799, -1, - 801, -1, -1, -1, -1, 54, 55, 56, 57, -1, - 59, 60, 716, -1, 718, 697, -1, 602, -1, -1, - -1, -1, 130, -1, 132, 729, -1, -1, -1, 130, - -1, 132, 61, -1, 716, 132, 718, -1, -1, 743, - -1, 842, 139, -1, -1, 846, -1, 729, -1, -1, - 851, 852, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 743, -1, -1, -1, -1, -1, 269, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, - 435, 130, 883, 132, -1, -1, 887, 672, -1, -1, - -1, 0, 447, 894, -1, 799, -1, 801, -1, 900, - 901, -1, 435, 132, 34, 35, 36, -1, -1, -1, - 139, -1, 697, -1, 447, -1, -1, 799, -1, 801, - -1, -1, -1, -1, 54, 55, 56, 57, -1, 59, - 60, 716, -1, 718, -1, -1, -1, 938, 842, -1, - -1, 942, 846, -1, 729, -1, -1, 851, 852, 950, - -1, -1, 61, -1, -1, -1, -1, -1, 743, -1, - 842, -1, -1, -1, 846, -1, -1, 0, -1, 851, - 852, -1, 269, -1, -1, -1, -1, -1, -1, 883, - -1, -1, -1, 887, -1, -1, -1, -1, -1, -1, - 894, -1, -1, -1, -1, -1, 900, 901, -1, -1, - 130, 883, -1, 558, 27, 887, -1, -1, 31, 32, - 33, -1, 894, -1, 799, -1, 801, -1, 900, 901, - -1, -1, -1, 132, -1, 558, 49, 50, 61, -1, - 139, -1, -1, 435, 938, 58, -1, -1, 942, -1, - -1, -1, -1, -1, -1, 447, 950, 602, -1, -1, - -1, -1, -1, -1, -1, -1, 938, 842, -1, -1, - 942, 846, -1, -1, -1, -1, 851, 852, 950, 602, - -1, -1, 0, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, - 113, 114, 115, 116, 117, 118, -1, -1, 883, 132, - -1, -1, 887, -1, -1, -1, 139, -1, -1, 894, - -1, -1, -1, -1, -1, 900, 901, 672, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 61, -1, -1, -1, -1, 435, 672, - -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, - 447, -1, -1, 938, -1, -1, 558, 942, -1, -1, - -1, 716, -1, 718, 697, 950, -1, -1, -1, 9, - -1, -1, -1, -1, 729, -1, -1, -1, -1, -1, - -1, -1, -1, 716, -1, 718, -1, -1, 743, -1, - -1, -1, -1, -1, 34, 35, 729, -1, -1, -1, - 602, -1, -1, -1, 132, -1, 435, -1, -1, -1, - 743, 139, -1, -1, 54, 55, 56, 57, 447, 59, - 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 74, 75, 76, 77, 78, 79, - 80, 81, 82, -1, 799, -1, 801, 87, 88, 89, - 90, 91, 92, 93, 94, -1, -1, -1, -1, -1, - -1, 558, -1, -1, -1, -1, 799, -1, 801, -1, - 672, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 842, -1, -1, - 130, 846, 132, -1, -1, 697, 851, 852, -1, -1, - -1, -1, -1, -1, -1, 602, -1, -1, -1, 842, - -1, -1, -1, 846, 716, -1, 718, -1, 851, 852, - -1, -1, -1, -1, -1, -1, 435, 729, 883, -1, - -1, -1, 887, -1, -1, -1, -1, -1, 447, 894, - -1, 743, -1, -1, -1, 900, 901, -1, -1, -1, - 883, -1, -1, -1, 887, -1, -1, -1, -1, -1, - -1, 894, -1, -1, -1, -1, -1, 900, 901, -1, - -1, -1, -1, 602, -1, 672, -1, -1, -1, -1, - -1, -1, -1, 938, -1, -1, -1, 942, -1, -1, - -1, -1, -1, -1, -1, 950, -1, 799, -1, 801, - 697, -1, 435, -1, -1, 938, -1, -1, -1, 942, - -1, -1, -1, -1, 447, -1, -1, 950, -1, 716, - -1, 718, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 729, -1, -1, -1, -1, -1, -1, -1, - 842, -1, -1, 672, 846, -1, 743, -1, -1, 851, - 852, -1, -1, -1, -1, -1, -1, 74, 75, 76, - 77, 78, 79, 80, 81, 82, -1, -1, 697, -1, - 87, 88, 89, 90, 91, 92, 93, 94, -1, -1, - -1, 883, -1, -1, -1, 887, -1, 716, -1, 718, - 27, 28, 894, 602, 31, 32, 33, -1, 900, 901, - 729, -1, 799, -1, 801, -1, -1, 435, -1, -1, - -1, -1, 49, 50, 743, 132, -1, -1, -1, 447, - -1, 58, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 938, -1, -1, -1, - 942, -1, -1, -1, -1, 842, -1, -1, 950, 846, - -1, -1, -1, -1, 851, 852, -1, -1, -1, -1, - -1, -1, -1, 672, -1, -1, -1, -1, -1, 602, - 799, -1, 801, 110, 111, 112, 113, 114, 115, 116, - 117, 118, -1, -1, -1, -1, 883, -1, 697, -1, - 887, -1, -1, -1, -1, -1, -1, 894, -1, -1, - -1, -1, -1, 900, 901, -1, -1, 716, -1, 718, - -1, -1, -1, 842, -1, -1, -1, 846, -1, -1, - 729, -1, 851, 852, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 743, -1, -1, -1, -1, 672, - -1, 938, -1, -1, -1, 942, -1, -1, -1, -1, - -1, -1, -1, 950, 883, -1, -1, -1, 887, -1, - -1, -1, -1, -1, 697, 894, -1, -1, -1, -1, - -1, 900, 901, -1, 602, -1, -1, -1, -1, -1, - -1, -1, -1, 716, -1, 718, -1, -1, -1, -1, - 799, -1, 801, -1, -1, -1, 729, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 938, - 743, -1, -1, 942, -1, -1, -1, -1, -1, -1, - -1, 950, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 842, -1, -1, -1, 846, -1, -1, - -1, -1, 851, 852, 672, 74, 75, 76, 77, 78, - 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, - 89, 90, 91, 92, 93, 94, 799, -1, 801, 697, - -1, -1, -1, -1, 883, -1, -1, -1, 887, -1, - -1, -1, -1, -1, -1, 894, -1, -1, 716, -1, - 718, 900, 901, -1, 27, 28, -1, 126, 31, 32, - 33, 729, -1, -1, -1, -1, -1, -1, -1, 842, - -1, -1, -1, 846, -1, 743, 49, 50, 851, 852, - -1, -1, -1, -1, -1, 58, -1, -1, -1, 938, - -1, -1, -1, 942, -1, -1, -1, -1, -1, -1, - -1, 950, -1, -1, -1, -1, -1, -1, -1, -1, - 883, -1, -1, -1, 887, -1, -1, -1, -1, -1, - -1, 894, -1, -1, -1, -1, -1, 900, 901, -1, - -1, 799, -1, 801, 14, 15, 16, 110, 111, 112, - 113, 114, 115, 116, 117, 118, 26, -1, -1, -1, - -1, -1, 125, -1, -1, -1, -1, -1, -1, -1, - 40, -1, 42, 43, -1, 938, -1, 47, -1, 942, - -1, -1, -1, -1, 842, -1, -1, 950, 846, 59, - -1, -1, -1, 851, 852, -1, -1, -1, -1, -1, - 70, -1, 72, -1, 74, 75, -1, 77, -1, 79, - -1, 81, -1, 83, -1, 85, -1, 87, -1, 89, - -1, 91, 92, 93, -1, 883, -1, 97, -1, 887, - 100, -1, -1, 103, -1, 105, 894, -1, -1, -1, - -1, -1, 900, 901, -1, -1, -1, -1, -1, -1, - -1, 121, -1, 123, -1, -1, -1, -1, 74, 75, - 76, 77, 78, 79, 80, 81, 82, -1, 0, 1, - -1, 87, 88, 89, 90, 91, 92, 93, 94, -1, - 938, 151, 152, -1, 942, -1, -1, -1, 5, -1, - 7, 8, 950, 10, 11, 12, 13, -1, -1, -1, - -1, 171, 19, 20, 21, 22, 23, 24, -1, 26, - 126, -1, 29, 30, -1, -1, -1, 34, 35, -1, - -1, -1, -1, -1, -1, 42, -1, 44, -1, 61, - 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, - -1, -1, -1, 213, 61, -1, -1, 217, -1, -1, - -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, - -1, -1, -1, 233, 234, 235, -1, 84, -1, -1, - -1, -1, -1, -1, 244, -1, -1, -1, 95, 96, - 250, 251, 99, -1, -1, -1, 118, 104, 105, 106, - 107, 108, -1, -1, -1, 265, -1, 114, 115, 269, - -1, -1, -1, -1, 121, 122, -1, -1, -1, 126, - -1, 128, -1, 130, -1, -1, 148, -1, 288, 289, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, 68, 69, -1, 71, -1, - 73, -1, -1, 76, -1, 78, -1, 80, -1, -1, - -1, 84, -1, 86, -1, -1, -1, 90, -1, -1, - -1, 94, 95, -1, -1, -1, 99, -1, 101, -1, - -1, 104, -1, -1, -1, -1, 208, -1, 210, -1, - -1, -1, -1, -1, 216, -1, 119, 120, -1, 122, - -1, 27, 28, -1, -1, 31, 32, 33, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 381, 244, 49, 50, 247, -1, -1, -1, -1, - -1, -1, 58, -1, -1, -1, -1, 397, -1, 261, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 172, - 173, 174, 175, 176, 177, 178, 179, -1, 181, 182, - 282, 184, 185, 186, -1, 188, -1, 190, 191, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 203, 107, 205, 206, 110, 111, 112, 113, 114, 115, - 116, 117, 118, -1, -1, -1, -1, -1, 221, 222, - 223, -1, 225, 226, 227, -1, -1, 230, 231, 469, - -1, -1, -1, -1, -1, -1, -1, -1, 478, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 255, 256, 257, -1, -1, -1, -1, 5, - -1, 7, 8, -1, 10, 11, 12, 13, -1, -1, - 510, -1, 512, 19, 20, 21, 22, 23, 24, -1, - 26, -1, -1, -1, 30, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 535, 42, -1, 44, -1, - -1, 47, 48, -1, -1, 51, 52, 53, 548, -1, - -1, -1, -1, -1, -1, 61, 418, -1, 558, -1, - -1, 561, -1, -1, 70, -1, 72, 73, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, - -1, -1, -1, -1, 446, -1, -1, -1, 351, 95, - 96, -1, 454, 99, 10, 457, -1, 459, 104, 105, - -1, -1, 108, -1, 20, 21, -1, -1, -1, 609, - 610, -1, -1, -1, -1, 121, -1, -1, -1, -1, - 126, -1, 128, -1, 130, -1, -1, -1, -1, 629, - -1, -1, -1, -1, 50, -1, -1, -1, -1, -1, - -1, 57, 58, -1, -1, 507, -1, 509, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 520, 659, - -1, -1, 662, -1, -1, 527, 666, 667, 530, 531, - -1, 533, -1, -1, 536, -1, 676, -1, 678, -1, - -1, 543, 682, 683, -1, -1, -1, -1, 688, -1, - 690, 691, -1, -1, -1, -1, -1, 559, -1, 5, - -1, -1, -1, -1, -1, 11, 12, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 22, 23, 24, 135, - 26, -1, -1, -1, 30, -1, -1, -1, -1, -1, - 146, -1, -1, -1, -1, -1, 42, 153, 44, -1, - -1, 47, 48, -1, 160, -1, 52, 53, -1, -1, - -1, 613, -1, 169, 170, 61, 756, 757, -1, -1, - -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, - -1, -1, -1, 783, -1, 785, -1, -1, -1, 95, - -1, 554, -1, 99, 794, -1, 796, -1, 660, -1, - -1, -1, 108, -1, 567, -1, 668, 570, 670, -1, - -1, -1, -1, -1, -1, 121, 678, 817, -1, -1, - 126, 237, 822, -1, -1, 825, -1, -1, 828, -1, - -1, -1, -1, -1, -1, 251, 698, -1, -1, -1, - -1, 703, -1, 705, 260, -1, -1, 263, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 719, -1, 859, - 722, 723, 724, -1, -1, -1, 728, -1, 868, 731, - -1, 871, -1, -1, -1, -1, 292, -1, -1, 879, - -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, - -1, -1, -1, 755, 87, 88, 89, 90, 91, 92, - 93, 94, -1, -1, -1, -1, -1, 5, -1, -1, - 910, -1, -1, 11, 12, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 22, 23, 24, -1, 26, -1, - -1, 793, 30, 126, -1, -1, -1, -1, 800, -1, - -1, 803, -1, -1, 42, -1, 44, -1, -1, 47, - 48, -1, -1, -1, 52, 53, -1, 957, 958, -1, - -1, 27, 28, 61, 826, 31, 32, 33, -1, -1, - -1, 387, -1, -1, 390, 391, 392, 393, 394, 395, - 396, -1, -1, 49, 50, -1, 84, -1, 404, -1, - -1, 853, 58, -1, -1, -1, -1, 95, -1, 861, - 862, 99, -1, -1, -1, 867, -1, -1, -1, -1, - 108, -1, -1, -1, -1, 877, 878, -1, -1, 881, - -1, -1, 884, 885, -1, 123, 124, -1, -1, -1, - -1, -1, 27, 28, -1, -1, 31, 32, 33, -1, - -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, - 116, 117, 118, -1, 49, 50, -1, 123, 124, -1, - -1, -1, 924, 58, -1, 927, -1, -1, -1, -1, - -1, -1, -1, 489, 490, 491, 492, 493, 494, 495, - 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, - 506, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 523, -1, -1, - -1, -1, 107, 529, -1, 110, 111, 112, 113, 114, - 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, - -1, -1, 548, -1, -1, -1, -1, -1, -1, -1, - -1, 557, -1, 5, -1, 7, 8, -1, 10, 11, - 12, 13, -1, -1, -1, 571, -1, 19, 20, 21, - 22, 23, 24, -1, 26, -1, -1, 29, 30, 585, - -1, -1, 34, 35, -1, -1, -1, -1, -1, -1, - 42, -1, 44, -1, -1, 47, 48, -1, 604, 51, - 52, 53, -1, -1, -1, -1, 612, -1, -1, 61, - -1, -1, -1, -1, 620, -1, -1, -1, 70, 625, - 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, - -1, -1, 104, 105, -1, -1, 108, -1, -1, -1, - -1, -1, 114, 115, -1, -1, -1, -1, -1, 121, - 122, -1, -1, 125, 126, -1, 128, -1, 130, -1, - 5, -1, -1, -1, 690, -1, 11, 12, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 22, 23, 24, - -1, 26, -1, -1, 710, 30, -1, -1, 714, -1, - -1, -1, -1, -1, 720, -1, -1, 42, -1, 44, - 726, -1, 47, 48, -1, -1, 732, 52, 53, -1, - -1, -1, -1, 739, -1, -1, 61, -1, 744, -1, - -1, -1, 0, 1, -1, 3, 4, 5, 6, 7, - 8, -1, 10, 11, 12, 13, 14, -1, -1, 84, - -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, - 95, 777, 30, -1, 99, -1, 34, 35, -1, 37, - -1, 106, -1, 108, 42, 43, 44, 45, -1, 47, - 48, -1, -1, 51, 52, 53, -1, 122, -1, -1, - 806, -1, 808, 61, 62, 63, -1, 813, -1, -1, - 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, - -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, - 98, 99, 100, -1, 102, -1, 104, 105, -1, -1, - 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, - 128, -1, 130, 0, 1, -1, 3, 4, 5, 6, - 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, - 896, -1, 19, 20, 21, 22, 23, 24, 25, 26, - -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, - 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, - 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, - -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, - -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, - -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, - 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, - -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, - -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, - -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, + -1, -1, -1, 34, 35, 36, 130, -1, 132, -1, + -1, 915, -1, 291, 918, -1, 601, 602, -1, -1, + -1, -1, -1, 54, 55, 56, 57, -1, 59, 60, + -1, -1, -1, -1, -1, -1, 621, -1, -1, -1, + -1, -1, -1, 74, 75, 76, 77, 78, 79, 80, + 81, 82, -1, -1, -1, -1, 87, 88, 89, 90, + 91, 92, 93, 94, -1, -1, 651, -1, -1, 654, + -1, -1, -1, 658, 659, -1, -1, -1, -1, -1, + -1, -1, -1, 668, -1, 670, -1, -1, -1, 674, + 675, -1, 123, 124, 125, 680, -1, 682, 683, 130, + -1, 132, 380, -1, -1, 383, 384, 385, 386, 387, + 388, 389, -1, -1, -1, -1, -1, -1, -1, 397, + 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, + -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, + 94, 67, 68, 69, -1, 71, -1, 73, -1, -1, + 76, -1, 78, -1, 80, -1, -1, -1, 84, -1, + 86, -1, 747, 748, -1, -1, 92, -1, -1, -1, + 96, -1, -1, -1, 100, -1, 102, -1, 132, 105, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 774, + -1, 776, -1, -1, 120, 121, -1, 123, -1, -1, + 785, -1, 787, -1, 482, 483, 484, 485, 486, 487, + 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, + 498, 499, -1, 808, -1, -1, -1, -1, 813, -1, + -1, 816, -1, -1, 819, -1, -1, -1, 516, -1, + -1, -1, -1, -1, 522, -1, -1, 173, 174, 175, + 176, 177, 178, 179, 180, -1, 182, 183, -1, -1, + 186, -1, 188, 541, 190, 850, 192, 193, -1, -1, + -1, -1, 550, -1, 859, -1, -1, 862, -1, 205, + -1, 207, 208, -1, -1, 870, 564, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 225, + 578, 227, 228, 229, -1, -1, 232, 233, -1, -1, + -1, -1, -1, -1, -1, -1, 901, -1, 596, -1, + -1, -1, -1, -1, -1, -1, 604, -1, -1, -1, + -1, 257, -1, -1, 612, 5, -1, 7, 8, 617, + 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, + 20, 21, 22, 23, 24, -1, 26, -1, -1, -1, + 30, -1, -1, 948, 949, -1, -1, -1, -1, -1, + -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, + -1, -1, 52, 53, -1, -1, -1, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, 72, 73, 682, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, + 346, -1, -1, -1, 702, 95, 96, 705, -1, 99, + -1, -1, -1, 711, -1, -1, -1, -1, 108, 717, + -1, -1, -1, -1, -1, 723, -1, -1, -1, -1, + -1, 121, 730, -1, -1, -1, 126, 735, 128, -1, + -1, 0, 1, -1, 3, 4, 5, 6, 7, 8, + -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, - -1, 30, -1, -1, -1, 34, 35, -1, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, - -1, -1, 61, 62, 63, 64, 65, 66, 67, 68, - -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, - -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, - 99, 100, 101, 102, 103, 104, 105, -1, -1, 108, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, - 129, 130, 1, -1, 3, 4, 5, 6, 7, 8, - -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, - 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, - -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, + 768, 30, -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, - -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, - -1, -1, 61, 62, 63, 64, 65, 66, 67, 68, + -1, -1, 51, 52, 53, -1, -1, -1, -1, 797, + -1, 799, 61, 62, 63, -1, 804, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, - 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, - 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, + -1, 130, -1, -1, -1, -1, -1, -1, 74, 75, + 76, 77, 78, 79, 80, 81, 82, -1, -1, 887, + -1, 87, 88, 89, 90, 91, 92, 93, 94, 0, + 1, 547, 3, 4, 5, 6, 7, 8, -1, 10, + 11, 12, 13, 14, -1, -1, -1, 563, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, - -1, -1, -1, 34, 35, -1, 37, 38, 39, 40, + 126, -1, -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, @@ -3068,15 +2947,28 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, - 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, - -1, 34, 35, -1, 37, 38, 39, -1, -1, 42, - 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, + -1, 34, 35, -1, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, - 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, + 63, 64, 65, 66, 67, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, 101, 102, + 103, 104, 105, -1, -1, 108, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, + 123, 124, -1, 126, -1, 128, 129, 130, 1, -1, + 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, + 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, + 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, + 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, + 63, 64, 65, 66, 67, 68, -1, 70, 71, 72, + 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, @@ -3106,10 +2998,10 @@ static const yytype_int16 yycheck[] = -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, - -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, + -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, - -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, - -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, + -1, 30, -1, -1, -1, 34, 35, -1, 37, 38, + 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, @@ -3121,84 +3013,20 @@ static const yytype_int16 yycheck[] = 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, - -1, -1, -1, 34, 35, -1, 37, 38, 39, 40, + -1, -1, -1, 34, 35, -1, 37, 38, 39, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, - -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, + 101, 102, -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, - 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, - -1, 34, 35, -1, 37, 38, 39, -1, -1, 42, - 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, - 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, - 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, - 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, - -1, -1, 95, 96, 97, 98, 99, 100, 101, 102, - -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, - 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, - 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, - -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, - 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, - 35, -1, 37, -1, 39, 40, -1, 42, 43, 44, - 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, - -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, - -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, - 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, - 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, - 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, - -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, - 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, - 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, - -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, - 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, - 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, - -1, -1, -1, -1, 61, 62, 63, -1, -1, 66, - 67, 68, -1, 70, 71, 72, 73, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, - -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, - 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, - -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, - -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, - -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, - 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, - -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, - -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, - -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, - -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, - -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, - -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, - 99, 100, -1, 102, 103, 104, 105, -1, -1, 108, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, - 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, - 11, 12, 13, 14, -1, -1, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, - -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, - -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, - 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, - 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, - 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, - -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, - -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, - 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, - 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, - 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, - -1, 34, 35, -1, 37, -1, -1, -1, 41, 42, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, @@ -3211,8 +3039,8 @@ static const yytype_int16 yycheck[] = 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, - 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, - 45, 46, 47, 48, -1, -1, 51, 52, 53, -1, + 35, -1, 37, 38, 39, 40, -1, 42, 43, 44, + 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, @@ -3224,20 +3052,20 @@ static const yytype_int16 yycheck[] = 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, - 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, + 37, 38, 39, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, - 67, 68, -1, 70, 71, 72, 73, -1, -1, -1, + -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, - 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, + 97, 98, 99, 100, 101, 102, -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, - -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, + -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, - -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, + 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, @@ -3246,7 +3074,109 @@ static const yytype_int16 yycheck[] = 99, 100, -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, - 129, 130, 5, -1, 7, 8, -1, 10, 11, 12, + 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, + 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, + 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, + -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, + -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, + 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, + 61, 62, 63, -1, -1, 66, 67, 68, -1, 70, + 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, + -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, + -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, + 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, + 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, + 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, + 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, + 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, + 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, + 103, 104, 105, -1, -1, 108, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, + 123, 124, -1, 126, -1, 128, 1, 130, 3, 4, + 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, + -1, -1, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, + 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, + 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, + -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, + -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, + 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, + 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, + 105, -1, -1, 108, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 121, -1, 123, 124, + -1, 126, -1, 128, 1, 130, 3, 4, 5, 6, + 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, + 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, + -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, + 37, -1, -1, -1, 41, 42, 43, 44, 45, -1, + 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, + -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, + -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, + -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, + 97, 98, 99, 100, -1, 102, -1, 104, 105, -1, + -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 121, -1, 123, 124, -1, 126, + -1, 128, 1, 130, 3, 4, 5, 6, 7, 8, + -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, + 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, + -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, + -1, -1, -1, 42, 43, 44, 45, 46, 47, 48, + -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, + -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, + -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, + -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, + 99, 100, -1, 102, -1, 104, 105, -1, -1, 108, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 121, -1, 123, 124, -1, 126, -1, 128, + 1, 130, 3, 4, 5, 6, 7, 8, -1, 10, + 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, + 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, + -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, + -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, + 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, + 61, 62, 63, -1, -1, -1, 67, 68, -1, 70, + 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, + -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, + -1, 102, -1, 104, 105, -1, -1, 108, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 121, -1, 123, 124, -1, 126, -1, 128, 1, 130, + 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, + 13, 14, -1, -1, -1, -1, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, + 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, + 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, + 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, + 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, + -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, + 123, 124, -1, 126, -1, 128, 129, 130, 5, -1, + 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, + -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, + -1, -1, 29, 30, -1, -1, -1, 34, 35, -1, + -1, -1, -1, -1, -1, 42, -1, 44, -1, -1, + 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, + -1, -1, -1, -1, 61, -1, -1, -1, -1, -1, + -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, + -1, -1, 99, -1, -1, -1, -1, 104, 105, 106, + 107, 108, -1, -1, -1, -1, -1, 114, 115, -1, + -1, -1, -1, -1, 121, 122, -1, -1, -1, 126, + -1, 128, 5, 130, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, 29, 30, -1, -1, -1, 34, 35, -1, -1, -1, -1, -1, -1, 42, @@ -3256,9 +3186,9 @@ static const yytype_int16 yycheck[] = 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, - -1, 104, 105, 106, -1, 108, -1, -1, -1, -1, + -1, 104, 105, -1, -1, 108, -1, -1, -1, -1, -1, 114, 115, -1, -1, -1, -1, -1, 121, 122, - -1, -1, -1, 126, -1, 128, 5, 130, 7, 8, + -1, -1, 125, 126, -1, 128, 5, 130, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, 29, 30, -1, -1, -1, 34, 35, -1, -1, -1, @@ -3281,7 +3211,7 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, -1, 104, - 105, -1, -1, 108, -1, -1, -1, -1, -1, 114, + 105, 106, -1, 108, -1, -1, -1, -1, -1, 114, 115, -1, -1, -1, -1, -1, 121, 122, -1, -1, -1, 126, -1, 128, 5, 130, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, @@ -3323,34 +3253,24 @@ static const yytype_int16 yycheck[] = -1, -1, -1, 126, -1, 128, 5, 130, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, - -1, 30, -1, -1, -1, -1, -1, -1, -1, -1, + 29, 30, -1, -1, -1, 34, 35, -1, -1, -1, -1, -1, -1, 42, -1, 44, -1, -1, 47, 48, - -1, -1, -1, 52, 53, -1, -1, -1, -1, -1, - -1, -1, 61, -1, -1, 9, -1, -1, -1, -1, + -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, + -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, - 34, 35, 36, -1, -1, -1, 95, 96, -1, -1, - 99, -1, -1, -1, -1, -1, -1, -1, -1, 108, - 54, 55, 56, 57, -1, 59, 60, -1, -1, -1, - -1, -1, 121, -1, -1, -1, 9, 126, -1, 128, - 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, - -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, - 94, 34, 35, 36, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 54, 55, 56, 57, -1, 59, 60, -1, 123, - 124, 125, -1, -1, -1, -1, 130, 9, 132, -1, - -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, - -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, - 93, 94, 34, 35, 36, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 54, 55, 56, 57, -1, 59, 60, -1, - -1, -1, -1, 126, -1, -1, -1, 130, 9, 132, + -1, -1, -1, -1, -1, 84, -1, 9, -1, -1, + -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, + 99, -1, -1, -1, -1, 104, 105, -1, -1, 108, + -1, -1, 34, 35, 36, 114, 115, -1, -1, -1, + -1, -1, 121, 122, -1, -1, -1, 126, -1, 128, + -1, 130, 54, 55, 56, 57, -1, 59, 60, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 9, -1, -1, -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, 59, 60, - -1, -1, -1, -1, -1, -1, -1, -1, 130, 9, + -1, -1, -1, -1, 126, -1, -1, -1, 130, 9, 132, -1, -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, 34, 35, 36, -1, -1, -1, @@ -3363,52 +3283,67 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, -1, -1, - 130, -1, 132, -1, -1, 74, 75, 76, 77, 78, + 130, 9, 132, -1, -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, - 89, 90, 91, 92, 93, 94, -1, 5, -1, -1, - -1, -1, -1, 11, 12, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 22, 23, 24, -1, 26, -1, - -1, -1, 30, -1, -1, -1, -1, -1, -1, -1, - -1, 130, -1, 132, 42, -1, 44, -1, -1, 47, - 48, 5, -1, -1, 52, 53, -1, 11, 12, -1, - -1, -1, -1, 61, -1, -1, -1, -1, 22, 23, + 89, 90, 91, 92, 93, 94, 34, 35, 36, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, + -1, 59, 60, -1, -1, -1, -1, -1, -1, -1, + -1, 130, -1, 132, -1, -1, 74, 75, 76, 77, + 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, + 88, 89, 90, 91, 92, 93, 94, -1, 5, -1, + -1, -1, -1, -1, 11, 12, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 22, 23, 24, -1, 26, + -1, -1, -1, 30, -1, -1, -1, -1, -1, -1, + -1, -1, 130, -1, 132, 42, -1, 44, -1, -1, + 47, 48, 5, -1, -1, 52, 53, -1, 11, 12, + -1, -1, -1, -1, 61, -1, -1, -1, -1, 22, + 23, 24, -1, 26, -1, 72, 73, 30, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 84, -1, 42, + -1, 44, -1, -1, 47, 48, -1, 5, 95, 52, + 53, -1, 99, 11, 12, -1, -1, -1, 61, -1, + -1, 108, -1, -1, 22, 23, 24, -1, 26, -1, + -1, -1, 30, -1, 121, -1, -1, -1, -1, 126, + -1, 84, -1, -1, 42, -1, 44, -1, -1, 47, + 48, 5, 95, -1, 52, 53, 99, 11, 12, -1, + -1, -1, -1, 61, -1, 108, -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, 30, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 84, -1, 42, -1, - 44, -1, -1, 47, 48, -1, 5, 95, 52, 53, - -1, 99, 11, 12, -1, -1, -1, 61, 106, -1, - 108, -1, -1, 22, 23, 24, -1, 26, -1, -1, - -1, 30, -1, -1, 122, -1, -1, -1, -1, -1, - 84, -1, -1, 42, -1, 44, -1, -1, 47, 48, - 5, 95, -1, 52, 53, 99, 11, 12, -1, -1, - -1, -1, 61, -1, 108, -1, -1, 22, 23, 24, - -1, 26, -1, -1, -1, 30, -1, -1, 122, -1, - -1, -1, -1, -1, -1, 84, -1, 42, -1, 44, - -1, -1, 47, 48, -1, 5, 95, 52, 53, -1, - 99, 11, 12, -1, -1, -1, 61, -1, -1, 108, - -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, - 30, -1, -1, 122, -1, -1, -1, -1, -1, 84, - -1, -1, 42, -1, 44, -1, -1, 47, 48, 5, - 95, -1, 52, 53, 99, 11, 12, -1, -1, -1, - -1, 61, -1, 108, -1, -1, 22, 23, 24, -1, - 26, -1, -1, -1, 30, -1, -1, 122, -1, -1, - -1, -1, -1, -1, 84, -1, 42, -1, 44, -1, - -1, 47, 48, -1, 5, 95, 52, 53, -1, 99, - 11, 12, -1, -1, -1, 61, -1, -1, 108, -1, - -1, 22, 23, 24, -1, 26, 72, 73, -1, 30, - -1, -1, 122, -1, -1, -1, -1, -1, 84, -1, - -1, 42, -1, 44, -1, -1, 47, 48, 5, 95, - -1, 52, 53, 99, 11, 12, -1, -1, -1, -1, - 61, -1, 108, -1, -1, 22, 23, 24, -1, 26, - -1, 72, 73, 30, -1, 121, -1, -1, -1, -1, + 123, 124, -1, -1, -1, -1, 84, -1, 42, -1, + 44, -1, -1, 47, 48, -1, -1, 95, 52, 53, + -1, 99, -1, -1, -1, -1, -1, 61, 106, -1, + 108, -1, -1, -1, 5, -1, -1, -1, -1, -1, + 11, 12, -1, -1, 122, -1, -1, -1, -1, -1, + 84, 22, 23, 24, -1, 26, -1, -1, -1, 30, + -1, 95, -1, -1, -1, 99, -1, -1, -1, -1, + -1, 42, 106, 44, 108, -1, 47, 48, 5, -1, + -1, 52, 53, -1, 11, 12, -1, -1, 122, -1, + 61, -1, -1, -1, -1, 22, 23, 24, -1, 26, + -1, -1, -1, 30, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, 42, -1, 44, -1, -1, - 47, 48, -1, -1, 95, 52, 53, -1, 99, -1, - -1, -1, -1, -1, 61, -1, -1, 108, -1, -1, - -1, 5, -1, -1, -1, -1, -1, 11, 12, -1, - -1, -1, -1, -1, -1, -1, -1, 84, 22, 23, - 24, -1, 26, -1, -1, -1, 30, -1, 95, -1, - -1, -1, 99, -1, -1, -1, -1, -1, 42, 106, - 44, 108, -1, 47, 48, 5, -1, -1, 52, 53, - -1, 11, 12, -1, -1, -1, -1, 61, -1, -1, + 47, 48, -1, 5, 95, 52, 53, -1, 99, 11, + 12, -1, -1, -1, 61, -1, -1, 108, -1, -1, + 22, 23, 24, -1, 26, -1, -1, -1, 30, -1, + -1, 122, -1, -1, -1, -1, -1, 84, -1, -1, + 42, -1, 44, -1, -1, 47, 48, 5, 95, -1, + 52, 53, 99, 11, 12, -1, -1, -1, -1, 61, + -1, 108, -1, -1, 22, 23, 24, -1, 26, -1, + -1, -1, 30, -1, -1, 122, -1, -1, -1, -1, + -1, -1, 84, -1, 42, -1, 44, -1, -1, 47, + 48, -1, 5, 95, 52, 53, -1, 99, 11, 12, + -1, -1, -1, 61, -1, -1, 108, -1, -1, 22, + 23, 24, -1, 26, -1, -1, -1, 30, -1, -1, + 122, -1, -1, -1, -1, -1, 84, -1, -1, 42, + -1, 44, -1, -1, 47, 48, 5, 95, -1, 52, + 53, 99, 11, 12, -1, -1, -1, -1, 61, -1, + 108, -1, -1, 22, 23, 24, -1, 26, -1, 72, + 73, 30, -1, -1, 122, -1, -1, -1, -1, -1, + -1, 84, -1, 42, -1, 44, -1, -1, 47, 48, + -1, 5, 95, 52, 53, -1, 99, 11, 12, -1, + -1, -1, 61, -1, -1, 108, -1, -1, 22, 23, + 24, -1, 26, 72, 73, -1, 30, -1, 121, -1, + -1, -1, -1, -1, -1, 84, -1, -1, 42, -1, + 44, -1, -1, 47, 48, 5, 95, -1, 52, 53, + 99, 11, 12, -1, -1, -1, -1, 61, -1, 108, -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, 30, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, 42, -1, 44, -1, -1, 47, 48, -1, @@ -3424,16 +3359,45 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, 84, -1, 42, -1, 44, -1, -1, 47, 48, -1, -1, 95, 52, 53, -1, 99, -1, -1, -1, -1, -1, 61, 106, - -1, 108, -1, -1, -1, -1, -1, -1, -1, 74, + -1, 108, -1, -1, -1, 5, -1, -1, -1, -1, + -1, 11, 12, -1, -1, -1, -1, -1, -1, -1, + -1, 84, 22, 23, 24, -1, 26, -1, -1, -1, + 30, -1, 95, 27, 28, -1, 99, 31, 32, 33, + -1, -1, 42, 106, 44, 108, -1, 47, 48, -1, + -1, -1, 52, 53, -1, 49, 50, -1, -1, -1, + -1, 61, -1, -1, 58, 27, 28, -1, -1, 31, + 32, 33, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 84, -1, -1, 49, 50, -1, + -1, -1, -1, -1, -1, 95, 58, -1, -1, 99, + -1, -1, -1, -1, -1, 27, 28, -1, 108, 31, + 32, 33, -1, -1, -1, -1, 110, 111, 112, 113, + 114, 115, 116, 117, 118, -1, -1, 49, 50, 123, + 124, -1, -1, -1, -1, -1, 58, 27, 28, -1, + -1, 31, 32, 33, -1, 107, -1, -1, 110, 111, + 112, 113, 114, 115, 116, 117, 118, -1, -1, 49, + 50, -1, -1, -1, -1, -1, -1, -1, 58, -1, + -1, -1, -1, -1, -1, 27, -1, -1, -1, 31, + 32, 33, -1, -1, -1, 107, -1, -1, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 49, 50, -1, + -1, -1, -1, -1, -1, -1, 58, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 110, 111, 112, 113, 114, 115, 116, 117, 118, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, - -1, 84, 87, 88, 89, 90, 91, 92, 93, 94, - -1, -1, 95, -1, -1, 72, 99, 74, 75, -1, - 77, -1, 79, -1, 81, 108, 83, -1, 85, -1, - 87, -1, 89, -1, 91, 92, 93, -1, -1, -1, - 97, 126, -1, 100, -1, -1, 103, -1, 105, -1, - -1, -1, -1, -1, 74, 75, 76, 77, 78, 79, - 80, 81, 82, -1, 121, -1, 123, 87, 88, 89, - 90, 91, 92, 93, 94 + -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, + -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 72, -1, 74, + 75, -1, 77, -1, 79, -1, 81, -1, 83, -1, + 85, 126, 87, -1, 89, -1, 91, -1, 93, 94, + -1, -1, -1, 98, -1, -1, 101, -1, -1, 104, + -1, 106, -1, -1, -1, -1, -1, 74, 75, 76, + 77, 78, 79, 80, 81, 82, -1, 122, -1, 124, + 87, 88, 89, 90, 91, 92, 93, 94, 74, 75, + 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, + -1, 87, 88, 89, 90, 91, 92, 93, 94, 74, + 75, 76, 77, 78, 79, 80, 81, 82, -1, 126, + -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 126 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -3449,94 +3413,93 @@ static const yytype_uint16 yystos[] = 135, 136, 137, 138, 143, 150, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, - 193, 194, 195, 196, 198, 199, 200, 201, 202, 203, - 205, 210, 212, 213, 214, 215, 221, 223, 224, 226, - 227, 228, 229, 230, 231, 232, 233, 234, 241, 246, - 251, 252, 253, 254, 255, 267, 271, 274, 290, 291, - 292, 304, 307, 309, 319, 322, 325, 337, 342, 346, - 348, 355, 368, 372, 375, 375, 152, 159, 160, 36, - 36, 256, 257, 126, 11, 12, 22, 23, 24, 26, - 29, 30, 42, 44, 51, 53, 61, 95, 108, 114, - 115, 122, 169, 170, 171, 173, 175, 178, 180, 182, - 184, 186, 189, 191, 193, 198, 199, 200, 203, 204, - 210, 214, 216, 217, 221, 223, 224, 225, 227, 234, - 235, 236, 237, 246, 250, 251, 253, 168, 166, 168, - 167, 168, 159, 153, 217, 217, 308, 272, 159, 168, - 191, 193, 198, 199, 200, 203, 210, 214, 220, 221, - 251, 253, 36, 268, 259, 155, 356, 151, 159, 191, - 193, 367, 10, 168, 168, 128, 168, 280, 19, 158, - 242, 69, 369, 168, 191, 193, 198, 251, 333, 334, - 347, 217, 12, 126, 251, 122, 250, 106, 107, 122, - 188, 207, 208, 209, 217, 219, 240, 168, 191, 193, - 211, 0, 1, 137, 138, 150, 274, 375, 3, 4, - 36, 126, 132, 238, 239, 238, 238, 168, 191, 193, - 197, 251, 36, 238, 197, 36, 238, 197, 197, 36, - 238, 197, 36, 238, 197, 36, 238, 197, 36, 197, - 36, 238, 197, 238, 197, 251, 36, 126, 159, 238, - 197, 251, 36, 126, 159, 238, 197, 251, 8, 10, - 168, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 190, 191, 192, - 193, 194, 197, 246, 251, 252, 253, 254, 197, 238, - 159, 238, 36, 197, 36, 159, 238, 197, 36, 126, - 238, 130, 197, 36, 159, 238, 197, 9, 34, 35, - 54, 55, 56, 57, 59, 60, 110, 130, 222, 159, - 159, 159, 159, 159, 247, 375, 36, 238, 36, 159, - 238, 197, 251, 36, 159, 238, 197, 159, 15, 16, - 17, 18, 295, 297, 302, 303, 1, 12, 25, 26, - 137, 150, 161, 162, 163, 164, 274, 375, 17, 38, - 39, 40, 305, 306, 310, 315, 250, 164, 17, 101, - 343, 344, 345, 159, 217, 375, 168, 260, 263, 260, - 217, 217, 217, 217, 168, 202, 74, 75, 76, 77, - 78, 79, 80, 81, 82, 87, 88, 89, 90, 91, - 92, 93, 94, 147, 148, 147, 147, 147, 147, 27, - 28, 31, 32, 33, 49, 50, 58, 110, 111, 112, - 113, 114, 115, 116, 117, 118, 125, 293, 147, 157, - 125, 375, 125, 375, 191, 261, 262, 263, 375, 168, - 273, 9, 110, 329, 195, 168, 269, 273, 261, 69, - 361, 217, 369, 19, 126, 276, 168, 375, 145, 147, - 126, 375, 114, 127, 106, 168, 243, 244, 125, 168, - 204, 208, 216, 217, 251, 370, 371, 52, 125, 217, - 375, 258, 168, 127, 129, 168, 191, 198, 200, 202, - 210, 125, 129, 107, 125, 129, 375, 168, 168, 206, - 209, 217, 106, 217, 218, 125, 131, 206, 206, 206, - 211, 217, 217, 217, 217, 217, 217, 217, 217, 211, - 217, 245, 249, 375, 298, 302, 16, 295, 302, 3, - 4, 161, 311, 316, 38, 305, 315, 39, 305, 375, - 38, 39, 349, 352, 375, 132, 145, 265, 266, 125, - 375, 375, 125, 168, 168, 217, 217, 217, 217, 217, - 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, - 217, 217, 217, 375, 375, 168, 168, 145, 265, 125, - 154, 145, 125, 375, 217, 145, 52, 125, 270, 375, - 156, 217, 375, 375, 122, 375, 275, 168, 279, 280, - 282, 375, 277, 281, 19, 375, 145, 133, 125, 371, - 125, 122, 217, 335, 336, 333, 375, 373, 260, 127, - 217, 219, 209, 139, 141, 140, 142, 125, 127, 218, - 132, 127, 127, 127, 125, 248, 164, 165, 296, 250, - 300, 302, 168, 168, 250, 375, 313, 305, 318, 320, - 217, 353, 38, 344, 352, 217, 264, 146, 148, 125, - 131, 263, 207, 294, 9, 146, 262, 375, 168, 326, - 168, 168, 375, 375, 165, 19, 84, 122, 168, 284, - 288, 289, 283, 280, 282, 375, 168, 278, 282, 106, - 285, 288, 289, 106, 168, 371, 168, 125, 338, 165, - 375, 107, 375, 126, 375, 126, 209, 218, 217, 129, - 129, 165, 375, 250, 126, 375, 126, 375, 375, 317, - 250, 375, 165, 350, 375, 217, 9, 217, 132, 125, - 165, 217, 145, 47, 145, 357, 375, 122, 168, 168, - 145, 127, 125, 125, 145, 125, 129, 127, 125, 145, - 335, 99, 341, 17, 103, 374, 219, 106, 144, 149, - 168, 144, 299, 375, 144, 144, 312, 165, 375, 165, - 321, 375, 354, 351, 217, 217, 207, 250, 64, 65, - 364, 365, 366, 168, 145, 126, 145, 145, 122, 168, - 289, 84, 282, 375, 145, 106, 289, 339, 127, 125, - 145, 127, 165, 301, 127, 127, 165, 314, 17, 41, - 323, 324, 165, 165, 375, 127, 48, 330, 168, 358, - 375, 375, 126, 145, 219, 286, 287, 375, 168, 145, - 122, 168, 125, 375, 375, 106, 168, 375, 165, 375, - 375, 165, 165, 250, 327, 66, 362, 363, 165, 165, - 286, 125, 127, 126, 145, 168, 145, 106, 340, 145, - 375, 359, 375, 127, 287, 286, 126, 145, 165, 331, - 328, 17, 67, 360, 165, 127, 286, 17, 46, 332, - 331, 127, 168, 168 + 193, 194, 195, 196, 197, 199, 200, 201, 202, 203, + 204, 206, 211, 213, 214, 215, 216, 222, 224, 225, + 227, 228, 229, 230, 231, 232, 233, 234, 235, 242, + 247, 252, 253, 254, 255, 256, 268, 272, 275, 291, + 292, 293, 305, 308, 310, 320, 323, 326, 338, 343, + 347, 349, 356, 368, 372, 375, 375, 152, 159, 160, + 36, 36, 257, 258, 126, 11, 12, 22, 23, 24, + 26, 29, 30, 42, 44, 51, 53, 61, 95, 108, + 114, 115, 122, 169, 170, 171, 173, 175, 178, 180, + 182, 184, 186, 189, 191, 193, 195, 199, 200, 201, + 204, 205, 211, 215, 217, 218, 222, 224, 225, 226, + 228, 235, 236, 237, 238, 247, 251, 252, 254, 168, + 166, 168, 167, 168, 159, 153, 218, 218, 309, 273, + 159, 168, 191, 193, 199, 200, 201, 204, 211, 215, + 221, 222, 252, 254, 36, 269, 260, 155, 357, 151, + 159, 191, 193, 195, 10, 168, 168, 128, 168, 281, + 19, 158, 243, 69, 369, 168, 199, 252, 334, 335, + 348, 218, 12, 126, 252, 122, 251, 106, 107, 122, + 188, 208, 209, 210, 218, 220, 241, 168, 195, 212, + 0, 1, 137, 138, 150, 275, 375, 3, 4, 36, + 126, 132, 239, 240, 239, 239, 168, 195, 198, 252, + 36, 239, 198, 36, 239, 198, 198, 36, 239, 198, + 36, 239, 198, 36, 239, 198, 36, 198, 36, 239, + 198, 239, 198, 252, 36, 198, 252, 36, 198, 252, + 126, 159, 239, 8, 10, 168, 172, 173, 174, 175, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 190, 192, 194, 198, 247, 252, 253, 254, + 255, 198, 239, 159, 239, 36, 198, 36, 159, 239, + 198, 36, 126, 239, 130, 198, 36, 159, 239, 198, + 9, 34, 35, 54, 55, 56, 57, 59, 60, 110, + 130, 223, 159, 159, 159, 159, 159, 248, 375, 36, + 239, 36, 159, 239, 198, 252, 36, 159, 239, 198, + 159, 15, 16, 17, 18, 296, 298, 303, 304, 1, + 12, 25, 26, 137, 150, 161, 162, 163, 164, 275, + 375, 17, 38, 39, 40, 306, 307, 311, 316, 251, + 164, 17, 101, 344, 345, 346, 159, 218, 375, 168, + 261, 264, 261, 218, 218, 218, 218, 168, 203, 74, + 75, 76, 77, 78, 79, 80, 81, 82, 87, 88, + 89, 90, 91, 92, 93, 94, 147, 148, 147, 147, + 147, 147, 27, 28, 31, 32, 33, 49, 50, 58, + 110, 111, 112, 113, 114, 115, 116, 117, 118, 125, + 294, 147, 157, 125, 375, 125, 375, 191, 262, 263, + 264, 375, 168, 274, 9, 110, 330, 196, 168, 270, + 274, 262, 69, 362, 218, 369, 19, 126, 277, 168, + 375, 145, 147, 126, 375, 114, 127, 106, 168, 244, + 245, 125, 168, 205, 209, 217, 218, 252, 370, 371, + 52, 125, 218, 375, 259, 168, 127, 129, 168, 191, + 199, 201, 203, 211, 125, 129, 107, 125, 129, 375, + 168, 168, 207, 210, 218, 106, 218, 219, 125, 131, + 207, 207, 212, 218, 218, 218, 218, 218, 218, 218, + 218, 212, 218, 246, 250, 375, 299, 303, 16, 296, + 303, 3, 4, 161, 312, 317, 38, 306, 316, 39, + 306, 375, 38, 39, 350, 353, 375, 132, 145, 266, + 267, 125, 375, 375, 125, 168, 168, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 218, 218, 375, 375, 168, 168, 145, + 266, 125, 154, 145, 125, 375, 218, 145, 52, 125, + 271, 375, 156, 218, 375, 375, 122, 375, 276, 168, + 280, 281, 283, 375, 278, 282, 19, 375, 145, 133, + 125, 371, 125, 122, 218, 336, 337, 334, 375, 373, + 261, 127, 218, 220, 210, 139, 141, 140, 142, 125, + 127, 219, 132, 127, 127, 125, 249, 164, 165, 297, + 251, 301, 303, 168, 168, 251, 375, 314, 306, 319, + 321, 218, 354, 38, 345, 353, 218, 265, 146, 148, + 125, 131, 264, 208, 295, 9, 146, 263, 375, 168, + 327, 168, 168, 375, 375, 165, 19, 84, 122, 168, + 285, 289, 290, 284, 281, 283, 375, 168, 279, 283, + 106, 286, 289, 290, 106, 168, 371, 168, 125, 339, + 165, 375, 107, 375, 126, 375, 126, 210, 219, 218, + 129, 129, 165, 375, 251, 126, 375, 126, 375, 375, + 318, 251, 375, 165, 351, 375, 218, 9, 218, 132, + 125, 165, 218, 145, 47, 145, 358, 375, 122, 168, + 168, 145, 127, 125, 125, 145, 125, 129, 127, 125, + 145, 336, 99, 342, 17, 103, 374, 220, 106, 144, + 149, 168, 144, 300, 375, 144, 144, 313, 165, 375, + 165, 322, 375, 355, 352, 218, 218, 208, 251, 64, + 65, 365, 366, 367, 168, 145, 126, 145, 145, 122, + 168, 290, 84, 283, 375, 145, 106, 290, 340, 127, + 125, 145, 127, 165, 302, 127, 127, 165, 315, 17, + 41, 324, 325, 165, 165, 375, 127, 48, 331, 168, + 359, 375, 375, 126, 145, 220, 287, 288, 375, 168, + 145, 122, 168, 125, 375, 375, 106, 168, 375, 165, + 375, 375, 165, 165, 251, 328, 66, 363, 364, 165, + 165, 287, 125, 127, 126, 145, 168, 145, 106, 341, + 145, 375, 360, 375, 127, 288, 287, 126, 145, 165, + 332, 329, 17, 67, 361, 165, 127, 287, 17, 46, + 333, 332, 127, 168, 168 }; #define yyerrok (yyerrstatus = 0) @@ -4052,14 +4015,14 @@ yydestruct (yymsg, yytype, yyvaluep, pComp) switch (yytype) { case 19: /* "LITERAL" */ -#line 281 "harbour.y" +#line 274 "harbour.y" { if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); }; -#line 4058 "harboury.c" +#line 4021 "harboury.c" break; case 96: /* "CBSTART" */ -#line 280 "harbour.y" +#line 273 "harbour.y" { if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); }; -#line 4063 "harboury.c" +#line 4026 "harboury.c" break; default: @@ -4369,17 +4332,17 @@ yyreduce: switch (yyn) { case 9: -#line 294 "harbour.y" +#line 287 "harbour.y" { yyclearin; yyerrok; ;} break; case 15: -#line 300 "harbour.y" +#line 293 "harbour.y" { yyclearin; yyerrok; ;} break; case 16: -#line 304 "harbour.y" +#line 297 "harbour.y" { HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC ); HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (4)].valLong).lNumber; HB_COMP_PARAM->pLex->fEol = HB_FALSE; @@ -4387,7 +4350,7 @@ yyreduce: break; case 17: -#line 309 "harbour.y" +#line 302 "harbour.y" { HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC ); HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (6)].valLong).lNumber; HB_COMP_PARAM->pLex->fEol = HB_FALSE; @@ -4396,187 +4359,187 @@ yyreduce: break; case 18: -#line 316 "harbour.y" +#line 309 "harbour.y" { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;} break; case 20: -#line 317 "harbour.y" +#line 310 "harbour.y" { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;} break; case 22: -#line 318 "harbour.y" +#line 311 "harbour.y" { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;} break; case 24: -#line 319 "harbour.y" +#line 312 "harbour.y" { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;} break; case 26: -#line 322 "harbour.y" +#line 315 "harbour.y" { (yyval.iNumber) = HB_FS_PUBLIC; ;} break; case 27: -#line 323 "harbour.y" +#line 316 "harbour.y" { (yyval.iNumber) = HB_FS_STATIC; ;} break; case 28: -#line 324 "harbour.y" +#line 317 "harbour.y" { (yyval.iNumber) = HB_FS_INIT; ;} break; case 29: -#line 325 "harbour.y" +#line 318 "harbour.y" { (yyval.iNumber) = HB_FS_EXIT; ;} break; case 30: -#line 328 "harbour.y" +#line 321 "harbour.y" { (yyval.iNumber) = 0; ;} break; case 31: -#line 329 "harbour.y" +#line 322 "harbour.y" { HB_COMP_PARAM->functions.pLast->fVParams = HB_TRUE; (yyval.iNumber) = 0; ;} break; case 33: -#line 331 "harbour.y" +#line 324 "harbour.y" { HB_COMP_PARAM->functions.pLast->fVParams = HB_TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;} break; case 34: -#line 334 "harbour.y" +#line 327 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 36: -#line 338 "harbour.y" +#line 331 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 38: -#line 342 "harbour.y" +#line 335 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'N', NULL ); ;} break; case 39: -#line 343 "harbour.y" +#line 336 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'C', NULL ); ;} break; case 40: -#line 344 "harbour.y" +#line 337 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'D', NULL ); ;} break; case 41: -#line 345 "harbour.y" +#line 338 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'L', NULL ); ;} break; case 42: -#line 346 "harbour.y" +#line 339 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'B', NULL ); ;} break; case 43: -#line 347 "harbour.y" +#line 340 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'O', NULL ); ;} break; case 44: -#line 348 "harbour.y" +#line 341 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'S', (yyvsp[(2) - (2)].string) ); ;} break; case 45: -#line 349 "harbour.y" +#line 342 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 47: -#line 353 "harbour.y" +#line 346 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ); ;} break; case 48: -#line 354 "harbour.y" +#line 347 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'n', NULL ); ;} break; case 49: -#line 355 "harbour.y" +#line 348 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'c', NULL ); ;} break; case 50: -#line 356 "harbour.y" +#line 349 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'd', NULL ); ;} break; case 51: -#line 357 "harbour.y" +#line 350 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'l', NULL ); ;} break; case 52: -#line 358 "harbour.y" +#line 351 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'a', NULL ); ;} break; case 53: -#line 359 "harbour.y" +#line 352 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'b', NULL ); ;} break; case 54: -#line 360 "harbour.y" +#line 353 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'o', NULL ); ;} break; case 55: -#line 361 "harbour.y" +#line 354 "harbour.y" { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 's', (yyvsp[(2) - (2)].string) ); ;} break; case 56: -#line 364 "harbour.y" +#line 357 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); (yyval.iNumber) = 1; ;} break; case 57: -#line 365 "harbour.y" +#line 358 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); (yyval.iNumber)++; ;} break; case 59: -#line 374 "harbour.y" +#line 367 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 60: -#line 375 "harbour.y" +#line 368 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 61: -#line 376 "harbour.y" +#line 369 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 62: -#line 377 "harbour.y" +#line 370 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 63: -#line 378 "harbour.y" +#line 371 "harbour.y" { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); else @@ -4586,63 +4549,53 @@ yyreduce: break; case 64: -#line 384 "harbour.y" - { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); - else - HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) ); - HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; - ;} +#line 377 "harbour.y" + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 65: -#line 390 "harbour.y" +#line 378 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 66: -#line 391 "harbour.y" +#line 379 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 67: -#line 392 "harbour.y" +#line 380 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 68: -#line 393 "harbour.y" +#line 381 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 69: -#line 394 "harbour.y" +#line 382 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 70: -#line 395 "harbour.y" +#line 383 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 71: -#line 396 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} - break; - - case 72: -#line 397 "harbour.y" +#line 384 "harbour.y" { hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; - case 73: -#line 399 "harbour.y" + case 72: +#line 386 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 74: -#line 400 "harbour.y" + case 73: +#line 387 "harbour.y" { hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM ); @@ -4650,18 +4603,18 @@ yyreduce: ;} break; - case 75: -#line 405 "harbour.y" + case 74: +#line 392 "harbour.y" { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; - case 76: -#line 406 "harbour.y" + case 75: +#line 393 "harbour.y" { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; - case 77: -#line 407 "harbour.y" + case 76: +#line 394 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { @@ -4676,13 +4629,13 @@ yyreduce: ;} break; - case 78: -#line 419 "harbour.y" + case 77: +#line 406 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 79: -#line 421 "harbour.y" + case 78: +#line 408 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { @@ -4703,34 +4656,34 @@ yyreduce: ;} break; - case 80: -#line 439 "harbour.y" + case 79: +#line 426 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;} break; - case 81: -#line 441 "harbour.y" + case 80: +#line 428 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" ); HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; - case 83: -#line 445 "harbour.y" + case 82: +#line 432 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;} break; - case 84: -#line 447 "harbour.y" + case 83: +#line 434 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" ); HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; - case 91: -#line 456 "harbour.y" + case 90: +#line 443 "harbour.y" { if( HB_COMP_PARAM->szAnnounce == NULL ) { @@ -4747,8 +4700,8 @@ yyreduce: ;} break; - case 94: -#line 473 "harbour.y" + case 93: +#line 460 "harbour.y" { if( (yyvsp[(1) - (1)].valChar).dealloc ) { @@ -4759,8 +4712,8 @@ yyreduce: ;} break; - case 95: -#line 481 "harbour.y" + case 94: +#line 468 "harbour.y" { { char szFileName[ HB_PATH_MAX ]; @@ -4780,38 +4733,38 @@ yyreduce: ;} break; - case 96: -#line 500 "harbour.y" + case 95: +#line 487 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 98: -#line 503 "harbour.y" + case 97: +#line 490 "harbour.y" { (yyval.lNumber) = 0; ;} break; + case 98: +#line 491 "harbour.y" + { (yyval.lNumber) = 1; ;} + break; + case 99: -#line 504 "harbour.y" +#line 492 "harbour.y" { (yyval.lNumber) = 1; ;} break; case 100: -#line 505 "harbour.y" - { (yyval.lNumber) = 1; ;} - break; - - case 101: -#line 506 "harbour.y" +#line 493 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 102: -#line 507 "harbour.y" + case 101: +#line 494 "harbour.y" { (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM, HB_COMP_PARAM->functions.pLast ); ;} break; - case 103: -#line 508 "harbour.y" + case 102: +#line 495 "harbour.y" { if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine ) { yyclearin; @@ -4825,955 +4778,940 @@ yyreduce: ;} break; - case 113: -#line 534 "harbour.y" + case 112: +#line 521 "harbour.y" { (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;} break; - case 114: -#line 537 "harbour.y" + case 113: +#line 524 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 116: -#line 541 "harbour.y" + case 115: +#line 528 "harbour.y" { hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;} break; - case 117: -#line 542 "harbour.y" + case 116: +#line 529 "harbour.y" { hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;} break; - case 118: -#line 545 "harbour.y" + case 117: +#line 532 "harbour.y" { hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;} break; - case 119: -#line 546 "harbour.y" + case 118: +#line 533 "harbour.y" { hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;} break; - case 121: -#line 550 "harbour.y" + case 120: +#line 537 "harbour.y" { (yyval.string) = ( char * ) "STEP"; ;} break; - case 122: -#line 551 "harbour.y" + case 121: +#line 538 "harbour.y" { (yyval.string) = ( char * ) "TO"; ;} break; - case 123: -#line 552 "harbour.y" + case 122: +#line 539 "harbour.y" { (yyval.string) = ( char * ) "LOOP"; ;} break; - case 124: -#line 553 "harbour.y" + case 123: +#line 540 "harbour.y" { (yyval.string) = ( char * ) "EXIT"; ;} break; - case 125: -#line 554 "harbour.y" + case 124: +#line 541 "harbour.y" { (yyval.string) = ( char * ) "IN"; ;} break; + case 125: +#line 542 "harbour.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); ;} + break; + case 126: -#line 555 "harbour.y" +#line 543 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 127: -#line 556 "harbour.y" +#line 544 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 128: -#line 557 "harbour.y" +#line 545 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 129: -#line 558 "harbour.y" +#line 546 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 130: -#line 559 "harbour.y" +#line 547 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 131: -#line 560 "harbour.y" +#line 548 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 132: -#line 561 "harbour.y" +#line 549 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 133: -#line 562 "harbour.y" +#line 550 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 134: -#line 563 "harbour.y" +#line 551 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 135: -#line 564 "harbour.y" +#line 552 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 136: -#line 565 "harbour.y" +#line 553 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 137: -#line 566 "harbour.y" +#line 554 "harbour.y" { (yyval.string) = (yyvsp[(1) - (1)].string); ;} break; case 138: -#line 567 "harbour.y" - { (yyval.string) = (yyvsp[(1) - (1)].string); ;} - break; - - case 139: -#line 572 "harbour.y" +#line 559 "harbour.y" { (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;} break; - case 140: -#line 573 "harbour.y" + case 139: +#line 560 "harbour.y" { (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;} break; - case 141: -#line 576 "harbour.y" + case 140: +#line 563 "harbour.y" { (yyval.asExpr) = hb_compExprNewDate( ( long ) (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;} break; - case 142: -#line 579 "harbour.y" + case 141: +#line 566 "harbour.y" { (yyval.asExpr) = hb_compExprNewTimeStamp( (yyvsp[(1) - (1)].valTimeStamp).date, (yyvsp[(1) - (1)].valTimeStamp).time, HB_COMP_PARAM ); ;} break; - case 143: -#line 582 "harbour.y" + case 142: +#line 569 "harbour.y" { (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;} break; - case 144: -#line 583 "harbour.y" + case 143: +#line 570 "harbour.y" { (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, hb_compExprNewDouble( (yyvsp[(1) - (2)].valDouble).dNumber, (yyvsp[(1) - (2)].valDouble).bWidth, (yyvsp[(1) - (2)].valDouble).bDec, HB_COMP_PARAM ) ); ;} break; - case 145: -#line 588 "harbour.y" + case 144: +#line 575 "harbour.y" { (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;} break; - case 147: -#line 596 "harbour.y" + case 146: +#line 583 "harbour.y" { (yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, (yyvsp[(1) - (1)].valChar).dealloc, HB_COMP_PARAM ); (yyvsp[(1) - (1)].valChar).dealloc = HB_FALSE; ;} break; - case 150: -#line 612 "harbour.y" + case 149: +#line 599 "harbour.y" { (yyval.asExpr) = hb_compExprNewLogical( HB_TRUE, HB_COMP_PARAM ); ;} break; - case 151: -#line 613 "harbour.y" + case 150: +#line 600 "harbour.y" { (yyval.asExpr) = hb_compExprNewLogical( HB_FALSE, HB_COMP_PARAM ); ;} break; - case 153: -#line 621 "harbour.y" + case 152: +#line 608 "harbour.y" { (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;} break; - case 155: -#line 635 "harbour.y" + case 154: +#line 622 "harbour.y" { (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 157: -#line 643 "harbour.y" + case 156: +#line 630 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 159: -#line 649 "harbour.y" + case 158: +#line 636 "harbour.y" { (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;} break; - case 160: -#line 650 "harbour.y" + case 159: +#line 637 "harbour.y" { (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 162: -#line 656 "harbour.y" + case 161: +#line 643 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 163: -#line 657 "harbour.y" + case 162: +#line 644 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;} break; - case 164: -#line 662 "harbour.y" + case 163: +#line 649 "harbour.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 165: -#line 665 "harbour.y" + case 164: +#line 652 "harbour.y" { (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;} break; - case 166: -#line 670 "harbour.y" + case 165: +#line 657 "harbour.y" { (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 167: -#line 671 "harbour.y" + case 166: +#line 658 "harbour.y" { (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 169: -#line 679 "harbour.y" + case 168: +#line 666 "harbour.y" { (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;} break; - case 171: -#line 689 "harbour.y" + case 172: +#line 680 "harbour.y" { (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;} break; - case 172: -#line 690 "harbour.y" + case 173: +#line 681 "harbour.y" { (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;} break; - case 173: -#line 695 "harbour.y" - { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} - break; - case 174: -#line 696 "harbour.y" +#line 686 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 175: -#line 697 "harbour.y" +#line 687 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 176: -#line 698 "harbour.y" +#line 688 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 177: -#line 699 "harbour.y" +#line 689 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 178: -#line 700 "harbour.y" - { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} +#line 690 "harbour.y" + { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 179: -#line 701 "harbour.y" +#line 691 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 180: -#line 702 "harbour.y" +#line 692 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 181: -#line 703 "harbour.y" +#line 693 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 182: -#line 704 "harbour.y" +#line 694 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 183: -#line 705 "harbour.y" +#line 695 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 184: -#line 706 "harbour.y" +#line 696 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 185: -#line 707 "harbour.y" +#line 697 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 186: -#line 708 "harbour.y" +#line 698 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 187: -#line 711 "harbour.y" +#line 699 "harbour.y" + { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} + break; + + case 188: +#line 702 "harbour.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; case 190: -#line 716 "harbour.y" +#line 706 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 191: -#line 717 "harbour.y" +#line 707 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 192: -#line 718 "harbour.y" +#line 708 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 193: -#line 719 "harbour.y" +#line 709 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 194: -#line 720 "harbour.y" +#line 710 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 195: -#line 721 "harbour.y" +#line 711 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 196: -#line 722 "harbour.y" +#line 712 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 197: -#line 723 "harbour.y" +#line 713 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 198: -#line 724 "harbour.y" +#line 714 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 199: -#line 725 "harbour.y" +#line 715 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 200: -#line 726 "harbour.y" +#line 716 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 201: -#line 727 "harbour.y" +#line 717 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 202: -#line 728 "harbour.y" +#line 718 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 203: -#line 729 "harbour.y" +#line 719 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 204: -#line 730 "harbour.y" +#line 720 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 205: -#line 731 "harbour.y" +#line 721 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 206: -#line 732 "harbour.y" +#line 722 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;} break; case 207: -#line 733 "harbour.y" +#line 723 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 208: -#line 734 "harbour.y" +#line 724 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 209: -#line 735 "harbour.y" +#line 725 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 210: -#line 744 "harbour.y" +#line 734 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 211: -#line 745 "harbour.y" +#line 735 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 212: -#line 746 "harbour.y" +#line 736 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 213: -#line 747 "harbour.y" +#line 737 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 214: -#line 748 "harbour.y" +#line 738 "harbour.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 215: -#line 749 "harbour.y" +#line 739 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; case 216: -#line 754 "harbour.y" +#line 744 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 217: -#line 755 "harbour.y" +#line 745 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 218: -#line 756 "harbour.y" +#line 746 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 219: -#line 757 "harbour.y" +#line 747 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 220: -#line 758 "harbour.y" +#line 748 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 221: -#line 759 "harbour.y" +#line 749 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 222: -#line 760 "harbour.y" +#line 750 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 223: -#line 761 "harbour.y" +#line 751 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 224: -#line 762 "harbour.y" +#line 752 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 225: -#line 763 "harbour.y" +#line 753 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 226: -#line 764 "harbour.y" +#line 754 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 227: -#line 765 "harbour.y" +#line 755 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 228: -#line 766 "harbour.y" +#line 756 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 229: -#line 767 "harbour.y" +#line 757 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 230: -#line 768 "harbour.y" +#line 758 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 231: -#line 769 "harbour.y" +#line 759 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 232: -#line 770 "harbour.y" +#line 760 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 233: -#line 771 "harbour.y" +#line 761 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 234: -#line 772 "harbour.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} - break; - - case 236: -#line 779 "harbour.y" + case 235: +#line 768 "harbour.y" { (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (4)].string), HB_COMP_PARAM ), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} break; + case 237: +#line 772 "harbour.y" + { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} + break; + case 238: -#line 783 "harbour.y" - { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 239: -#line 784 "harbour.y" - { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 240: -#line 788 "harbour.y" +#line 776 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; - case 242: -#line 794 "harbour.y" + case 240: +#line 782 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 243: -#line 795 "harbour.y" + case 241: +#line 783 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 246: -#line 802 "harbour.y" + case 244: +#line 790 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;} break; + case 245: +#line 791 "harbour.y" + { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} + break; + + case 246: +#line 792 "harbour.y" + { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} + break; + case 247: -#line 803 "harbour.y" +#line 793 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} break; case 248: -#line 804 "harbour.y" - { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} - break; - - case 249: -#line 805 "harbour.y" - { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} - break; - - case 250: -#line 806 "harbour.y" +#line 794 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = HB_TRUE; ;} break; - case 251: -#line 809 "harbour.y" + case 249: +#line 797 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; + case 251: +#line 803 "harbour.y" + { (yyval.asExpr) = hb_compCheckMethod( HB_COMP_PARAM, hb_compExprNewMethodObject( (yyvsp[(3) - (3)].asExpr), (yyvsp[(1) - (3)].asExpr) ) ); ;} + break; + + case 252: +#line 804 "harbour.y" + { (yyval.asExpr) = hb_compExprNewMethodObject( (yyvsp[(3) - (3)].asExpr), (yyvsp[(1) - (3)].asExpr) ); ;} + break; + case 253: -#line 815 "harbour.y" - { (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} - break; - - case 254: -#line 816 "harbour.y" - { (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} - break; - - case 255: -#line 817 "harbour.y" +#line 805 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL ); - (yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM )); + (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; + case 254: +#line 811 "harbour.y" + { (yyval.asExpr) = hb_compExprNewSend( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} + break; + + case 255: +#line 812 "harbour.y" + { (yyval.asExpr) = hb_compExprNewMacroSend( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} + break; + case 256: -#line 823 "harbour.y" - { (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;} - break; - - case 257: -#line 824 "harbour.y" - { (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;} - break; - - case 258: -#line 825 "harbour.y" - { (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;} - break; - - case 259: -#line 828 "harbour.y" +#line 815 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;} break; - case 261: -#line 836 "harbour.y" + case 258: +#line 823 "harbour.y" { (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr) ); ;} break; - case 271: -#line 856 "harbour.y" + case 268: +#line 843 "harbour.y" + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} + break; + + case 278: +#line 853 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; case 281: -#line 866 "harbour.y" +#line 856 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 284: -#line 869 "harbour.y" + case 283: +#line 858 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 286: -#line 871 "harbour.y" + case 295: +#line 872 "harbour.y" + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} + break; + + case 296: +#line 873 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; case 298: -#line 885 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} - break; - - case 299: -#line 886 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} - break; - - case 301: -#line 890 "harbour.y" +#line 877 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; - case 303: -#line 894 "harbour.y" + case 300: +#line 881 "harbour.y" { (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;} break; - case 305: -#line 898 "harbour.y" + case 302: +#line 885 "harbour.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 311: -#line 904 "harbour.y" + case 308: +#line 891 "harbour.y" { (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 334: -#line 938 "harbour.y" + case 330: +#line 924 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 335: -#line 939 "harbour.y" + case 331: +#line 925 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 336: -#line 942 "harbour.y" + case 332: +#line 928 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 337: -#line 945 "harbour.y" + case 333: +#line 931 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 338: -#line 946 "harbour.y" + case 334: +#line 932 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 339: -#line 949 "harbour.y" + case 335: +#line 935 "harbour.y" { (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 340: -#line 950 "harbour.y" + case 336: +#line 936 "harbour.y" { (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 341: -#line 951 "harbour.y" + case 337: +#line 937 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 342: -#line 954 "harbour.y" + case 338: +#line 940 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 343: -#line 957 "harbour.y" + case 339: +#line 943 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 344: -#line 960 "harbour.y" + case 340: +#line 946 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 345: -#line 963 "harbour.y" + case 341: +#line 949 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 346: -#line 966 "harbour.y" + case 342: +#line 952 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 347: -#line 969 "harbour.y" + case 343: +#line 955 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 348: -#line 972 "harbour.y" + case 344: +#line 958 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 349: -#line 975 "harbour.y" + case 345: +#line 961 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 356: -#line 986 "harbour.y" + case 352: +#line 972 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 357: -#line 987 "harbour.y" + case 353: +#line 973 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 358: -#line 988 "harbour.y" + case 354: +#line 974 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 359: -#line 989 "harbour.y" + case 355: +#line 975 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 360: -#line 990 "harbour.y" + case 356: +#line 976 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 361: -#line 991 "harbour.y" + case 357: +#line 977 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 362: -#line 994 "harbour.y" + case 358: +#line 980 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 363: -#line 995 "harbour.y" + case 359: +#line 981 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 364: -#line 998 "harbour.y" + case 360: +#line 984 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 365: -#line 999 "harbour.y" + case 361: +#line 985 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 366: -#line 1000 "harbour.y" + case 362: +#line 986 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 367: -#line 1001 "harbour.y" + case 363: +#line 987 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 368: -#line 1002 "harbour.y" + case 364: +#line 988 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 369: -#line 1003 "harbour.y" + case 365: +#line 989 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 370: -#line 1004 "harbour.y" + case 366: +#line 990 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 371: -#line 1005 "harbour.y" + case 367: +#line 991 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 372: -#line 1006 "harbour.y" + case 368: +#line 992 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 374: -#line 1015 "harbour.y" + case 370: +#line 1001 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 375: -#line 1016 "harbour.y" + case 371: +#line 1002 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 376: -#line 1017 "harbour.y" + case 372: +#line 1003 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 377: -#line 1020 "harbour.y" + case 373: +#line 1006 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 378: -#line 1021 "harbour.y" + case 374: +#line 1007 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 379: -#line 1024 "harbour.y" + case 375: +#line 1010 "harbour.y" { (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;} break; - case 380: -#line 1025 "harbour.y" + case 376: +#line 1011 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;} break; - case 381: -#line 1030 "harbour.y" + case 377: +#line 1016 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 382: -#line 1031 "harbour.y" + case 378: +#line 1017 "harbour.y" { (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 383: -#line 1032 "harbour.y" + case 379: +#line 1018 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;} break; - case 384: -#line 1033 "harbour.y" + case 380: +#line 1019 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 385: -#line 1036 "harbour.y" + case 381: +#line 1022 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType)->cVarType, HB_COMP_PARAM ); ;} break; - case 386: -#line 1037 "harbour.y" + case 382: +#line 1023 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType)->cVarType, HB_COMP_PARAM ); ;} break; - case 387: -#line 1040 "harbour.y" + case 383: +#line 1026 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;} break; - case 388: -#line 1041 "harbour.y" + case 384: +#line 1027 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 389: -#line 1045 "harbour.y" + case 385: +#line 1031 "harbour.y" { (yyval.bTrue) = HB_COMP_PARAM->functions.pLast->bBlock; HB_COMP_PARAM->functions.pLast->bBlock = HB_TRUE; ;} break; - case 390: -#line 1048 "harbour.y" + case 386: +#line 1034 "harbour.y" { HB_COMP_PARAM->functions.pLast->bBlock = (yyvsp[(2) - (3)].bTrue); ;} break; - case 392: -#line 1051 "harbour.y" + case 388: +#line 1037 "harbour.y" { /* 3 */ HB_CBVAR_PTR pVar; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -5800,8 +5738,8 @@ yyreduce: ;} break; - case 393: -#line 1076 "harbour.y" + case 389: +#line 1062 "harbour.y" { /* 6 */ hb_compCodeBlockEnd( HB_COMP_PARAM ); (yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr), @@ -5812,43 +5750,43 @@ yyreduce: ;} break; - case 394: -#line 1086 "harbour.y" + case 390: +#line 1072 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 395: -#line 1087 "harbour.y" + case 391: +#line 1073 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 396: -#line 1089 "harbour.y" + case 392: +#line 1075 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;} break; - case 398: -#line 1102 "harbour.y" + case 394: +#line 1088 "harbour.y" { (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;} break; - case 400: -#line 1108 "harbour.y" + case 396: +#line 1094 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 402: -#line 1110 "harbour.y" + case 398: +#line 1096 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 404: -#line 1112 "harbour.y" + case 400: +#line 1098 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 406: -#line 1114 "harbour.y" + case 402: +#line 1100 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_USES_LOCAL_PARAMS ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL ); else @@ -5859,53 +5797,53 @@ yyreduce: ;} break; - case 407: -#line 1121 "harbour.y" + case 403: +#line 1107 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 408: -#line 1124 "harbour.y" + case 404: +#line 1110 "harbour.y" { (yyval.iNumber) = 1; ;} break; + case 405: +#line 1111 "harbour.y" + { (yyval.iNumber)++; ;} + break; + + case 406: +#line 1114 "harbour.y" + { (yyval.iNumber) = 1; ;} + break; + + case 407: +#line 1115 "harbour.y" + { (yyval.iNumber)++; ;} + break; + case 409: #line 1125 "harbour.y" - { (yyval.iNumber)++; ;} - break; - - case 410: -#line 1128 "harbour.y" - { (yyval.iNumber) = 1; ;} - break; - - case 411: -#line 1129 "harbour.y" - { (yyval.iNumber)++; ;} - break; - - case 413: -#line 1139 "harbour.y" { hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), HB_FALSE ); ;} break; - case 414: -#line 1141 "harbour.y" + case 410: +#line 1127 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) ); hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), HB_TRUE ); ;} break; - case 415: -#line 1145 "harbour.y" + case 411: +#line 1131 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), HB_TRUE ); ;} break; - case 416: -#line 1152 "harbour.y" + case 412: +#line 1138 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) @@ -5925,15 +5863,15 @@ yyreduce: ;} break; - case 417: -#line 1169 "harbour.y" + case 413: +#line 1155 "harbour.y" { (yyval.iNumber) = HB_COMP_PARAM->iVarScope; hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 418: -#line 1173 "harbour.y" + case 414: +#line 1159 "harbour.y" { HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) @@ -5960,80 +5898,80 @@ yyreduce: ;} break; - case 419: -#line 1198 "harbour.y" + case 415: +#line 1184 "harbour.y" { hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 421: -#line 1207 "harbour.y" + case 417: +#line 1193 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 422: -#line 1208 "harbour.y" + case 418: +#line 1194 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 423: -#line 1209 "harbour.y" + case 419: +#line 1195 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;} break; - case 424: -#line 1212 "harbour.y" + case 420: +#line 1198 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_FIELD; ;} break; - case 425: -#line 1214 "harbour.y" + case 421: +#line 1200 "harbour.y" { if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) ); ;} break; - case 426: -#line 1219 "harbour.y" + case 422: +#line 1205 "harbour.y" { (yyval.iNumber) = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 427: -#line 1220 "harbour.y" + case 423: +#line 1206 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; - case 428: -#line 1223 "harbour.y" + case 424: +#line 1209 "harbour.y" { (yyval.string) = NULL; ;} break; - case 429: -#line 1224 "harbour.y" + case 425: +#line 1210 "harbour.y" { (yyval.string) = (yyvsp[(2) - (2)].string); ;} break; - case 430: -#line 1227 "harbour.y" + case 426: +#line 1213 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;} break; - case 432: -#line 1230 "harbour.y" + case 428: +#line 1216 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 433: -#line 1231 "harbour.y" + case 429: +#line 1217 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; - case 434: -#line 1234 "harbour.y" + case 430: +#line 1220 "harbour.y" { hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;} break; - case 435: -#line 1235 "harbour.y" + case 431: +#line 1221 "harbour.y" { if( HB_COMP_PARAM->pLastDeclared ) { @@ -6054,48 +5992,48 @@ yyreduce: ;} break; - case 436: -#line 1253 "harbour.y" + case 432: +#line 1239 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;} break; - case 437: -#line 1253 "harbour.y" + case 433: +#line 1239 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 438: -#line 1254 "harbour.y" + case 434: +#line 1240 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 439: -#line 1255 "harbour.y" + case 435: +#line 1241 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 440: -#line 1256 "harbour.y" + case 436: +#line 1242 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 441: -#line 1257 "harbour.y" + case 437: +#line 1243 "harbour.y" { HB_COMP_PARAM->cDataListType = (yyvsp[(3) - (3)].asVarType)->cVarType; ;} break; - case 442: -#line 1257 "harbour.y" + case 438: +#line 1243 "harbour.y" { HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 449: -#line 1270 "harbour.y" + case 445: +#line 1256 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;} break; - case 450: -#line 1271 "harbour.y" + case 446: +#line 1257 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { @@ -6114,13 +6052,13 @@ yyreduce: ;} break; - case 451: -#line 1289 "harbour.y" + case 447: +#line 1275 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;} break; - case 452: -#line 1290 "harbour.y" + case 448: +#line 1276 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { @@ -6175,151 +6113,151 @@ yyreduce: ;} break; - case 466: -#line 1363 "harbour.y" + case 462: +#line 1349 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;} break; - case 467: -#line 1366 "harbour.y" + case 463: +#line 1352 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 468: -#line 1367 "harbour.y" + case 464: +#line 1353 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 469: -#line 1368 "harbour.y" + case 465: +#line 1354 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} break; - case 470: -#line 1369 "harbour.y" + case 466: +#line 1355 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; - case 471: -#line 1370 "harbour.y" + case 467: +#line 1356 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 472: -#line 1371 "harbour.y" + case 468: +#line 1357 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} break; - case 473: -#line 1374 "harbour.y" + case 469: +#line 1360 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;} break; - case 474: -#line 1375 "harbour.y" + case 470: +#line 1361 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(4) - (4)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 475: -#line 1376 "harbour.y" + case 471: +#line 1362 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 476: -#line 1377 "harbour.y" + case 472: +#line 1363 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;} break; - case 477: -#line 1378 "harbour.y" + case 473: +#line 1364 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 478: -#line 1379 "harbour.y" + case 474: +#line 1365 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 487: -#line 1392 "harbour.y" + case 483: +#line 1378 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;} break; - case 488: -#line 1393 "harbour.y" + case 484: +#line 1379 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;} break; - case 489: -#line 1394 "harbour.y" + case 485: +#line 1380 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 490: -#line 1395 "harbour.y" + case 486: +#line 1381 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 491: -#line 1399 "harbour.y" + case 487: +#line 1385 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 492: -#line 1401 "harbour.y" + case 488: +#line 1387 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 493: -#line 1403 "harbour.y" + case 489: +#line 1389 "harbour.y" { (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 494: -#line 1406 "harbour.y" + case 490: +#line 1392 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 496: -#line 1410 "harbour.y" + case 492: +#line 1396 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 497: -#line 1412 "harbour.y" + case 493: +#line 1398 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 498: -#line 1416 "harbour.y" + case 494: +#line 1402 "harbour.y" { (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 499: -#line 1420 "harbour.y" + case 495: +#line 1406 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 500: -#line 1422 "harbour.y" + case 496: +#line 1408 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 501: -#line 1426 "harbour.y" + case 497: +#line 1412 "harbour.y" { (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM ); ;} break; - case 502: -#line 1432 "harbour.y" + case 498: +#line 1418 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wIfCounter ) --HB_COMP_PARAM->functions.pLast->wIfCounter; @@ -6327,31 +6265,31 @@ yyreduce: ;} break; - case 505: -#line 1445 "harbour.y" + case 501: +#line 1431 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 508: -#line 1457 "harbour.y" + case 504: +#line 1443 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 509: -#line 1461 "harbour.y" + case 505: +#line 1447 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wCaseCounter ) --HB_COMP_PARAM->functions.pLast->wCaseCounter; HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 512: -#line 1471 "harbour.y" + case 508: +#line 1457 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;} break; - case 515: -#line 1475 "harbour.y" + case 511: +#line 1461 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6360,21 +6298,21 @@ yyreduce: ;} break; - case 516: -#line 1483 "harbour.y" + case 512: +#line 1469 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 517: -#line 1484 "harbour.y" + case 513: +#line 1470 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 518: -#line 1489 "harbour.y" + case 514: +#line 1475 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); @@ -6382,21 +6320,21 @@ yyreduce: ;} break; - case 519: -#line 1495 "harbour.y" + case 515: +#line 1481 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 520: -#line 1496 "harbour.y" + case 516: +#line 1482 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 521: -#line 1501 "harbour.y" + case 517: +#line 1487 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) ); @@ -6404,39 +6342,39 @@ yyreduce: ;} break; - case 522: -#line 1508 "harbour.y" + case 518: +#line 1494 "harbour.y" {hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;} break; - case 523: -#line 1508 "harbour.y" + case 519: +#line 1494 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 525: -#line 1510 "harbour.y" + case 521: +#line 1496 "harbour.y" { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;} break; - case 527: -#line 1515 "harbour.y" + case 523: +#line 1501 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); (yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 528: -#line 1520 "harbour.y" + case 524: +#line 1506 "harbour.y" { hb_compLoopHere( HB_COMP_PARAM ); hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM ); ;} break; - case 529: -#line 1525 "harbour.y" + case 525: +#line 1511 "harbour.y" { hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wWhileCounter ) @@ -6446,8 +6384,8 @@ yyreduce: ;} break; - case 530: -#line 1535 "harbour.y" + case 526: +#line 1521 "harbour.y" { (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6456,13 +6394,13 @@ yyreduce: ;} break; - case 531: -#line 1544 "harbour.y" + case 527: +#line 1530 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 534: -#line 1552 "harbour.y" + case 530: +#line 1538 "harbour.y" { /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); (yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine; @@ -6477,23 +6415,23 @@ yyreduce: ;} break; - case 535: -#line 1565 "harbour.y" + case 531: +#line 1551 "harbour.y" { /* 9 */ hb_compLoopStart( HB_COMP_PARAM, HB_TRUE ); (yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); ;} break; - case 536: -#line 1570 "harbour.y" + case 532: +#line 1556 "harbour.y" { /* 11 */ (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; ;} break; - case 537: -#line 1574 "harbour.y" + case 533: +#line 1560 "harbour.y" { int iSign, iLine; @@ -6538,18 +6476,18 @@ yyreduce: ;} break; - case 540: -#line 1622 "harbour.y" + case 536: +#line 1608 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 541: -#line 1623 "harbour.y" + case 537: +#line 1609 "harbour.y" { (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 542: -#line 1627 "harbour.y" + case 538: +#line 1613 "harbour.y" { hb_compLinePush( HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wForCounter ) @@ -6557,43 +6495,43 @@ yyreduce: ;} break; - case 547: -#line 1640 "harbour.y" + case 543: +#line 1626 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 548: -#line 1641 "harbour.y" + case 544: +#line 1627 "harbour.y" { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; + case 545: +#line 1630 "harbour.y" + { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 546: +#line 1631 "harbour.y" + { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} + break; + + case 547: +#line 1634 "harbour.y" + { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;} + break; + case 549: -#line 1644 "harbour.y" +#line 1638 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; case 550: -#line 1645 "harbour.y" +#line 1639 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; case 551: -#line 1648 "harbour.y" - { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;} - break; - - case 553: -#line 1652 "harbour.y" - { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 554: -#line 1653 "harbour.y" - { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} - break; - - case 555: -#line 1658 "harbour.y" +#line 1644 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6601,8 +6539,8 @@ yyreduce: ;} break; - case 556: -#line 1664 "harbour.y" + case 552: +#line 1650 "harbour.y" { /* 7 */ @@ -6615,8 +6553,8 @@ yyreduce: ;} break; - case 557: -#line 1675 "harbour.y" + case 553: +#line 1661 "harbour.y" { /* 9 */ @@ -6624,8 +6562,8 @@ yyreduce: ;} break; - case 558: -#line 1681 "harbour.y" + case 554: +#line 1667 "harbour.y" { hb_compLoopHere( HB_COMP_PARAM ); hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) ); @@ -6640,18 +6578,18 @@ yyreduce: ;} break; - case 559: -#line 1695 "harbour.y" + case 555: +#line 1681 "harbour.y" { (yyval.iNumber) = 1; ;} break; - case 560: -#line 1696 "harbour.y" + case 556: +#line 1682 "harbour.y" { (yyval.iNumber) = -1; ;} break; - case 561: -#line 1700 "harbour.y" + case 557: +#line 1686 "harbour.y" { hb_compLoopStart( HB_COMP_PARAM, HB_FALSE ); hb_compSwitchStart( HB_COMP_PARAM, (yyvsp[(1) - (1)].asExpr) ); @@ -6659,24 +6597,24 @@ yyreduce: ;} break; - case 562: -#line 1707 "harbour.y" + case 558: +#line 1693 "harbour.y" { hb_compSwitchEnd( HB_COMP_PARAM ); hb_compLoopEnd( HB_COMP_PARAM ); ;} break; - case 563: -#line 1714 "harbour.y" + case 559: +#line 1700 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM ); ;} break; - case 564: -#line 1721 "harbour.y" + case 560: +#line 1707 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSwitchCounter ) --HB_COMP_PARAM->functions.pLast->wSwitchCounter; @@ -6684,23 +6622,23 @@ yyreduce: ;} break; - case 567: -#line 1733 "harbour.y" + case 563: +#line 1719 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wSwitchCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 568: -#line 1738 "harbour.y" + case 564: +#line 1724 "harbour.y" { (yyval.asExpr) = hb_compExprReduce( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 570: -#line 1745 "harbour.y" + case 566: +#line 1731 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6709,28 +6647,28 @@ yyreduce: ;} break; - case 571: -#line 1753 "harbour.y" + case 567: +#line 1739 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 573: -#line 1756 "harbour.y" + case 569: +#line 1742 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 577: -#line 1764 "harbour.y" + case 573: +#line 1750 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 578: -#line 1764 "harbour.y" + case 574: +#line 1750 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 580: -#line 1769 "harbour.y" + case 576: +#line 1755 "harbour.y" { /* 2 */ hb_compLinePushIfInside( HB_COMP_PARAM ); ++HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -6738,8 +6676,8 @@ yyreduce: ;} break; - case 581: -#line 1777 "harbour.y" + case 577: +#line 1763 "harbour.y" { /* 6 */ /* Set jump address for HB_P_SEQBEGIN opcode - this address * will be used in BREAK code if there is no RECOVER clause @@ -6752,8 +6690,8 @@ yyreduce: ;} break; - case 582: -#line 1788 "harbour.y" + case 578: +#line 1774 "harbour.y" { /* 8 */ /* Replace END address with RECOVER address in * HB_P_SEQBEGIN opcode if there is RECOVER clause @@ -6765,8 +6703,8 @@ yyreduce: ;} break; - case 583: -#line 1798 "harbour.y" + case 579: +#line 1784 "harbour.y" { /* 10 */ long lLoopCount = hb_compLoopCount( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); @@ -6797,13 +6735,13 @@ yyreduce: ;} break; - case 587: -#line 1833 "harbour.y" + case 583: +#line 1819 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 588: -#line 1835 "harbour.y" + case 584: +#line 1821 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM ); @@ -6811,13 +6749,13 @@ yyreduce: ;} break; - case 589: -#line 1842 "harbour.y" + case 585: +#line 1828 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 591: -#line 1847 "harbour.y" + case 587: +#line 1833 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6826,13 +6764,13 @@ yyreduce: ;} break; - case 592: -#line 1855 "harbour.y" + case 588: +#line 1841 "harbour.y" { (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 595: -#line 1861 "harbour.y" + case 591: +#line 1847 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6843,8 +6781,8 @@ yyreduce: ;} break; - case 596: -#line 1872 "harbour.y" + case 592: +#line 1858 "harbour.y" { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6856,15 +6794,15 @@ yyreduce: ;} break; - case 599: -#line 1894 "harbour.y" + case 593: +#line 1876 "harbour.y" { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 600: -#line 1898 "harbour.y" + case 594: +#line 1880 "harbour.y" { hb_compModuleAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_FALSE ); /* DOIDENT is the only one identifier which can be returned in lower letters */ @@ -6872,48 +6810,48 @@ yyreduce: ;} break; - case 601: -#line 1905 "harbour.y" + case 595: +#line 1887 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 602: -#line 1906 "harbour.y" + case 596: +#line 1888 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 603: -#line 1909 "harbour.y" + case 597: +#line 1891 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} break; - case 604: -#line 1910 "harbour.y" + case 598: +#line 1892 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;} break; - case 605: -#line 1911 "harbour.y" + case 599: +#line 1893 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 606: -#line 1912 "harbour.y" + case 600: +#line 1894 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} break; - case 607: -#line 1913 "harbour.y" + case 601: +#line 1895 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 608: -#line 1916 "harbour.y" + case 602: +#line 1898 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 613: -#line 1924 "harbour.y" + case 607: +#line 1906 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); @@ -6923,8 +6861,8 @@ yyreduce: ;} break; - case 614: -#line 1933 "harbour.y" + case 608: +#line 1915 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt ) --HB_COMP_PARAM->functions.pLast->wWithObjectCnt; if( (yyvsp[(5) - (6)].lNumber) ) @@ -6938,14 +6876,14 @@ yyreduce: ;} break; - case 617: -#line 1950 "harbour.y" + case 611: +#line 1932 "harbour.y" { HB_COMP_PARAM->fError = HB_FALSE; ;} break; /* Line 1268 of yacc.c. */ -#line 6949 "harboury.c" +#line 6887 "harboury.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -7164,7 +7102,7 @@ yyreturn: } -#line 1954 "harbour.y" +#line 1936 "harbour.y" /* @@ -7681,7 +7619,7 @@ static void hb_compForStart( HB_COMP_DECL, const char *szVarName, HB_BOOL bForEa pEnumVar->pNext = NULL; } -HB_BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName ) +static HB_BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName ) { HB_ENUMERATOR_PTR pEnumVar; @@ -8004,6 +7942,29 @@ static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ) return pExpr; } +static HB_EXPR_PTR hb_compCheckMethod( HB_COMP_DECL, HB_EXPR_PTR pExpr ) +{ + if( pExpr->value.asMessage.szMessage && + pExpr->value.asMessage.pObject && + pExpr->value.asMessage.pObject->ExprType == HB_ET_VARIABLE && + pExpr->value.asMessage.szMessage[ 0 ] == '_' && + strncmp( "__ENUM", pExpr->value.asMessage.szMessage, 6 ) == 0 ) + { + const char * szMessage = pExpr->value.asMessage.szMessage + 6; + + if( strcmp( "INDEX", szMessage ) == 0 || + strcmp( "KEY", szMessage ) == 0 || + strcmp( "BASE", szMessage ) == 0 || + strcmp( "VALUE", szMessage ) == 0 ) + { + if( ! hb_compForEachVarError( HB_COMP_PARAM, pExpr->value.asMessage.pObject->value.asSymbol ) ) + pExpr->value.asMessage.pObject->ExprType = HB_ET_VARREF; + } + } + + return pExpr; +} + /* ************************************************************************* */ HB_BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc ) diff --git a/harbour/src/compiler/harbour.yyh b/harbour/src/compiler/harbour.yyh index 8359b96ec1..816bc83630 100644 --- a/harbour/src/compiler/harbour.yyh +++ b/harbour/src/compiler/harbour.yyh @@ -266,7 +266,7 @@ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 113 "harbour.y" +#line 114 "harbour.y" { char * string; /* to hold a string returned by lex */ int iNumber; /* to hold a temporary integer number */ @@ -303,19 +303,10 @@ typedef union YYSTYPE int length; int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */ } asCodeblock; - struct - { - HB_BOOL bMacro; - union - { - char * string; - HB_EXPR_PTR macro; - } value; - } asMessage; PHB_VARTYPE asVarType; } /* Line 1495 of yacc.c. */ -#line 319 "harboury.h" +#line 310 "harboury.h" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 diff --git a/harbour/src/macro/macro.y b/harbour/src/macro/macro.y index 77f5b3da88..139e16bbf2 100644 --- a/harbour/src/macro/macro.y +++ b/harbour/src/macro/macro.y @@ -232,6 +232,7 @@ extern void yyerror( HB_MACRO_PTR, const char * ); /* parsing error managemen %type AliasId AliasVar AliasExpr %type VariableAt %type FunCall FunRef +%type SendId %type ObjectData %type ObjectMethod %type IfInline @@ -480,9 +481,12 @@ ExtArgument : EPSILON { $$ = hb_compExprNewArgRef( HB_COMP_PARAM ); } /* Object's instance variable */ -ObjectData : LeftExpression ':' IDENTIFIER { $$ = hb_macroExprNewSend( $1, $3, NULL, HB_COMP_PARAM ); } - | LeftExpression ':' MacroVar { $$ = hb_macroExprNewSend( $1, NULL, $3, HB_COMP_PARAM ); } - | LeftExpression ':' MacroExpr { $$ = hb_macroExprNewSend( $1, NULL, $3, HB_COMP_PARAM ); } +ObjectData : LeftExpression ':' SendId { $$ = hb_compExprNewMethodObject( $3, $1 ); } + ; + +SendId : IDENTIFIER { $$ = hb_compExprNewSend( $1, HB_COMP_PARAM ); } + | MacroVar { $$ = hb_compExprNewMacroSend( $1, HB_COMP_PARAM ); } + | MacroExpr { $$ = hb_compExprNewMacroSend( $1, HB_COMP_PARAM ); } ; /* Object's method diff --git a/harbour/src/macro/macro.yyc b/harbour/src/macro/macro.yyc index 8f67e6bbba..d69350a910 100644 --- a/harbour/src/macro/macro.yyc +++ b/harbour/src/macro/macro.yyc @@ -578,16 +578,16 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 102 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 1243 +#define YYLAST 1244 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 61 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 69 +#define YYNNTS 70 /* YYNRULES -- Number of rules. */ -#define YYNRULES 206 +#define YYNRULES 207 /* YYNRULES -- Number of states. */ -#define YYNSTATES 296 +#define YYNSTATES 297 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -644,109 +644,109 @@ static const yytype_uint16 yyprhs[] = 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 171, 174, 177, 180, 183, 186, 189, 192, 197, 202, 208, 210, 214, 216, 218, 221, 224, 227, 230, - 233, 235, 237, 241, 245, 249, 254, 256, 258, 260, - 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, - 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, - 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, - 322, 323, 328, 330, 334, 335, 337, 339, 341, 343, - 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, - 365, 367, 369, 371, 373, 375, 377, 379, 381, 383, - 385, 388, 391, 394, 397, 400, 403, 407, 411, 415, - 419, 423, 427, 431, 433, 435, 437, 439, 441, 443, - 447, 451, 455, 459, 463, 467, 471, 475, 479, 483, - 487, 491, 495, 499, 503, 507, 511, 514, 517, 521, - 526, 528, 532, 533, 541, 543, 547, 548, 550, 552, - 556, 558, 562, 565, 569, 572, 575 + 233, 235, 237, 241, 243, 245, 247, 252, 254, 256, + 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, + 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, + 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, + 318, 320, 321, 326, 328, 332, 333, 335, 337, 339, + 341, 343, 345, 347, 349, 351, 353, 355, 357, 359, + 361, 363, 365, 367, 369, 371, 373, 375, 377, 379, + 381, 383, 386, 389, 392, 395, 398, 401, 405, 409, + 413, 417, 421, 425, 429, 431, 433, 435, 437, 439, + 441, 445, 449, 453, 457, 461, 465, 469, 473, 477, + 481, 485, 489, 493, 497, 501, 505, 509, 512, 515, + 519, 524, 526, 530, 531, 539, 541, 545, 546, 548, + 550, 554, 556, 560, 563, 567, 570, 573 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 62, 0, -1, 96, -1, 100, -1, 1, -1, 5, + 62, 0, -1, 97, -1, 101, -1, 1, -1, 5, -1, 7, -1, 8, -1, 9, -1, 7, 22, -1, 4, -1, 11, -1, 12, -1, 13, -1, 24, -1, - 53, 120, 54, -1, 71, 118, -1, 53, 23, 54, - -1, 53, 74, 54, -1, 96, 23, 101, -1, 74, - 52, 96, 23, 101, -1, 3, -1, 3, 22, -1, - 28, -1, 29, -1, 77, 22, -1, 50, 127, -1, + 53, 121, 54, -1, 71, 119, -1, 53, 23, 54, + -1, 53, 74, 54, -1, 97, 23, 102, -1, 74, + 52, 97, 23, 102, -1, 3, -1, 3, 22, -1, + 28, -1, 29, -1, 77, 22, -1, 50, 128, -1, 79, 22, -1, 27, 22, -1, 27, 22, 81, -1, - 81, 76, -1, 81, 66, -1, 81, 128, -1, 81, + 81, 76, -1, 81, 66, -1, 81, 129, -1, 81, 78, -1, 81, 80, -1, 3, -1, 77, -1, 66, - 83, -1, 78, 83, -1, 80, 83, -1, 128, 83, + 83, -1, 78, 83, -1, 80, 83, -1, 129, 83, -1, 76, 83, -1, 81, 83, -1, 82, 83, -1, - 66, 127, -1, 76, 127, -1, 78, 127, -1, 80, - 127, -1, 128, 127, -1, 63, 118, -1, 67, 118, - -1, 64, 118, -1, 65, 118, -1, 68, 118, -1, - 121, 118, -1, 69, 118, -1, 73, 118, -1, 70, - 118, -1, 75, 118, -1, 84, 118, -1, 85, 118, - -1, 77, 118, -1, 79, 118, -1, 93, 118, -1, - 94, 118, -1, 87, 118, -1, 129, 118, -1, 127, - 118, -1, 3, 55, 89, 56, -1, 77, 55, 89, + 66, 128, -1, 76, 128, -1, 78, 128, -1, 80, + 128, -1, 129, 128, -1, 63, 119, -1, 67, 119, + -1, 64, 119, -1, 65, 119, -1, 68, 119, -1, + 122, 119, -1, 69, 119, -1, 73, 119, -1, 70, + 119, -1, 75, 119, -1, 84, 119, -1, 85, 119, + -1, 77, 119, -1, 79, 119, -1, 93, 119, -1, + 95, 119, -1, 87, 119, -1, 130, 119, -1, 128, + 119, -1, 3, 55, 89, 56, -1, 77, 55, 89, 56, -1, 51, 3, 55, 89, 56, -1, 92, -1, - 89, 52, 92, -1, 101, -1, 91, -1, 51, 3, + 89, 52, 92, -1, 102, -1, 91, -1, 51, 3, -1, 51, 77, -1, 51, 84, -1, 51, 93, -1, - 51, 86, -1, 37, -1, 90, -1, 102, 57, 3, - -1, 102, 57, 77, -1, 102, 57, 79, -1, 93, - 55, 89, 56, -1, 63, -1, 67, -1, 64, -1, - 65, -1, 68, -1, 121, -1, 69, -1, 70, -1, - 71, -1, 72, -1, 73, -1, 84, -1, 85, -1, - 77, -1, 79, -1, 75, -1, 86, -1, 87, -1, - 129, -1, 93, -1, 94, -1, 107, -1, 114, -1, - 104, -1, 105, -1, 106, -1, 115, -1, 116, -1, - 117, -1, 88, -1, 95, -1, 127, -1, 37, -1, - 96, -1, -1, 101, 52, 99, 101, -1, 98, -1, - 100, 52, 101, -1, -1, 96, -1, 63, -1, 67, - -1, 64, -1, 65, -1, 68, -1, 121, -1, 69, - -1, 70, -1, 71, -1, 72, -1, 73, -1, 84, - -1, 85, -1, 77, -1, 79, -1, 75, -1, 86, - -1, 127, -1, 87, -1, 129, -1, 93, -1, 94, - -1, 20, -1, 21, -1, 102, 103, -1, 20, 96, - -1, 21, 96, -1, 16, 96, -1, 44, 96, -1, - 43, 96, -1, 102, 6, 96, -1, 102, 30, 96, - -1, 102, 31, 96, -1, 102, 32, 96, -1, 102, - 33, 96, -1, 102, 36, 96, -1, 102, 35, 96, - -1, 108, -1, 109, -1, 110, -1, 111, -1, 112, - -1, 113, -1, 96, 43, 96, -1, 96, 44, 96, - -1, 96, 45, 96, -1, 96, 46, 96, -1, 96, - 47, 96, -1, 96, 34, 96, -1, 96, 14, 96, - -1, 96, 15, 96, -1, 96, 17, 96, -1, 96, - 40, 96, -1, 96, 41, 96, -1, 96, 25, 96, - -1, 96, 26, 96, -1, 96, 18, 96, -1, 96, - 19, 96, -1, 96, 42, 96, -1, 96, 39, 96, - -1, 119, 58, -1, 59, 97, -1, 119, 52, 97, - -1, 119, 58, 59, 97, -1, 92, -1, 120, 52, - 92, -1, -1, 53, 60, 122, 124, 60, 123, 54, - -1, 96, -1, 123, 52, 96, -1, -1, 37, -1, - 125, -1, 125, 52, 37, -1, 3, -1, 125, 52, - 3, -1, 55, 101, -1, 126, 52, 101, -1, 126, - 56, -1, 127, 22, -1, 10, 55, 96, 52, 90, - 52, 90, 56, -1 + 51, 86, -1, 37, -1, 90, -1, 103, 57, 94, + -1, 3, -1, 77, -1, 79, -1, 93, 55, 89, + 56, -1, 63, -1, 67, -1, 64, -1, 65, -1, + 68, -1, 122, -1, 69, -1, 70, -1, 71, -1, + 72, -1, 73, -1, 84, -1, 85, -1, 77, -1, + 79, -1, 75, -1, 86, -1, 87, -1, 130, -1, + 93, -1, 95, -1, 108, -1, 115, -1, 105, -1, + 106, -1, 107, -1, 116, -1, 117, -1, 118, -1, + 88, -1, 96, -1, 128, -1, 37, -1, 97, -1, + -1, 102, 52, 100, 102, -1, 99, -1, 101, 52, + 102, -1, -1, 97, -1, 63, -1, 67, -1, 64, + -1, 65, -1, 68, -1, 122, -1, 69, -1, 70, + -1, 71, -1, 72, -1, 73, -1, 84, -1, 85, + -1, 77, -1, 79, -1, 75, -1, 86, -1, 128, + -1, 87, -1, 130, -1, 93, -1, 95, -1, 20, + -1, 21, -1, 103, 104, -1, 20, 97, -1, 21, + 97, -1, 16, 97, -1, 44, 97, -1, 43, 97, + -1, 103, 6, 97, -1, 103, 30, 97, -1, 103, + 31, 97, -1, 103, 32, 97, -1, 103, 33, 97, + -1, 103, 36, 97, -1, 103, 35, 97, -1, 109, + -1, 110, -1, 111, -1, 112, -1, 113, -1, 114, + -1, 97, 43, 97, -1, 97, 44, 97, -1, 97, + 45, 97, -1, 97, 46, 97, -1, 97, 47, 97, + -1, 97, 34, 97, -1, 97, 14, 97, -1, 97, + 15, 97, -1, 97, 17, 97, -1, 97, 40, 97, + -1, 97, 41, 97, -1, 97, 25, 97, -1, 97, + 26, 97, -1, 97, 18, 97, -1, 97, 19, 97, + -1, 97, 42, 97, -1, 97, 39, 97, -1, 120, + 58, -1, 59, 98, -1, 120, 52, 98, -1, 120, + 58, 59, 98, -1, 92, -1, 121, 52, 92, -1, + -1, 53, 60, 123, 125, 60, 124, 54, -1, 97, + -1, 124, 52, 97, -1, -1, 37, -1, 126, -1, + 126, 52, 37, -1, 3, -1, 126, 52, 3, -1, + 55, 102, -1, 127, 52, 102, -1, 127, 56, -1, + 128, 22, -1, 10, 55, 97, 52, 90, 52, 90, + 56, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 251, 251, 261, 269, 278, 279, 282, 285, 288, - 293, 298, 303, 304, 309, 314, 319, 324, 325, 328, - 329, 335, 338, 343, 346, 365, 370, 373, 380, 381, - 386, 387, 388, 389, 390, 393, 394, 397, 398, 399, - 400, 401, 402, 403, 412, 413, 414, 415, 416, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, - 432, 433, 434, 435, 436, 437, 438, 439, 444, 447, - 452, 462, 463, 466, 467, 470, 471, 472, 473, 474, - 477, 478, 483, 484, 485, 490, 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, 526, 527, 530, 531, - 534, 534, 548, 549, 553, 554, 557, 558, 559, 560, - 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, - 571, 572, 573, 574, 575, 576, 577, 578, 584, 585, - 591, 594, 595, 598, 599, 600, 603, 606, 609, 612, - 615, 618, 621, 624, 625, 626, 627, 628, 629, 632, - 633, 634, 635, 636, 637, 640, 641, 644, 645, 646, - 647, 648, 649, 650, 651, 652, 655, 661, 662, 663, - 666, 667, 671, 670, 678, 679, 684, 685, 686, 687, - 690, 691, 694, 695, 698, 701, 705 + 0, 252, 252, 262, 270, 279, 280, 283, 286, 289, + 294, 299, 304, 305, 310, 315, 320, 325, 326, 329, + 330, 336, 339, 344, 347, 366, 371, 374, 381, 382, + 387, 388, 389, 390, 391, 394, 395, 398, 399, 400, + 401, 402, 403, 404, 413, 414, 415, 416, 417, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, + 433, 434, 435, 436, 437, 438, 439, 440, 445, 448, + 453, 463, 464, 467, 468, 471, 472, 473, 474, 475, + 478, 479, 484, 487, 488, 489, 494, 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, 530, 531, 534, + 535, 538, 538, 552, 553, 557, 558, 561, 562, 563, + 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, + 574, 575, 576, 577, 578, 579, 580, 581, 582, 588, + 589, 595, 598, 599, 602, 603, 604, 607, 610, 613, + 616, 619, 622, 625, 628, 629, 630, 631, 632, 633, + 636, 637, 638, 639, 640, 641, 644, 645, 648, 649, + 650, 651, 652, 653, 654, 655, 656, 659, 665, 666, + 667, 670, 671, 675, 674, 682, 683, 688, 689, 690, + 691, 694, 695, 698, 699, 702, 705, 709 }; #endif @@ -768,7 +768,7 @@ static const char *const yytname[] = "Variable", "VarAlias", "MacroVar", "MacroVarAlias", "MacroExpr", "MacroExprAlias", "FieldAlias", "FieldVarAlias", "AliasId", "AliasVar", "AliasExpr", "VariableAt", "FunCall", "FunRef", "ArgList", "Argument", - "RefArgument", "ExtArgument", "ObjectData", "ObjectMethod", + "RefArgument", "ExtArgument", "ObjectData", "SendId", "ObjectMethod", "SimpleExpression", "Expression", "ExtExpression", "RootParamList", "@1", "AsParamList", "EmptyExpression", "LeftExpression", "PostOp", "ExprPostOp", "ExprPreOp", "ExprUnary", "ExprAssign", "ExprPlusEq", @@ -805,19 +805,19 @@ static const yytype_uint8 yyr1[] = 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 87, 87, 88, 89, 89, 90, 90, 91, 91, 91, 91, 91, - 92, 92, 93, 93, 93, 94, 95, 95, 95, 95, - 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, - 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, - 95, 95, 95, 95, 95, 95, 96, 96, 97, 97, - 99, 98, 100, 100, 101, 101, 102, 102, 102, 102, - 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, - 102, 102, 102, 102, 102, 102, 102, 102, 103, 103, - 104, 105, 105, 106, 106, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 114, 114, 114, 114, 114, 115, - 115, 115, 115, 115, 115, 116, 116, 117, 117, 117, - 117, 117, 117, 117, 117, 117, 118, 119, 119, 119, - 120, 120, 122, 121, 123, 123, 124, 124, 124, 124, - 125, 125, 126, 126, 127, 128, 129 + 92, 92, 93, 94, 94, 94, 95, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 97, 97, 98, + 98, 100, 99, 101, 101, 102, 102, 103, 103, 103, + 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, + 103, 103, 103, 103, 103, 103, 103, 103, 103, 104, + 104, 105, 106, 106, 107, 107, 107, 108, 109, 110, + 111, 112, 113, 114, 115, 115, 115, 115, 115, 115, + 116, 116, 116, 116, 116, 116, 117, 117, 118, 118, + 118, 118, 118, 118, 118, 118, 118, 119, 120, 120, + 120, 121, 121, 123, 122, 124, 124, 125, 125, 125, + 125, 126, 126, 127, 127, 128, 129, 130 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -831,19 +831,19 @@ static const yytype_uint8 yyr2[] = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 5, 1, 3, 1, 1, 2, 2, 2, 2, 2, - 1, 1, 3, 3, 3, 4, 1, 1, 1, 1, + 1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 0, 4, 1, 3, 0, 1, 1, 1, 1, 1, + 1, 0, 4, 1, 3, 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, - 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, - 3, 3, 3, 1, 1, 1, 1, 1, 1, 3, + 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, + 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 2, 2, 3, 4, - 1, 3, 0, 7, 1, 3, 0, 1, 1, 3, - 1, 3, 2, 3, 2, 2, 8 + 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, + 4, 1, 3, 0, 7, 1, 3, 0, 1, 1, + 3, 1, 3, 2, 3, 2, 2, 8 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -853,34 +853,34 @@ static const yytype_uint8 yydefact[] = { 0, 4, 21, 10, 5, 6, 7, 8, 0, 11, 12, 13, 0, 0, 0, 14, 0, 23, 24, 0, - 0, 0, 0, 124, 124, 0, 86, 88, 89, 0, - 87, 90, 92, 93, 94, 95, 96, 101, 0, 99, - 0, 100, 0, 0, 0, 97, 98, 102, 103, 115, - 105, 106, 116, 2, 122, 3, 0, 0, 109, 110, - 111, 107, 163, 164, 165, 166, 167, 168, 108, 112, - 113, 114, 91, 0, 117, 0, 104, 22, 124, 9, - 0, 153, 151, 152, 28, 155, 154, 26, 0, 0, - 80, 0, 192, 0, 81, 74, 190, 125, 73, 0, - 125, 202, 1, 0, 49, 0, 51, 52, 35, 36, + 0, 0, 0, 125, 125, 0, 87, 89, 90, 0, + 88, 91, 93, 94, 95, 96, 97, 102, 0, 100, + 0, 101, 0, 0, 0, 98, 99, 103, 104, 116, + 106, 107, 117, 2, 123, 3, 0, 0, 110, 111, + 112, 108, 164, 165, 166, 167, 168, 169, 109, 113, + 114, 115, 92, 0, 118, 0, 105, 22, 125, 9, + 0, 154, 152, 153, 28, 156, 155, 26, 0, 0, + 80, 0, 193, 0, 81, 74, 191, 126, 73, 0, + 126, 203, 1, 0, 49, 0, 51, 52, 35, 36, 37, 44, 50, 53, 55, 57, 16, 56, 58, 41, - 45, 25, 124, 61, 38, 46, 27, 62, 39, 47, + 45, 25, 125, 61, 38, 46, 27, 62, 39, 47, 35, 0, 31, 30, 36, 33, 0, 34, 42, 0, - 32, 43, 59, 60, 65, 124, 63, 64, 0, 0, + 32, 43, 59, 60, 65, 125, 63, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 124, 120, 0, 148, 149, - 0, 0, 0, 0, 0, 0, 0, 150, 54, 124, - 204, 205, 67, 40, 48, 66, 0, 71, 0, 29, - 124, 17, 75, 126, 128, 129, 127, 130, 132, 133, - 134, 135, 136, 141, 76, 140, 77, 138, 79, 144, - 78, 147, 0, 131, 143, 145, 196, 0, 18, 124, - 124, 15, 118, 119, 187, 0, 186, 0, 0, 175, - 176, 177, 182, 183, 180, 181, 174, 185, 178, 179, - 184, 169, 170, 171, 172, 173, 123, 124, 156, 157, - 158, 159, 160, 162, 161, 82, 83, 84, 203, 124, - 68, 124, 0, 124, 200, 197, 0, 198, 0, 19, - 191, 188, 0, 69, 85, 121, 72, 0, 70, 0, - 0, 0, 124, 189, 124, 70, 194, 0, 201, 199, - 20, 0, 0, 193, 206, 195 + 0, 0, 0, 0, 0, 125, 121, 0, 149, 150, + 0, 0, 0, 0, 0, 0, 0, 151, 54, 125, + 205, 206, 67, 40, 48, 66, 0, 71, 0, 29, + 125, 17, 75, 127, 129, 130, 128, 131, 133, 134, + 135, 136, 137, 142, 76, 141, 77, 139, 79, 145, + 78, 148, 0, 132, 144, 146, 197, 0, 18, 125, + 125, 15, 119, 120, 188, 0, 187, 0, 0, 176, + 177, 178, 183, 184, 181, 182, 175, 186, 179, 180, + 185, 170, 171, 172, 173, 174, 124, 125, 157, 158, + 159, 160, 161, 163, 162, 83, 84, 85, 82, 204, + 125, 68, 125, 0, 125, 201, 198, 0, 199, 0, + 19, 192, 189, 0, 69, 86, 122, 72, 0, 70, + 0, 0, 0, 125, 190, 125, 70, 195, 0, 202, + 200, 20, 0, 0, 194, 207, 196 }; /* YYDEFGOTO[NTERM-NUM]. */ @@ -889,322 +889,322 @@ static const yytype_int16 yydefgoto[] = -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 93, 37, 38, 39, 40, 41, 42, 43, 44, 110, 45, 46, 47, 48, 49, 186, 94, - 95, 187, 50, 51, 52, 100, 224, 54, 247, 55, - 98, 57, 177, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 70, 71, 104, 105, 99, - 72, 216, 287, 266, 267, 73, 74, 75, 76 + 95, 187, 50, 258, 51, 52, 100, 224, 54, 247, + 55, 98, 57, 177, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, 104, 105, + 99, 72, 216, 288, 267, 268, 73, 74, 75, 76 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -246 +#define YYPACT_NINF -248 static const yytype_int16 yypact[] = { - 286, -246, 5, -246, -246, -1, -246, -246, -33, -246, - -246, -246, 814, 814, 814, -246, 15, -246, -246, 814, - 814, -27, 55, 184, 814, 62, 408, 425, 442, 2, - 460, 477, 494, 512, 529, 930, 546, 564, 2, 312, - 2, 329, 2, 26, 37, 581, 598, 947, 616, -246, - 360, 633, -246, 991, -246, 39, 47, 965, -246, -246, - -246, -246, -246, -246, -246, -246, -246, -246, -246, -246, - -246, -246, 650, 77, 377, 2, 668, -246, 708, -246, - 814, 1196, -246, -246, 73, -246, -246, -246, 53, 59, - -246, 920, -246, -44, -246, -246, -246, 1063, -246, -16, - 1131, -246, -246, 761, -246, -34, -246, -246, -246, -246, - -246, -246, -246, -246, -246, -246, -246, -246, -246, -246, - -246, -246, 708, -246, -246, -246, -246, -246, -246, -246, - 94, -1, -246, -246, 99, -246, 120, -246, -246, 124, - -246, -246, -246, -246, -246, 708, -246, -246, 814, 814, - 814, 814, 814, 814, 814, 814, 814, 814, 814, 814, - 814, 814, 814, 814, 814, 814, -246, 814, -246, -246, - 814, 814, 814, 814, 814, 814, 6, -246, -246, 814, - -246, -246, -246, -246, -246, -246, 79, -246, 1027, -246, - 708, -246, 60, 88, 88, 88, 88, 88, 88, 88, - 88, -246, 88, 88, 63, -15, 10, 88, 108, 88, - 20, 88, 111, 88, -11, 88, 12, 814, -246, 814, - 708, -246, -246, 1131, -246, 761, 110, 82, 84, 1165, - 1131, 1196, 1196, 1196, 806, 806, 143, 1196, 806, 806, - 806, 80, 80, 64, 64, 64, -246, 814, 1131, 1131, - 1131, 1131, 1131, 1131, 1131, -246, -246, -246, -246, 708, - -246, 867, 87, 708, -246, -246, 122, 132, 1097, -246, - -246, -246, 761, -246, -246, -246, -246, 133, -246, 89, - 814, 14, 814, -246, 867, 119, 1131, 129, -246, -246, - -246, 130, 814, -246, -246, 1131 + 287, -248, -16, -248, -248, -13, -248, -248, -45, -248, + -248, -248, 815, 815, 815, -248, 5, -248, -248, 815, + 815, -33, 31, 185, 815, 40, 409, 426, 443, 2, + 461, 478, 495, 513, 530, 931, 547, 565, 2, 313, + 2, 330, 2, 26, 82, 582, 599, 948, 617, -248, + 361, 634, -248, 992, -248, -4, 10, 966, -248, -248, + -248, -248, -248, -248, -248, -248, -248, -248, -248, -248, + -248, -248, 651, -35, 378, 2, 669, -248, 709, -248, + 815, 1197, -248, -248, 33, -248, -248, -248, 12, 37, + -248, 921, -248, 124, -248, -248, -248, 1064, -248, 129, + 1132, -248, -248, 762, -248, -34, -248, -248, -248, -248, + -248, -248, -248, -248, -248, -248, -248, -248, -248, -248, + -248, -248, 709, -248, -248, -248, -248, -248, -248, -248, + 76, -13, -248, -248, 86, -248, 87, -248, -248, 99, + -248, -248, -248, -248, -248, 709, -248, -248, 815, 815, + 815, 815, 815, 815, 815, 815, 815, 815, 815, 815, + 815, 815, 815, 815, 815, 815, -248, 815, -248, -248, + 815, 815, 815, 815, 815, 815, 8, -248, -248, 815, + -248, -248, -248, -248, -248, -248, 62, -248, 1028, -248, + 709, -248, -6, 72, 72, 72, 72, 72, 72, 72, + 72, -248, 72, 72, 60, -15, 125, 72, 42, 72, + 20, 72, 78, 72, 6, 72, 32, 815, -248, 815, + 709, -248, -248, 1132, -248, 762, 75, 64, 77, 1166, + 1132, 1197, 1197, 1197, 807, 807, 102, 1197, 807, 807, + 807, 79, 79, 93, 93, 93, -248, 815, 1132, 1132, + 1132, 1132, 1132, 1132, 1132, -248, -248, -248, -248, -248, + 709, -248, 868, 90, 709, -248, -248, 81, 92, 1098, + -248, -248, -248, 762, -248, -248, -248, -248, 113, -248, + 91, 815, 63, 815, -248, 868, 128, 1132, 148, -248, + -248, -248, 112, 815, -248, -248, 1132 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -246, -246, 107, 112, 115, 147, 118, 123, 125, 127, - 128, 131, 135, -246, 138, 158, 3, 159, -39, 167, - 139, -246, 30, 140, 141, 142, 145, -246, -119, -245, - -246, -21, 149, 150, -246, 0, -219, -246, -246, -246, - 1, 151, -246, -246, -246, -246, -246, -246, -246, -246, - -246, -246, -246, -246, -246, -246, -246, 56, -246, -246, - 152, -246, -246, -246, -246, -246, 21, 172, 154 + -248, -248, 95, 100, 116, 126, 119, 120, 127, 130, + 132, 133, 135, -248, 136, 134, 3, 160, -39, 161, + 131, -248, 30, 139, 140, 141, 142, -248, -119, -247, + -248, -21, 143, -248, 146, -248, 0, -217, -248, -248, + -248, 1, 150, -248, -248, -248, -248, -248, -248, -248, + -248, -248, -248, -248, -248, -248, -248, -248, 56, -248, + -248, 151, -248, -248, -248, -248, -248, 21, 173, 152 }; /* 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 -148 +#define YYTABLE_NINF -149 static const yytype_int16 yytable[] = { - 53, 56, 96, 227, 136, 108, 271, 126, 217, 255, - 218, 181, 81, 82, 83, 264, 277, 288, 225, 85, - 86, 79, 80, 97, 226, 101, 228, 77, 24, 130, - 17, 18, 109, 131, 17, 18, 220, 84, 221, 291, - 108, 109, 87, 109, 103, 109, 134, 109, 103, 265, - 111, 289, 205, 283, 17, 18, 21, 24, 88, 120, - 78, 125, 102, 129, 139, 17, 18, -137, 119, 103, - 124, 262, 128, 138, 141, 145, 21, -146, 109, 103, - 188, 24, 77, 106, 107, 121, 112, 113, 114, 115, - 116, 165, 117, 118, 204, 123, 184, 127, 155, 166, - 16, 142, 143, 223, 144, 183, 146, 147, 190, 162, - 163, 164, 214, 191, 155, 263, 77, -21, 122, -21, - -139, 121, 103, 160, 161, 162, 163, 164, 178, 179, - 182, 259, 185, 180, 259, 260, 259, 257, 273, 259, - 274, 259, 126, 278, 279, 285, 181, 103, 229, 230, + 53, 56, 96, 227, 136, 108, 77, 126, 272, 79, + 80, 255, 81, 82, 83, 278, 77, 179, 225, 85, + 86, 180, 24, 97, 226, 101, 228, 84, 181, 130, + 17, 18, 109, 131, 88, 265, 17, 18, 292, 78, + 102, 109, 87, 109, 103, 109, 134, 109, 165, 264, + 111, -21, 205, -21, 17, 18, 284, 24, 21, 120, + 16, 125, 166, 129, 139, 103, 289, 190, 119, 266, + 124, 263, 128, 138, 141, 145, 21, -147, 109, 103, + 188, 24, 121, 106, 107, 108, 112, 113, 114, 115, + 116, 191, 117, 118, 204, 123, 184, 127, 77, -143, + 290, 142, 143, 223, 144, 183, 146, 147, 121, 126, + 17, 18, 214, 155, 260, 122, 260, -140, 261, 103, + 274, 181, 160, 161, 162, 163, 164, 155, 178, 260, + 182, 103, 185, 275, 273, 176, 155, 257, 162, 163, + 164, 281, 260, 260, 282, 280, 279, 286, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, - 241, 242, 243, 244, 245, -142, 246, 248, 176, 272, - 249, 250, 251, 252, 253, 254, -68, 155, -68, 256, - 258, 292, 280, 293, 281, 284, 294, 2, 3, 4, - 132, 5, 6, 7, 8, 9, 10, 11, 193, 270, - 12, 133, 135, 194, 13, 14, 195, 89, 15, 196, - 137, 16, 17, 18, 197, 140, 198, 268, 199, 200, - 269, 90, 201, 189, 0, 223, 202, 19, 20, 203, - 0, 206, 207, 208, 21, 91, 209, 23, 276, 24, - 210, 211, 212, 213, 92, 215, 0, 0, 275, 0, + 241, 242, 243, 244, 245, 285, 246, 248, 295, 132, + 249, 250, 251, 252, 253, 254, 217, 133, 218, 256, + 259, 220, -138, 221, 103, -68, 193, -68, 2, 3, + 4, 194, 5, 6, 7, 8, 9, 10, 11, 271, + 293, 12, 294, 135, 137, 13, 14, 195, 89, 15, + 196, 197, 16, 17, 18, 189, 140, 269, 198, 0, + 270, 199, 90, 200, 201, 223, 202, 203, 19, 20, + 206, 207, 208, 209, 210, 21, 91, 211, 23, 277, + 24, 212, 213, 215, 0, 92, 0, 0, 276, 0, 106, 107, 112, 113, 114, 115, 116, 0, 117, 118, 123, 127, 142, 143, 0, 144, 146, 147, 0, 178, - 182, 185, 223, 0, 0, 0, 0, 0, 0, 0, - 286, 0, 0, 290, 0, 0, 0, 1, 0, 2, - 3, 4, 295, 5, 6, 7, 8, 9, 10, 11, - 0, 0, 12, 0, 0, 0, 13, 14, 0, 0, - 15, 0, 0, 16, 17, 18, 0, 0, -139, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 20, 0, -139, -139, 121, -140, 21, 22, -124, 23, - 0, 24, -139, -139, -139, -139, 0, -139, -139, -140, - -140, 126, 0, 0, 0, 0, 0, 0, 0, -140, - -140, -140, -140, 0, -140, -140, -146, 122, 0, -139, - 0, 103, 0, 0, 0, 0, 0, 0, 0, 0, - -146, -146, 0, -143, 0, 0, -140, 0, 103, 0, - -146, -146, -146, -146, 0, -146, -146, -143, -143, 181, - 0, 0, 0, 0, 0, 0, 0, -143, -143, -143, - -143, 0, -143, -143, -126, 145, 0, -146, 0, 103, - 0, 0, 0, 0, 0, 0, 0, 0, -126, -126, - 0, -128, 0, 0, -143, 0, 103, 0, -126, -126, - -126, -126, 0, -126, -126, -128, -128, 0, -129, 0, - 0, 0, 0, 0, 0, -128, -128, -128, -128, 0, - -128, -128, -129, -129, 0, -126, -127, 103, 0, 0, - 0, 0, -129, -129, -129, -129, 0, -129, -129, 0, - -127, -127, -128, -130, 103, 0, 0, 0, 0, 0, - -127, -127, -127, -127, 0, -127, -127, -130, -130, -129, - -132, 103, 0, 0, 0, 0, 0, -130, -130, -130, - -130, 0, -130, -130, -132, -132, 0, -127, -133, 103, - 0, 0, 0, 0, -132, -132, -132, -132, 0, -132, - -132, 0, -133, -133, -130, -134, 103, 0, 0, 0, - 0, 0, -133, -133, -133, -133, 0, -133, -133, -134, - -134, -132, -136, 103, 0, 0, 0, 0, 0, -134, - -134, -134, -134, 0, -134, -134, -136, -136, 0, -133, - -141, 103, 0, 0, 0, 0, -136, -136, -136, -136, - 0, -136, -136, 0, -141, -141, -134, -137, 103, 0, - 0, 0, 0, 0, -141, -141, -141, -141, 0, -141, - -141, -137, -137, -136, -138, 103, 0, 0, 0, 0, - 0, -137, -137, -137, -137, 0, -137, -137, -138, -138, - 0, -141, -144, 103, 0, 0, 0, 0, -138, -138, - -138, -138, 0, -138, -138, 0, -144, -144, -137, -147, - 103, 0, 0, 0, 0, 0, -144, -144, -144, -144, - 0, -144, -144, -147, -147, -138, -131, 103, 0, 0, - 0, 0, 0, -147, -147, -147, -147, 0, -147, -147, - -131, -131, 0, -144, -145, 103, 0, 0, 0, 0, - -131, -131, -131, -131, 0, -131, -131, 0, -145, -145, - -147, 0, 103, 0, 0, 0, 0, 0, -145, -145, - -145, -145, 0, -145, -145, 0, 0, -131, 0, 103, - 0, 2, 3, 4, 0, 5, 6, 7, 8, 9, - 10, 11, 0, 0, 12, -145, 0, 103, 13, 14, - 0, 0, 15, 0, 0, 16, 17, 18, 0, 0, - 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, - 0, 19, 20, 0, 0, 0, 0, 0, 21, 91, - 0, 23, 0, 24, 2, 3, 4, 0, 5, 6, - 7, 8, 9, 10, 11, 0, 0, 12, 0, 0, - 0, 13, 14, 0, 0, 15, 0, 0, 16, 17, - 18, 0, 0, 0, 0, 0, 0, 0, 222, 0, - 0, 0, 0, 0, 19, 20, 0, 0, 0, 0, - 0, 21, 22, 0, 23, 0, 24, 2, 3, 4, - 0, 5, 6, 7, 8, 9, 10, 11, 0, 0, - 12, 153, 154, 0, 13, 14, 0, 0, 15, 0, - 155, 16, 17, 18, 0, 0, 157, 158, 159, 160, - 161, 162, 163, 164, 0, 0, 0, 19, 20, 0, - 0, 0, 0, 0, 21, 22, 0, 23, 0, 24, - 2, 3, 4, 0, 5, 6, 7, 8, 9, 10, + 182, 185, 0, 223, 0, 0, 0, 0, 0, 0, + 0, 287, 0, 0, 291, 0, 0, 0, 1, 0, + 2, 3, 4, 296, 5, 6, 7, 8, 9, 10, 11, 0, 0, 12, 0, 0, 0, 13, 14, 0, - 0, 15, 0, 0, 16, 17, 18, 0, 0, 0, + 0, 15, 0, 0, 16, 17, 18, 0, 0, -140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 20, 0, 0, 0, 0, 0, 21, 91, 0, - 23, 0, 24, 192, 3, 4, 0, 5, 6, 7, - 8, 9, 10, 11, 0, 0, -135, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 16, 17, 18, - -135, -135, 0, -142, 0, 0, 0, 0, 0, 0, - -135, -135, -135, -135, 0, -135, -135, -142, -142, 0, - 21, 167, 0, 23, 0, 24, 0, -142, -142, -142, - -142, 0, -142, -142, 0, 168, 169, -135, 0, 0, - 0, 0, 0, 0, 0, 170, 171, 172, 173, 0, - 174, 175, 0, 0, -142, 148, 149, 0, 150, 151, - 152, 0, 0, 0, 0, 0, 153, 154, 0, 0, - 0, 0, 176, 0, 0, 155, 0, 0, 0, 0, - 156, 157, 158, 159, 160, 161, 162, 163, 164, 0, - 0, 148, 149, -125, 150, 151, 152, 0, 0, 0, - 0, 0, 153, 154, 0, 0, 0, 0, 0, 0, - 0, 155, 0, 0, 0, 0, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 0, 0, 148, 149, 261, - 150, 151, 152, 0, 0, 0, 219, 0, 153, 154, - 0, 0, 0, 0, 0, 0, 0, 155, 0, 0, - 0, 0, 156, 157, 158, 159, 160, 161, 162, 163, - 164, 148, 149, 0, 150, 151, 152, 0, 0, 0, - 282, 0, 153, 154, 0, 0, 0, 0, 0, 0, - 0, 155, 0, 0, 0, 0, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 148, 149, 0, 150, 151, - 152, 0, 0, 0, 0, 0, 153, 154, 0, 0, - 0, 0, 0, 0, 0, 155, 0, 0, 0, 0, - 156, 157, 158, 159, 160, 161, 162, 163, 164, 148, - 0, 0, 150, 151, 152, 0, 0, 0, 0, 0, - 153, 154, 0, 0, 0, 0, 0, 0, 0, 155, - 0, 0, 0, 0, 156, 157, 158, 159, 160, 161, - 162, 163, 164, 150, 151, 152, 0, 0, 0, 0, + 19, 20, 0, -140, -140, 121, -141, 21, 22, -125, + 23, 0, 24, -140, -140, -140, -140, 0, -140, -140, + -141, -141, 126, 0, 0, 0, 0, 0, 0, 0, + -141, -141, -141, -141, 0, -141, -141, -147, 122, 0, + -140, 0, 103, 0, 0, 0, 0, 0, 0, 0, + 0, -147, -147, 0, -144, 0, 0, -141, 0, 103, + 0, -147, -147, -147, -147, 0, -147, -147, -144, -144, + 181, 0, 0, 0, 0, 0, 0, 0, -144, -144, + -144, -144, 0, -144, -144, -127, 145, 0, -147, 0, + 103, 0, 0, 0, 0, 0, 0, 0, 0, -127, + -127, 0, -129, 0, 0, -144, 0, 103, 0, -127, + -127, -127, -127, 0, -127, -127, -129, -129, 0, -130, + 0, 0, 0, 0, 0, 0, -129, -129, -129, -129, + 0, -129, -129, -130, -130, 0, -127, -128, 103, 0, + 0, 0, 0, -130, -130, -130, -130, 0, -130, -130, + 0, -128, -128, -129, -131, 103, 0, 0, 0, 0, + 0, -128, -128, -128, -128, 0, -128, -128, -131, -131, + -130, -133, 103, 0, 0, 0, 0, 0, -131, -131, + -131, -131, 0, -131, -131, -133, -133, 0, -128, -134, + 103, 0, 0, 0, 0, -133, -133, -133, -133, 0, + -133, -133, 0, -134, -134, -131, -135, 103, 0, 0, + 0, 0, 0, -134, -134, -134, -134, 0, -134, -134, + -135, -135, -133, -137, 103, 0, 0, 0, 0, 0, + -135, -135, -135, -135, 0, -135, -135, -137, -137, 0, + -134, -142, 103, 0, 0, 0, 0, -137, -137, -137, + -137, 0, -137, -137, 0, -142, -142, -135, -138, 103, + 0, 0, 0, 0, 0, -142, -142, -142, -142, 0, + -142, -142, -138, -138, -137, -139, 103, 0, 0, 0, + 0, 0, -138, -138, -138, -138, 0, -138, -138, -139, + -139, 0, -142, -145, 103, 0, 0, 0, 0, -139, + -139, -139, -139, 0, -139, -139, 0, -145, -145, -138, + -148, 103, 0, 0, 0, 0, 0, -145, -145, -145, + -145, 0, -145, -145, -148, -148, -139, -132, 103, 0, + 0, 0, 0, 0, -148, -148, -148, -148, 0, -148, + -148, -132, -132, 0, -145, -146, 103, 0, 0, 0, + 0, -132, -132, -132, -132, 0, -132, -132, 0, -146, + -146, -148, 0, 103, 0, 0, 0, 0, 0, -146, + -146, -146, -146, 0, -146, -146, 0, 0, -132, 0, + 103, 0, 2, 3, 4, 0, 5, 6, 7, 8, + 9, 10, 11, 0, 0, 12, -146, 0, 103, 13, + 14, 0, 0, 15, 0, 0, 16, 17, 18, 0, + 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, + 0, 0, 19, 20, 0, 0, 0, 0, 0, 21, + 91, 0, 23, 0, 24, 2, 3, 4, 0, 5, + 6, 7, 8, 9, 10, 11, 0, 0, 12, 0, + 0, 0, 13, 14, 0, 0, 15, 0, 0, 16, + 17, 18, 0, 0, 0, 0, 0, 0, 0, 222, + 0, 0, 0, 0, 0, 19, 20, 0, 0, 0, + 0, 0, 21, 22, 0, 23, 0, 24, 2, 3, + 4, 0, 5, 6, 7, 8, 9, 10, 11, 0, + 0, 12, 153, 154, 0, 13, 14, 0, 0, 15, + 0, 155, 16, 17, 18, 0, 0, 157, 158, 159, + 160, 161, 162, 163, 164, 0, 0, 0, 19, 20, + 0, 0, 0, 0, 0, 21, 22, 0, 23, 0, + 24, 2, 3, 4, 0, 5, 6, 7, 8, 9, + 10, 11, 0, 0, 12, 0, 0, 0, 13, 14, + 0, 0, 15, 0, 0, 16, 17, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 19, 20, 0, 0, 0, 0, 0, 21, 91, + 0, 23, 0, 24, 192, 3, 4, 0, 5, 6, + 7, 8, 9, 10, 11, 0, 0, -136, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 16, 17, + 18, -136, -136, 0, -143, 0, 0, 0, 0, 0, + 0, -136, -136, -136, -136, 0, -136, -136, -143, -143, + 0, 21, 167, 0, 23, 0, 24, 0, -143, -143, + -143, -143, 0, -143, -143, 0, 168, 169, -136, 0, + 0, 0, 0, 0, 0, 0, 170, 171, 172, 173, + 0, 174, 175, 0, 0, -143, 148, 149, 0, 150, + 151, 152, 0, 0, 0, 0, 0, 153, 154, 0, + 0, 0, 0, 176, 0, 0, 155, 0, 0, 0, + 0, 156, 157, 158, 159, 160, 161, 162, 163, 164, + 0, 0, 148, 149, -126, 150, 151, 152, 0, 0, + 0, 0, 0, 153, 154, 0, 0, 0, 0, 0, + 0, 0, 155, 0, 0, 0, 0, 156, 157, 158, + 159, 160, 161, 162, 163, 164, 0, 0, 148, 149, + 262, 150, 151, 152, 0, 0, 0, 219, 0, 153, + 154, 0, 0, 0, 0, 0, 0, 0, 155, 0, + 0, 0, 0, 156, 157, 158, 159, 160, 161, 162, + 163, 164, 148, 149, 0, 150, 151, 152, 0, 0, + 0, 283, 0, 153, 154, 0, 0, 0, 0, 0, + 0, 0, 155, 0, 0, 0, 0, 156, 157, 158, + 159, 160, 161, 162, 163, 164, 148, 149, 0, 150, + 151, 152, 0, 0, 0, 0, 0, 153, 154, 0, + 0, 0, 0, 0, 0, 0, 155, 0, 0, 0, + 0, 156, 157, 158, 159, 160, 161, 162, 163, 164, + 148, 0, 0, 150, 151, 152, 0, 0, 0, 0, 0, 153, 154, 0, 0, 0, 0, 0, 0, 0, 155, 0, 0, 0, 0, 156, 157, 158, 159, 160, - 161, 162, 163, 164 + 161, 162, 163, 164, 150, 151, 152, 0, 0, 0, + 0, 0, 153, 154, 0, 0, 0, 0, 0, 0, + 0, 155, 0, 0, 0, 0, 156, 157, 158, 159, + 160, 161, 162, 163, 164 }; static const yytype_int16 yycheck[] = { - 0, 0, 23, 122, 43, 3, 225, 22, 52, 3, - 54, 22, 12, 13, 14, 3, 261, 3, 52, 19, - 20, 22, 55, 23, 58, 24, 145, 22, 55, 3, - 28, 29, 29, 7, 28, 29, 52, 22, 54, 284, - 3, 38, 21, 40, 59, 42, 43, 44, 59, 37, - 29, 37, 91, 272, 28, 29, 50, 55, 3, 38, - 55, 40, 0, 42, 43, 28, 29, 57, 38, 59, + 0, 0, 23, 122, 43, 3, 22, 22, 225, 22, + 55, 3, 12, 13, 14, 262, 22, 52, 52, 19, + 20, 56, 55, 23, 58, 24, 145, 22, 22, 3, + 28, 29, 29, 7, 3, 3, 28, 29, 285, 55, + 0, 38, 21, 40, 59, 42, 43, 44, 52, 55, + 29, 57, 91, 59, 28, 29, 273, 55, 50, 38, + 27, 40, 52, 42, 43, 59, 3, 55, 38, 37, 40, 190, 42, 43, 44, 55, 50, 57, 75, 59, - 80, 55, 22, 27, 28, 22, 30, 31, 32, 33, - 34, 52, 36, 37, 91, 39, 75, 41, 34, 52, - 27, 45, 46, 103, 48, 75, 50, 51, 55, 45, - 46, 47, 91, 54, 34, 55, 22, 57, 55, 59, - 57, 22, 59, 43, 44, 45, 46, 47, 72, 52, - 74, 52, 76, 56, 52, 56, 52, 176, 56, 52, - 56, 52, 22, 56, 263, 56, 22, 59, 148, 149, + 80, 55, 22, 27, 28, 3, 30, 31, 32, 33, + 34, 54, 36, 37, 91, 39, 75, 41, 22, 57, + 37, 45, 46, 103, 48, 75, 50, 51, 22, 22, + 28, 29, 91, 34, 52, 55, 52, 57, 56, 59, + 56, 22, 43, 44, 45, 46, 47, 34, 72, 52, + 74, 59, 76, 56, 59, 57, 34, 176, 45, 46, + 47, 60, 52, 52, 52, 264, 56, 56, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 57, 165, 167, 57, 59, - 170, 171, 172, 173, 174, 175, 57, 34, 59, 176, - 179, 52, 60, 54, 52, 52, 56, 3, 4, 5, - 43, 7, 8, 9, 10, 11, 12, 13, 91, 220, - 16, 43, 43, 91, 20, 21, 91, 23, 24, 91, - 43, 27, 28, 29, 91, 43, 91, 217, 91, 91, - 219, 37, 91, 84, -1, 225, 91, 43, 44, 91, - -1, 91, 91, 91, 50, 51, 91, 53, 259, 55, - 91, 91, 91, 91, 60, 91, -1, -1, 247, -1, + 160, 161, 162, 163, 164, 52, 165, 167, 56, 43, + 170, 171, 172, 173, 174, 175, 52, 43, 54, 176, + 179, 52, 57, 54, 59, 57, 91, 59, 3, 4, + 5, 91, 7, 8, 9, 10, 11, 12, 13, 220, + 52, 16, 54, 43, 43, 20, 21, 91, 23, 24, + 91, 91, 27, 28, 29, 84, 43, 217, 91, -1, + 219, 91, 37, 91, 91, 225, 91, 91, 43, 44, + 91, 91, 91, 91, 91, 50, 51, 91, 53, 260, + 55, 91, 91, 91, -1, 60, -1, -1, 247, -1, 194, 195, 196, 197, 198, 199, 200, -1, 202, 203, 204, 205, 206, 207, -1, 209, 210, 211, -1, 213, - 214, 215, 272, -1, -1, -1, -1, -1, -1, -1, - 280, -1, -1, 282, -1, -1, -1, 1, -1, 3, - 4, 5, 292, 7, 8, 9, 10, 11, 12, 13, - -1, -1, 16, -1, -1, -1, 20, 21, -1, -1, - 24, -1, -1, 27, 28, 29, -1, -1, 6, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 43, - 44, -1, 20, 21, 22, 6, 50, 51, 52, 53, - -1, 55, 30, 31, 32, 33, -1, 35, 36, 20, - 21, 22, -1, -1, -1, -1, -1, -1, -1, 30, - 31, 32, 33, -1, 35, 36, 6, 55, -1, 57, - -1, 59, -1, -1, -1, -1, -1, -1, -1, -1, - 20, 21, -1, 6, -1, -1, 57, -1, 59, -1, - 30, 31, 32, 33, -1, 35, 36, 20, 21, 22, - -1, -1, -1, -1, -1, -1, -1, 30, 31, 32, - 33, -1, 35, 36, 6, 55, -1, 57, -1, 59, - -1, -1, -1, -1, -1, -1, -1, -1, 20, 21, - -1, 6, -1, -1, 57, -1, 59, -1, 30, 31, - 32, 33, -1, 35, 36, 20, 21, -1, 6, -1, - -1, -1, -1, -1, -1, 30, 31, 32, 33, -1, - 35, 36, 20, 21, -1, 57, 6, 59, -1, -1, - -1, -1, 30, 31, 32, 33, -1, 35, 36, -1, - 20, 21, 57, 6, 59, -1, -1, -1, -1, -1, - 30, 31, 32, 33, -1, 35, 36, 20, 21, 57, - 6, 59, -1, -1, -1, -1, -1, 30, 31, 32, - 33, -1, 35, 36, 20, 21, -1, 57, 6, 59, - -1, -1, -1, -1, 30, 31, 32, 33, -1, 35, - 36, -1, 20, 21, 57, 6, 59, -1, -1, -1, - -1, -1, 30, 31, 32, 33, -1, 35, 36, 20, - 21, 57, 6, 59, -1, -1, -1, -1, -1, 30, - 31, 32, 33, -1, 35, 36, 20, 21, -1, 57, - 6, 59, -1, -1, -1, -1, 30, 31, 32, 33, - -1, 35, 36, -1, 20, 21, 57, 6, 59, -1, - -1, -1, -1, -1, 30, 31, 32, 33, -1, 35, - 36, 20, 21, 57, 6, 59, -1, -1, -1, -1, + 214, 215, -1, 273, -1, -1, -1, -1, -1, -1, + -1, 281, -1, -1, 283, -1, -1, -1, 1, -1, + 3, 4, 5, 293, 7, 8, 9, 10, 11, 12, + 13, -1, -1, 16, -1, -1, -1, 20, 21, -1, + -1, 24, -1, -1, 27, 28, 29, -1, -1, 6, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 43, 44, -1, 20, 21, 22, 6, 50, 51, 52, + 53, -1, 55, 30, 31, 32, 33, -1, 35, 36, + 20, 21, 22, -1, -1, -1, -1, -1, -1, -1, + 30, 31, 32, 33, -1, 35, 36, 6, 55, -1, + 57, -1, 59, -1, -1, -1, -1, -1, -1, -1, + -1, 20, 21, -1, 6, -1, -1, 57, -1, 59, -1, 30, 31, 32, 33, -1, 35, 36, 20, 21, - -1, 57, 6, 59, -1, -1, -1, -1, 30, 31, - 32, 33, -1, 35, 36, -1, 20, 21, 57, 6, - 59, -1, -1, -1, -1, -1, 30, 31, 32, 33, - -1, 35, 36, 20, 21, 57, 6, 59, -1, -1, + 22, -1, -1, -1, -1, -1, -1, -1, 30, 31, + 32, 33, -1, 35, 36, 6, 55, -1, 57, -1, + 59, -1, -1, -1, -1, -1, -1, -1, -1, 20, + 21, -1, 6, -1, -1, 57, -1, 59, -1, 30, + 31, 32, 33, -1, 35, 36, 20, 21, -1, 6, + -1, -1, -1, -1, -1, -1, 30, 31, 32, 33, + -1, 35, 36, 20, 21, -1, 57, 6, 59, -1, -1, -1, -1, 30, 31, 32, 33, -1, 35, 36, - 20, 21, -1, 57, 6, 59, -1, -1, -1, -1, - 30, 31, 32, 33, -1, 35, 36, -1, 20, 21, - 57, -1, 59, -1, -1, -1, -1, -1, 30, 31, - 32, 33, -1, 35, 36, -1, -1, 57, -1, 59, - -1, 3, 4, 5, -1, 7, 8, 9, 10, 11, - 12, 13, -1, -1, 16, 57, -1, 59, 20, 21, + -1, 20, 21, 57, 6, 59, -1, -1, -1, -1, + -1, 30, 31, 32, 33, -1, 35, 36, 20, 21, + 57, 6, 59, -1, -1, -1, -1, -1, 30, 31, + 32, 33, -1, 35, 36, 20, 21, -1, 57, 6, + 59, -1, -1, -1, -1, 30, 31, 32, 33, -1, + 35, 36, -1, 20, 21, 57, 6, 59, -1, -1, + -1, -1, -1, 30, 31, 32, 33, -1, 35, 36, + 20, 21, 57, 6, 59, -1, -1, -1, -1, -1, + 30, 31, 32, 33, -1, 35, 36, 20, 21, -1, + 57, 6, 59, -1, -1, -1, -1, 30, 31, 32, + 33, -1, 35, 36, -1, 20, 21, 57, 6, 59, + -1, -1, -1, -1, -1, 30, 31, 32, 33, -1, + 35, 36, 20, 21, 57, 6, 59, -1, -1, -1, + -1, -1, 30, 31, 32, 33, -1, 35, 36, 20, + 21, -1, 57, 6, 59, -1, -1, -1, -1, 30, + 31, 32, 33, -1, 35, 36, -1, 20, 21, 57, + 6, 59, -1, -1, -1, -1, -1, 30, 31, 32, + 33, -1, 35, 36, 20, 21, 57, 6, 59, -1, + -1, -1, -1, -1, 30, 31, 32, 33, -1, 35, + 36, 20, 21, -1, 57, 6, 59, -1, -1, -1, + -1, 30, 31, 32, 33, -1, 35, 36, -1, 20, + 21, 57, -1, 59, -1, -1, -1, -1, -1, 30, + 31, 32, 33, -1, 35, 36, -1, -1, 57, -1, + 59, -1, 3, 4, 5, -1, 7, 8, 9, 10, + 11, 12, 13, -1, -1, 16, 57, -1, 59, 20, + 21, -1, -1, 24, -1, -1, 27, 28, 29, -1, + -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, + -1, -1, 43, 44, -1, -1, -1, -1, -1, 50, + 51, -1, 53, -1, 55, 3, 4, 5, -1, 7, + 8, 9, 10, 11, 12, 13, -1, -1, 16, -1, + -1, -1, 20, 21, -1, -1, 24, -1, -1, 27, + 28, 29, -1, -1, -1, -1, -1, -1, -1, 37, + -1, -1, -1, -1, -1, 43, 44, -1, -1, -1, + -1, -1, 50, 51, -1, 53, -1, 55, 3, 4, + 5, -1, 7, 8, 9, 10, 11, 12, 13, -1, + -1, 16, 25, 26, -1, 20, 21, -1, -1, 24, + -1, 34, 27, 28, 29, -1, -1, 40, 41, 42, + 43, 44, 45, 46, 47, -1, -1, -1, 43, 44, + -1, -1, -1, -1, -1, 50, 51, -1, 53, -1, + 55, 3, 4, 5, -1, 7, 8, 9, 10, 11, + 12, 13, -1, -1, 16, -1, -1, -1, 20, 21, -1, -1, 24, -1, -1, 27, 28, 29, -1, -1, - -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 43, 44, -1, -1, -1, -1, -1, 50, 51, -1, 53, -1, 55, 3, 4, 5, -1, 7, 8, - 9, 10, 11, 12, 13, -1, -1, 16, -1, -1, - -1, 20, 21, -1, -1, 24, -1, -1, 27, 28, - 29, -1, -1, -1, -1, -1, -1, -1, 37, -1, - -1, -1, -1, -1, 43, 44, -1, -1, -1, -1, - -1, 50, 51, -1, 53, -1, 55, 3, 4, 5, - -1, 7, 8, 9, 10, 11, 12, 13, -1, -1, - 16, 25, 26, -1, 20, 21, -1, -1, 24, -1, - 34, 27, 28, 29, -1, -1, 40, 41, 42, 43, - 44, 45, 46, 47, -1, -1, -1, 43, 44, -1, - -1, -1, -1, -1, 50, 51, -1, 53, -1, 55, - 3, 4, 5, -1, 7, 8, 9, 10, 11, 12, - 13, -1, -1, 16, -1, -1, -1, 20, 21, -1, - -1, 24, -1, -1, 27, 28, 29, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 43, 44, -1, -1, -1, -1, -1, 50, 51, -1, - 53, -1, 55, 3, 4, 5, -1, 7, 8, 9, - 10, 11, 12, 13, -1, -1, 6, -1, -1, -1, - -1, -1, -1, -1, 24, -1, -1, 27, 28, 29, - 20, 21, -1, 6, -1, -1, -1, -1, -1, -1, - 30, 31, 32, 33, -1, 35, 36, 20, 21, -1, - 50, 6, -1, 53, -1, 55, -1, 30, 31, 32, - 33, -1, 35, 36, -1, 20, 21, 57, -1, -1, - -1, -1, -1, -1, -1, 30, 31, 32, 33, -1, - 35, 36, -1, -1, 57, 14, 15, -1, 17, 18, - 19, -1, -1, -1, -1, -1, 25, 26, -1, -1, - -1, -1, 57, -1, -1, 34, -1, -1, -1, -1, - 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, - -1, 14, 15, 52, 17, 18, 19, -1, -1, -1, - -1, -1, 25, 26, -1, -1, -1, -1, -1, -1, - -1, 34, -1, -1, -1, -1, 39, 40, 41, 42, - 43, 44, 45, 46, 47, -1, -1, 14, 15, 52, - 17, 18, 19, -1, -1, -1, 23, -1, 25, 26, - -1, -1, -1, -1, -1, -1, -1, 34, -1, -1, - -1, -1, 39, 40, 41, 42, 43, 44, 45, 46, - 47, 14, 15, -1, 17, 18, 19, -1, -1, -1, - 23, -1, 25, 26, -1, -1, -1, -1, -1, -1, - -1, 34, -1, -1, -1, -1, 39, 40, 41, 42, - 43, 44, 45, 46, 47, 14, 15, -1, 17, 18, - 19, -1, -1, -1, -1, -1, 25, 26, -1, -1, - -1, -1, -1, -1, -1, 34, -1, -1, -1, -1, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 14, - -1, -1, 17, 18, 19, -1, -1, -1, -1, -1, - 25, 26, -1, -1, -1, -1, -1, -1, -1, 34, - -1, -1, -1, -1, 39, 40, 41, 42, 43, 44, - 45, 46, 47, 17, 18, 19, -1, -1, -1, -1, + 9, 10, 11, 12, 13, -1, -1, 6, -1, -1, + -1, -1, -1, -1, -1, 24, -1, -1, 27, 28, + 29, 20, 21, -1, 6, -1, -1, -1, -1, -1, + -1, 30, 31, 32, 33, -1, 35, 36, 20, 21, + -1, 50, 6, -1, 53, -1, 55, -1, 30, 31, + 32, 33, -1, 35, 36, -1, 20, 21, 57, -1, + -1, -1, -1, -1, -1, -1, 30, 31, 32, 33, + -1, 35, 36, -1, -1, 57, 14, 15, -1, 17, + 18, 19, -1, -1, -1, -1, -1, 25, 26, -1, + -1, -1, -1, 57, -1, -1, 34, -1, -1, -1, + -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, + -1, -1, 14, 15, 52, 17, 18, 19, -1, -1, + -1, -1, -1, 25, 26, -1, -1, -1, -1, -1, + -1, -1, 34, -1, -1, -1, -1, 39, 40, 41, + 42, 43, 44, 45, 46, 47, -1, -1, 14, 15, + 52, 17, 18, 19, -1, -1, -1, 23, -1, 25, + 26, -1, -1, -1, -1, -1, -1, -1, 34, -1, + -1, -1, -1, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 14, 15, -1, 17, 18, 19, -1, -1, + -1, 23, -1, 25, 26, -1, -1, -1, -1, -1, + -1, -1, 34, -1, -1, -1, -1, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 14, 15, -1, 17, + 18, 19, -1, -1, -1, -1, -1, 25, 26, -1, + -1, -1, -1, -1, -1, -1, 34, -1, -1, -1, + -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 14, -1, -1, 17, 18, 19, -1, -1, -1, -1, -1, 25, 26, -1, -1, -1, -1, -1, -1, -1, 34, -1, -1, -1, -1, 39, 40, 41, 42, 43, - 44, 45, 46, 47 + 44, 45, 46, 47, 17, 18, 19, -1, -1, -1, + -1, -1, 25, 26, -1, -1, -1, -1, -1, -1, + -1, 34, -1, -1, -1, -1, 39, 40, 41, 42, + 43, 44, 45, 46, 47 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -1216,31 +1216,31 @@ static const yytype_uint8 yystos[] = 44, 50, 51, 53, 55, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, - 93, 94, 95, 96, 98, 100, 101, 102, 104, 105, - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 116, 117, 121, 126, 127, 128, 129, 22, 55, 22, - 55, 96, 96, 96, 22, 96, 96, 127, 3, 23, - 37, 51, 60, 74, 90, 91, 92, 96, 101, 120, - 96, 101, 0, 59, 118, 119, 118, 118, 3, 77, - 83, 127, 118, 118, 118, 118, 118, 118, 118, 83, - 127, 22, 55, 118, 83, 127, 22, 118, 83, 127, - 3, 7, 66, 76, 77, 78, 79, 80, 83, 127, - 128, 83, 118, 118, 118, 55, 118, 118, 14, 15, + 93, 95, 96, 97, 99, 101, 102, 103, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 118, 122, 127, 128, 129, 130, 22, 55, 22, + 55, 97, 97, 97, 22, 97, 97, 128, 3, 23, + 37, 51, 60, 74, 90, 91, 92, 97, 102, 121, + 97, 102, 0, 59, 119, 120, 119, 119, 3, 77, + 83, 128, 119, 119, 119, 119, 119, 119, 119, 83, + 128, 22, 55, 119, 83, 128, 22, 119, 83, 128, + 3, 7, 66, 76, 77, 78, 79, 80, 83, 128, + 129, 83, 119, 119, 119, 55, 119, 119, 14, 15, 17, 18, 19, 25, 26, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 52, 52, 6, 20, 21, - 30, 31, 32, 33, 35, 36, 57, 103, 118, 52, - 56, 22, 118, 83, 127, 118, 89, 92, 96, 81, + 30, 31, 32, 33, 35, 36, 57, 104, 119, 52, + 56, 22, 119, 83, 128, 119, 89, 92, 97, 81, 55, 54, 3, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73, 75, 77, 79, 84, 85, 86, 87, - 93, 94, 102, 121, 127, 129, 122, 52, 54, 23, - 52, 54, 37, 96, 97, 52, 58, 89, 89, 96, - 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, - 96, 96, 96, 96, 96, 96, 101, 99, 96, 96, - 96, 96, 96, 96, 96, 3, 77, 79, 101, 52, - 56, 52, 89, 55, 3, 37, 124, 125, 96, 101, - 92, 97, 59, 56, 56, 101, 92, 90, 56, 89, - 60, 52, 23, 97, 52, 56, 96, 123, 3, 37, - 101, 90, 52, 54, 56, 96 + 93, 95, 103, 122, 128, 130, 123, 52, 54, 23, + 52, 54, 37, 97, 98, 52, 58, 89, 89, 97, + 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, + 97, 97, 97, 97, 97, 97, 102, 100, 97, 97, + 97, 97, 97, 97, 97, 3, 77, 79, 94, 102, + 52, 56, 52, 89, 55, 3, 37, 125, 126, 97, + 102, 92, 98, 59, 56, 56, 102, 92, 90, 56, + 89, 60, 52, 23, 98, 52, 56, 97, 124, 3, + 37, 102, 90, 52, 54, 56, 97 }; #define yyerrok (yyerrstatus = 0) @@ -2063,7 +2063,7 @@ yyreduce: switch (yyn) { case 2: -#line 251 "macro.y" +#line 252 "macro.y" { HB_MACRO_DATA->exprType = hb_compExprType( (yyvsp[(1) - (1)].asExpr) ); if( HB_MACRO_DATA->Flags & HB_MACRO_GEN_REFER ) @@ -2077,7 +2077,7 @@ yyreduce: break; case 3: -#line 261 "macro.y" +#line 262 "macro.y" { HB_MACRO_DATA->exprType = hb_compExprType( (yyvsp[(1) - (1)].asExpr) ); if( HB_MACRO_DATA->Flags & HB_MACRO_GEN_PUSH ) @@ -2089,7 +2089,7 @@ yyreduce: break; case 4: -#line 269 "macro.y" +#line 270 "macro.y" { HB_TRACE(HB_TR_DEBUG, ("macro -> invalid syntax: %s", HB_MACRO_DATA->string)); hb_macroError( EG_SYNTAX, HB_COMP_PARAM ); @@ -2098,104 +2098,104 @@ yyreduce: break; case 5: -#line 278 "macro.y" +#line 279 "macro.y" { (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;} break; case 6: -#line 279 "macro.y" +#line 280 "macro.y" { (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;} break; case 7: -#line 282 "macro.y" +#line 283 "macro.y" { (yyval.asExpr) = hb_compExprNewDate( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;} break; case 8: -#line 285 "macro.y" +#line 286 "macro.y" { (yyval.asExpr) = hb_compExprNewTimeStamp( (yyvsp[(1) - (1)].valTimeStamp).date, (yyvsp[(1) - (1)].valTimeStamp).time, HB_COMP_PARAM ); ;} break; case 9: -#line 288 "macro.y" +#line 289 "macro.y" { (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;} break; case 10: -#line 293 "macro.y" +#line 294 "macro.y" { (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;} break; case 11: -#line 298 "macro.y" +#line 299 "macro.y" { (yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, HB_FALSE, HB_COMP_PARAM ); ;} break; case 12: -#line 303 "macro.y" +#line 304 "macro.y" { (yyval.asExpr) = hb_compExprNewLogical( HB_TRUE, HB_COMP_PARAM ); ;} break; case 13: -#line 304 "macro.y" +#line 305 "macro.y" { (yyval.asExpr) = hb_compExprNewLogical( HB_FALSE, HB_COMP_PARAM ); ;} break; case 14: -#line 309 "macro.y" +#line 310 "macro.y" { (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;} break; case 15: -#line 314 "macro.y" +#line 315 "macro.y" { (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 16: -#line 319 "macro.y" +#line 320 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 17: -#line 324 "macro.y" +#line 325 "macro.y" { (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;} break; case 18: -#line 325 "macro.y" +#line 326 "macro.y" { (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 19: -#line 328 "macro.y" +#line 329 "macro.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;} break; case 20: -#line 329 "macro.y" +#line 330 "macro.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;} break; case 21: -#line 335 "macro.y" +#line 336 "macro.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; case 22: -#line 338 "macro.y" +#line 339 "macro.y" { (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;} break; case 23: -#line 343 "macro.y" +#line 344 "macro.y" { (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); HB_MACRO_CHECK( (yyval.asExpr) ); ;} break; case 24: -#line 346 "macro.y" +#line 347 "macro.y" { HB_BOOL fNewString; char * szVarName = hb_macroTextSymbol( (yyvsp[(1) - (1)].string), strlen( (yyvsp[(1) - (1)].string) ), &fNewString ); if( szVarName ) @@ -2216,226 +2216,226 @@ yyreduce: break; case 25: -#line 365 "macro.y" +#line 366 "macro.y" { hb_compExprMacroAsAlias( (yyvsp[(1) - (2)].asExpr) ); ;} break; case 26: -#line 370 "macro.y" +#line 371 "macro.y" { (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;} break; case 28: -#line 380 "macro.y" +#line 381 "macro.y" { (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;} break; case 29: -#line 381 "macro.y" +#line 382 "macro.y" { (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;} break; case 30: -#line 386 "macro.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} - break; - - case 31: #line 387 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 32: + case 31: #line 388 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 33: + case 32: #line 389 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 34: + case 33: #line 390 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; + case 34: +#line 391 "macro.y" + { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} + break; + case 35: -#line 393 "macro.y" +#line 394 "macro.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; case 37: -#line 397 "macro.y" - { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 38: #line 398 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 39: + case 38: #line 399 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 40: + case 39: #line 400 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 41: + case 40: #line 401 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 42: + case 41: #line 402 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 43: + case 42: #line 403 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 44: -#line 412 "macro.y" - { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} + case 43: +#line 404 "macro.y" + { (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 45: + case 44: #line 413 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 46: + case 45: #line 414 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 47: + case 46: #line 415 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 48: + case 47: #line 416 "macro.y" { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 49: -#line 421 "macro.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} + case 48: +#line 417 "macro.y" + { (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 50: + case 49: #line 422 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 51: + case 50: #line 423 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 52: + case 51: #line 424 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 53: + case 52: #line 425 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 54: + case 53: #line 426 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 55: + case 54: #line 427 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 56: + case 55: #line 428 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 57: + case 56: #line 429 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 58: + case 57: #line 430 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 59: + case 58: #line 431 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 60: + case 59: #line 432 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 61: + case 60: #line 433 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 62: + case 61: #line 434 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 63: + case 62: #line 435 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 64: + case 63: #line 436 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 65: + case 64: #line 437 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 66: + case 65: #line 438 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 67: + case 66: #line 439 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; + case 67: +#line 440 "macro.y" + { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} + break; + case 68: -#line 444 "macro.y" +#line 445 "macro.y" { (yyval.asExpr) = hb_macroExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (4)].string), HB_COMP_PARAM ), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); HB_MACRO_CHECK( (yyval.asExpr) ); ;} break; case 69: -#line 447 "macro.y" +#line 448 "macro.y" { (yyval.asExpr) = hb_macroExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); HB_MACRO_CHECK( (yyval.asExpr) ); ;} break; case 70: -#line 452 "macro.y" +#line 453 "macro.y" { if( hb_compExprParamListLen( (yyvsp[(4) - (5)].asExpr) ) != 0 ) { hb_macroError( EG_SYNTAX, HB_COMP_PARAM ); @@ -2447,97 +2447,102 @@ yyreduce: break; case 71: -#line 462 "macro.y" +#line 463 "macro.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; case 72: -#line 463 "macro.y" +#line 464 "macro.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; case 75: -#line 470 "macro.y" +#line 471 "macro.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;} break; case 76: -#line 471 "macro.y" - { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 77: #line 472 "macro.y" { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 78: + case 77: #line 473 "macro.y" { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 79: + case 78: #line 474 "macro.y" + { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 79: +#line 475 "macro.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); (yyval.asExpr)->value.asList.reference = HB_TRUE; ;} break; case 80: -#line 477 "macro.y" +#line 478 "macro.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; case 82: -#line 483 "macro.y" - { (yyval.asExpr) = hb_macroExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].string), NULL, HB_COMP_PARAM ); ;} +#line 484 "macro.y" + { (yyval.asExpr) = hb_compExprNewMethodObject( (yyvsp[(3) - (3)].asExpr), (yyvsp[(1) - (3)].asExpr) ); ;} break; case 83: -#line 484 "macro.y" - { (yyval.asExpr) = hb_macroExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 487 "macro.y" + { (yyval.asExpr) = hb_compExprNewSend( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; case 84: -#line 485 "macro.y" - { (yyval.asExpr) = hb_macroExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 488 "macro.y" + { (yyval.asExpr) = hb_compExprNewMacroSend( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; case 85: -#line 490 "macro.y" +#line 489 "macro.y" + { (yyval.asExpr) = hb_compExprNewMacroSend( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 86: +#line 494 "macro.y" { (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr) ); ;} break; - case 108: -#line 516 "macro.y" - { HB_MACRO_IFENABLED( (yyval.asExpr), (yyvsp[(1) - (1)].asExpr), HB_SM_HARBOUR ); ;} - break; - case 109: -#line 517 "macro.y" +#line 520 "macro.y" { HB_MACRO_IFENABLED( (yyval.asExpr), (yyvsp[(1) - (1)].asExpr), HB_SM_HARBOUR ); ;} break; case 110: -#line 518 "macro.y" +#line 521 "macro.y" { HB_MACRO_IFENABLED( (yyval.asExpr), (yyvsp[(1) - (1)].asExpr), HB_SM_HARBOUR ); ;} break; - case 116: -#line 526 "macro.y" - { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); HB_MACRO_CHECK( (yyval.asExpr) ); ;} + case 111: +#line 522 "macro.y" + { HB_MACRO_IFENABLED( (yyval.asExpr), (yyvsp[(1) - (1)].asExpr), HB_SM_HARBOUR ); ;} break; case 117: -#line 527 "macro.y" +#line 530 "macro.y" { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); HB_MACRO_CHECK( (yyval.asExpr) ); ;} break; case 118: -#line 530 "macro.y" +#line 531 "macro.y" + { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); HB_MACRO_CHECK( (yyval.asExpr) ); ;} + break; + + case 119: +#line 534 "macro.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; - case 120: -#line 534 "macro.y" + case 121: +#line 538 "macro.y" { if( !(HB_MACRO_DATA->Flags & HB_MACRO_GEN_LIST) ) { @@ -2548,283 +2553,283 @@ yyreduce: ;} break; - case 121: -#line 542 "macro.y" + case 122: +#line 546 "macro.y" { HB_MACRO_DATA->uiListElements = 1; (yyval.asExpr) = hb_compExprAddListExpr( ( HB_MACRO_DATA->Flags & HB_MACRO_GEN_PARE ) ? hb_compExprNewList( (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ) : hb_compExprNewArgList( (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), (yyvsp[(4) - (4)].asExpr) ); ;} break; - case 123: -#line 549 "macro.y" + case 124: +#line 553 "macro.y" { HB_MACRO_DATA->uiListElements++; (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 124: -#line 553 "macro.y" + case 125: +#line 557 "macro.y" { (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;} break; - case 146: -#line 577 "macro.y" + case 147: +#line 581 "macro.y" { HB_MACRO_IFENABLED( (yyval.asExpr), (yyvsp[(1) - (1)].asExpr), HB_SM_HARBOUR ); ;} break; - case 148: -#line 584 "macro.y" + case 149: +#line 588 "macro.y" { (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 149: -#line 585 "macro.y" + case 150: +#line 589 "macro.y" { (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 150: -#line 591 "macro.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} - break; - case 151: -#line 594 "macro.y" - { (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} +#line 595 "macro.y" + { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 152: -#line 595 "macro.y" - { (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} +#line 598 "macro.y" + { (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 153: -#line 598 "macro.y" - { (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} +#line 599 "macro.y" + { (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 154: -#line 599 "macro.y" - { (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} +#line 602 "macro.y" + { (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 155: -#line 600 "macro.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} +#line 603 "macro.y" + { (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; case 156: -#line 603 "macro.y" - { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 604 "macro.y" + { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; case 157: -#line 606 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 607 "macro.y" + { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 158: -#line 609 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 610 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 159: -#line 612 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 613 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 160: -#line 615 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 616 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 161: -#line 618 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 619 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 162: -#line 621 "macro.y" +#line 622 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 163: +#line 625 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 169: -#line 632 "macro.y" + case 170: +#line 636 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 170: -#line 633 "macro.y" + case 171: +#line 637 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 171: -#line 634 "macro.y" + case 172: +#line 638 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 172: -#line 635 "macro.y" + case 173: +#line 639 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 173: -#line 636 "macro.y" + case 174: +#line 640 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 174: -#line 637 "macro.y" + case 175: +#line 641 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 175: -#line 640 "macro.y" + case 176: +#line 644 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 176: -#line 641 "macro.y" + case 177: +#line 645 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 177: -#line 644 "macro.y" + case 178: +#line 648 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 178: -#line 645 "macro.y" + case 179: +#line 649 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 179: -#line 646 "macro.y" + case 180: +#line 650 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 180: -#line 647 "macro.y" + case 181: +#line 651 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 181: -#line 648 "macro.y" + case 182: +#line 652 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 182: -#line 649 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} - break; - case 183: -#line 650 "macro.y" +#line 653 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 184: -#line 651 "macro.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} +#line 654 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; case 185: -#line 652 "macro.y" +#line 655 "macro.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 186: +#line 656 "macro.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 187: -#line 661 "macro.y" + case 188: +#line 665 "macro.y" { (yyval.asExpr) = hb_macroExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 188: -#line 662 "macro.y" + case 189: +#line 666 "macro.y" { (yyval.asExpr) = hb_macroExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 189: -#line 663 "macro.y" + case 190: +#line 667 "macro.y" { (yyval.asExpr) = hb_macroExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 190: -#line 666 "macro.y" - { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} - break; - case 191: -#line 667 "macro.y" - { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} +#line 670 "macro.y" + { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; case 192: #line 671 "macro.y" - { (yyval.asExpr) = hb_compExprNewCodeBlock( NULL, 0, 0, HB_COMP_PARAM ); ;} - break; - - case 193: -#line 673 "macro.y" - { (yyval.asExpr) = (yyvsp[(3) - (7)].asExpr); ;} - break; - - case 194: -#line 678 "macro.y" - { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;} - break; - - case 195: -#line 679 "macro.y" - { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} - break; - - case 196: -#line 684 "macro.y" - { (yyval.asExpr) = NULL; ;} - break; - - case 197: -#line 685 "macro.y" - { (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} - break; - - case 198: -#line 686 "macro.y" - { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;} - break; - - case 199: -#line 687 "macro.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} - break; - - case 200: -#line 690 "macro.y" - { (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (1)].asExpr), (yyvsp[(1) - (1)].string), ' ', HB_COMP_PARAM ); ;} - break; - - case 201: -#line 691 "macro.y" - { (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (3)].asExpr), (yyvsp[(3) - (3)].string), ' ', HB_COMP_PARAM ); HB_MACRO_CHECK( (yyval.asExpr) ); ;} - break; - - case 202: -#line 694 "macro.y" - { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 203: -#line 695 "macro.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 206: -#line 706 "macro.y" + case 193: +#line 675 "macro.y" + { (yyval.asExpr) = hb_compExprNewCodeBlock( NULL, 0, 0, HB_COMP_PARAM ); ;} + break; + + case 194: +#line 677 "macro.y" + { (yyval.asExpr) = (yyvsp[(3) - (7)].asExpr); ;} + break; + + case 195: +#line 682 "macro.y" + { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;} + break; + + case 196: +#line 683 "macro.y" + { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} + break; + + case 197: +#line 688 "macro.y" + { (yyval.asExpr) = NULL; ;} + break; + + case 198: +#line 689 "macro.y" + { (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} + break; + + case 199: +#line 690 "macro.y" + { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;} + break; + + case 200: +#line 691 "macro.y" + { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} + break; + + case 201: +#line 694 "macro.y" + { (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (1)].asExpr), (yyvsp[(1) - (1)].string), ' ', HB_COMP_PARAM ); ;} + break; + + case 202: +#line 695 "macro.y" + { (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (3)].asExpr), (yyvsp[(3) - (3)].string), ' ', HB_COMP_PARAM ); HB_MACRO_CHECK( (yyval.asExpr) ); ;} + break; + + case 203: +#line 698 "macro.y" + { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 204: +#line 699 "macro.y" + { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} + break; + + case 207: +#line 710 "macro.y" { (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;} break; /* Line 1268 of yacc.c. */ -#line 2828 "macroy.c" +#line 2833 "macroy.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -3043,7 +3048,7 @@ yyreturn: } -#line 709 "macro.y" +#line 713 "macro.y" @@ -3412,3 +3417,4 @@ int hb_macrolex( YYSTYPE *yylval_ptr, HB_MACRO_PTR pMacro ) } #endif /* HB_MACRO_PPLEX */ + diff --git a/harbour/src/rdd/dbfcdx/dbfcdx1.c b/harbour/src/rdd/dbfcdx/dbfcdx1.c index db97393241..e4e51f13af 100644 --- a/harbour/src/rdd/dbfcdx/dbfcdx1.c +++ b/harbour/src/rdd/dbfcdx/dbfcdx1.c @@ -4637,7 +4637,7 @@ static void hb_cdxIndexDelTag( LPCDXINDEX pIndex, const char * szTagName ) if( *pTagPtr ) { LPCDXTAG pTag = *pTagPtr; - LPCDXKEY pKey = hb_cdxKeyPutC( NULL, szTagName, pIndex->pCompound->uiLen, + LPCDXKEY pKey = hb_cdxKeyPutC( NULL, pTag->szName, pIndex->pCompound->uiLen, pTag->TagBlock ); if( hb_cdxTagKeyDel( pIndex->pCompound, pKey ) ) { diff --git a/harbour/src/vm/macro.c b/harbour/src/vm/macro.c index 02a8e0c97b..905aef33a0 100644 --- a/harbour/src/vm/macro.c +++ b/harbour/src/vm/macro.c @@ -1302,23 +1302,26 @@ void hb_macroGenPushTimeStamp( long lDate, long lTime, HB_COMP_DECL ) /* sends a message to an object */ void hb_macroGenMessage( const char * szMsgName, HB_BOOL bIsObject, HB_COMP_DECL ) { - BYTE byBuf[ sizeof( HB_DYNS_PTR ) + 1 ]; + if( szMsgName ) + { + BYTE byBuf[ sizeof( HB_DYNS_PTR ) + 1 ]; - /* Find the address of passed symbol - create the symbol if doesn't exist - */ - HB_DYNS_PTR pSym = hb_dynsymGetCase( szMsgName ); + /* Find the address of passed symbol - create the symbol if doesn't exist + */ + HB_DYNS_PTR pSym = hb_dynsymGetCase( szMsgName ); - byBuf[ 0 ] = HB_P_MMESSAGE; - HB_PUT_PTR( &byBuf[ 1 ], pSym ); - hb_macroGenPCodeN( byBuf, sizeof( byBuf ), HB_COMP_PARAM ); - - HB_SYMBOL_UNUSED( bIsObject ); /* used in full compiler only */ + byBuf[ 0 ] = HB_P_MMESSAGE; + HB_PUT_PTR( &byBuf[ 1 ], pSym ); + hb_macroGenPCodeN( byBuf, sizeof( byBuf ), HB_COMP_PARAM ); + } + if( !bIsObject ) /* used in full compiler only */ + hb_macroGenPCode3( HB_P_WITHOBJECTMESSAGE, HB_LOBYTE( 0xFFFF ), HB_HIBYTE( 0xFFFF ), HB_COMP_PARAM ); } /* generates an underscore-symbol name for a data assignment */ void hb_macroGenMessageData( const char * szMsg, HB_BOOL bIsObject, HB_COMP_DECL ) { - char * szResult; + char szResult[ HB_SYMBOL_NAME_LEN + 1 ]; int iLen; HB_TRACE(HB_TR_DEBUG, ("hb_macroGenMessageData(%s)", szMsg)); @@ -1326,12 +1329,10 @@ void hb_macroGenMessageData( const char * szMsg, HB_BOOL bIsObject, HB_COMP_DECL iLen = ( int ) strlen( szMsg ); if( iLen > HB_SYMBOL_NAME_LEN - 1 ) iLen = HB_SYMBOL_NAME_LEN - 1; - szResult = ( char * ) hb_xgrab( iLen + 2 ); szResult[ 0 ] = '_'; memcpy( szResult + 1, szMsg, iLen ); szResult[ iLen + 1 ] = '\0'; hb_macroGenMessage( szResult, bIsObject, HB_COMP_PARAM ); - hb_xfree( szResult ); } /* generates the pcode to pop a value from the virtual machine stack onto a variable */ diff --git a/harbour/src/vm/memvars.c b/harbour/src/vm/memvars.c index 06ebe8d609..441fe36cc6 100644 --- a/harbour/src/vm/memvars.c +++ b/harbour/src/vm/memvars.c @@ -548,7 +548,7 @@ static HB_DYNS_PTR hb_memvarFindSymbol( const char * szArg, HB_SIZE ulLen ) if( ulLen && szArg && *szArg ) { char szUprName[ HB_SYMBOL_NAME_LEN + 1 ]; - HB_ISIZ iSize = 0; + int iSize = 0; do {