diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml index 945451239f846..c178cef41dc72 100644 --- a/modules/calcite/pom.xml +++ b/modules/calcite/pom.xml @@ -35,8 +35,8 @@ - 1.26.0 - 1.40.0 + 1.28.0 + 1.42.0 1.0.1 2.8.2 3.1.12 diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 4a5d1c40b3a25..9e32885c54077 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -387,6 +387,7 @@ data: { "UESCAPE" "UNIQUE" "UNKNOWN" + "UNSIGNED" "UPPER" "UPSERT" "UUID" diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/LogicalRelImplementor.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/LogicalRelImplementor.java index 3ff4bc544504c..ccca92c4417e5 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/LogicalRelImplementor.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/LogicalRelImplementor.java @@ -27,6 +27,7 @@ import java.util.function.Function; import java.util.function.Predicate; import java.util.function.Supplier; +import com.google.common.collect.ImmutableList; import org.apache.calcite.rel.RelCollation; import org.apache.calcite.rel.RelFieldCollation; import org.apache.calcite.rel.RelNode; @@ -85,7 +86,6 @@ import org.apache.ignite.internal.processors.query.calcite.rel.IgniteIndexBound; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteIndexCount; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteIndexScan; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteLimit; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteMergeJoin; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteNestedLoopJoin; @@ -282,8 +282,6 @@ public LogicalRelImplementor( RelDataType rightType = rel.getRight().getRowType(); JoinRelType joinType = rel.getJoinType(); - IgniteJoinInfo joinInfo = IgniteJoinInfo.of(rel); - RexNode nonEquiConditionExpression = RexUtil.composeConjunction(Commons.emptyCluster().getRexBuilder(), rel.analyzeCondition().nonEquiConditions, true); @@ -295,7 +293,7 @@ public LogicalRelImplementor( nonEquiCondition = expressionFactory.biPredicate(rel.getCondition(), rowType); } - Node node = HashJoinNode.create(ctx, outType, leftType, rightType, joinType, joinInfo, + Node node = HashJoinNode.create(ctx, outType, leftType, rightType, joinType, rel.analyzeCondition(), nonEquiCondition); node.register(Arrays.asList(visit(rel.getLeft()), visit(rel.getRight()))); @@ -339,14 +337,14 @@ public LogicalRelImplementor( List leftCollations = rel.leftCollation().getFieldCollations(); List rightCollations = rel.rightCollation().getFieldCollations(); - ImmutableBitSet allowNulls = rel.allowNulls(); - ImmutableBitSet.Builder collsAllowNullsBuilder = ImmutableBitSet.builder(); + ImmutableList nullExclusions = rel.analyzeCondition().nullExclusionFlags; + ImmutableBitSet.Builder nullCompAsEqual = ImmutableBitSet.builder(); int lastCollField = -1; for (int c = 0; c < Math.min(leftCollations.size(), rightCollations.size()); ++c) { RelFieldCollation leftColl = leftCollations.get(c); RelFieldCollation rightColl = rightCollations.get(c); - collsAllowNullsBuilder.set(c); + nullCompAsEqual.set(c); for (int p = 0; p < pairsCnt; ++p) { IntPair pair = joinPairs.get(p); @@ -354,8 +352,8 @@ public LogicalRelImplementor( if (pair.source == leftColl.getFieldIndex() && pair.target == rightColl.getFieldIndex()) { lastCollField = c; - if (!allowNulls.get(p)) { - collsAllowNullsBuilder.clear(c); + if (nullExclusions.get(p)) { + nullCompAsEqual.clear(c); break; } @@ -366,7 +364,7 @@ public LogicalRelImplementor( Comparator comp = expressionFactory.comparator( leftCollations.subList(0, lastCollField + 1), rightCollations.subList(0, lastCollField + 1), - collsAllowNullsBuilder.build() + nullCompAsEqual.build() ); Node node = MergeJoinNode.create(ctx, outType, leftType, rightType, joinType, comp, hasExchange(rel)); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/ConverterUtils.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/ConverterUtils.java index 2a8783d29f440..179839da3a345 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/ConverterUtils.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/ConverterUtils.java @@ -419,6 +419,15 @@ else if (fromType == BigDecimal.class) { } else if (toType == UUID.class && fromType == String.class) return Expressions.call(UUID.class, "fromString", operand); + else if (fromType == Object.class && Number.class.isAssignableFrom((Class)toType)) { + Primitive primitiveFromToType = Primitive.ofBox(toType); + if (primitiveFromToType != null) { + Expression res = Expressions.convert_(operand, Number.class); + res = Expressions.unbox(res, primitiveFromToType); + res = Expressions.box(res); + return res; + } + } return Expressions.convert_(operand, toType); } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/IgniteExpressions.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/IgniteExpressions.java index 895c179ae388d..95549f570fa6d 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/IgniteExpressions.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/IgniteExpressions.java @@ -32,13 +32,13 @@ public class IgniteExpressions { /** Make binary expression with arithmetic operations override. */ public static Expression makeBinary(ExpressionType binaryType, Expression left, Expression right) { switch (binaryType) { - case Add: + case Add, AddChecked: return addExact(left, right); - case Subtract: + case Subtract, SubtractChecked: return subtractExact(left, right); - case Multiply: + case Multiply, MultiplyChecked: return multiplyExact(left, right); - case Divide: + case Divide, DivideChecked: return divideExact(left, right); default: return Expressions.makeBinary(binaryType, left, right); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java index 0772d7287d424..32946e53d8936 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java @@ -78,16 +78,21 @@ import static java.util.Objects.requireNonNull; import static org.apache.calcite.adapter.enumerable.EnumUtils.generateCollatorExpression; import static org.apache.calcite.linq4j.tree.ExpressionType.Add; +import static org.apache.calcite.linq4j.tree.ExpressionType.AddChecked; import static org.apache.calcite.linq4j.tree.ExpressionType.Divide; +import static org.apache.calcite.linq4j.tree.ExpressionType.DivideChecked; import static org.apache.calcite.linq4j.tree.ExpressionType.Equal; import static org.apache.calcite.linq4j.tree.ExpressionType.GreaterThan; import static org.apache.calcite.linq4j.tree.ExpressionType.GreaterThanOrEqual; import static org.apache.calcite.linq4j.tree.ExpressionType.LessThan; import static org.apache.calcite.linq4j.tree.ExpressionType.LessThanOrEqual; import static org.apache.calcite.linq4j.tree.ExpressionType.Multiply; +import static org.apache.calcite.linq4j.tree.ExpressionType.MultiplyChecked; import static org.apache.calcite.linq4j.tree.ExpressionType.Negate; +import static org.apache.calcite.linq4j.tree.ExpressionType.NegateChecked; import static org.apache.calcite.linq4j.tree.ExpressionType.NotEqual; import static org.apache.calcite.linq4j.tree.ExpressionType.Subtract; +import static org.apache.calcite.linq4j.tree.ExpressionType.SubtractChecked; import static org.apache.calcite.linq4j.tree.ExpressionType.UnaryPlus; import static org.apache.calcite.sql.fun.SqlLibraryOperators.ACOSH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.ASINH; @@ -162,6 +167,7 @@ import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CEIL; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHAR_LENGTH; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHECKED_DIVIDE; +import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHECKED_DIVIDE_INTEGER; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHECKED_MINUS; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHECKED_MULTIPLY; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.CHECKED_PLUS; @@ -344,6 +350,13 @@ public class RexImpTable { defineUnary(UNARY_MINUS, Negate, NullPolicy.STRICT, BuiltInMethod.BIG_DECIMAL_NEGATE.getMethodName()); defineUnary(UNARY_PLUS, UnaryPlus, NullPolicy.STRICT, null); + // checked arithmetic + defineBinary(CHECKED_PLUS, AddChecked, NullPolicy.STRICT, "checkedPlus"); + defineBinary(CHECKED_MINUS, SubtractChecked, NullPolicy.STRICT, "checkedMinus"); + defineBinary(CHECKED_MULTIPLY, MultiplyChecked, NullPolicy.STRICT, "checkedMultiply"); + defineBinary(CHECKED_DIVIDE, DivideChecked, NullPolicy.STRICT, "checkedDivide"); + defineBinary(CHECKED_DIVIDE_INTEGER, DivideChecked, NullPolicy.STRICT, "checkedDivide"); + defineUnary(CHECKED_UNARY_MINUS, NegateChecked, NullPolicy.STRICT, "checkedUnaryMinus"); defineMethod(MOD, "mod", NullPolicy.STRICT); defineMethod(EXP, "exp", NullPolicy.STRICT); @@ -1227,7 +1240,7 @@ private static class BinaryImplementor extends AbstractRexCallImplementor { @Override Expression implementSafe( final RexToLixTranslator translator, final RexCall call, - final List argValueList) { + List argValueList) { // neither nullable: // return x OP y // x nullable @@ -1243,7 +1256,7 @@ private static class BinaryImplementor extends AbstractRexCallImplementor { // If one or both operands have ANY type, use the late-binding backup // method. if (anyAnyOperands(call)) - return callBackupMethodAnyType(translator, call, argValueList); + return callBackupMethodAnyType(argValueList); final Type type0 = argValueList.get(0).getType(); final Type type1 = argValueList.get(1).getType(); @@ -1272,10 +1285,6 @@ private static class BinaryImplementor extends AbstractRexCallImplementor { argValueList); } - // For checked arithmetic call the method. - if (CHECKED_OPERATORS.contains(op)) - return Expressions.call(SqlFunctions.class, backupMethodName, argValueList); - return IgniteExpressions.makeBinary(expressionType, argValueList.get(0), argValueList.get(1)); } @@ -1290,8 +1299,7 @@ private boolean anyAnyOperands(RexCall call) { } /** */ - private Expression callBackupMethodAnyType(RexToLixTranslator translator, - RexCall call, List expressions) { + private Expression callBackupMethodAnyType(List expressions) { final String backupMethodNameForAnyType = backupMethodName + METHOD_POSTFIX_FOR_ANY_TYPE; @@ -1343,6 +1351,8 @@ private static class UnaryImplementor extends AbstractRexCallImplementor { if (expressionType == ExpressionType.Negate && argVal.type == BigDecimal.class && null != backupMethodName) e = Expressions.call(argVal, backupMethodName); + else if (expressionType == NegateChecked && null != backupMethodName) + e = Expressions.call(SqlFunctions.class, backupMethodName, argValueList); else e = IgniteExpressions.makeUnary(expressionType, argVal); @@ -1562,12 +1572,15 @@ private static class CastImplementor extends AbstractRexCallImplementor { /** {@inheritDoc} */ @Override Expression implementSafe(final RexToLixTranslator translator, final RexCall call, final List argValueList) { - assert call.getOperands().size() == 1; + assert call.operandCount() <= 2; final RelDataType srcType = call.getOperands().get(0).getType(); - // Short-circuit if no cast is required RexNode arg = call.getOperands().get(0); - if (call.getType().equals(srcType)) { + + // Short-circuit if no cast is required + if (call.getType().equals(srcType) + // However, do not elide casts to decimal types, they perform bounds checking + && srcType.getSqlTypeName() != SqlTypeName.DECIMAL) { // No cast required, omit cast return argValueList.get(0); } @@ -1588,10 +1601,10 @@ private static class CastImplementor extends AbstractRexCallImplementor { private RelDataType nullifyType(JavaTypeFactory typeFactory, final RelDataType type, final boolean nullable) { if (type instanceof RelDataTypeFactoryImpl.JavaType) { - final Primitive primitive = Primitive.ofBox( - ((RelDataTypeFactoryImpl.JavaType)type).getJavaClass()); - if (primitive != null) - return typeFactory.createJavaType(primitive.primitiveClass); + Class javaCls = ((RelDataTypeFactoryImpl.JavaType)type).getJavaClass(); + final Class primitive = Primitive.unbox(javaCls); + if (primitive != javaCls) + return typeFactory.createJavaType(primitive); } return typeFactory.createTypeWithNullability(type, nullable); } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java index 336edf395aa7c..f11b432d1f010 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java @@ -52,6 +52,7 @@ import org.apache.calcite.rex.RexLiteral; import org.apache.calcite.rex.RexLocalRef; import org.apache.calcite.rex.RexNode; +import org.apache.calcite.rex.RexNodeAndFieldIndex; import org.apache.calcite.rex.RexOver; import org.apache.calcite.rex.RexPatternFieldRef; import org.apache.calcite.rex.RexProgram; @@ -1343,6 +1344,12 @@ private Result toInnerStorageType(final Result result, final Type storageType) { return new Result(isNullVariable, valVariable); } + /** */ + @Override public Result visitNodeAndFieldIndex( + RexNodeAndFieldIndex nodeAndFieldIndex) { + throw new RuntimeException("cannot translate expression " + nodeAndFieldIndex); + } + /** */ Expression checkNull(Expression expr) { if (Primitive.flavor(expr.getType()) == Primitive.Flavor.PRIMITIVE) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/GroupKey.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/GroupKey.java index f9e7a42dc6aab..c0ef2f9cfff73 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/GroupKey.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/GroupKey.java @@ -18,7 +18,7 @@ package org.apache.ignite.internal.processors.query.calcite.exec.exp.agg; import java.util.Objects; -import org.apache.calcite.util.ImmutableBitSet; +import com.google.common.collect.ImmutableList; import org.apache.ignite.binary.BinaryObjectException; import org.apache.ignite.binary.BinaryRawReader; import org.apache.ignite.binary.BinaryRawWriter; @@ -120,7 +120,7 @@ public RowHandler rowHandler() { */ public static @Nullable GroupKey of(Row r, RowHandler hnd, boolean allowNulls) { if (!allowNulls) - return of(r, hnd, ImmutableBitSet.of()); + return of(r, hnd, ImmutableList.of()); return new GroupKey<>(r, hnd); } @@ -129,9 +129,9 @@ public RowHandler rowHandler() { * @return Group key for provided row. Can be {@code null} if key fields of row contain NULL values and nulls are * not allowed for these columns. */ - public static @Nullable GroupKey of(Row r, RowHandler hnd, ImmutableBitSet allowNulls) { + public static @Nullable GroupKey of(Row r, RowHandler hnd, ImmutableList nullExclusions) { for (int i = 0; i < hnd.columnCount(r); i++) { - if (hnd.get(i, r) == null && !allowNulls.get(i)) + if (hnd.get(i, r) == null && (i >= nullExclusions.size() || nullExclusions.get(i))) return null; } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinNode.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinNode.java index 0158abb25b0b6..1f92f27286f11 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinNode.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinNode.java @@ -25,14 +25,14 @@ import java.util.Map; import java.util.function.BiFunction; import java.util.function.BiPredicate; +import com.google.common.collect.ImmutableList; +import org.apache.calcite.rel.core.JoinInfo; import org.apache.calcite.rel.core.JoinRelType; import org.apache.calcite.rel.type.RelDataType; -import org.apache.calcite.util.ImmutableBitSet; import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext; import org.apache.ignite.internal.processors.query.calcite.exec.MappingRowHandler; import org.apache.ignite.internal.processors.query.calcite.exec.RowHandler; import org.apache.ignite.internal.processors.query.calcite.exec.exp.agg.GroupKey; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; import org.apache.ignite.internal.processors.query.calcite.type.IgniteTypeFactory; import org.jetbrains.annotations.Nullable; @@ -58,7 +58,7 @@ public static HashJoinNode create( RelDataType leftRowType, RelDataType rightRowType, JoinRelType type, - IgniteJoinInfo info, + JoinInfo info, @Nullable BiPredicate nonEqCond ) { assert !info.pairs().isEmpty(); @@ -120,7 +120,7 @@ private abstract static class AbstractStoringHashJoin nullExclusions; /** */ protected @Nullable RowList rightRows; @@ -148,13 +148,13 @@ private abstract static class AbstractStoringHashJoin ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, boolean keepRowsWithNull, @Nullable BiPredicate nonEqCond ) { super(ctx, rowType); - allowNulls = info.allowNulls(); + nullExclusions = info.nullExclusionFlags; this.keepRowsWithNull = keepRowsWithNull; leftRowHnd = new MappingRowHandler<>(ctx.rowHandler(), info.leftKeys.toIntArray()); @@ -175,7 +175,7 @@ protected AbstractStoringHashJoin( /** */ protected @Nullable RowList lookup(Row row) { - GroupKey key = GroupKey.of(row, leftRowHnd, allowNulls); + GroupKey key = GroupKey.of(row, leftRowHnd, nullExclusions); if (key == null) return null; @@ -190,7 +190,7 @@ protected AbstractStoringHashJoin( waitingRight--; - GroupKey key = keepRowsWithNull ? GroupKey.of(row, rightRowHnd) : GroupKey.of(row, rightRowHnd, allowNulls); + GroupKey key = keepRowsWithNull ? GroupKey.of(row, rightRowHnd) : GroupKey.of(row, rightRowHnd, nullExclusions); if (key != null) { nodeMemoryTracker.onRowAdded(row); @@ -293,7 +293,7 @@ private abstract static class AbstractMatchingHashJoin ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, @Nullable RowHandler.RowFactory leftRowFactory, @Nullable RowHandler.RowFactory rightRowFactory, @@ -438,7 +438,7 @@ private abstract static class AbstractNoTouchingHashJoin private AbstractNoTouchingHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, @Nullable RowHandler.RowFactory leftRowFactory, @Nullable RowHandler.RowFactory rightRowFactory, @@ -467,7 +467,7 @@ private static final class InnerHashJoin extends AbstractNoTouchingHashJoi private InnerHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, @Nullable BiPredicate nonEqCond ) { @@ -490,7 +490,7 @@ private static final class LeftHashJoin extends AbstractNoTouchingHashJoin private LeftHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, RowHandler.RowFactory rightRowFactory, @Nullable BiPredicate nonEqCond @@ -516,7 +516,7 @@ private abstract static class AbstractListTouchingHashJoin private AbstractListTouchingHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, @Nullable RowHandler.RowFactory leftRowFactory, @Nullable RowHandler.RowFactory rightRowFactory, @@ -582,7 +582,7 @@ private static class RightHashJoin extends AbstractListTouchingHashJoin ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, RowHandler.RowFactory leftRowFactory, @Nullable BiPredicate nonEqCond @@ -607,7 +607,7 @@ private static final class FullOuterHashJoin extends AbstractListTouchingH private FullOuterHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, RowHandler.RowFactory leftRowFactory, RowHandler.RowFactory rightRowFactory, @@ -634,7 +634,7 @@ private abstract static class AbstractRowTouchingHashJoin private AbstractRowTouchingHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, @Nullable RowHandler.RowFactory leftRowFactory, @Nullable RowHandler.RowFactory rightRowFactory, @@ -678,7 +678,7 @@ private static class RightRowTouchingHashJoin extends AbstractRowTouchingH private RightRowTouchingHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, RowHandler.RowFactory leftRowFactory, @Nullable BiPredicate nonEqCond @@ -703,7 +703,7 @@ private static final class FullOuterRowTouchingHashJoin extends AbstractRo private FullOuterRowTouchingHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, RowHandler outRowHnd, RowHandler.RowFactory leftRowFactory, RowHandler.RowFactory rightRowFactory, @@ -729,7 +729,7 @@ private abstract static class AbstractFilteringHashJoin extends AbstractSt private AbstractFilteringHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, @Nullable BiPredicate nonEqCond ) { super(ctx, rowType, info, false, nonEqCond); @@ -813,7 +813,7 @@ private static final class SemiHashJoin extends AbstractFilteringHashJoin< private SemiHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, @Nullable BiPredicate nonEqCond ) { super(ctx, rowType, info, nonEqCond); @@ -840,7 +840,7 @@ private static final class AntiHashJoin extends AbstractFilteringHashJoin< private AntiHashJoin( ExecutionContext ctx, RelDataType rowType, - IgniteJoinInfo info, + JoinInfo info, @Nullable BiPredicate nonEqCond ) { super(ctx, rowType, info, nonEqCond); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteJoinInfo.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteJoinInfo.java deleted file mode 100644 index 95e2ecbd6b432..0000000000000 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteJoinInfo.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.internal.processors.query.calcite.rel; - -import java.util.ArrayList; -import java.util.List; -import com.google.common.collect.ImmutableList; -import org.apache.calcite.plan.RelOptUtil; -import org.apache.calcite.rel.core.Join; -import org.apache.calcite.rel.core.JoinInfo; -import org.apache.calcite.rex.RexNode; -import org.apache.calcite.util.ImmutableBitSet; -import org.apache.calcite.util.ImmutableIntList; -import org.apache.ignite.internal.util.typedef.F; - -/** Extended {@link JoinInfo}. */ -public class IgniteJoinInfo extends JoinInfo { - /** Conditions with mathing nulls. It usually means presence of 'IS DISTINCT' / 'IS NOT DISTINCT'. */ - private final ImmutableBitSet allowNulls; - - /** */ - public IgniteJoinInfo( - ImmutableIntList leftKeys, - ImmutableIntList rightKeys, - ImmutableBitSet allowNulls, - ImmutableList nonEquis - ) { - super(leftKeys, rightKeys, nonEquis); - - this.allowNulls = allowNulls; - } - - /** */ - public static IgniteJoinInfo of(Join join) { - List leftKeys = new ArrayList<>(); - List rightKeys = new ArrayList<>(); - List skipNulls = new ArrayList<>(); - List nonEquis = new ArrayList<>(); - - RelOptUtil.splitJoinCondition(join.getLeft(), join.getRight(), join.getCondition(), leftKeys, rightKeys, - skipNulls, nonEquis); - - ImmutableBitSet.Builder allowNulls = null; - - if (!F.isEmpty(skipNulls)) { - allowNulls = ImmutableBitSet.builder(); - - for (int i = 0; i < skipNulls.size(); ++i) { - if (!skipNulls.get(i)) - allowNulls.set(i); - } - } - - return new IgniteJoinInfo( - ImmutableIntList.copyOf(leftKeys), - ImmutableIntList.copyOf(rightKeys), - allowNulls == null ? ImmutableBitSet.of() : allowNulls.build(), - ImmutableList.copyOf(nonEquis) - ); - } - - /** */ - public ImmutableBitSet allowNulls() { - return allowNulls; - } -} diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteMergeJoin.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteMergeJoin.java index c1dae0e6f90e2..15a813fd659e4 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteMergeJoin.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteMergeJoin.java @@ -44,7 +44,6 @@ import org.apache.ignite.internal.processors.query.calcite.metadata.cost.IgniteCostFactory; import org.apache.ignite.internal.processors.query.calcite.trait.TraitUtils; import org.apache.ignite.internal.processors.query.calcite.util.Commons; -import org.jetbrains.annotations.Nullable; import static org.apache.calcite.rel.RelCollations.EMPTY; import static org.apache.calcite.rel.RelCollations.containsOrderless; @@ -64,9 +63,6 @@ public class IgniteMergeJoin extends AbstractIgniteJoin { */ private final RelCollation rightCollation; - /** Mathing null conditions like 'IS NOT DISTINCT'. */ - private final ImmutableBitSet allowNulls; - /** */ public IgniteMergeJoin( RelOptCluster cluster, @@ -74,11 +70,10 @@ public IgniteMergeJoin( RelNode left, RelNode right, RexNode condition, - @Nullable ImmutableBitSet allowNulls, Set variablesSet, JoinRelType joinType ) { - this(cluster, traitSet, left, right, condition, allowNulls, variablesSet, joinType, + this(cluster, traitSet, left, right, condition, variablesSet, joinType, left.getTraitSet().getCollation(), right.getTraitSet().getCollation()); } @@ -90,7 +85,6 @@ public IgniteMergeJoin(RelInput input) { input.getInputs().get(0), input.getInputs().get(1), input.getExpression("condition"), - input.getBitSet("allowNulls"), ImmutableSet.copyOf(Commons.transform(input.getIntegerList("variablesSet"), CorrelationId::new)), input.getEnum("joinType", JoinRelType.class), ((RelInputEx)input).getCollation("leftCollation"), @@ -105,7 +99,6 @@ private IgniteMergeJoin( RelNode left, RelNode right, RexNode condition, - @Nullable ImmutableBitSet allowNulls, Set variablesSet, JoinRelType joinType, RelCollation leftCollation, @@ -115,13 +108,12 @@ private IgniteMergeJoin( this.leftCollation = leftCollation; this.rightCollation = rightCollation; - this.allowNulls = allowNulls == null ? ImmutableBitSet.of() : allowNulls; } /** {@inheritDoc} */ @Override public Join copy(RelTraitSet traitSet, RexNode condition, RelNode left, RelNode right, JoinRelType joinType, boolean semiJoinDone) { - return new IgniteMergeJoin(getCluster(), traitSet, left, right, condition, allowNulls, variablesSet, joinType, + return new IgniteMergeJoin(getCluster(), traitSet, left, right, condition, variablesSet, joinType, left.getTraitSet().getCollation(), right.getTraitSet().getCollation()); } @@ -132,7 +124,7 @@ private IgniteMergeJoin( /** {@inheritDoc} */ @Override public IgniteRel clone(RelOptCluster cluster, List inputs) { - return new IgniteMergeJoin(cluster, getTraitSet(), inputs.get(0), inputs.get(1), getCondition(), allowNulls, + return new IgniteMergeJoin(cluster, getTraitSet(), inputs.get(0), inputs.get(1), getCondition(), getVariablesSet(), getJoinType(), leftCollation, rightCollation); } @@ -277,8 +269,7 @@ else if (containsOrderless(rightKeys, collation)) { @Override public RelWriter explainTerms(RelWriter pw) { return super.explainTerms(pw) .item("leftCollation", leftCollation) - .item("rightCollation", rightCollation) - .item("allowNulls", allowNulls); + .item("rightCollation", rightCollation); } /** @@ -295,13 +286,6 @@ public RelCollation rightCollation() { return rightCollation; } - /** - * @return Matching null conditions. - */ - public ImmutableBitSet allowNulls() { - return allowNulls; - } - /** Creates pair with default collation for parent and simple yet sufficient collation for children nodes. */ private Pair> defaultCollationPair( RelTraitSet nodeTraits, diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/HashJoinConverterRule.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/HashJoinConverterRule.java index 1a3cc988085e3..d7b7560c2795b 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/HashJoinConverterRule.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/HashJoinConverterRule.java @@ -24,12 +24,12 @@ import org.apache.calcite.plan.RelTraitSet; import org.apache.calcite.rel.PhysicalNode; import org.apache.calcite.rel.RelNode; +import org.apache.calcite.rel.core.JoinInfo; import org.apache.calcite.rel.logical.LogicalJoin; import org.apache.calcite.rel.metadata.RelMetadataQuery; import org.apache.ignite.internal.processors.query.calcite.hint.HintDefinition; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteConvention; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteHashJoin; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; /** Hash join converter rule. */ public class HashJoinConverterRule extends AbstractIgniteJoinConverterRule { @@ -45,7 +45,7 @@ private HashJoinConverterRule() { @Override public boolean matchesJoin(RelOptRuleCall call) { LogicalJoin join = call.rel(0); - IgniteJoinInfo joinInfo = IgniteJoinInfo.of(join); + JoinInfo joinInfo = join.analyzeCondition(); return !joinInfo.pairs().isEmpty(); } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/MergeJoinConverterRule.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/MergeJoinConverterRule.java index 68feee9084c8b..4cfa4dc32cbb9 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/MergeJoinConverterRule.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/rule/MergeJoinConverterRule.java @@ -25,11 +25,11 @@ import org.apache.calcite.rel.PhysicalNode; import org.apache.calcite.rel.RelCollations; import org.apache.calcite.rel.RelNode; +import org.apache.calcite.rel.core.JoinInfo; import org.apache.calcite.rel.logical.LogicalJoin; import org.apache.calcite.rel.metadata.RelMetadataQuery; import org.apache.ignite.internal.processors.query.calcite.hint.HintDefinition; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteConvention; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteMergeJoin; import org.apache.ignite.internal.util.typedef.F; @@ -51,7 +51,7 @@ public MergeJoinConverterRule() { @Override public boolean matchesJoin(RelOptRuleCall call) { LogicalJoin logicalJoin = call.rel(0); - IgniteJoinInfo info = IgniteJoinInfo.of(logicalJoin); + JoinInfo info = logicalJoin.analyzeCondition(); return info.isEqui() && !F.isEmpty(info.pairs()); } @@ -60,7 +60,7 @@ public MergeJoinConverterRule() { @Override protected PhysicalNode convert(RelOptPlanner planner, RelMetadataQuery mq, LogicalJoin rel) { RelOptCluster cluster = rel.getCluster(); - IgniteJoinInfo joinInfo = IgniteJoinInfo.of(rel); + JoinInfo joinInfo = rel.analyzeCondition(); assert joinInfo.isEqui() && !F.isEmpty(joinInfo.pairs()); @@ -73,7 +73,7 @@ public MergeJoinConverterRule() { RelNode left = convert(rel.getLeft(), leftInTraits); RelNode right = convert(rel.getRight(), rightInTraits); - return new IgniteMergeJoin(cluster, outTraits, left, right, rel.getCondition(), joinInfo.allowNulls(), + return new IgniteMergeJoin(cluster, outTraits, left, right, rel.getCondition(), rel.getVariablesSet(), rel.getJoinType()); } } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java index a49e4a161f098..6287f0374c35c 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java @@ -75,6 +75,14 @@ public IgniteStdSqlOperatorTable() { register(SqlStdOperatorTable.UNARY_MINUS); register(SqlStdOperatorTable.UNARY_PLUS); + // Checked arithmetic + register(SqlStdOperatorTable.CHECKED_PLUS); + register(SqlStdOperatorTable.CHECKED_MINUS); + register(SqlStdOperatorTable.CHECKED_MULTIPLY); + register(SqlStdOperatorTable.CHECKED_DIVIDE); + register(SqlStdOperatorTable.CHECKED_DIVIDE_INTEGER); + register(SqlStdOperatorTable.CHECKED_UNARY_MINUS); + // Aggregates. register(SqlStdOperatorTable.COUNT); register(SqlStdOperatorTable.SUM); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java index 05d733e02329c..43055c6234e8c 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java @@ -69,7 +69,10 @@ import org.apache.calcite.sql.SqlRowTypeNameSpec; import org.apache.calcite.sql.SqlSampleSpec; import org.apache.calcite.sql.SqlSelect; +import org.apache.calcite.sql.SqlByRewriter; import org.apache.calcite.sql.SqlSelectKeyword; +import org.apache.calcite.sql.SqlStarExclude; +import org.apache.calcite.sql.SqlStarReplace; import org.apache.calcite.sql.SqlSetOption; import org.apache.calcite.sql.SqlSnapshot; import org.apache.calcite.sql.SqlTableRef; @@ -146,6 +149,20 @@ public class IgniteSqlParserImpl extends SqlAbstractParserImpl implements Ignite private Casing quotedCasing; private int identifierMaxLength; private SqlConformance conformance; + private int rowValueStarCount; + + private void pushRowValueStar() { + rowValueStarCount++; + } + + private void popRowValueStar() { + assert rowValueStarCount > 0; + rowValueStarCount--; + } + + private boolean allowRowValueStar() { + return rowValueStarCount > 0; + } /** * {@link SqlParserImplFactory} implementation for creating parser. @@ -633,6 +650,12 @@ final public SqlNode OrderByLimitOpt(SqlNode e) throws ParseException { ; } if (orderBy != null || offsetFetch[0] != null || offsetFetch[1] != null) { + if (orderBy != null + && e instanceof SqlSelect + && ((SqlSelect) e).hasByClause()) { + {if (true) throw SqlUtil.newContextException(orderBy.getParserPosition(), + RESOURCE.selectByCannotWithOrderBy());} + } {if (true) return new SqlOrderBy(getPos(), e, Util.first(orderBy, SqlNodeList.EMPTY), offsetFetch[0], offsetFetch[1]);} @@ -2060,18 +2083,25 @@ final public void AddKeyValueOption(List list) throws ParseException { throw new ParseException(); } jj_consume_token(EQ); - value = StringLiteral(); - list.add(key); - list.add(value); + if (jj_2_151(2)) { + value = StringLiteral(); + } else if (jj_2_152(2)) { + value = SimpleIdentifier(); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + list.add(key); + list.add(value); } /** Parses an option value (either a string or a numeric) and adds to a list. */ final public void AddOptionValue(List list) throws ParseException { final SqlNode value; - if (jj_2_151(2)) { + if (jj_2_153(2)) { value = NumericLiteral(); list.add(value); - } else if (jj_2_152(2)) { + } else if (jj_2_154(2)) { value = StringLiteral(); list.add(value); } else { @@ -2091,7 +2121,7 @@ final public SqlNodeList ParenthesizedLiteralOptionCommaList() throws ParseExcep AddOptionValue(list); label_15: while (true) { - if (jj_2_153(2)) { + if (jj_2_155(2)) { ; } else { break label_15; @@ -2105,21 +2135,23 @@ final public SqlNodeList ParenthesizedLiteralOptionCommaList() throws ParseExcep } final public void AddHint(List hints) throws ParseException { + final Span s; final SqlIdentifier hintName; final SqlNodeList hintOptions; final SqlHint.HintOptionFormat optionFormat; + s = span(); hintName = SimpleIdentifier(); - if (jj_2_155(5)) { + if (jj_2_157(5)) { hintOptions = ParenthesizedKeyValueOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.KV_LIST; - } else if (jj_2_156(3)) { + } else if (jj_2_158(3)) { hintOptions = ParenthesizedSimpleIdentifierList(); optionFormat = SqlHint.HintOptionFormat.ID_LIST; - } else if (jj_2_157(3)) { + } else if (jj_2_159(3)) { hintOptions = ParenthesizedLiteralOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.LITERAL_LIST; } else { - if (jj_2_154(2)) { + if (jj_2_156(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); } else { @@ -2129,7 +2161,7 @@ final public void AddHint(List hints) throws ParseException { optionFormat = SqlHint.HintOptionFormat.EMPTY; } hints.add( - new SqlHint(Span.of(hintOptions).end(this), hintName, hintOptions, + new SqlHint(s.end(this), hintName, hintOptions, optionFormat)); } @@ -2141,7 +2173,7 @@ final public SqlNode TableHints(SqlIdentifier tableName) throws ParseException { AddHint(hints); label_16: while (true) { - if (jj_2_158(2)) { + if (jj_2_160(2)) { ; } else { break label_16; @@ -2170,16 +2202,17 @@ final public SqlSelect SqlSelect() throws ParseException { final SqlNode having; final SqlNodeList windowDecls; final SqlNode qualify; + final SqlNodeList by; final List hints = new ArrayList(); final Span s; jj_consume_token(SELECT); s = span(); - if (jj_2_160(2)) { + if (jj_2_162(2)) { jj_consume_token(HINT_BEG); AddHint(hints); label_17: while (true) { - if (jj_2_159(2)) { + if (jj_2_161(2)) { ; } else { break label_17; @@ -2192,13 +2225,13 @@ final public SqlSelect SqlSelect() throws ParseException { ; } SqlSelectKeywords(keywords); - if (jj_2_161(2)) { + if (jj_2_163(2)) { jj_consume_token(STREAM); keywords.add(SqlSelectKeyword.STREAM.symbol(getPos())); } else { ; } - if (jj_2_162(2)) { + if (jj_2_164(2)) { keyword = AllOrDistinct(); keywords.add(keyword); } else { @@ -2208,7 +2241,7 @@ final public SqlSelect SqlSelect() throws ParseException { AddSelectItem(selectList); label_18: while (true) { - if (jj_2_163(2)) { + if (jj_2_165(2)) { ; } else { break label_18; @@ -2216,30 +2249,31 @@ final public SqlSelect SqlSelect() throws ParseException { jj_consume_token(COMMA); AddSelectItem(selectList); } - if (jj_2_169(2)) { + by = null; + if (jj_2_171(2)) { jj_consume_token(FROM); fromClause = FromClause(); - if (jj_2_164(2)) { + if (jj_2_166(2)) { where = Where(); } else { where = null; } - if (jj_2_165(2)) { + if (jj_2_167(2)) { groupBy = GroupBy(); } else { groupBy = null; } - if (jj_2_166(2)) { + if (jj_2_168(2)) { having = Having(); } else { having = null; } - if (jj_2_167(2)) { + if (jj_2_169(2)) { windowDecls = Window(); } else { windowDecls = null; } - if (jj_2_168(2)) { + if (jj_2_170(2)) { qualify = Qualify(); } else { qualify = null; @@ -2253,10 +2287,12 @@ final public SqlSelect SqlSelect() throws ParseException { windowDecls = null; qualify = null; } - {if (true) return new SqlSelect(s.end(this), keywordList, + final SqlSelect select = new SqlSelect(s.end(this), keywordList, new SqlNodeList(selectList, Span.of(selectList).pos()), fromClause, where, groupBy, having, windowDecls, qualify, - null, null, null, new SqlNodeList(hints, getPos()));} + null, null, null, new SqlNodeList(hints, getPos())); + SqlByRewriter.rewrite(select, by); + {if (true) return select;} throw new Error("Missing return statement in function"); } @@ -2278,21 +2314,21 @@ final public SqlNode SqlExplain() throws ParseException { final SqlExplainFormat format; jj_consume_token(EXPLAIN); jj_consume_token(PLAN); - if (jj_2_170(2)) { + if (jj_2_172(2)) { detailLevel = ExplainDetailLevel(); } else { ; } depth = ExplainDepth(); - if (jj_2_171(2)) { + if (jj_2_173(2)) { jj_consume_token(AS); jj_consume_token(XML); format = SqlExplainFormat.XML; - } else if (jj_2_172(2)) { + } else if (jj_2_174(2)) { jj_consume_token(AS); jj_consume_token(JSON); format = SqlExplainFormat.JSON; - } else if (jj_2_173(2)) { + } else if (jj_2_175(2)) { jj_consume_token(AS); jj_consume_token(DOT_FORMAT); format = SqlExplainFormat.DOT; @@ -2314,15 +2350,15 @@ final public SqlNode SqlExplain() throws ParseException { * or DML statement (INSERT, UPDATE, DELETE, MERGE). */ final public SqlNode SqlQueryOrDml() throws ParseException { SqlNode stmt; - if (jj_2_174(2)) { + if (jj_2_176(2)) { stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - } else if (jj_2_175(2)) { + } else if (jj_2_177(2)) { stmt = SqlInsert(); - } else if (jj_2_176(2)) { + } else if (jj_2_178(2)) { stmt = SqlDelete(); - } else if (jj_2_177(2)) { + } else if (jj_2_179(2)) { stmt = SqlUpdate(); - } else if (jj_2_178(2)) { + } else if (jj_2_180(2)) { stmt = SqlMerge(); } else { jj_consume_token(-1); @@ -2337,15 +2373,15 @@ final public SqlNode SqlQueryOrDml() throws ParseException { * EXPLAIN PLAN. */ final public SqlExplain.Depth ExplainDepth() throws ParseException { - if (jj_2_179(2)) { + if (jj_2_181(2)) { jj_consume_token(WITH); jj_consume_token(TYPE); {if (true) return SqlExplain.Depth.TYPE;} - } else if (jj_2_180(2)) { + } else if (jj_2_182(2)) { jj_consume_token(WITH); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.PHYSICAL;} - } else if (jj_2_181(2)) { + } else if (jj_2_183(2)) { jj_consume_token(WITHOUT); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.LOGICAL;} @@ -2360,13 +2396,13 @@ final public SqlExplain.Depth ExplainDepth() throws ParseException { */ final public SqlExplainLevel ExplainDetailLevel() throws ParseException { SqlExplainLevel level = SqlExplainLevel.EXPPLAN_ATTRIBUTES; - if (jj_2_183(2)) { + if (jj_2_185(2)) { jj_consume_token(EXCLUDING); jj_consume_token(ATTRIBUTES); level = SqlExplainLevel.NO_ATTRIBUTES; - } else if (jj_2_184(2)) { + } else if (jj_2_186(2)) { jj_consume_token(INCLUDING); - if (jj_2_182(2)) { + if (jj_2_184(2)) { jj_consume_token(ALL); level = SqlExplainLevel.ALL_ATTRIBUTES; } else { @@ -2393,12 +2429,12 @@ final public SqlNode SqlDescribe() throws ParseException { final SqlNode stmt; jj_consume_token(DESCRIBE); s = span(); - if (jj_2_190(2)) { - if (jj_2_185(2)) { + if (jj_2_192(2)) { + if (jj_2_187(2)) { jj_consume_token(DATABASE); - } else if (jj_2_186(2)) { + } else if (jj_2_188(2)) { jj_consume_token(CATALOG); - } else if (jj_2_187(2)) { + } else if (jj_2_189(2)) { jj_consume_token(SCHEMA); } else { jj_consume_token(-1); @@ -2409,21 +2445,21 @@ final public SqlNode SqlDescribe() throws ParseException { // DESCRIBE SCHEMA but should be different. See // [CALCITE-1221] Implement DESCRIBE DATABASE, CATALOG, STATEMENT {if (true) return new SqlDescribeSchema(s.end(id), id);} - } else if (jj_2_191(2147483647)) { - if (jj_2_188(2)) { + } else if (jj_2_193(2147483647)) { + if (jj_2_190(2)) { jj_consume_token(TABLE); } else { ; } table = CompoundIdentifier(); - if (jj_2_189(2)) { + if (jj_2_191(2)) { column = SimpleIdentifier(); } else { column = null; } {if (true) return new SqlDescribeTable(s.add(table).addIf(column).pos(), table, column);} - } else if (jj_2_192(2)) { + } else if (jj_2_194(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case STATEMENT: jj_consume_token(STATEMENT); @@ -2474,11 +2510,11 @@ final public SqlNode NamedRoutineCall(SqlFunctionCategory routineType, name = CompoundIdentifier(); s = span(); jj_consume_token(LPAREN); - if (jj_2_194(2)) { + if (jj_2_196(2)) { AddArg0(list, exprContext); label_19: while (true) { - if (jj_2_193(2)) { + if (jj_2_195(2)) { ; } else { break label_19; @@ -2507,14 +2543,14 @@ final public SqlNode TableParam() throws ParseException { SqlNode tableRef; s = span(); tableRef = ExplicitTable(getPos()); - if (jj_2_195(2)) { + if (jj_2_197(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_196(2)) { + if (jj_2_198(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2536,14 +2572,14 @@ final public SqlNode PartitionedByAndOrderBy(SqlNode e) throws ParseException { final SqlNodeList partitionList; final SqlNodeList orderList; s = span(); - if (jj_2_197(2)) { + if (jj_2_199(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_198(2)) { + if (jj_2_200(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2558,12 +2594,12 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { jj_consume_token(ORDER); s = span(); jj_consume_token(BY); - if (jj_2_200(2)) { + if (jj_2_202(2)) { jj_consume_token(LPAREN); AddOrderItem(list); label_20: while (true) { - if (jj_2_199(2)) { + if (jj_2_201(2)) { ; } else { break label_20; @@ -2573,7 +2609,7 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { } jj_consume_token(RPAREN); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} - } else if (jj_2_201(2)) { + } else if (jj_2_203(2)) { AddOrderItem(list); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} } else { @@ -2608,9 +2644,9 @@ final public SqlNode SqlInsert() throws ParseException { final SqlNodeList columnList; final Span s; final Pair p; - if (jj_2_202(2)) { + if (jj_2_204(2)) { jj_consume_token(INSERT); - } else if (jj_2_203(2)) { + } else if (jj_2_205(2)) { jj_consume_token(UPSERT); keywords.add(SqlInsertKeyword.UPSERT.symbol(getPos())); } else { @@ -2622,17 +2658,17 @@ final public SqlNode SqlInsert() throws ParseException { keywordList = new SqlNodeList(keywords, s.addAll(keywords).pos()); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_204(2)) { + if (jj_2_206(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_205(5)) { + if (jj_2_207(5)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_206(2)) { + if (jj_2_208(2)) { p = ParenthesizedCompoundIdentifierList(); if (!p.right.isEmpty()) { tableRef = extend(tableRef, p.right); @@ -2672,18 +2708,18 @@ final public SqlNode SqlDelete() throws ParseException { s = span(); jj_consume_token(FROM); tableName = CompoundTableIdentifier(); - if (jj_2_207(2)) { + if (jj_2_209(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_208(2)) { + if (jj_2_210(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_210(2)) { - if (jj_2_209(2)) { + if (jj_2_212(2)) { + if (jj_2_211(2)) { jj_consume_token(AS); } else { ; @@ -2692,7 +2728,7 @@ final public SqlNode SqlDelete() throws ParseException { } else { alias = null; } - if (jj_2_211(2)) { + if (jj_2_213(2)) { where = Where(); } else { where = null; @@ -2719,18 +2755,18 @@ final public SqlNode SqlUpdate() throws ParseException { targetColumnList = new SqlNodeList(s.pos()); sourceExpressionList = new SqlNodeList(s.pos()); tableName = CompoundTableIdentifier(); - if (jj_2_212(2)) { + if (jj_2_214(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_213(2)) { + if (jj_2_215(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_215(2)) { - if (jj_2_214(2)) { + if (jj_2_217(2)) { + if (jj_2_216(2)) { jj_consume_token(AS); } else { ; @@ -2746,7 +2782,7 @@ final public SqlNode SqlUpdate() throws ParseException { AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); label_21: while (true) { - if (jj_2_216(2)) { + if (jj_2_218(2)) { ; } else { break label_21; @@ -2757,7 +2793,7 @@ final public SqlNode SqlUpdate() throws ParseException { jj_consume_token(EQ); AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_217(2)) { + if (jj_2_219(2)) { where = Where(); } else { where = null; @@ -2785,18 +2821,18 @@ final public SqlNode SqlMerge() throws ParseException { s = span(); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_218(2)) { + if (jj_2_220(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_219(2)) { + if (jj_2_221(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_221(2)) { - if (jj_2_220(2)) { + if (jj_2_223(2)) { + if (jj_2_222(2)) { jj_consume_token(AS); } else { ; @@ -2809,14 +2845,14 @@ final public SqlNode SqlMerge() throws ParseException { sourceTableRef = TableRef(); jj_consume_token(ON); condition = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_223(2)) { + if (jj_2_225(2)) { updateCall = WhenMatchedClause(tableRef, alias); - if (jj_2_222(2)) { + if (jj_2_224(2)) { insertCall = WhenNotMatchedClause(tableRef); } else { insertCall = null; } - } else if (jj_2_224(2)) { + } else if (jj_2_226(2)) { updateCall = null; insertCall = WhenNotMatchedClause(tableRef); } else { @@ -2846,7 +2882,7 @@ final public SqlUpdate WhenMatchedClause(SqlNode table, SqlIdentifier alias) thr AddExpression(updateExprList, ExprContext.ACCEPT_SUB_QUERY); label_22: while (true) { - if (jj_2_225(2)) { + if (jj_2_227(2)) { ; } else { break label_22; @@ -2877,18 +2913,18 @@ final public SqlInsert WhenNotMatchedClause(SqlNode table) throws ParseException insertSpan = span(); SqlInsertKeywords(keywords); keywordList = new SqlNodeList(keywords, insertSpan.end(this)); - if (jj_2_226(2)) { + if (jj_2_228(2)) { insertColumnList = ParenthesizedSimpleIdentifierList(); } else { insertColumnList = null; } - if (jj_2_227(2)) { + if (jj_2_229(2)) { jj_consume_token(LPAREN); jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); jj_consume_token(RPAREN); - } else if (jj_2_228(2)) { + } else if (jj_2_230(2)) { jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); @@ -2913,10 +2949,10 @@ final public void AddSelectItem(List list) throws ParseException { SqlNode e; final SqlIdentifier id; e = SelectExpression(); - if (jj_2_232(2)) { - if (jj_2_230(2)) { + if (jj_2_234(2)) { + if (jj_2_232(2)) { jj_consume_token(AS); - if (jj_2_229(2)) { + if (jj_2_231(2)) { jj_consume_token(MEASURE); e = SqlInternalOperators.MEASURE.createCall( e.getParserPosition(), e); @@ -2926,7 +2962,7 @@ final public void AddSelectItem(List list) throws ParseException { } else { ; } - if (jj_2_231(2)) { + if (jj_2_233(2)) { id = SimpleIdentifier(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -2950,10 +2986,10 @@ final public void AddSelectItem(List list) throws ParseException { */ final public SqlNode SelectExpression() throws ParseException { SqlNode e; - if (jj_2_233(2)) { + if (jj_2_235(2)) { jj_consume_token(STAR); {if (true) return SqlIdentifier.star(getPos());} - } else if (jj_2_234(2)) { + } else if (jj_2_236(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); {if (true) return e;} } else { @@ -2964,7 +3000,7 @@ final public SqlNode SelectExpression() throws ParseException { } final public SqlLiteral Natural() throws ParseException { - if (jj_2_235(2)) { + if (jj_2_237(2)) { jj_consume_token(NATURAL); {if (true) return SqlLiteral.createBoolean(true, getPos());} } else { @@ -2976,23 +3012,23 @@ final public SqlLiteral Natural() throws ParseException { final public SqlLiteral JoinType() throws ParseException { JoinType joinType; boolean asof = false; - if (jj_2_241(2)) { + if (jj_2_243(2)) { jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_242(2)) { + } else if (jj_2_244(2)) { jj_consume_token(INNER); jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_243(2)) { + } else if (jj_2_245(2)) { jj_consume_token(ASOF); jj_consume_token(JOIN); joinType = JoinType.ASOF; - } else if (jj_2_244(2)) { + } else if (jj_2_246(2)) { jj_consume_token(LEFT); - if (jj_2_238(2)) { - if (jj_2_236(2)) { + if (jj_2_240(2)) { + if (jj_2_238(2)) { jj_consume_token(OUTER); - } else if (jj_2_237(2)) { + } else if (jj_2_239(2)) { jj_consume_token(ASOF); asof = true; } else { @@ -3004,25 +3040,25 @@ final public SqlLiteral JoinType() throws ParseException { } jj_consume_token(JOIN); joinType = asof ? JoinType.LEFT_ASOF : JoinType.LEFT; - } else if (jj_2_245(2)) { + } else if (jj_2_247(2)) { jj_consume_token(RIGHT); - if (jj_2_239(2)) { + if (jj_2_241(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.RIGHT; - } else if (jj_2_246(2)) { + } else if (jj_2_248(2)) { jj_consume_token(FULL); - if (jj_2_240(2)) { + if (jj_2_242(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.FULL; - } else if (jj_2_247(2)) { + } else if (jj_2_249(2)) { jj_consume_token(CROSS); jj_consume_token(JOIN); joinType = JoinType.CROSS; @@ -3073,7 +3109,7 @@ final public SqlNode FromClause() throws ParseException { final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { SqlNode e2; SqlLiteral joinType; - if (jj_2_248(2)) { + if (jj_2_250(2)) { jj_consume_token(COMMA); joinType = JoinType.COMMA.symbol(getPos()); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); @@ -3084,7 +3120,7 @@ final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_249(2)) { + } else if (jj_2_251(2)) { e2 = JoinTable(e); {if (true) return e2;} } else { @@ -3099,12 +3135,12 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { SqlNode e2, condition, matchCondition = null; final SqlLiteral natural, joinType, on, using; SqlNodeList list; - if (jj_2_253(4)) { + if (jj_2_255(4)) { natural = Natural(); joinType = JoinType(); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); - if (jj_2_251(2)) { - if (jj_2_250(2)) { + if (jj_2_253(2)) { + if (jj_2_252(2)) { jj_consume_token(MATCH_CONDITION); matchCondition = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -3138,7 +3174,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, on, condition);} - } else if (jj_2_252(2)) { + } else if (jj_2_254(2)) { jj_consume_token(USING); using = JoinConditionType.USING.symbol(getPos()); list = ParenthesizedSimpleIdentifierList(); @@ -3158,7 +3194,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { JoinConditionType.NONE.symbol(joinType.getParserPosition()), null);} } - } else if (jj_2_254(2)) { + } else if (jj_2_256(2)) { jj_consume_token(CROSS); joinType = JoinType.CROSS.symbol(getPos()); jj_consume_token(APPLY); @@ -3173,7 +3209,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_255(2)) { + } else if (jj_2_257(2)) { jj_consume_token(OUTER); joinType = JoinType.LEFT.symbol(getPos()); jj_consume_token(APPLY); @@ -3231,36 +3267,36 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws SqlNodeList args; final SqlNodeList columnAliasList; SqlUnnestOperator unnestOp = SqlStdOperatorTable.UNNEST; - if (jj_2_266(2)) { + if (jj_2_268(2)) { tableName = CompoundTableIdentifier(); s = span(); - if (jj_2_260(3)) { + if (jj_2_262(3)) { tableRef = ImplicitTableFunctionCallArgs(tableName); } else { - if (jj_2_256(2)) { + if (jj_2_258(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_257(2)) { + if (jj_2_259(2)) { tableRef = ExtendTable(tableRef); } else { ; } tableRef = Over(tableRef); - if (jj_2_258(2)) { + if (jj_2_260(2)) { tableRef = Snapshot(tableRef); } else { ; } - if (jj_2_259(2)) { + if (jj_2_261(3)) { tableRef = MatchRecognize(tableRef); } else { ; } } - } else if (jj_2_267(2)) { - if (jj_2_261(2)) { + } else if (jj_2_269(2)) { + if (jj_2_263(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3269,13 +3305,13 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws tableRef = ParenthesizedExpression(exprContext); tableRef = Over(tableRef); tableRef = addLateral(tableRef, lateral); - if (jj_2_262(2)) { + if (jj_2_264(3)) { tableRef = MatchRecognize(tableRef); } else { ; } - } else if (jj_2_268(2)) { - if (jj_2_263(2)) { + } else if (jj_2_270(2)) { + if (jj_2_265(2)) { jj_consume_token(LATERAL); } else { ; @@ -3283,7 +3319,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws jj_consume_token(UNNEST); s = span(); args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_264(2)) { + if (jj_2_266(2)) { jj_consume_token(WITH); jj_consume_token(ORDINALITY); unnestOp = SqlStdOperatorTable.UNNEST_WITH_ORDINALITY; @@ -3291,8 +3327,8 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws ; } tableRef = unnestOp.createCall(s.end(this), (List) args); - } else if (jj_2_269(2)) { - if (jj_2_265(2)) { + } else if (jj_2_271(2)) { + if (jj_2_267(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3300,30 +3336,30 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } tableRef = TableFunctionCall(); tableRef = addLateral(tableRef, lateral); - } else if (jj_2_270(2)) { + } else if (jj_2_272(2)) { tableRef = ExtendedTableRef(); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_271(2)) { + if (jj_2_273(2)) { tableRef = Pivot(tableRef); } else { ; } - if (jj_2_272(2)) { + if (jj_2_274(2)) { tableRef = Unpivot(tableRef); } else { ; } - if (jj_2_275(2)) { - if (jj_2_273(2)) { + if (jj_2_277(2)) { + if (jj_2_275(2)) { jj_consume_token(AS); } else { ; } alias = SimpleIdentifier(); - if (jj_2_274(2)) { + if (jj_2_276(2)) { columnAliasList = ParenthesizedSimpleIdentifierList(); } else { columnAliasList = null; @@ -3348,7 +3384,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } else { ; } - if (jj_2_276(2)) { + if (jj_2_278(2)) { tableRef = Tablesample(tableRef); } else { ; @@ -3366,7 +3402,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { int repeatableSeed = 0; jj_consume_token(TABLESAMPLE); s = span(); checkNotJoin(tableRef); - if (jj_2_280(2)) { + if (jj_2_282(2)) { jj_consume_token(SUBSTITUTE); jj_consume_token(LPAREN); sample = StringLiteral(); @@ -3378,11 +3414,11 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { SqlLiteral.createSample(sampleSpec, s.end(this)); {if (true) return SqlStdOperatorTable.TABLESAMPLE.createCall( s.add(tableRef).end(this), tableRef, sampleLiteral);} - } else if (jj_2_281(2)) { - if (jj_2_277(2)) { + } else if (jj_2_283(2)) { + if (jj_2_279(2)) { jj_consume_token(BERNOULLI); isBernoulli = true; - } else if (jj_2_278(2)) { + } else if (jj_2_280(2)) { jj_consume_token(SYSTEM); isBernoulli = false; } else { @@ -3392,7 +3428,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); samplePercentage = UnsignedNumericLiteral(); jj_consume_token(RPAREN); - if (jj_2_279(2)) { + if (jj_2_281(2)) { jj_consume_token(REPEATABLE); jj_consume_token(LPAREN); repeatableSeed = IntLiteral(); @@ -3423,7 +3459,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { * is present. */ final public SqlNode ExtendTable(SqlNode tableRef) throws ParseException { final SqlNodeList extendList; - if (jj_2_282(2)) { + if (jj_2_284(2)) { jj_consume_token(EXTEND); } else { ; @@ -3441,7 +3477,7 @@ final public SqlNodeList ExtendList() throws ParseException { AddColumnType(list); label_24: while (true) { - if (jj_2_283(2)) { + if (jj_2_285(2)) { ; } else { break label_24; @@ -3473,7 +3509,7 @@ final public void AddCompoundIdentifierType(List list, List ex final SqlDataTypeSpec type; final boolean nullable; name = CompoundIdentifier(); - if (jj_2_284(2)) { + if (jj_2_286(2)) { type = DataType(); nullable = NotNullOpt(); } else { @@ -3496,11 +3532,11 @@ final public SqlNode ImplicitTableFunctionCallArgs(SqlIdentifier name) throws Pa final Span s; s = span(); jj_consume_token(LPAREN); - if (jj_2_286(2)) { + if (jj_2_288(2)) { AddArg0(tableFuncArgs, ExprContext.ACCEPT_CURSOR); label_25: while (true) { - if (jj_2_285(2)) { + if (jj_2_287(2)) { ; } else { break label_25; @@ -3530,7 +3566,7 @@ final public SqlNode TableFunctionCall() throws ParseException { jj_consume_token(TABLE); s = span(); jj_consume_token(LPAREN); - if (jj_2_287(2)) { + if (jj_2_289(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_TABLE_SPECIFIC_FUNCTION; } else { @@ -3576,10 +3612,10 @@ final public SqlNode ExplicitTable(SqlParserPos pos) throws ParseException { final public SqlNode TableConstructor() throws ParseException { final List list = new ArrayList(); final Span s; - if (jj_2_288(2)) { + if (jj_2_290(2)) { jj_consume_token(VALUES); s = span(); - } else if (jj_2_289(2)) { + } else if (jj_2_291(2)) { jj_consume_token(VALUE); s = span(); if (!this.conformance.isValueAllowed()) { @@ -3592,7 +3628,7 @@ final public SqlNode TableConstructor() throws ParseException { AddRowConstructor(list); label_26: while (true) { - if (jj_2_290(2)) { + if (jj_2_292(2)) { ; } else { break label_26; @@ -3618,22 +3654,22 @@ final public SqlNode RowConstructor() throws ParseException { final SqlNodeList valueList; final SqlNode value; final Span s; - if (jj_2_292(3)) { + if (jj_2_294(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(ROW); valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); jj_consume_token(RPAREN); s.add(this); - } else if (jj_2_293(3)) { - if (jj_2_291(2)) { + } else if (jj_2_295(3)) { + if (jj_2_293(2)) { jj_consume_token(ROW); s = span(); } else { s = Span.of(); } valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); - } else if (jj_2_294(2)) { + } else if (jj_2_296(2)) { value = Expression(ExprContext.ACCEPT_NONCURSOR); // NOTE: A bare value here is standard SQL syntax, believe it or // not. Taken together with multi-row table constructors, it leads @@ -3673,10 +3709,10 @@ final public SqlNodeList GroupBy() throws ParseException { jj_consume_token(GROUP); s = span(); jj_consume_token(BY); - if (jj_2_295(2)) { + if (jj_2_297(2)) { jj_consume_token(DISTINCT); distinct = true; - } else if (jj_2_296(2)) { + } else if (jj_2_298(2)) { jj_consume_token(ALL); distinct = false; } else { @@ -3697,7 +3733,7 @@ final public List GroupingElementList() throws ParseException { AddGroupingElement(list); label_27: while (true) { - if (jj_2_297(2)) { + if (jj_2_299(2)) { ; } else { break label_27; @@ -3713,7 +3749,7 @@ final public void AddGroupingElement(List list) throws ParseException { final List subList; final SqlNodeList nodes; final Span s; - if (jj_2_298(2)) { + if (jj_2_300(2)) { jj_consume_token(GROUPING); s = span(); jj_consume_token(SETS); @@ -3722,7 +3758,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.GROUPING_SETS.createCall(s.end(this), subList)); - } else if (jj_2_299(2)) { + } else if (jj_2_301(2)) { jj_consume_token(ROLLUP); s = span(); jj_consume_token(LPAREN); @@ -3730,7 +3766,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.ROLLUP.createCall(s.end(this), nodes.getList())); - } else if (jj_2_300(2)) { + } else if (jj_2_302(2)) { jj_consume_token(CUBE); s = span(); jj_consume_token(LPAREN); @@ -3738,12 +3774,12 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.CUBE.createCall(s.end(this), nodes.getList())); - } else if (jj_2_301(3)) { + } else if (jj_2_303(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(RPAREN); list.add(new SqlNodeList(s.end(this))); - } else if (jj_2_302(2)) { + } else if (jj_2_304(2)) { AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -3770,7 +3806,7 @@ final public void AddExpressions(List list, ExprContext exprContext) th AddExpression(list, exprContext); label_28: while (true) { - if (jj_2_303(2)) { + if (jj_2_305(2)) { ; } else { break label_28; @@ -3798,7 +3834,7 @@ final public SqlNodeList Window() throws ParseException { AddWindowSpec(list); label_29: while (true) { - if (jj_2_304(2)) { + if (jj_2_306(2)) { ; } else { break label_29; @@ -3834,12 +3870,12 @@ final public SqlWindow WindowSpecification() throws ParseException { final SqlLiteral allowPartial; jj_consume_token(LPAREN); s = span(); - if (jj_2_305(2)) { + if (jj_2_307(2)) { id = SimpleIdentifier(); } else { id = null; } - if (jj_2_306(2)) { + if (jj_2_308(2)) { jj_consume_token(PARTITION); s1 = span(); jj_consume_token(BY); @@ -3847,28 +3883,28 @@ final public SqlWindow WindowSpecification() throws ParseException { } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_307(2)) { + if (jj_2_309(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_312(2)) { - if (jj_2_308(2)) { + if (jj_2_314(2)) { + if (jj_2_310(2)) { jj_consume_token(ROWS); isRows = SqlLiteral.createBoolean(true, getPos()); - } else if (jj_2_309(2)) { + } else if (jj_2_311(2)) { jj_consume_token(RANGE); isRows = SqlLiteral.createBoolean(false, getPos()); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_310(2)) { + if (jj_2_312(2)) { jj_consume_token(BETWEEN); lowerBound = WindowRange(); jj_consume_token(AND); upperBound = WindowRange(); - } else if (jj_2_311(2)) { + } else if (jj_2_313(2)) { lowerBound = WindowRange(); upperBound = null; } else { @@ -3881,12 +3917,12 @@ final public SqlWindow WindowSpecification() throws ParseException { exclude = SqlWindow.createExcludeNoOthers(getPos()); lowerBound = upperBound = null; } - if (jj_2_313(2)) { + if (jj_2_315(2)) { jj_consume_token(ALLOW); s2 = span(); jj_consume_token(PARTIAL); allowPartial = SqlLiteral.createBoolean(true, s2.end(this)); - } else if (jj_2_314(2)) { + } else if (jj_2_316(2)) { jj_consume_token(DISALLOW); s2 = span(); jj_consume_token(PARTIAL); @@ -3903,30 +3939,30 @@ final public SqlWindow WindowSpecification() throws ParseException { final public SqlNode WindowRange() throws ParseException { final SqlNode e; final Span s; - if (jj_2_319(2)) { + if (jj_2_321(2)) { jj_consume_token(CURRENT); s = span(); jj_consume_token(ROW); {if (true) return SqlWindow.createCurrentRow(s.end(this));} - } else if (jj_2_320(2)) { + } else if (jj_2_322(2)) { jj_consume_token(UNBOUNDED); s = span(); - if (jj_2_315(2)) { + if (jj_2_317(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createUnboundedPreceding(s.end(this));} - } else if (jj_2_316(2)) { + } else if (jj_2_318(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createUnboundedFollowing(s.end(this));} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_321(2)) { + } else if (jj_2_323(2)) { e = Expression(ExprContext.ACCEPT_NON_QUERY); - if (jj_2_317(2)) { + if (jj_2_319(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createPreceding(e, getPos());} - } else if (jj_2_318(2)) { + } else if (jj_2_320(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createFollowing(e, getPos());} } else { @@ -3942,20 +3978,20 @@ final public SqlNode WindowRange() throws ParseException { /** Parses an exclusion clause for WINDOW FRAME. */ final public SqlLiteral WindowExclusion() throws ParseException { - if (jj_2_326(2)) { + if (jj_2_328(2)) { jj_consume_token(EXCLUDE); - if (jj_2_322(2)) { + if (jj_2_324(2)) { jj_consume_token(CURRENT); jj_consume_token(ROW); {if (true) return SqlWindow.createExcludeCurrentRow(getPos());} - } else if (jj_2_323(2)) { + } else if (jj_2_325(2)) { jj_consume_token(NO); jj_consume_token(OTHERS); {if (true) return SqlWindow.createExcludeNoOthers(getPos());} - } else if (jj_2_324(2)) { + } else if (jj_2_326(2)) { jj_consume_token(GROUP); {if (true) return SqlWindow.createExcludeGroup(getPos());} - } else if (jj_2_325(2)) { + } else if (jj_2_327(2)) { jj_consume_token(TIES); {if (true) return SqlWindow.createExcludeTies(getPos());} } else { @@ -3992,10 +4028,19 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { {if (true) throw SqlUtil.newContextException(s.pos(), RESOURCE.illegalOrderBy());} } jj_consume_token(BY); + OrderItemList(list); + {if (true) return new SqlNodeList(list, s.addAll(list).pos());} + throw new Error("Missing return statement in function"); + } + +/** + * Parses a list of ORDER BY items. + */ + final public void OrderItemList(List list) throws ParseException { AddOrderItem(list); label_30: while (true) { - if (jj_2_327(2)) { + if (jj_2_329(2)) { ; } else { break label_30; @@ -4003,8 +4048,6 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { jj_consume_token(COMMA); AddOrderItem(list); } - {if (true) return new SqlNodeList(list, s.addAll(list).pos());} - throw new Error("Missing return statement in function"); } /** @@ -4012,11 +4055,31 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { */ final public void AddOrderItem(List list) throws ParseException { SqlNode e; + final SqlIdentifier id; e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_330(2)) { - if (jj_2_328(2)) { + if (jj_2_331(2)) { + jj_consume_token(AS); + if (jj_2_330(2)) { + id = SimpleIdentifier(); + } else { + switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { + case QUOTED_STRING: + id = SimpleIdentifierFromStringLiteral(); + break; + default: + jj_la1[3] = jj_gen; + jj_consume_token(-1); + throw new ParseException(); + } + } + e = SqlStdOperatorTable.AS.createCall(span().end(e), e, id); + } else { + ; + } + if (jj_2_334(2)) { + if (jj_2_332(2)) { jj_consume_token(ASC); - } else if (jj_2_329(2)) { + } else if (jj_2_333(2)) { jj_consume_token(DESC); e = SqlStdOperatorTable.DESC.createCall(getPos(), e); } else { @@ -4026,12 +4089,12 @@ final public void AddOrderItem(List list) throws ParseException { } else { ; } - if (jj_2_333(2)) { - if (jj_2_331(2)) { + if (jj_2_337(2)) { + if (jj_2_335(2)) { jj_consume_token(NULLS); jj_consume_token(FIRST); e = SqlStdOperatorTable.NULLS_FIRST.createCall(getPos(), e); - } else if (jj_2_332(2)) { + } else if (jj_2_336(2)) { jj_consume_token(NULLS); jj_consume_token(LAST); e = SqlStdOperatorTable.NULLS_LAST.createCall(getPos(), e); @@ -4105,7 +4168,7 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { AddPivotAgg(aggList); label_31: while (true) { - if (jj_2_334(2)) { + if (jj_2_338(2)) { ; } else { break label_31; @@ -4118,11 +4181,11 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { jj_consume_token(IN); jj_consume_token(LPAREN); s2 = span(); - if (jj_2_336(2)) { + if (jj_2_340(2)) { AddPivotValue(valueList); label_32: while (true) { - if (jj_2_335(2)) { + if (jj_2_339(2)) { ; } else { break label_32; @@ -4147,7 +4210,7 @@ final public void AddPivotAgg(List list) throws ParseException { final SqlIdentifier alias; e = NamedFunctionCall(); if (getToken(1).kind != COMMA && getToken(1).kind != FOR) { - if (jj_2_337(2)) { + if (jj_2_341(2)) { jj_consume_token(AS); } else { ; @@ -4167,8 +4230,8 @@ final public void AddPivotValue(List list) throws ParseException { final SqlIdentifier alias; e = RowConstructor(); tuple = SqlParserUtil.stripRow(e); - if (jj_2_339(2)) { - if (jj_2_338(2)) { + if (jj_2_343(2)) { + if (jj_2_342(2)) { jj_consume_token(AS); } else { ; @@ -4193,11 +4256,11 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { final SqlNodeList inList; jj_consume_token(UNPIVOT); s = span(); checkNotJoin(tableRef); - if (jj_2_340(2)) { + if (jj_2_344(2)) { jj_consume_token(INCLUDE); jj_consume_token(NULLS); includeNulls = true; - } else if (jj_2_341(2)) { + } else if (jj_2_345(2)) { jj_consume_token(EXCLUDE); jj_consume_token(NULLS); includeNulls = false; @@ -4214,7 +4277,7 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { AddUnpivotValue(values); label_33: while (true) { - if (jj_2_342(2)) { + if (jj_2_346(2)) { ; } else { break label_33; @@ -4234,7 +4297,7 @@ final public void AddUnpivotValue(List list) throws ParseException { final SqlNodeList columnList; final SqlNode values; columnList = SimpleIdentifierOrList(); - if (jj_2_343(2)) { + if (jj_2_347(2)) { jj_consume_token(AS); values = RowConstructor(); final SqlNodeList valueList = SqlParserUtil.stripRow(values); @@ -4251,6 +4314,7 @@ final public void AddUnpivotValue(List list) throws ParseException { */ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseException { final Span s, s0, s1, s2; + final SqlIdentifier aliasBeforeMatch; final SqlNodeList measureList; final SqlNodeList partitionList; final SqlNodeList orderList; @@ -4263,10 +4327,18 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce final SqlNodeList subsetList; final SqlLiteral isStrictStarts; final SqlLiteral isStrictEnds; + if (jj_2_348(2)) { + jj_consume_token(AS); + aliasBeforeMatch = SimpleIdentifier(); + tableRef = SqlStdOperatorTable.AS.createCall( + Span.of(tableRef).end(this), tableRef, aliasBeforeMatch); + } else { + ; + } jj_consume_token(MATCH_RECOGNIZE); s = span(); checkNotJoin(tableRef); jj_consume_token(LPAREN); - if (jj_2_344(2)) { + if (jj_2_349(2)) { jj_consume_token(PARTITION); s2 = span(); jj_consume_token(BY); @@ -4274,25 +4346,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_345(2)) { + if (jj_2_350(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_346(2)) { + if (jj_2_351(2)) { jj_consume_token(MEASURES); measureList = MeasureColumnCommaList(span()); } else { measureList = SqlNodeList.EMPTY; } - if (jj_2_347(2)) { + if (jj_2_352(2)) { jj_consume_token(ONE); s0 = span(); jj_consume_token(ROW); jj_consume_token(PER); jj_consume_token(MATCH); rowsPerMatch = SqlMatchRecognize.RowsPerMatchOption.ONE_ROW.symbol(s0.end(this)); - } else if (jj_2_348(2)) { + } else if (jj_2_353(2)) { jj_consume_token(ALL); s0 = span(); jj_consume_token(ROWS); @@ -4302,25 +4374,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { rowsPerMatch = null; } - if (jj_2_354(2)) { + if (jj_2_359(2)) { jj_consume_token(AFTER); s1 = span(); jj_consume_token(MATCH); jj_consume_token(SKIP_); - if (jj_2_352(2)) { + if (jj_2_357(2)) { jj_consume_token(TO); - if (jj_2_350(2)) { + if (jj_2_355(2)) { jj_consume_token(NEXT); jj_consume_token(ROW); after = SqlMatchRecognize.AfterOption.SKIP_TO_NEXT_ROW .symbol(s1.end(this)); - } else if (jj_2_351(2)) { + } else if (jj_2_356(2)) { jj_consume_token(FIRST); var = SimpleIdentifier(); after = SqlMatchRecognize.SKIP_TO_FIRST.createCall( s1.end(var), var); } else if (true) { - if (jj_2_349(2)) { + if (jj_2_354(2)) { jj_consume_token(LAST); } else { ; @@ -4332,7 +4404,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_353(2)) { + } else if (jj_2_358(2)) { jj_consume_token(PAST); jj_consume_token(LAST); jj_consume_token(ROW); @@ -4347,27 +4419,27 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } jj_consume_token(PATTERN); jj_consume_token(LPAREN); - if (jj_2_355(2)) { + if (jj_2_360(2)) { jj_consume_token(CARET); isStrictStarts = SqlLiteral.createBoolean(true, getPos()); } else { isStrictStarts = SqlLiteral.createBoolean(false, getPos()); } pattern = PatternExpression(); - if (jj_2_356(2)) { + if (jj_2_361(2)) { jj_consume_token(DOLLAR); isStrictEnds = SqlLiteral.createBoolean(true, getPos()); } else { isStrictEnds = SqlLiteral.createBoolean(false, getPos()); } jj_consume_token(RPAREN); - if (jj_2_357(2)) { + if (jj_2_362(2)) { jj_consume_token(WITHIN); interval = IntervalLiteral(); } else { interval = null; } - if (jj_2_358(2)) { + if (jj_2_363(2)) { jj_consume_token(SUBSET); subsetList = SubsetDefinitionCommaList(span()); } else { @@ -4387,7 +4459,7 @@ final public SqlNodeList MeasureColumnCommaList(Span s) throws ParseException { AddMeasureColumn(list); label_34: while (true) { - if (jj_2_359(2)) { + if (jj_2_364(2)) { ; } else { break label_34; @@ -4414,7 +4486,7 @@ final public SqlNode PatternExpression() throws ParseException { left = PatternTerm(); label_35: while (true) { - if (jj_2_360(2)) { + if (jj_2_365(2)) { ; } else { break label_35; @@ -4434,7 +4506,7 @@ final public SqlNode PatternTerm() throws ParseException { left = PatternFactor(); label_36: while (true) { - if (jj_2_361(2)) { + if (jj_2_366(2)) { ; } else { break label_36; @@ -4459,25 +4531,25 @@ final public SqlNode PatternFactor() throws ParseException { case HOOK: case PLUS: case STAR: - if (jj_2_367(2)) { + if (jj_2_372(2)) { jj_consume_token(STAR); startNum = LITERAL_ZERO; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_368(2)) { + } else if (jj_2_373(2)) { jj_consume_token(PLUS); startNum = LITERAL_ONE; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_369(2)) { + } else if (jj_2_374(2)) { jj_consume_token(HOOK); startNum = LITERAL_ZERO; endNum = LITERAL_ONE; - } else if (jj_2_370(2)) { + } else if (jj_2_375(2)) { jj_consume_token(LBRACE); - if (jj_2_364(2)) { + if (jj_2_369(2)) { startNum = UnsignedNumericLiteral(); - if (jj_2_363(2)) { + if (jj_2_368(2)) { jj_consume_token(COMMA); - if (jj_2_362(2)) { + if (jj_2_367(2)) { endNum = UnsignedNumericLiteral(); } else { endNum = LITERAL_MINUS_ONE; @@ -4486,12 +4558,12 @@ final public SqlNode PatternFactor() throws ParseException { endNum = startNum; } jj_consume_token(RBRACE); - } else if (jj_2_365(2)) { + } else if (jj_2_370(2)) { jj_consume_token(COMMA); endNum = UnsignedNumericLiteral(); jj_consume_token(RBRACE); startNum = LITERAL_MINUS_ONE; - } else if (jj_2_366(2)) { + } else if (jj_2_371(2)) { jj_consume_token(MINUS); extra = PatternExpression(); jj_consume_token(MINUS); @@ -4508,7 +4580,7 @@ final public SqlNode PatternFactor() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_371(2)) { + if (jj_2_376(2)) { jj_consume_token(HOOK); reluctant = SqlLiteral.createBoolean( startNum.intValue(true) != endNum.intValue(true), @@ -4518,7 +4590,7 @@ final public SqlNode PatternFactor() throws ParseException { } break; default: - jj_la1[3] = jj_gen; + jj_la1[4] = jj_gen; {if (true) return e;} } {if (true) return SqlStdOperatorTable.PATTERN_QUANTIFIER.createCall( @@ -4530,15 +4602,15 @@ final public SqlNode PatternPrimary() throws ParseException { final Span s; SqlNode e; final List list; - if (jj_2_373(2)) { + if (jj_2_378(2)) { e = SimpleIdentifier(); {if (true) return e;} - } else if (jj_2_374(2)) { + } else if (jj_2_379(2)) { jj_consume_token(LPAREN); e = PatternExpression(); jj_consume_token(RPAREN); {if (true) return e;} - } else if (jj_2_375(2)) { + } else if (jj_2_380(2)) { jj_consume_token(LBRACE); s = span(); jj_consume_token(MINUS); @@ -4546,7 +4618,7 @@ final public SqlNode PatternPrimary() throws ParseException { jj_consume_token(MINUS); jj_consume_token(RBRACE); {if (true) return SqlStdOperatorTable.PATTERN_EXCLUDE.createCall(s.end(this), e);} - } else if (jj_2_376(2)) { + } else if (jj_2_381(2)) { jj_consume_token(PERMUTE); s = span(); list = new ArrayList(); jj_consume_token(LPAREN); @@ -4554,7 +4626,7 @@ final public SqlNode PatternPrimary() throws ParseException { list.add(e); label_37: while (true) { - if (jj_2_372(2)) { + if (jj_2_377(2)) { ; } else { break label_37; @@ -4578,7 +4650,7 @@ final public SqlNodeList SubsetDefinitionCommaList(Span s) throws ParseException AddSubsetDefinition(list); label_38: while (true) { - if (jj_2_377(2)) { + if (jj_2_382(2)) { ; } else { break label_38; @@ -4610,7 +4682,7 @@ final public SqlNodeList PatternDefinitionCommaList(Span s) throws ParseExceptio eList.add(e); label_39: while (true) { - if (jj_2_378(2)) { + if (jj_2_383(2)) { ; } else { break label_39; @@ -4672,7 +4744,7 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_379(2)) { + if (jj_2_384(2)) { withList = WithList(); } else { ; @@ -4681,7 +4753,7 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException list.add(e); label_40: while (true) { - if (jj_2_380(2)) { + if (jj_2_385(2)) { ; } else { break label_40; @@ -4696,16 +4768,20 @@ final public SqlNode Query(ExprContext exprContext) throws ParseException { SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_381(2)) { + if (jj_2_386(2)) { withList = WithList(); + e = LeafQueryOrExpr(exprContext); + list.add(e); + } else if (jj_2_387(2)) { + e = LeafQuery(exprContext); + list.add(e); } else { - ; + jj_consume_token(-1); + throw new ParseException(); } - e = LeafQuery(exprContext); - list.add(e); label_41: while (true) { - if (jj_2_382(2)) { + if (jj_2_388(2)) { ; } else { break label_41; @@ -4771,7 +4847,7 @@ final public SqlNodeList WithList() throws ParseException { final List list = new ArrayList(); boolean recursive = false; jj_consume_token(WITH); - if (jj_2_383(2)) { + if (jj_2_389(2)) { jj_consume_token(RECURSIVE); recursive = true; } else { @@ -4781,7 +4857,7 @@ final public SqlNodeList WithList() throws ParseException { AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); label_42: while (true) { - if (jj_2_384(2)) { + if (jj_2_390(2)) { ; } else { break label_42; @@ -4798,7 +4874,7 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro final SqlNodeList columnList; final SqlNode definition; id = SimpleIdentifier(); - if (jj_2_385(2)) { + if (jj_2_391(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -4814,10 +4890,10 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro */ final public SqlNode LeafQueryOrExpr(ExprContext exprContext) throws ParseException { SqlNode e; - if (jj_2_386(2)) { + if (jj_2_392(2)) { e = LeafQuery(exprContext); {if (true) return e;} - } else if (jj_2_387(2)) { + } else if (jj_2_393(2)) { e = Expression(exprContext); {if (true) return e;} } else { @@ -4844,11 +4920,92 @@ final public SqlNode Expression(ExprContext exprContext) throws ParseException { throw new Error("Missing return statement in function"); } +/** Adds an optional trailing colon path to the expression under + * construction, for example {@code :field.nested}, {@code :['field']} or + * {@code :item[1].price}. Dot-separated path segments are parsed as simple + * identifiers, but unquoted segment spelling is preserved for case-sensitive + * variant key lookup. Bracketed segments are literals (string for exact key + * access, integer for array index); arbitrary expressions are not allowed. */ + final public void AddOptionalColonPath(List list) throws ParseException { + SqlParserPos colonPos; + List segments; + Span s; + SqlIdentifier p; + if (jj_2_399(2) && (this.conformance.isColonFieldAccessAllowed())) { + jj_consume_token(COLON); + colonPos = getPos(); + segments = new ArrayList(); + s = span(); + if (jj_2_394(2)) { + p = SimpleIdentifier(); + segments.add(p.getParserPosition().isQuoted() + ? p + : new SqlIdentifier(getToken(0).image, p.getParserPosition())); + } else if (jj_2_395(2)) { + ColonBracketSegment(segments); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + label_43: + while (true) { + if (jj_2_396(2)) { + ; + } else { + break label_43; + } + if (jj_2_397(2)) { + jj_consume_token(DOT); + p = SimpleIdentifier(); + segments.add(p.getParserPosition().isQuoted() + ? p + : new SqlIdentifier(getToken(0).image, p.getParserPosition())); + } else if (jj_2_398(2)) { + ColonBracketSegment(segments); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } + list.add( + new SqlParserUtil.ToTreeListItem( + SqlStdOperatorTable.COLON, colonPos)); + list.add(new SqlNodeList(segments, s.end(this))); + } else { + ; + } + } + +/** Parses one bracketed segment of a colon path: {@code ['field']} for key + * access, or {@code [n]} for array index. */ + final public void ColonBracketSegment(List segments) throws ParseException { + SqlNode lit; + SqlIdentifier id; + jj_consume_token(LBRACKET); + if (jj_2_400(2)) { + lit = StringLiteral(); + segments.add(lit); + } else if (jj_2_401(2)) { + jj_consume_token(UNSIGNED_INTEGER_LITERAL); + segments.add(SqlLiteral.createExactNumeric(token.image, getPos())); + } else if (jj_2_402(2147483647)) { + id = SimpleIdentifier(); + {if (true) throw SqlUtil.newContextException(id.getParserPosition(), + RESOURCE.unknownIdentifier(id.toString()));} + } else { + jj_consume_token(-1); + throw new ParseException(); + } + jj_consume_token(RBRACKET); + } + +/** Parses an expression atom with its dot-access chain and at most one + * trailing colon path. */ final public void AddExpression2b(List list, ExprContext exprContext) throws ParseException { SqlNode e; SqlOperator op; SqlNode ext; - label_43: + label_44: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case EXISTS: @@ -4859,8 +5016,8 @@ final public void AddExpression2b(List list, ExprContext exprContext) th ; break; default: - jj_la1[4] = jj_gen; - break label_43; + jj_la1[5] = jj_gen; + break label_44; } op = PrefixRowOperator(); checkNonQueryExpression(exprContext); @@ -4868,12 +5025,12 @@ final public void AddExpression2b(List list, ExprContext exprContext) th } e = Expression3(exprContext); list.add(e); - label_44: + label_45: while (true) { - if (jj_2_388(2)) { + if (jj_2_403(2)) { ; } else { - break label_44; + break label_45; } jj_consume_token(DOT); ext = RowExpressionExtension(); @@ -4882,6 +5039,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th SqlStdOperatorTable.DOT, getPos())); list.add(ext); } + AddOptionalColonPath(list); } /** @@ -4909,28 +5067,28 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlIdentifier p; final Span s = span(); AddExpression2b(list, exprContext); - if (jj_2_432(2)) { - label_45: + if (jj_2_447(2)) { + label_46: while (true) { - if (jj_2_424(2)) { + if (jj_2_439(2)) { checkNonQueryExpression(exprContext); - if (jj_2_392(2)) { + if (jj_2_407(2)) { jj_consume_token(NOT); jj_consume_token(IN); op = SqlStdOperatorTable.NOT_IN; - } else if (jj_2_393(2)) { + } else if (jj_2_408(2)) { jj_consume_token(IN); op = SqlStdOperatorTable.IN; - } else if (jj_2_394(2)) { + } else if (jj_2_409(2)) { final SqlKind k; k = comp(); - if (jj_2_389(2)) { + if (jj_2_404(2)) { jj_consume_token(SOME); op = SqlStdOperatorTable.some(k); - } else if (jj_2_390(2)) { + } else if (jj_2_405(2)) { jj_consume_token(ANY); op = SqlStdOperatorTable.some(k); - } else if (jj_2_391(2)) { + } else if (jj_2_406(2)) { jj_consume_token(ALL); op = SqlStdOperatorTable.all(k); } else { @@ -4956,18 +5114,18 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { list.add(nodeList); } - } else if (jj_2_425(2)) { + } else if (jj_2_440(2)) { checkNonQueryExpression(exprContext); - if (jj_2_401(2)) { + if (jj_2_416(2)) { jj_consume_token(NOT); jj_consume_token(BETWEEN); op = SqlStdOperatorTable.NOT_BETWEEN; s.clear().add(this); - if (jj_2_397(2)) { - if (jj_2_395(2)) { + if (jj_2_412(2)) { + if (jj_2_410(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_NOT_BETWEEN; - } else if (jj_2_396(2)) { + } else if (jj_2_411(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4976,15 +5134,15 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_402(2)) { + } else if (jj_2_417(2)) { jj_consume_token(BETWEEN); op = SqlStdOperatorTable.BETWEEN; s.clear().add(this); - if (jj_2_400(2)) { - if (jj_2_398(2)) { + if (jj_2_415(2)) { + if (jj_2_413(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_BETWEEN; - } else if (jj_2_399(2)) { + } else if (jj_2_414(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -5001,22 +5159,22 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list3); list3.clear(); - } else if (jj_2_426(2)) { + } else if (jj_2_441(2)) { checkNonQueryExpression(exprContext); s.clear().add(this); - if (jj_2_414(2)) { - if (jj_2_407(2)) { + if (jj_2_429(2)) { + if (jj_2_422(2)) { jj_consume_token(NOT); - if (jj_2_403(2)) { + if (jj_2_418(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.NOT_LIKE; - } else if (jj_2_404(2)) { + } else if (jj_2_419(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.NOT_ILIKE; - } else if (jj_2_405(2)) { + } else if (jj_2_420(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.NOT_RLIKE; - } else if (jj_2_406(2)) { + } else if (jj_2_421(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.NOT_SIMILAR_TO; @@ -5024,16 +5182,16 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_408(2)) { + } else if (jj_2_423(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.LIKE; - } else if (jj_2_409(2)) { + } else if (jj_2_424(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.ILIKE; - } else if (jj_2_410(2)) { + } else if (jj_2_425(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.RLIKE; - } else if (jj_2_411(2)) { + } else if (jj_2_426(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.SIMILAR_TO; @@ -5041,20 +5199,20 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_415(2)) { + } else if (jj_2_430(2)) { jj_consume_token(NEGATE); jj_consume_token(TILDE); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_412(2)) { + if (jj_2_427(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE; } else { ; } - } else if (jj_2_416(2)) { + } else if (jj_2_431(2)) { jj_consume_token(TILDE); op = SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_413(2)) { + if (jj_2_428(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE; } else { @@ -5067,7 +5225,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list2 = Expression2(ExprContext.ACCEPT_SUB_QUERY); list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list2); - if (jj_2_417(2)) { + if (jj_2_432(2)) { jj_consume_token(ESCAPE); e = Expression3(ExprContext.ACCEPT_SUB_QUERY); s.clear().add(this); @@ -5078,40 +5236,40 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_427(2)) { + } else if (jj_2_442(2)) { InfixCast(list, exprContext, s); - } else if (jj_2_428(3)) { + } else if (jj_2_443(3)) { op = BinaryRowOperator(); checkNonQueryExpression(exprContext); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); AddExpression2b(list, ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_429(2)) { + } else if (jj_2_444(2)) { jj_consume_token(LBRACKET); - if (jj_2_418(2)) { + if (jj_2_433(2)) { jj_consume_token(OFFSET); itemOp = SqlLibraryOperators.OFFSET; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_419(2)) { + } else if (jj_2_434(2)) { jj_consume_token(ORDINAL); itemOp = SqlLibraryOperators.ORDINAL; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_420(2)) { + } else if (jj_2_435(2)) { jj_consume_token(SAFE_OFFSET); itemOp = SqlLibraryOperators.SAFE_OFFSET; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_421(2)) { + } else if (jj_2_436(2)) { jj_consume_token(SAFE_ORDINAL); itemOp = SqlLibraryOperators.SAFE_ORDINAL; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_422(2)) { + } else if (jj_2_437(2)) { itemOp = SqlStdOperatorTable.ITEM; e = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5123,12 +5281,12 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep new SqlParserUtil.ToTreeListItem( itemOp, getPos())); list.add(e); - label_46: + label_47: while (true) { - if (jj_2_423(2)) { + if (jj_2_438(2)) { ; } else { - break label_46; + break label_47; } jj_consume_token(DOT); p = SimpleIdentifier(); @@ -5137,7 +5295,8 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlStdOperatorTable.DOT, getPos())); list.add(p); } - } else if (jj_2_430(2)) { + AddOptionalColonPath(list); + } else if (jj_2_445(2)) { checkNonQueryExpression(exprContext); op = PostfixRowOperator(); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); @@ -5145,10 +5304,10 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - if (jj_2_431(2)) { + if (jj_2_446(2)) { ; } else { - break label_45; + break label_46; } } {if (true) return list;} @@ -5160,25 +5319,25 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep /** Parses a comparison operator inside a SOME / ALL predicate. */ final public SqlKind comp() throws ParseException { - if (jj_2_433(2)) { + if (jj_2_448(2)) { jj_consume_token(LT); {if (true) return SqlKind.LESS_THAN;} - } else if (jj_2_434(2)) { + } else if (jj_2_449(2)) { jj_consume_token(LE); {if (true) return SqlKind.LESS_THAN_OR_EQUAL;} - } else if (jj_2_435(2)) { + } else if (jj_2_450(2)) { jj_consume_token(GT); {if (true) return SqlKind.GREATER_THAN;} - } else if (jj_2_436(2)) { + } else if (jj_2_451(2)) { jj_consume_token(GE); {if (true) return SqlKind.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_437(2)) { + } else if (jj_2_452(2)) { jj_consume_token(EQ); {if (true) return SqlKind.EQUALS;} - } else if (jj_2_438(2)) { + } else if (jj_2_453(2)) { jj_consume_token(NE); {if (true) return SqlKind.NOT_EQUALS;} - } else if (jj_2_439(2)) { + } else if (jj_2_454(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} @@ -5201,39 +5360,50 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException final SqlNodeList list1; final Span s; final Span rowSpan; - if (jj_2_442(2)) { + if (jj_2_457(2)) { e = AtomicRowExpression(); checkNonQueryExpression(exprContext); {if (true) return e;} - } else if (jj_2_443(2)) { + } else if (jj_2_458(2)) { e = CursorExpression(exprContext); {if (true) return e;} - } else if (jj_2_444(3)) { + } else if (jj_2_459(3)) { jj_consume_token(ROW); s = span(); + pushRowValueStar(); list = ParenthesizedQueryOrCommaList(exprContext); - if (exprContext != ExprContext.ACCEPT_ALL - && exprContext != ExprContext.ACCEPT_CURSOR - && !this.conformance.allowExplicitRowValueConstructor()) - { - {if (true) throw SqlUtil.newContextException(s.end(list), - RESOURCE.illegalRowExpression());} + try { + if (exprContext != ExprContext.ACCEPT_ALL + && exprContext != ExprContext.ACCEPT_CURSOR + && !this.conformance.allowExplicitRowValueConstructor()) + { + {if (true) throw SqlUtil.newContextException(s.end(list), + RESOURCE.illegalRowExpression());} + } + {if (true) return SqlStdOperatorTable.ROW.createCall(list);} + } finally { + popRowValueStar(); } - {if (true) return SqlStdOperatorTable.ROW.createCall(list);} - } else if (jj_2_445(2)) { - if (jj_2_440(2)) { + } else if (jj_2_460(2)) { + if (jj_2_455(2)) { jj_consume_token(ROW); - rowSpan = span(); + rowSpan = span(); pushRowValueStar(); } else { rowSpan = null; } list1 = ParenthesizedQueryOrCommaList(exprContext); - if (rowSpan != null) { - // interpret as row constructor - {if (true) return SqlStdOperatorTable.ROW.createCall(rowSpan.end(list1), - (List) list1);} + try { + if (rowSpan != null) { + // interpret as row constructor + {if (true) return SqlStdOperatorTable.ROW.createCall(rowSpan.end(list1), + (List) list1);} + } + } finally { + if (rowSpan != null) { + popRowValueStar(); + } } - if (jj_2_441(2)) { + if (jj_2_456(2)) { e = IntervalQualifier(); if ((list1.size() == 1) && list1.get(0) instanceof SqlCall) @@ -5291,11 +5461,11 @@ final public SqlNode LambdaExpression() throws ParseException { */ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { SqlNodeList list; - if (jj_2_446(2)) { + if (jj_2_461(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); {if (true) return SqlNodeList.EMPTY;} - } else if (jj_2_447(2)) { + } else if (jj_2_462(2)) { list = SimpleIdentifierOrList(); {if (true) return list;} } else { @@ -5306,24 +5476,24 @@ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { } final public SqlOperator periodOperator() throws ParseException { - if (jj_2_448(2)) { + if (jj_2_463(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_449(2)) { + } else if (jj_2_464(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_450(2)) { + } else if (jj_2_465(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_451(2)) { + } else if (jj_2_466(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_452(2)) { + } else if (jj_2_467(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_453(2)) { + } else if (jj_2_468(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} } else { @@ -5349,9 +5519,9 @@ final public SqlCollation CollateClause() throws ParseException { */ final public SqlNode UnsignedNumericLiteralOrParam() throws ParseException { final SqlNode e; - if (jj_2_454(2)) { + if (jj_2_469(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_455(2)) { + } else if (jj_2_470(2)) { e = DynamicParam(); } else { jj_consume_token(-1); @@ -5372,20 +5542,20 @@ final public SqlNode RowExpressionExtension() throws ParseException { final List args; final SqlLiteral quantifier; p = SimpleIdentifier(); - if (jj_2_459(2147483647)) { + if (jj_2_474(2147483647)) { s = span(); - if (jj_2_456(2)) { + if (jj_2_471(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); quantifier = null; args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_457(2)) { + } else if (jj_2_472(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); quantifier = null; args = ImmutableList.of(); - } else if (jj_2_458(2)) { + } else if (jj_2_473(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -5412,16 +5582,16 @@ final public SqlCall StringAggFunctionCall() throws ParseException { final SqlNodeList orderBy; final Pair nullTreatment; final SqlNode separator; - if (jj_2_460(2)) { + if (jj_2_475(2)) { jj_consume_token(ARRAY_AGG); s = span(); op = SqlLibraryOperators.ARRAY_AGG; - } else if (jj_2_461(2)) { + } else if (jj_2_476(2)) { jj_consume_token(ARRAY_CONCAT_AGG); s = span(); op = SqlLibraryOperators.ARRAY_CONCAT_AGG; - } else if (jj_2_462(2)) { + } else if (jj_2_477(2)) { jj_consume_token(GROUP_CONCAT); s = span(); op = SqlLibraryOperators.GROUP_CONCAT; - } else if (jj_2_463(2)) { + } else if (jj_2_478(2)) { jj_consume_token(STRING_AGG); s = span(); op = SqlLibraryOperators.STRING_AGG; } else { @@ -5429,18 +5599,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { throw new ParseException(); } jj_consume_token(LPAREN); - if (jj_2_464(2)) { + if (jj_2_479(2)) { qualifier = AllOrDistinct(); } else { qualifier = null; } AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - label_47: + label_48: while (true) { - if (jj_2_465(2)) { + if (jj_2_480(2)) { ; } else { - break label_47; + break label_48; } jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected @@ -5448,18 +5618,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { checkNonQueryExpression(ExprContext.ACCEPT_SUB_QUERY); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_466(2)) { + if (jj_2_481(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; } - if (jj_2_467(2)) { + if (jj_2_482(2)) { orderBy = OrderBy(true); args.add(orderBy); } else { ; } - if (jj_2_468(2)) { + if (jj_2_483(2)) { jj_consume_token(SEPARATOR); s2 = span(); separator = StringLiteral(); @@ -5492,10 +5662,10 @@ final public SqlCall PercentileFunctionCall() throws ParseException { final SqlNode e; final List args = new ArrayList(); final Pair nullTreatment; - if (jj_2_469(2)) { + if (jj_2_484(2)) { jj_consume_token(PERCENTILE_CONT); op = SqlStdOperatorTable.PERCENTILE_CONT; - } else if (jj_2_470(2)) { + } else if (jj_2_485(2)) { jj_consume_token(PERCENTILE_DISC); op = SqlStdOperatorTable.PERCENTILE_DISC; } else { @@ -5505,14 +5675,14 @@ final public SqlCall PercentileFunctionCall() throws ParseException { s = span(); jj_consume_token(LPAREN); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_472(2)) { + if (jj_2_487(2)) { jj_consume_token(RPAREN); {if (true) return op.createCall(s.end(this), args);} - } else if (jj_2_473(2)) { + } else if (jj_2_488(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); - if (jj_2_471(2)) { + if (jj_2_486(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; @@ -5540,33 +5710,36 @@ final public SqlCall PercentileFunctionCall() throws ParseException { */ final public SqlNode AtomicRowExpression() throws ParseException { final SqlNode e; - if (jj_2_474(2)) { + if (jj_2_489(2)) { e = LiteralOrIntervalExpression(); - } else if (jj_2_475(2)) { + } else if (jj_2_490(2)) { e = DynamicParam(); - } else if (jj_2_476(2)) { + } else if (jj_2_491(2)) { e = BuiltinFunctionCall(); - } else if (jj_2_477(2)) { + } else if (jj_2_492(2)) { e = JdbcFunctionCall(); - } else if (jj_2_478(2)) { + } else if (jj_2_493(2)) { e = MultisetConstructor(); - } else if (jj_2_479(2)) { + } else if (jj_2_494(2)) { e = ArrayConstructor(); - } else if (jj_2_480(3)) { + } else if (jj_2_495(3)) { e = MapConstructor(); - } else if (jj_2_481(2)) { + } else if (jj_2_496(2)) { e = PeriodConstructor(); - } else if (jj_2_482(2147483647)) { + } else if (jj_2_497(2147483647)) { e = NamedFunctionCall(); - } else if (jj_2_483(2)) { + } else if (jj_2_498(2)) { e = ContextVariable(); - } else if (jj_2_484(2)) { + } else if (jj_2_499(2)) { e = CompoundIdentifier(); - } else if (jj_2_485(2)) { + } else if (allowRowValueStar()) { + jj_consume_token(STAR); + {if (true) return SqlIdentifier.star(getPos());} + } else if (jj_2_500(2)) { e = NewSpecification(); - } else if (jj_2_486(2)) { + } else if (jj_2_501(2)) { e = CaseExpression(); - } else if (jj_2_487(2)) { + } else if (jj_2_502(2)) { e = SequenceExpression(); } else { jj_consume_token(-1); @@ -5587,12 +5760,12 @@ final public SqlNode CaseExpression() throws ParseException { final List thenList = new ArrayList(); jj_consume_token(CASE); s = span(); - if (jj_2_488(2)) { + if (jj_2_503(2)) { caseIdentifier = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { caseIdentifier = null; } - label_48: + label_49: while (true) { jj_consume_token(WHEN); whenSpan.add(this); @@ -5605,13 +5778,13 @@ final public SqlNode CaseExpression() throws ParseException { thenSpan.add(this); e = Expression(ExprContext.ACCEPT_SUB_QUERY); thenList.add(e); - if (jj_2_489(2)) { + if (jj_2_504(2)) { ; } else { - break label_48; + break label_49; } } - if (jj_2_490(2)) { + if (jj_2_505(2)) { jj_consume_token(ELSE); elseClause = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5629,10 +5802,10 @@ final public SqlCall SequenceExpression() throws ParseException { final Span s; final SqlOperator f; final SqlNode sequenceRef; - if (jj_2_491(2)) { + if (jj_2_506(2)) { jj_consume_token(NEXT); f = SqlStdOperatorTable.NEXT_VALUE; s = span(); - } else if (jj_2_492(3)) { + } else if (jj_2_507(3)) { jj_consume_token(CURRENT); f = SqlStdOperatorTable.CURRENT_VALUE; s = span(); } else { @@ -5653,16 +5826,16 @@ final public SqlCall SequenceExpression() throws ParseException { final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseException { SqlIdentifier name; final SqlNode val; - if (jj_2_498(2)) { + if (jj_2_513(2)) { jj_consume_token(SET); s.add(this); name = CompoundIdentifier(); jj_consume_token(EQ); - if (jj_2_493(2)) { + if (jj_2_508(2)) { val = Literal(); - } else if (jj_2_494(2)) { + } else if (jj_2_509(2)) { val = SimpleIdentifier(); - } else if (jj_2_495(2)) { + } else if (jj_2_510(2)) { jj_consume_token(ON); // OFF is handled by SimpleIdentifier, ON handled here. val = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), @@ -5672,12 +5845,12 @@ final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseExcepti throw new ParseException(); } {if (true) return new SqlSetOption(s.end(val), scope, (SqlNode) name, val);} - } else if (jj_2_499(2)) { + } else if (jj_2_514(2)) { jj_consume_token(RESET); s.add(this); - if (jj_2_496(2)) { + if (jj_2_511(2)) { name = CompoundIdentifier(); - } else if (jj_2_497(2)) { + } else if (jj_2_512(2)) { jj_consume_token(ALL); name = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), getPos()); @@ -5710,9 +5883,9 @@ final public SqlAlter SqlAlter() throws ParseException { } final public String Scope() throws ParseException { - if (jj_2_500(2)) { + if (jj_2_515(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_501(2)) { + } else if (jj_2_516(2)) { jj_consume_token(SESSION); } else { jj_consume_token(-1); @@ -5731,20 +5904,20 @@ final public SqlCreate SqlCreate() throws ParseException { final SqlCreate create; jj_consume_token(CREATE); s = span(); - if (jj_2_502(2)) { + if (jj_2_517(2)) { jj_consume_token(OR); jj_consume_token(REPLACE); replace = true; } else { ; } - if (jj_2_503(2)) { + if (jj_2_518(2)) { create = SqlCreateTable(s, replace); - } else if (jj_2_504(2)) { + } else if (jj_2_519(2)) { create = SqlCreateIndex(s, replace); - } else if (jj_2_505(2)) { + } else if (jj_2_520(2)) { create = SqlCreateUser(s, replace); - } else if (jj_2_506(2)) { + } else if (jj_2_521(2)) { create = SqlCreateView(s, replace); } else { jj_consume_token(-1); @@ -5763,13 +5936,13 @@ final public SqlDrop SqlDrop() throws ParseException { final SqlDrop drop; jj_consume_token(DROP); s = span(); - if (jj_2_507(2)) { + if (jj_2_522(2)) { drop = SqlDropTable(s, replace); - } else if (jj_2_508(2)) { + } else if (jj_2_523(2)) { drop = SqlDropIndex(s, replace); - } else if (jj_2_509(2)) { + } else if (jj_2_524(2)) { drop = SqlDropUser(s, replace); - } else if (jj_2_510(2)) { + } else if (jj_2_525(2)) { drop = SqlDropView(s, replace); } else { jj_consume_token(-1); @@ -5791,9 +5964,9 @@ final public SqlDrop SqlDrop() throws ParseException { */ final public SqlNode Literal() throws ParseException { SqlNode e; - if (jj_2_511(2)) { + if (jj_2_526(2)) { e = NonIntervalLiteral(); - } else if (jj_2_512(2)) { + } else if (jj_2_527(2)) { e = IntervalLiteral(); } else { jj_consume_token(-1); @@ -5806,13 +5979,13 @@ final public SqlNode Literal() throws ParseException { /** Parses a literal that is not an interval literal. */ final public SqlNode NonIntervalLiteral() throws ParseException { final SqlNode e; - if (jj_2_513(2)) { + if (jj_2_528(2)) { e = NumericLiteral(); - } else if (jj_2_514(2)) { + } else if (jj_2_529(2)) { e = StringLiteral(); - } else if (jj_2_515(2)) { + } else if (jj_2_530(2)) { e = SpecialLiteral(); - } else if (jj_2_516(2)) { + } else if (jj_2_531(2)) { e = DateTimeLiteral(); } else { jj_consume_token(-1); @@ -5830,9 +6003,9 @@ final public SqlNode NonIntervalLiteral() throws ParseException { * LOOKAHEAD. */ final public SqlNode LiteralOrIntervalExpression() throws ParseException { final SqlNode e; - if (jj_2_517(2)) { + if (jj_2_532(2)) { e = IntervalLiteralOrExpression(); - } else if (jj_2_518(2)) { + } else if (jj_2_533(2)) { e = NonIntervalLiteral(); } else { jj_consume_token(-1); @@ -5845,17 +6018,17 @@ final public SqlNode LiteralOrIntervalExpression() throws ParseException { /** Parses a unsigned numeric literal */ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final String p; - if (jj_2_519(2)) { + if (jj_2_534(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_520(2)) { + } else if (jj_2_535(2)) { jj_consume_token(DECIMAL_NUMERIC_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_521(2)) { + } else if (jj_2_536(2)) { jj_consume_token(DECIMAL); p = SimpleStringLiteral(); {if (true) return SqlParserUtil.parseDecimalLiteral(SqlParserUtil.trim(p, " "), getPos());} - } else if (jj_2_522(2)) { + } else if (jj_2_537(2)) { jj_consume_token(APPROX_NUMERIC_LITERAL); {if (true) return SqlLiteral.createApproxNumeric(token.image, getPos());} } else { @@ -5869,16 +6042,16 @@ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final public SqlLiteral NumericLiteral() throws ParseException { final SqlNumericLiteral num; final Span s; - if (jj_2_523(2)) { + if (jj_2_538(2)) { jj_consume_token(PLUS); num = UnsignedNumericLiteral(); {if (true) return num;} - } else if (jj_2_524(2)) { + } else if (jj_2_539(2)) { jj_consume_token(MINUS); s = span(); num = UnsignedNumericLiteral(); {if (true) return SqlLiteral.createNegative(num, s.end(this));} - } else if (jj_2_525(2)) { + } else if (jj_2_540(2)) { num = UnsignedNumericLiteral(); {if (true) return num;} } else { @@ -5890,16 +6063,16 @@ final public SqlLiteral NumericLiteral() throws ParseException { /** Parse a special literal keyword */ final public SqlLiteral SpecialLiteral() throws ParseException { - if (jj_2_526(2)) { + if (jj_2_541(2)) { jj_consume_token(TRUE); {if (true) return SqlLiteral.createBoolean(true, getPos());} - } else if (jj_2_527(2)) { + } else if (jj_2_542(2)) { jj_consume_token(FALSE); {if (true) return SqlLiteral.createBoolean(false, getPos());} - } else if (jj_2_528(2)) { + } else if (jj_2_543(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlLiteral.createUnknown(getPos());} - } else if (jj_2_529(2)) { + } else if (jj_2_544(2)) { jj_consume_token(NULL); {if (true) return SqlLiteral.createNull(getPos());} } else { @@ -5926,7 +6099,7 @@ final public SqlNode StringLiteral() throws ParseException { char unicodeEscapeChar = 0; String charSet = null; SqlCharStringLiteral literal; - if (jj_2_534(2)) { + if (jj_2_549(2)) { jj_consume_token(BINARY_STRING_LITERAL); frags = new ArrayList(); try { @@ -5936,15 +6109,15 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalBinaryString(token.image));} } - label_49: + label_50: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: ; break; default: - jj_la1[5] = jj_gen; - break label_49; + jj_la1[6] = jj_gen; + break label_50; } jj_consume_token(QUOTED_STRING); try { @@ -5962,13 +6135,13 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(frags); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, frags);} } - } else if (jj_2_535(2)) { - if (jj_2_530(2)) { + } else if (jj_2_550(2)) { + if (jj_2_545(2)) { jj_consume_token(PREFIXED_STRING_LITERAL); charSet = SqlParserUtil.getCharacterSet(token.image); - } else if (jj_2_531(2)) { + } else if (jj_2_546(2)) { jj_consume_token(QUOTED_STRING); - } else if (jj_2_532(2)) { + } else if (jj_2_547(2)) { jj_consume_token(UNICODE_STRING_LITERAL); // TODO jvs 2-Feb-2009: support the explicit specification of // a character set for Unicode string literals, per SQL:2003 @@ -5987,15 +6160,15 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - label_50: + label_51: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: ; break; default: - jj_la1[6] = jj_gen; - break label_50; + jj_la1[7] = jj_gen; + break label_51; } jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); @@ -6007,7 +6180,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unknownCharacterSet(charSet));} } } - if (jj_2_533(2)) { + if (jj_2_548(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); if (unicodeEscapeChar == 0) { @@ -6033,7 +6206,7 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(rands); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, rands);} } - } else if (jj_2_536(2)) { + } else if (jj_2_551(2)) { jj_consume_token(C_STYLE_ESCAPED_STRING_LITERAL); try { p = SqlParserUtil.parseCString(getToken(0).image); @@ -6042,7 +6215,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unicodeEscapeMalformed(e.i));} } {if (true) return SqlLiteral.createCharString(p, "UTF16", getPos());} - } else if (jj_2_537(2)) { + } else if (jj_2_552(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, "\\\"", Casing.UNCHANGED); @@ -6052,7 +6225,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - } else if (jj_2_538(2)) { + } else if (jj_2_553(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, "'", "'", "\\'", Casing.UNCHANGED); @@ -6074,13 +6247,13 @@ final public SqlNode StringLiteral() throws ParseException { * on BigQuery also matches a double-quoted string, such as "foo". * Returns the value of the string with quotes removed. */ final public String SimpleStringLiteral() throws ParseException { - if (jj_2_539(2)) { + if (jj_2_554(2)) { jj_consume_token(QUOTED_STRING); {if (true) return SqlParserUtil.parseString(token.image);} - } else if (jj_2_540(2)) { + } else if (jj_2_555(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, "'", "'", "\\'", Casing.UNCHANGED);} - } else if (jj_2_541(2)) { + } else if (jj_2_556(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, DQ, DQ, "\\\"", Casing.UNCHANGED);} } else { @@ -6097,55 +6270,55 @@ final public SqlLiteral DateTimeLiteral() throws ParseException { final String p; final Span s; boolean local = false; - if (jj_2_544(2)) { + if (jj_2_559(2)) { jj_consume_token(LBRACE_D); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseDateLiteral(p, getPos());} - } else if (jj_2_545(2)) { + } else if (jj_2_560(2)) { jj_consume_token(LBRACE_T); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimeLiteral(p, getPos());} - } else if (jj_2_546(2)) { + } else if (jj_2_561(2)) { jj_consume_token(LBRACE_TS); s = span(); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimestampLiteral(p, s.end(this));} - } else if (jj_2_547(2)) { + } else if (jj_2_562(2)) { jj_consume_token(DATE); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATE", p, s.end(this));} - } else if (jj_2_548(2)) { + } else if (jj_2_563(2)) { jj_consume_token(DATETIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATETIME", p, s.end(this));} - } else if (jj_2_549(2)) { + } else if (jj_2_564(2)) { jj_consume_token(TIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME", p, s.end(this));} - } else if (jj_2_550(2)) { + } else if (jj_2_565(2)) { jj_consume_token(UUID); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("UUID", p, s.end(this));} - } else if (jj_2_551(2)) { + } else if (jj_2_566(2)) { jj_consume_token(TIMESTAMP); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIMESTAMP", p, s.end(this));} - } else if (jj_2_552(2)) { + } else if (jj_2_567(2)) { jj_consume_token(TIME); s = span(); jj_consume_token(WITH); - if (jj_2_542(2)) { + if (jj_2_557(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6155,11 +6328,11 @@ final public SqlLiteral DateTimeLiteral() throws ParseException { jj_consume_token(ZONE); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME WITH " + (local ? "LOCAL " : "") + "TIME ZONE", p, s.end(this));} - } else if (jj_2_553(2)) { + } else if (jj_2_568(2)) { jj_consume_token(TIMESTAMP); s = span(); jj_consume_token(WITH); - if (jj_2_543(2)) { + if (jj_2_558(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6184,13 +6357,13 @@ final public SqlNode DateTimeConstructorCall() throws ParseException { final Span s; final SqlLiteral quantifier; final List args; - if (jj_2_554(2)) { + if (jj_2_569(2)) { jj_consume_token(DATE); - } else if (jj_2_555(2)) { + } else if (jj_2_570(2)) { jj_consume_token(TIME); - } else if (jj_2_556(2)) { + } else if (jj_2_571(2)) { jj_consume_token(DATETIME); - } else if (jj_2_557(2)) { + } else if (jj_2_572(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); @@ -6212,22 +6385,22 @@ final public SqlNode MultisetConstructor() throws ParseException { final Span s; jj_consume_token(MULTISET); s = span(); - if (jj_2_559(2)) { + if (jj_2_574(2)) { jj_consume_token(LPAREN); // by sub query "MULTISET(SELECT * FROM T)" e = LeafQueryOrExpr(ExprContext.ACCEPT_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.MULTISET_QUERY.createCall( s.end(this), e);} - } else if (jj_2_560(2)) { + } else if (jj_2_575(2)) { jj_consume_token(LBRACKET); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - label_51: + label_52: while (true) { - if (jj_2_558(2)) { + if (jj_2_573(2)) { ; } else { - break label_51; + break label_52; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); @@ -6250,12 +6423,12 @@ final public SqlNode ArrayConstructor() throws ParseException { final String p; jj_consume_token(ARRAY); s = span(); - if (jj_2_564(2)) { - if (jj_2_561(2)) { + if (jj_2_579(2)) { + if (jj_2_576(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_562(2)) { + } else if (jj_2_577(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6269,9 +6442,9 @@ final public SqlNode ArrayConstructor() throws ParseException { // equivalent to standard 'ARRAY [1, 2]' {if (true) return SqlLibraryOperators.ARRAY.createCall(s.end(this), args.getList());} } - } else if (jj_2_565(2)) { + } else if (jj_2_580(2)) { jj_consume_token(LBRACKET); - if (jj_2_563(2)) { + if (jj_2_578(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_SUB_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6292,29 +6465,29 @@ final public SqlCall ArrayLiteral() throws ParseException { final Span s; jj_consume_token(LBRACE); s = span(); - if (jj_2_568(2)) { + if (jj_2_583(2)) { e = Literal(); list = startList(e); - label_52: + label_53: while (true) { - if (jj_2_566(2)) { + if (jj_2_581(2)) { ; } else { - break label_52; + break label_53; } jj_consume_token(COMMA); e = Literal(); list.add(e); } - } else if (jj_2_569(2)) { + } else if (jj_2_584(2)) { e = ArrayLiteral(); list = startList(e); - label_53: + label_54: while (true) { - if (jj_2_567(2)) { + if (jj_2_582(2)) { ; } else { - break label_53; + break label_54; } jj_consume_token(COMMA); e = ArrayLiteral(); @@ -6334,12 +6507,12 @@ final public SqlNode MapConstructor() throws ParseException { final Span s; jj_consume_token(MAP); s = span(); - if (jj_2_573(2)) { - if (jj_2_570(2)) { + if (jj_2_588(2)) { + if (jj_2_585(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_571(2)) { + } else if (jj_2_586(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6352,9 +6525,9 @@ final public SqlNode MapConstructor() throws ParseException { // MAP function e.g. "MAP(1, 2)" equivalent to standard "MAP[1, 2]" {if (true) return SqlLibraryOperators.MAP.createCall(s.end(this), args.getList());} } - } else if (jj_2_574(2)) { + } else if (jj_2_589(2)) { jj_consume_token(LBRACKET); - if (jj_2_572(2)) { + if (jj_2_587(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6394,11 +6567,11 @@ final public SqlLiteral IntervalLiteral() throws ParseException { final Span s; jj_consume_token(INTERVAL); s = span(); - if (jj_2_577(2)) { - if (jj_2_575(2)) { + if (jj_2_592(2)) { + if (jj_2_590(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_576(2)) { + } else if (jj_2_591(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6426,11 +6599,11 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { SqlNode e; jj_consume_token(INTERVAL); s = span(); - if (jj_2_580(2)) { - if (jj_2_578(2)) { + if (jj_2_595(2)) { + if (jj_2_593(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_579(2)) { + } else if (jj_2_594(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6440,20 +6613,20 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } else { ; } - if (jj_2_584(2)) { + if (jj_2_599(2)) { // literal (with quoted string) p = SimpleStringLiteral(); intervalQualifier = IntervalQualifier(); {if (true) return SqlParserUtil.parseIntervalLiteral(s.end(intervalQualifier), sign, p, intervalQualifier);} - } else if (jj_2_585(2)) { - if (jj_2_581(2)) { + } else if (jj_2_600(2)) { + if (jj_2_596(2)) { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_582(2)) { + } else if (jj_2_597(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_583(2)) { + } else if (jj_2_598(2)) { e = CompoundIdentifier(); } else { jj_consume_token(-1); @@ -6473,10 +6646,10 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } final public TimeUnit Year() throws ParseException { - if (jj_2_586(2)) { + if (jj_2_601(2)) { jj_consume_token(YEAR); {if (true) return TimeUnit.YEAR;} - } else if (jj_2_587(2)) { + } else if (jj_2_602(2)) { jj_consume_token(YEARS); {if (true) return warn(TimeUnit.YEAR);} } else { @@ -6487,10 +6660,10 @@ final public TimeUnit Year() throws ParseException { } final public TimeUnit Quarter() throws ParseException { - if (jj_2_588(2)) { + if (jj_2_603(2)) { jj_consume_token(QUARTER); {if (true) return TimeUnit.QUARTER;} - } else if (jj_2_589(2)) { + } else if (jj_2_604(2)) { jj_consume_token(QUARTERS); {if (true) return warn(TimeUnit.QUARTER);} } else { @@ -6501,10 +6674,10 @@ final public TimeUnit Quarter() throws ParseException { } final public TimeUnit Month() throws ParseException { - if (jj_2_590(2)) { + if (jj_2_605(2)) { jj_consume_token(MONTH); {if (true) return TimeUnit.MONTH;} - } else if (jj_2_591(2)) { + } else if (jj_2_606(2)) { jj_consume_token(MONTHS); {if (true) return warn(TimeUnit.MONTH);} } else { @@ -6515,10 +6688,10 @@ final public TimeUnit Month() throws ParseException { } final public TimeUnit Week() throws ParseException { - if (jj_2_592(2)) { + if (jj_2_607(2)) { jj_consume_token(WEEK); {if (true) return TimeUnit.WEEK;} - } else if (jj_2_593(2)) { + } else if (jj_2_608(2)) { jj_consume_token(WEEKS); {if (true) return warn(TimeUnit.WEEK);} } else { @@ -6529,10 +6702,10 @@ final public TimeUnit Week() throws ParseException { } final public TimeUnit Day() throws ParseException { - if (jj_2_594(2)) { + if (jj_2_609(2)) { jj_consume_token(DAY); {if (true) return TimeUnit.DAY;} - } else if (jj_2_595(2)) { + } else if (jj_2_610(2)) { jj_consume_token(DAYS); {if (true) return warn(TimeUnit.DAY);} } else { @@ -6543,10 +6716,10 @@ final public TimeUnit Day() throws ParseException { } final public TimeUnit Hour() throws ParseException { - if (jj_2_596(2)) { + if (jj_2_611(2)) { jj_consume_token(HOUR); {if (true) return TimeUnit.HOUR;} - } else if (jj_2_597(2)) { + } else if (jj_2_612(2)) { jj_consume_token(HOURS); {if (true) return warn(TimeUnit.HOUR);} } else { @@ -6557,10 +6730,10 @@ final public TimeUnit Hour() throws ParseException { } final public TimeUnit Minute() throws ParseException { - if (jj_2_598(2)) { + if (jj_2_613(2)) { jj_consume_token(MINUTE); {if (true) return TimeUnit.MINUTE;} - } else if (jj_2_599(2)) { + } else if (jj_2_614(2)) { jj_consume_token(MINUTES); {if (true) return warn(TimeUnit.MINUTE);} } else { @@ -6571,10 +6744,10 @@ final public TimeUnit Minute() throws ParseException { } final public TimeUnit Second() throws ParseException { - if (jj_2_600(2)) { + if (jj_2_615(2)) { jj_consume_token(SECOND); {if (true) return TimeUnit.SECOND;} - } else if (jj_2_601(2)) { + } else if (jj_2_616(2)) { jj_consume_token(SECONDS); {if (true) return warn(TimeUnit.SECOND);} } else { @@ -6584,48 +6757,57 @@ final public TimeUnit Second() throws ParseException { throw new Error("Missing return statement in function"); } + final public SqlIntervalQualifier IntervalWithoutQualifier() throws ParseException { + final Span s; + int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; + s = span(); + {if (true) return new SqlIntervalQualifier(TimeUnit.SECOND, -1, null, secondFracPrec, + s.end(this));} + throw new Error("Missing return statement in function"); + } + final public SqlIntervalQualifier IntervalQualifier() throws ParseException { final Span s; final TimeUnit start; final TimeUnit end; final int startPrec; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_615(2)) { + if (jj_2_630(2)) { start = Year(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_602(2)) { + if (jj_2_617(2)) { jj_consume_token(TO); end = Month(); } else { end = null; } - } else if (jj_2_616(2)) { + } else if (jj_2_631(2)) { start = Quarter(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_617(2)) { + } else if (jj_2_632(2)) { start = Month(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_618(2)) { + } else if (jj_2_633(2)) { start = Week(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_619(2)) { + } else if (jj_2_634(2)) { start = Day(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_606(2)) { + if (jj_2_621(2)) { jj_consume_token(TO); - if (jj_2_603(2)) { + if (jj_2_618(2)) { end = Hour(); - } else if (jj_2_604(2)) { + } else if (jj_2_619(2)) { end = Minute(); - } else if (jj_2_605(2)) { + } else if (jj_2_620(2)) { end = Second(); secondFracPrec = PrecisionOpt(); } else { @@ -6635,17 +6817,17 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_620(2)) { + } else if (jj_2_635(2)) { start = Hour(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_610(2)) { + if (jj_2_625(2)) { jj_consume_token(TO); - if (jj_2_608(2)) { + if (jj_2_623(2)) { end = Minute(); - } else if (jj_2_609(2)) { + } else if (jj_2_624(2)) { end = Second(); - if (jj_2_607(2)) { + if (jj_2_622(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6659,14 +6841,14 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_621(2)) { + } else if (jj_2_636(2)) { start = Minute(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_612(2)) { + if (jj_2_627(2)) { jj_consume_token(TO); end = Second(); - if (jj_2_611(2)) { + if (jj_2_626(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6676,13 +6858,13 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_622(2)) { + } else if (jj_2_637(2)) { start = Second(); s = span(); - if (jj_2_614(2)) { + if (jj_2_629(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_613(2)) { + if (jj_2_628(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6708,20 +6890,20 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final TimeUnit start; int startPrec = RelDataType.PRECISION_NOT_SPECIFIED; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_632(2)) { - if (jj_2_623(2)) { + if (jj_2_647(2)) { + if (jj_2_638(2)) { start = Year(); - } else if (jj_2_624(2)) { + } else if (jj_2_639(2)) { start = Quarter(); - } else if (jj_2_625(2)) { + } else if (jj_2_640(2)) { start = Month(); - } else if (jj_2_626(2)) { + } else if (jj_2_641(2)) { start = Week(); - } else if (jj_2_627(2)) { + } else if (jj_2_642(2)) { start = Day(); - } else if (jj_2_628(2)) { + } else if (jj_2_643(2)) { start = Hour(); - } else if (jj_2_629(2)) { + } else if (jj_2_644(2)) { start = Minute(); } else { jj_consume_token(-1); @@ -6729,13 +6911,13 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException } s = span(); startPrec = PrecisionOpt(); - } else if (jj_2_633(2)) { + } else if (jj_2_648(2)) { start = Second(); s = span(); - if (jj_2_631(2)) { + if (jj_2_646(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_630(2)) { + if (jj_2_645(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6772,10 +6954,10 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final SqlIdentifier unitName; final SqlIntervalQualifier intervalQualifier; - if (jj_2_634(2)) { + if (jj_2_649(2)) { intervalQualifier = TimeUnit(); {if (true) return intervalQualifier;} - } else if (jj_2_635(2)) { + } else if (jj_2_650(2)) { unitName = SimpleIdentifier(); {if (true) return new SqlIntervalQualifier(unitName.getSimple(), unitName.getParserPosition());} @@ -6799,49 +6981,49 @@ final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final public SqlIntervalQualifier TimeUnit() throws ParseException { final Span span; final String w; - if (jj_2_637(2)) { + if (jj_2_652(2)) { jj_consume_token(NANOSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.NANOSECOND, null, getPos());} - } else if (jj_2_638(2)) { + } else if (jj_2_653(2)) { jj_consume_token(MICROSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MICROSECOND, null, getPos());} - } else if (jj_2_639(2)) { + } else if (jj_2_654(2)) { jj_consume_token(MILLISECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLISECOND, null, getPos());} - } else if (jj_2_640(2)) { + } else if (jj_2_655(2)) { jj_consume_token(SECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.SECOND, null, getPos());} - } else if (jj_2_641(2)) { + } else if (jj_2_656(2)) { jj_consume_token(MINUTE); {if (true) return new SqlIntervalQualifier(TimeUnit.MINUTE, null, getPos());} - } else if (jj_2_642(2)) { + } else if (jj_2_657(2)) { jj_consume_token(HOUR); {if (true) return new SqlIntervalQualifier(TimeUnit.HOUR, null, getPos());} - } else if (jj_2_643(2)) { + } else if (jj_2_658(2)) { jj_consume_token(DAY); {if (true) return new SqlIntervalQualifier(TimeUnit.DAY, null, getPos());} - } else if (jj_2_644(2)) { + } else if (jj_2_659(2)) { jj_consume_token(DAYOFWEEK); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_645(2)) { + } else if (jj_2_660(2)) { jj_consume_token(DAYOFYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_646(2)) { + } else if (jj_2_661(2)) { jj_consume_token(DOW); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_647(2)) { + } else if (jj_2_662(2)) { jj_consume_token(DOY); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_648(2)) { + } else if (jj_2_663(2)) { jj_consume_token(ISODOW); {if (true) return new SqlIntervalQualifier(TimeUnit.ISODOW, null, getPos());} - } else if (jj_2_649(2)) { + } else if (jj_2_664(2)) { jj_consume_token(ISOYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.ISOYEAR, null, getPos());} - } else if (jj_2_650(2)) { + } else if (jj_2_665(2)) { jj_consume_token(WEEK); span = span(); - if (jj_2_636(2)) { + if (jj_2_651(2)) { jj_consume_token(LPAREN); w = weekdayName(); jj_consume_token(RPAREN); @@ -6849,25 +7031,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } else { {if (true) return new SqlIntervalQualifier(TimeUnit.WEEK, null, getPos());} } - } else if (jj_2_651(2)) { + } else if (jj_2_666(2)) { jj_consume_token(MONTH); {if (true) return new SqlIntervalQualifier(TimeUnit.MONTH, null, getPos());} - } else if (jj_2_652(2)) { + } else if (jj_2_667(2)) { jj_consume_token(QUARTER); {if (true) return new SqlIntervalQualifier(TimeUnit.QUARTER, null, getPos());} - } else if (jj_2_653(2)) { + } else if (jj_2_668(2)) { jj_consume_token(YEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.YEAR, null, getPos());} - } else if (jj_2_654(2)) { + } else if (jj_2_669(2)) { jj_consume_token(EPOCH); {if (true) return new SqlIntervalQualifier(TimeUnit.EPOCH, null, getPos());} - } else if (jj_2_655(2)) { + } else if (jj_2_670(2)) { jj_consume_token(DECADE); {if (true) return new SqlIntervalQualifier(TimeUnit.DECADE, null, getPos());} - } else if (jj_2_656(2)) { + } else if (jj_2_671(2)) { jj_consume_token(CENTURY); {if (true) return new SqlIntervalQualifier(TimeUnit.CENTURY, null, getPos());} - } else if (jj_2_657(2)) { + } else if (jj_2_672(2)) { jj_consume_token(MILLENNIUM); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLENNIUM, null, getPos());} } else { @@ -6878,25 +7060,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } final public String weekdayName() throws ParseException { - if (jj_2_658(2)) { + if (jj_2_673(2)) { jj_consume_token(SUNDAY); {if (true) return "WEEK_SUNDAY";} - } else if (jj_2_659(2)) { + } else if (jj_2_674(2)) { jj_consume_token(MONDAY); {if (true) return "WEEK_MONDAY";} - } else if (jj_2_660(2)) { + } else if (jj_2_675(2)) { jj_consume_token(TUESDAY); {if (true) return "WEEK_TUESDAY";} - } else if (jj_2_661(2)) { + } else if (jj_2_676(2)) { jj_consume_token(WEDNESDAY); {if (true) return "WEEK_WEDNESDAY";} - } else if (jj_2_662(2)) { + } else if (jj_2_677(2)) { jj_consume_token(THURSDAY); {if (true) return "WEEK_THURSDAY";} - } else if (jj_2_663(2)) { + } else if (jj_2_678(2)) { jj_consume_token(FRIDAY); {if (true) return "WEEK_FRIDAY";} - } else if (jj_2_664(2)) { + } else if (jj_2_679(2)) { jj_consume_token(SATURDAY); {if (true) return "WEEK_SATURDAY";} } else { @@ -6927,41 +7109,41 @@ final public void AddIdentifierSegment(List names, List po char unicodeEscapeChar = BACKSLASH; final SqlParserPos pos; final Span span; - if (jj_2_666(2)) { + if (jj_2_681(2)) { jj_consume_token(IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_667(2)) { + } else if (jj_2_682(2)) { jj_consume_token(HYPHENATED_IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_668(2)) { + } else if (jj_2_683(2)) { jj_consume_token(QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, DQDQ, quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_669(2)) { + } else if (jj_2_684(2)) { jj_consume_token(BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "``", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_670(2)) { + } else if (jj_2_685(2)) { jj_consume_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "\\`", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_671(2)) { + } else if (jj_2_686(2)) { jj_consume_token(BRACKET_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "[", "]", "]]", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_672(2)) { + } else if (jj_2_687(2)) { jj_consume_token(UNICODE_QUOTED_IDENTIFIER); span = span(); String image = getToken(0).image; image = image.substring(image.indexOf('"')); image = SqlParserUtil.stripQuotes(image, DQ, DQ, DQDQ, quotedCasing); - if (jj_2_665(2)) { + if (jj_2_680(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); String s = SqlParserUtil.parseString(token.image); @@ -6973,7 +7155,7 @@ final public void AddIdentifierSegment(List names, List po SqlLiteral lit = SqlLiteral.createCharString(image, "UTF16", pos); lit = lit.unescapeUnicode(unicodeEscapeChar); id = lit.toValue(); - } else if (jj_2_673(2)) { + } else if (jj_2_688(2)) { id = NonReservedKeyWord(); pos = getPos(); } else { @@ -7056,12 +7238,12 @@ final public void AddSimpleIdentifiers(List list) throws ParseException SqlIdentifier id; id = SimpleIdentifier(); list.add(id); - label_54: + label_55: while (true) { - if (jj_2_674(2)) { + if (jj_2_689(2)) { ; } else { - break label_54; + break label_55; } jj_consume_token(COMMA); id = SimpleIdentifier(); @@ -7094,10 +7276,10 @@ final public SqlNodeList ParenthesizedSimpleIdentifierList() throws ParseExcepti final public SqlNodeList SimpleIdentifierOrList() throws ParseException { SqlIdentifier id; SqlNodeList list; - if (jj_2_675(2)) { + if (jj_2_690(2)) { id = SimpleIdentifier(); {if (true) return new SqlNodeList(Collections.singletonList(id), id.getParserPosition());} - } else if (jj_2_676(2)) { + } else if (jj_2_691(2)) { list = ParenthesizedSimpleIdentifierList(); {if (true) return list;} } else { @@ -7115,17 +7297,17 @@ final public SqlIdentifier CompoundIdentifier() throws ParseException { final List posList = new ArrayList(); boolean star = false; AddIdentifierSegment(nameList, posList); - label_55: + label_56: while (true) { - if (jj_2_677(2)) { + if (jj_2_692(2)) { ; } else { - break label_55; + break label_56; } jj_consume_token(DOT); AddIdentifierSegment(nameList, posList); } - if (jj_2_678(2)) { + if (jj_2_693(2)) { jj_consume_token(DOT); jj_consume_token(STAR); star = true; @@ -7149,12 +7331,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { final List nameList = new ArrayList(); final List posList = new ArrayList(); AddTableIdentifierSegment(nameList, posList); - label_56: + label_57: while (true) { - if (jj_2_679(2)) { + if (jj_2_694(2)) { ; } else { - break label_56; + break label_57; } jj_consume_token(DOT); AddTableIdentifierSegment(nameList, posList); @@ -7169,12 +7351,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { */ final public void AddCompoundIdentifierTypes(List list, List extendList) throws ParseException { AddCompoundIdentifierType(list, extendList); - label_57: + label_58: while (true) { - if (jj_2_680(2)) { + if (jj_2_695(2)) { ; } else { - break label_57; + break label_58; } jj_consume_token(COMMA); AddCompoundIdentifierType(list, extendList); @@ -7226,10 +7408,10 @@ final public int UnsignedIntLiteral() throws ParseException { final public int IntLiteral() throws ParseException { Token t; - if (jj_2_683(2)) { - if (jj_2_681(2)) { + if (jj_2_698(2)) { + if (jj_2_696(2)) { t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); - } else if (jj_2_682(2)) { + } else if (jj_2_697(2)) { jj_consume_token(PLUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); } else { @@ -7242,7 +7424,7 @@ final public int IntLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.invalidLiteral(t.image, Integer.class.getCanonicalName()));} } - } else if (jj_2_684(2)) { + } else if (jj_2_699(2)) { jj_consume_token(MINUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); try { @@ -7264,12 +7446,12 @@ final public SqlDataTypeSpec DataType() throws ParseException { final Span s; typeName = TypeName(); s = Span.of(typeName.getParserPos()); - label_58: + label_59: while (true) { - if (jj_2_685(2)) { + if (jj_2_700(2)) { ; } else { - break label_58; + break label_59; } typeName = CollectionsTypeName(typeName); } @@ -7283,13 +7465,13 @@ final public SqlTypeNameSpec TypeName() throws ParseException { final SqlTypeNameSpec typeNameSpec; final SqlIdentifier typeName; final Span s = Span.of(); - if (jj_2_686(2)) { + if (jj_2_701(2)) { typeNameSpec = SqlTypeName(s); - } else if (jj_2_687(2)) { + } else if (jj_2_702(2)) { typeNameSpec = RowTypeName(); - } else if (jj_2_688(2)) { + } else if (jj_2_703(2)) { typeNameSpec = MapTypeName(); - } else if (jj_2_689(2)) { + } else if (jj_2_704(2)) { typeName = CompoundIdentifier(); typeNameSpec = new SqlUserDefinedTypeNameSpec(typeName, s.end(this)); } else { @@ -7303,15 +7485,15 @@ final public SqlTypeNameSpec TypeName() throws ParseException { // Types used for JDBC and ODBC scalar conversion function final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { final SqlTypeNameSpec sqlTypeNameSpec; - if (jj_2_690(2)) { + if (jj_2_705(2)) { sqlTypeNameSpec = SqlTypeName1(s); - } else if (jj_2_691(2)) { + } else if (jj_2_706(2)) { sqlTypeNameSpec = SqlTypeName2(s); - } else if (jj_2_692(2)) { + } else if (jj_2_707(2)) { sqlTypeNameSpec = SqlTypeName3(s); - } else if (jj_2_693(2)) { + } else if (jj_2_708(2)) { sqlTypeNameSpec = CharacterTypeName(s); - } else if (jj_2_694(2)) { + } else if (jj_2_709(2)) { sqlTypeNameSpec = DateTimeTypeName(); } else { jj_consume_token(-1); @@ -7325,54 +7507,97 @@ final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { // For extra specification, we mean precision, scale, charSet, etc. final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final SqlTypeName sqlTypeName; - if (jj_2_698(2)) { + boolean unsigned = false; + if (jj_2_717(2)) { jj_consume_token(GEOMETRY); if (!this.conformance.allowGeometry()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.geometryDisabled());} } s.add(this); sqlTypeName = SqlTypeName.GEOMETRY; - } else if (jj_2_699(2)) { + } else if (jj_2_718(2)) { jj_consume_token(BOOLEAN); s.add(this); sqlTypeName = SqlTypeName.BOOLEAN; - } else if (jj_2_700(2)) { - if (jj_2_695(2)) { + } else if (jj_2_719(2)) { + if (jj_2_710(2)) { jj_consume_token(INTEGER); - } else if (jj_2_696(2)) { + } else if (jj_2_711(2)) { jj_consume_token(INT); } else { jj_consume_token(-1); throw new ParseException(); } - s.add(this); sqlTypeName = SqlTypeName.INTEGER; - } else if (jj_2_701(2)) { + if (jj_2_712(2)) { + jj_consume_token(UNSIGNED); + unsigned = true; + } else { + ; + } + if (unsigned && !this.conformance.supportsUnsignedTypes()) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unsignedDisabled());} + } + s.add(this); sqlTypeName = unsigned ? SqlTypeName.UINTEGER : SqlTypeName.INTEGER; + } else if (jj_2_720(2)) { + jj_consume_token(UNSIGNED); + if (!this.conformance.supportsUnsignedTypes()) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unsignedDisabled());} + } + s.add(this); sqlTypeName = SqlTypeName.UINTEGER; + } else if (jj_2_721(2)) { jj_consume_token(TINYINT); - s.add(this); sqlTypeName = SqlTypeName.TINYINT; - } else if (jj_2_702(2)) { + if (jj_2_713(2)) { + jj_consume_token(UNSIGNED); + unsigned = true; + } else { + ; + } + if (unsigned && !this.conformance.supportsUnsignedTypes()) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unsignedDisabled());} + } + s.add(this); sqlTypeName = unsigned ? SqlTypeName.UTINYINT : SqlTypeName.TINYINT; + } else if (jj_2_722(2)) { jj_consume_token(SMALLINT); - s.add(this); sqlTypeName = SqlTypeName.SMALLINT; - } else if (jj_2_703(2)) { + if (jj_2_714(2)) { + jj_consume_token(UNSIGNED); + unsigned = true; + } else { + ; + } + if (unsigned && !this.conformance.supportsUnsignedTypes()) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unsignedDisabled());} + } + s.add(this); sqlTypeName = unsigned ? SqlTypeName.USMALLINT : SqlTypeName.SMALLINT; + } else if (jj_2_723(2)) { jj_consume_token(BIGINT); - s.add(this); sqlTypeName = SqlTypeName.BIGINT; - } else if (jj_2_704(2)) { + if (jj_2_715(2)) { + jj_consume_token(UNSIGNED); + unsigned = true; + } else { + ; + } + if (unsigned && !this.conformance.supportsUnsignedTypes()) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unsignedDisabled());} + } + s.add(this); sqlTypeName = unsigned ? SqlTypeName.UBIGINT : SqlTypeName.BIGINT; + } else if (jj_2_724(2)) { jj_consume_token(REAL); s.add(this); sqlTypeName = SqlTypeName.REAL; - } else if (jj_2_705(2)) { + } else if (jj_2_725(2)) { jj_consume_token(DOUBLE); s.add(this); - if (jj_2_697(2)) { + if (jj_2_716(2)) { jj_consume_token(PRECISION); } else { ; } sqlTypeName = SqlTypeName.DOUBLE; - } else if (jj_2_706(2)) { + } else if (jj_2_726(2)) { jj_consume_token(FLOAT); s.add(this); sqlTypeName = SqlTypeName.FLOAT; - } else if (jj_2_707(2)) { + } else if (jj_2_727(2)) { jj_consume_token(VARIANT); s.add(this); sqlTypeName = SqlTypeName.VARIANT; - } else if (jj_2_708(2)) { + } else if (jj_2_728(2)) { jj_consume_token(UUID); s.add(this); sqlTypeName = SqlTypeName.UUID; } else { @@ -7387,16 +7612,16 @@ final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final public SqlTypeNameSpec SqlTypeName2(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = -1; - if (jj_2_710(2)) { + if (jj_2_730(2)) { jj_consume_token(BINARY); s.add(this); - if (jj_2_709(2)) { + if (jj_2_729(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARBINARY; } else { sqlTypeName = SqlTypeName.BINARY; } - } else if (jj_2_711(2)) { + } else if (jj_2_731(2)) { jj_consume_token(VARBINARY); s.add(this); sqlTypeName = SqlTypeName.VARBINARY; } else { @@ -7413,29 +7638,29 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = RelDataType.PRECISION_NOT_SPECIFIED; int scale = RelDataType.SCALE_NOT_SPECIFIED; - if (jj_2_715(2)) { - if (jj_2_712(2)) { + if (jj_2_735(2)) { + if (jj_2_732(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_713(2)) { + } else if (jj_2_733(2)) { jj_consume_token(DEC); - } else if (jj_2_714(2)) { + } else if (jj_2_734(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.DECIMAL; - } else if (jj_2_716(2)) { + } else if (jj_2_736(2)) { jj_consume_token(ANY); s.add(this); sqlTypeName = SqlTypeName.ANY; } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_718(2)) { + if (jj_2_738(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); - if (jj_2_717(2)) { + if (jj_2_737(2)) { jj_consume_token(COMMA); scale = IntLiteral(); } else { @@ -7451,213 +7676,213 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { // Types used for for JDBC and ODBC scalar conversion function final public SqlJdbcDataTypeName JdbcOdbcDataTypeName() throws ParseException { - if (jj_2_753(2)) { - if (jj_2_719(2)) { + if (jj_2_773(2)) { + if (jj_2_739(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_720(2)) { + } else if (jj_2_740(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_CHAR;} - } else if (jj_2_754(2)) { - if (jj_2_721(2)) { + } else if (jj_2_774(2)) { + if (jj_2_741(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_722(2)) { + } else if (jj_2_742(2)) { jj_consume_token(VARCHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARCHAR;} - } else if (jj_2_755(2)) { - if (jj_2_723(2)) { + } else if (jj_2_775(2)) { + if (jj_2_743(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_724(2)) { + } else if (jj_2_744(2)) { jj_consume_token(DATE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DATE;} - } else if (jj_2_756(2)) { - if (jj_2_725(2)) { + } else if (jj_2_776(2)) { + if (jj_2_745(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_726(2)) { + } else if (jj_2_746(2)) { jj_consume_token(TIME); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIME;} - } else if (jj_2_757(2)) { - if (jj_2_727(2)) { + } else if (jj_2_777(2)) { + if (jj_2_747(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_728(2)) { + } else if (jj_2_748(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIMESTAMP;} - } else if (jj_2_758(2)) { - if (jj_2_729(2)) { + } else if (jj_2_778(2)) { + if (jj_2_749(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_730(2)) { + } else if (jj_2_750(2)) { jj_consume_token(DECIMAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DECIMAL;} - } else if (jj_2_759(2)) { - if (jj_2_731(2)) { + } else if (jj_2_779(2)) { + if (jj_2_751(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_732(2)) { + } else if (jj_2_752(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_NUMERIC;} - } else if (jj_2_760(2)) { - if (jj_2_733(2)) { + } else if (jj_2_780(2)) { + if (jj_2_753(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_734(2)) { + } else if (jj_2_754(2)) { jj_consume_token(BOOLEAN); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BOOLEAN;} - } else if (jj_2_761(2)) { - if (jj_2_735(2)) { + } else if (jj_2_781(2)) { + if (jj_2_755(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_736(2)) { + } else if (jj_2_756(2)) { jj_consume_token(INTEGER); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_INTEGER;} - } else if (jj_2_762(2)) { - if (jj_2_737(2)) { + } else if (jj_2_782(2)) { + if (jj_2_757(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_738(2)) { + } else if (jj_2_758(2)) { jj_consume_token(BINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BINARY;} - } else if (jj_2_763(2)) { - if (jj_2_739(2)) { + } else if (jj_2_783(2)) { + if (jj_2_759(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_740(2)) { + } else if (jj_2_760(2)) { jj_consume_token(VARBINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARBINARY;} - } else if (jj_2_764(2)) { - if (jj_2_741(2)) { + } else if (jj_2_784(2)) { + if (jj_2_761(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_742(2)) { + } else if (jj_2_762(2)) { jj_consume_token(TINYINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TINYINT;} - } else if (jj_2_765(2)) { - if (jj_2_743(2)) { + } else if (jj_2_785(2)) { + if (jj_2_763(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_744(2)) { + } else if (jj_2_764(2)) { jj_consume_token(SMALLINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_SMALLINT;} - } else if (jj_2_766(2)) { - if (jj_2_745(2)) { + } else if (jj_2_786(2)) { + if (jj_2_765(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_746(2)) { + } else if (jj_2_766(2)) { jj_consume_token(BIGINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BIGINT;} - } else if (jj_2_767(2)) { - if (jj_2_747(2)) { + } else if (jj_2_787(2)) { + if (jj_2_767(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_748(2)) { + } else if (jj_2_768(2)) { jj_consume_token(REAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_REAL;} - } else if (jj_2_768(2)) { - if (jj_2_749(2)) { + } else if (jj_2_788(2)) { + if (jj_2_769(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_750(2)) { + } else if (jj_2_770(2)) { jj_consume_token(DOUBLE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DOUBLE;} - } else if (jj_2_769(2)) { - if (jj_2_751(2)) { + } else if (jj_2_789(2)) { + if (jj_2_771(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_752(2)) { + } else if (jj_2_772(2)) { jj_consume_token(FLOAT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_FLOAT;} - } else if (jj_2_770(2)) { + } else if (jj_2_790(2)) { jj_consume_token(SQL_INTERVAL_YEAR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR;} - } else if (jj_2_771(2)) { + } else if (jj_2_791(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR_TO_MONTH;} - } else if (jj_2_772(2)) { + } else if (jj_2_792(2)) { jj_consume_token(SQL_INTERVAL_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MONTH;} - } else if (jj_2_773(2)) { + } else if (jj_2_793(2)) { jj_consume_token(SQL_INTERVAL_DAY); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY;} - } else if (jj_2_774(2)) { + } else if (jj_2_794(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_HOUR;} - } else if (jj_2_775(2)) { + } else if (jj_2_795(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_MINUTE;} - } else if (jj_2_776(2)) { + } else if (jj_2_796(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_SECOND;} - } else if (jj_2_777(2)) { + } else if (jj_2_797(2)) { jj_consume_token(SQL_INTERVAL_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR;} - } else if (jj_2_778(2)) { + } else if (jj_2_798(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_MINUTE;} - } else if (jj_2_779(2)) { + } else if (jj_2_799(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_SECOND;} - } else if (jj_2_780(2)) { + } else if (jj_2_800(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE;} - } else if (jj_2_781(2)) { + } else if (jj_2_801(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE_TO_SECOND;} - } else if (jj_2_782(2)) { + } else if (jj_2_802(2)) { jj_consume_token(SQL_INTERVAL_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_SECOND;} } else { @@ -7680,10 +7905,10 @@ final public SqlLiteral JdbcOdbcDataType() throws ParseException { */ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName) throws ParseException { final SqlTypeName collectionTypeName; - if (jj_2_783(2)) { + if (jj_2_803(2)) { jj_consume_token(MULTISET); collectionTypeName = SqlTypeName.MULTISET; - } else if (jj_2_784(2)) { + } else if (jj_2_804(2)) { jj_consume_token(ARRAY); collectionTypeName = SqlTypeName.ARRAY; } else { @@ -7699,10 +7924,10 @@ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName * Parse a nullable option, default is true. */ final public boolean NullableOptDefaultTrue() throws ParseException { - if (jj_2_785(2)) { + if (jj_2_805(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_786(2)) { + } else if (jj_2_806(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7716,10 +7941,10 @@ final public boolean NullableOptDefaultTrue() throws ParseException { * Parse a nullable option, default is false. */ final public boolean NullableOptDefaultFalse() throws ParseException { - if (jj_2_787(2)) { + if (jj_2_807(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_788(2)) { + } else if (jj_2_808(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7731,7 +7956,7 @@ final public boolean NullableOptDefaultFalse() throws ParseException { /** Parses NOT NULL and returns false, or parses nothing and returns true. */ final public boolean NotNullOpt() throws ParseException { - if (jj_2_789(2)) { + if (jj_2_809(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7748,12 +7973,12 @@ final public boolean NotNullOpt() throws ParseException { final public void AddFieldNameTypes(List fieldNames, List fieldTypes) throws ParseException { AddFieldNameType(fieldNames, fieldTypes); - label_59: + label_60: while (true) { - if (jj_2_790(2)) { + if (jj_2_810(2)) { ; } else { - break label_59; + break label_60; } jj_consume_token(COMMA); AddFieldNameType(fieldNames, fieldTypes); @@ -7808,23 +8033,23 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { int precision = -1; final SqlTypeName sqlTypeName; String charSetName = null; - if (jj_2_794(2)) { - if (jj_2_791(2)) { + if (jj_2_814(2)) { + if (jj_2_811(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_792(2)) { + } else if (jj_2_812(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); - if (jj_2_793(2)) { + if (jj_2_813(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARCHAR; } else { sqlTypeName = SqlTypeName.CHAR; } - } else if (jj_2_795(2)) { + } else if (jj_2_815(2)) { jj_consume_token(VARCHAR); s.add(this); sqlTypeName = SqlTypeName.VARCHAR; } else { @@ -7832,7 +8057,7 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { throw new ParseException(); } precision = PrecisionOpt(); - if (jj_2_796(2)) { + if (jj_2_816(2)) { jj_consume_token(CHARACTER); jj_consume_token(SET); charSetName = Identifier(); @@ -7850,17 +8075,17 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { int precision = -1; SqlTypeName typeName; final Span s; - if (jj_2_797(2)) { + if (jj_2_817(2)) { jj_consume_token(DATE); typeName = SqlTypeName.DATE; {if (true) return new SqlBasicTypeNameSpec(typeName, getPos());} - } else if (jj_2_798(2)) { + } else if (jj_2_818(2)) { jj_consume_token(TIME); s = span(); precision = PrecisionOpt(); typeName = TimeZoneOpt(true); {if (true) return new SqlBasicTypeNameSpec(typeName, precision, s.end(this));} - } else if (jj_2_799(2)) { + } else if (jj_2_819(2)) { jj_consume_token(TIMESTAMP); s = span(); precision = PrecisionOpt(); @@ -7876,7 +8101,7 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { // Parse an optional data type precision, default is -1. final public int PrecisionOpt() throws ParseException { int precision = -1; - if (jj_2_800(2)) { + if (jj_2_820(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -7894,14 +8119,14 @@ final public int PrecisionOpt() throws ParseException { */ final public SqlTypeName TimeZoneOpt(boolean timeType) throws ParseException { boolean local = false; - if (jj_2_802(3)) { + if (jj_2_822(3)) { jj_consume_token(WITHOUT); jj_consume_token(TIME); jj_consume_token(ZONE); {if (true) return timeType ? SqlTypeName.TIME : SqlTypeName.TIMESTAMP;} - } else if (jj_2_803(2)) { + } else if (jj_2_823(2)) { jj_consume_token(WITH); - if (jj_2_801(2)) { + if (jj_2_821(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -7951,14 +8176,14 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final SqlLiteral style; // mssql convert 'style' operand final SqlFunction f; final SqlNode format; - if (jj_2_840(2)) { - if (jj_2_804(2)) { + if (jj_2_860(2)) { + if (jj_2_824(2)) { jj_consume_token(CAST); f = SqlStdOperatorTable.CAST; - } else if (jj_2_805(2)) { + } else if (jj_2_825(2)) { jj_consume_token(SAFE_CAST); f = SqlLibraryOperators.SAFE_CAST; - } else if (jj_2_806(2)) { + } else if (jj_2_826(2)) { jj_consume_token(TRY_CAST); f = SqlLibraryOperators.TRY_CAST; } else { @@ -7969,10 +8194,10 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(AS); - if (jj_2_807(2)) { + if (jj_2_827(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_808(2)) { + } else if (jj_2_828(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -7980,7 +8205,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_809(2)) { + if (jj_2_829(2)) { jj_consume_token(FORMAT); format = StringLiteral(); args.add(format); @@ -7989,7 +8214,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return f.createCall(s.end(this), args);} - } else if (jj_2_841(2)) { + } else if (jj_2_861(2)) { jj_consume_token(EXTRACT); s = span(); jj_consume_token(LPAREN); @@ -7999,7 +8224,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.EXTRACT.createCall(s.end(this), args);} - } else if (jj_2_842(2)) { + } else if (jj_2_862(2)) { jj_consume_token(POSITION); s = span(); jj_consume_token(LPAREN); @@ -8010,7 +8235,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(e); jj_consume_token(IN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_810(2)) { + if (jj_2_830(2)) { jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -8018,30 +8243,30 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.POSITION.createCall(s.end(this), args);} - } else if (jj_2_843(2)) { + } else if (jj_2_863(2)) { jj_consume_token(CONVERT); s = span(); jj_consume_token(LPAREN); - if (jj_2_820(2)) { + if (jj_2_840(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_813(2)) { + if (jj_2_833(2)) { jj_consume_token(USING); name = SimpleIdentifier(); args.add(name); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} - } else if (jj_2_814(2)) { + } else if (jj_2_834(2)) { jj_consume_token(COMMA); e = SimpleIdentifier(); args.add(e); - if (jj_2_811(2)) { + if (jj_2_831(2)) { jj_consume_token(COMMA); e = SimpleIdentifier(); args.add(e); jj_consume_token(RPAREN); SqlOperator op = SqlStdOperatorTable.getConvertFuncByConformance(this.conformance); {if (true) return op.createCall(s.end(this), args);} - } else if (jj_2_812(2)) { + } else if (jj_2_832(2)) { jj_consume_token(RPAREN); {if (true) return SqlLibraryOperators.CONVERT_ORACLE.createCall(s.end(this), args);} } else { @@ -8052,11 +8277,11 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_821(2)) { - if (jj_2_815(2)) { + } else if (jj_2_841(2)) { + if (jj_2_835(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_816(2)) { + } else if (jj_2_836(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -8066,12 +8291,12 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_819(2)) { + if (jj_2_839(2)) { jj_consume_token(COMMA); - if (jj_2_817(2)) { + if (jj_2_837(2)) { style = UnsignedNumericLiteral(); args.add(style); - } else if (jj_2_818(2)) { + } else if (jj_2_838(2)) { jj_consume_token(NULL); args.add(SqlLiteral.createNull(getPos())); } else { @@ -8087,25 +8312,25 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_844(2)) { + } else if (jj_2_864(2)) { jj_consume_token(TRANSLATE); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_823(2)) { + if (jj_2_843(2)) { jj_consume_token(USING); name = SimpleIdentifier(); args.add(name); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} - } else if (jj_2_824(2)) { - label_60: + } else if (jj_2_844(2)) { + label_61: while (true) { - if (jj_2_822(2)) { + if (jj_2_842(2)) { ; } else { - break label_60; + break label_61; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); @@ -8117,7 +8342,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_845(2)) { + } else if (jj_2_865(2)) { jj_consume_token(OVERLAY); s = span(); jj_consume_token(LPAREN); @@ -8126,7 +8351,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_825(2)) { + if (jj_2_845(2)) { jj_consume_token(FOR); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -8134,15 +8359,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.OVERLAY.createCall(s.end(this), args);} - } else if (jj_2_846(2)) { + } else if (jj_2_866(2)) { jj_consume_token(FLOOR); s = span(); e = FloorCeilOptions(s, true); {if (true) return e;} - } else if (jj_2_847(2)) { - if (jj_2_826(2)) { + } else if (jj_2_867(2)) { + if (jj_2_846(2)) { jj_consume_token(CEIL); - } else if (jj_2_827(2)) { + } else if (jj_2_847(2)) { jj_consume_token(CEILING); } else { jj_consume_token(-1); @@ -8151,24 +8376,24 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { s = span(); e = FloorCeilOptions(s, false); {if (true) return e;} - } else if (jj_2_848(2)) { + } else if (jj_2_868(2)) { jj_consume_token(SUBSTRING); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_828(2)) { + if (jj_2_848(2)) { jj_consume_token(FROM); - } else if (jj_2_829(2)) { + } else if (jj_2_849(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); throw new ParseException(); } AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_832(2)) { - if (jj_2_830(2)) { + if (jj_2_852(2)) { + if (jj_2_850(2)) { jj_consume_token(FOR); - } else if (jj_2_831(2)) { + } else if (jj_2_851(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); @@ -8181,23 +8406,23 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.SUBSTRING.createCall( s.end(this), args);} - } else if (jj_2_849(2)) { + } else if (jj_2_869(2)) { jj_consume_token(TRIM); SqlLiteral flag = null; SqlNode trimChars = null; SqlParserPos fromPos = SqlParserPos.ZERO; s = span(); jj_consume_token(LPAREN); - if (jj_2_838(2)) { - if (jj_2_833(2)) { + if (jj_2_858(2)) { + if (jj_2_853(2)) { jj_consume_token(BOTH); s.add(this); flag = SqlTrimFunction.Flag.BOTH.symbol(getPos()); - } else if (jj_2_834(2)) { + } else if (jj_2_854(2)) { jj_consume_token(TRAILING); s.add(this); flag = SqlTrimFunction.Flag.TRAILING.symbol(getPos()); - } else if (jj_2_835(2)) { + } else if (jj_2_855(2)) { jj_consume_token(LEADING); s.add(this); flag = SqlTrimFunction.Flag.LEADING.symbol(getPos()); @@ -8205,7 +8430,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_836(2)) { + if (jj_2_856(2)) { trimChars = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { ; @@ -8213,9 +8438,9 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(FROM); fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_839(2)) { + } else if (jj_2_859(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_837(2)) { + if (jj_2_857(2)) { jj_consume_token(FROM); trimChars = e; fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); @@ -8235,67 +8460,67 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(trimChars); args.add(e); {if (true) return SqlStdOperatorTable.TRIM.createCall(s.end(this), args);} - } else if (jj_2_850(2)) { + } else if (jj_2_870(2)) { node = ContainsSubstrFunctionCall(); {if (true) return node;} - } else if (jj_2_851(2)) { + } else if (jj_2_871(2)) { node = DateTimeConstructorCall(); {if (true) return node;} - } else if (jj_2_852(2)) { + } else if (jj_2_872(2)) { node = DateDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_853(2)) { + } else if (jj_2_873(2)) { node = DateTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_854(2)) { + } else if (jj_2_874(2)) { node = DatetimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_855(2)) { + } else if (jj_2_875(2)) { node = TimestampAddFunctionCall(); {if (true) return node;} - } else if (jj_2_856(2)) { + } else if (jj_2_876(2)) { node = DatetimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_857(2)) { + } else if (jj_2_877(2)) { node = TimestampDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_858(2)) { + } else if (jj_2_878(2)) { node = TimestampDiff3FunctionCall(); {if (true) return node;} - } else if (jj_2_859(2)) { + } else if (jj_2_879(2)) { node = TimestampTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_860(2)) { + } else if (jj_2_880(2)) { node = TimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_861(2)) { + } else if (jj_2_881(2)) { node = TimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_862(2)) { + } else if (jj_2_882(2)) { node = MatchRecognizeFunctionCall(); {if (true) return node;} - } else if (jj_2_863(2)) { + } else if (jj_2_883(2)) { node = JsonExistsFunctionCall(); {if (true) return node;} - } else if (jj_2_864(2)) { + } else if (jj_2_884(2)) { node = JsonValueFunctionCall(); {if (true) return node;} - } else if (jj_2_865(2)) { + } else if (jj_2_885(2)) { node = JsonQueryFunctionCall(); {if (true) return node;} - } else if (jj_2_866(2)) { + } else if (jj_2_886(2)) { node = JsonObjectFunctionCall(); {if (true) return node;} - } else if (jj_2_867(2)) { + } else if (jj_2_887(2)) { node = JsonObjectAggFunctionCall(); {if (true) return node;} - } else if (jj_2_868(2)) { + } else if (jj_2_888(2)) { node = JsonArrayFunctionCall(); {if (true) return node;} - } else if (jj_2_869(2)) { + } else if (jj_2_889(2)) { node = JsonArrayAggFunctionCall(); {if (true) return node;} - } else if (jj_2_870(2)) { + } else if (jj_2_890(2)) { node = GroupByWindowingCall(); {if (true) return node;} } else { @@ -8307,15 +8532,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final public SqlJsonEncoding JsonRepresentation() throws ParseException { jj_consume_token(JSON); - if (jj_2_874(2)) { + if (jj_2_894(2)) { jj_consume_token(ENCODING); - if (jj_2_871(2)) { + if (jj_2_891(2)) { jj_consume_token(UTF8); {if (true) return SqlJsonEncoding.UTF8;} - } else if (jj_2_872(2)) { + } else if (jj_2_892(2)) { jj_consume_token(UTF16); {if (true) return SqlJsonEncoding.UTF16;} - } else if (jj_2_873(2)) { + } else if (jj_2_893(2)) { jj_consume_token(UTF32); {if (true) return SqlJsonEncoding.UTF32;} } else { @@ -8345,7 +8570,7 @@ final public SqlDataTypeSpec JsonReturningClause() throws ParseException { final public SqlDataTypeSpec JsonOutputClause() throws ParseException { SqlDataTypeSpec dataType; dataType = JsonReturningClause(); - if (jj_2_875(2)) { + if (jj_2_895(2)) { jj_consume_token(FORMAT); JsonRepresentation(); } else { @@ -8368,19 +8593,19 @@ final public List JsonApiCommonSyntax() throws ParseException { AddExpression(args, ExprContext.ACCEPT_NON_QUERY); jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - if (jj_2_877(2)) { + if (jj_2_897(2)) { jj_consume_token(PASSING); e = Expression(ExprContext.ACCEPT_NON_QUERY); jj_consume_token(AS); e = SimpleIdentifier(); - label_61: + label_62: while (true) { - if (jj_2_876(2)) { + if (jj_2_896(2)) { ; } else { - break label_61; + break label_62; } jj_consume_token(COMMA); e = Expression(ExprContext.ACCEPT_NON_QUERY); @@ -8397,16 +8622,16 @@ final public List JsonApiCommonSyntax() throws ParseException { } final public SqlJsonExistsErrorBehavior JsonExistsErrorBehavior() throws ParseException { - if (jj_2_878(2)) { + if (jj_2_898(2)) { jj_consume_token(TRUE); {if (true) return SqlJsonExistsErrorBehavior.TRUE;} - } else if (jj_2_879(2)) { + } else if (jj_2_899(2)) { jj_consume_token(FALSE); {if (true) return SqlJsonExistsErrorBehavior.FALSE;} - } else if (jj_2_880(2)) { + } else if (jj_2_900(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlJsonExistsErrorBehavior.UNKNOWN;} - } else if (jj_2_881(2)) { + } else if (jj_2_901(2)) { jj_consume_token(ERROR); {if (true) return SqlJsonExistsErrorBehavior.ERROR;} } else { @@ -8426,7 +8651,7 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_882(2)) { + if (jj_2_902(2)) { errorBehavior = JsonExistsErrorBehavior(); args.add(errorBehavior.symbol(getPos())); jj_consume_token(ON); @@ -8441,13 +8666,13 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { final public List JsonValueEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_883(2)) { + if (jj_2_903(2)) { jj_consume_token(ERROR); list.add(SqlJsonValueEmptyOrErrorBehavior.ERROR.symbol(getPos())); - } else if (jj_2_884(2)) { + } else if (jj_2_904(2)) { jj_consume_token(NULL); list.add(SqlJsonValueEmptyOrErrorBehavior.NULL.symbol(getPos())); - } else if (jj_2_885(2)) { + } else if (jj_2_905(2)) { jj_consume_token(DEFAULT_); list.add(SqlJsonValueEmptyOrErrorBehavior.DEFAULT.symbol(getPos())); AddExpression(list, ExprContext.ACCEPT_NON_QUERY); @@ -8456,10 +8681,10 @@ final public List JsonValueEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_886(2)) { + if (jj_2_906(2)) { jj_consume_token(EMPTY); list.add(SqlJsonEmptyOrError.EMPTY.symbol(getPos())); - } else if (jj_2_887(2)) { + } else if (jj_2_907(2)) { jj_consume_token(ERROR); list.add(SqlJsonEmptyOrError.ERROR.symbol(getPos())); } else { @@ -8481,19 +8706,19 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_888(2)) { + if (jj_2_908(2)) { e = JsonReturningClause(); args.add(SqlJsonValueReturning.RETURNING.symbol(getPos())); args.add(e); } else { ; } - label_62: + label_63: while (true) { - if (jj_2_889(2)) { + if (jj_2_909(2)) { ; } else { - break label_62; + break label_63; } behavior = JsonValueEmptyOrErrorBehavior(); args.addAll(behavior); @@ -8505,17 +8730,17 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { final public List JsonQueryEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_890(2)) { + if (jj_2_910(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.ERROR, getPos())); - } else if (jj_2_891(2)) { + } else if (jj_2_911(2)) { jj_consume_token(NULL); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.NULL, getPos())); - } else if (jj_2_892(2)) { + } else if (jj_2_912(2)) { jj_consume_token(EMPTY); jj_consume_token(ARRAY); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_ARRAY, getPos())); - } else if (jj_2_893(2)) { + } else if (jj_2_913(2)) { jj_consume_token(EMPTY); jj_consume_token(OBJECT); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_OBJECT, getPos())); @@ -8524,10 +8749,10 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_894(2)) { + if (jj_2_914(2)) { jj_consume_token(EMPTY); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.EMPTY, getPos())); - } else if (jj_2_895(2)) { + } else if (jj_2_915(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.ERROR, getPos())); } else { @@ -8539,31 +8764,31 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException } final public SqlNode JsonQueryWrapperBehavior() throws ParseException { - if (jj_2_900(2)) { + if (jj_2_920(2)) { jj_consume_token(WITHOUT); - if (jj_2_896(2)) { + if (jj_2_916(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITHOUT_ARRAY, getPos());} - } else if (jj_2_901(2)) { + } else if (jj_2_921(2)) { jj_consume_token(WITH); jj_consume_token(CONDITIONAL); - if (jj_2_897(2)) { + if (jj_2_917(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITH_CONDITIONAL_ARRAY, getPos());} - } else if (jj_2_902(2)) { + } else if (jj_2_922(2)) { jj_consume_token(WITH); - if (jj_2_898(2)) { + if (jj_2_918(2)) { jj_consume_token(UNCONDITIONAL); } else { ; } - if (jj_2_899(2)) { + if (jj_2_919(2)) { jj_consume_token(ARRAY); } else { ; @@ -8588,25 +8813,25 @@ final public SqlCall JsonQueryFunctionCall() throws ParseException { commonSyntax = JsonApiCommonSyntax(); args[0] = commonSyntax.get(0); args[1] = commonSyntax.get(1); - if (jj_2_903(2)) { + if (jj_2_923(2)) { e = JsonReturningClause(); args[5] = e; } else { ; } - if (jj_2_904(2)) { + if (jj_2_924(2)) { e = JsonQueryWrapperBehavior(); jj_consume_token(WRAPPER); args[2] = e; } else { ; } - label_63: + label_64: while (true) { - if (jj_2_905(2)) { + if (jj_2_925(2)) { ; } else { - break label_63; + break label_64; } behavior = JsonQueryEmptyOrErrorBehavior(); final SqlJsonEmptyOrError symbol = @@ -8636,7 +8861,7 @@ final public List JsonNameAndValue() throws ParseException { final List list = new ArrayList(); final SqlNode e; boolean kvMode = false; - if (jj_2_906(2)) { + if (jj_2_926(2)) { jj_consume_token(KEY); kvMode = true; } else { @@ -8644,16 +8869,16 @@ final public List JsonNameAndValue() throws ParseException { } e = JsonName(); list.add(e); - if (jj_2_907(2)) { + if (jj_2_927(2)) { jj_consume_token(VALUE); - } else if (jj_2_908(2)) { + } else if (jj_2_928(2)) { jj_consume_token(COMMA); - if (kvMode) { + if (kvMode || this.conformance.isColonFieldAccessAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalComma());} } - } else if (jj_2_909(2)) { + } else if (jj_2_929(2)) { jj_consume_token(COLON); - if (kvMode) { + if (kvMode || this.conformance.isColonFieldAccessAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalColon());} } } else { @@ -8666,12 +8891,12 @@ final public List JsonNameAndValue() throws ParseException { } final public SqlNode JsonConstructorNullClause() throws ParseException { - if (jj_2_910(2)) { + if (jj_2_930(2)) { jj_consume_token(NULL); jj_consume_token(ON); jj_consume_token(NULL); {if (true) return SqlLiteral.createSymbol(SqlJsonConstructorNullClause.NULL_ON_NULL, getPos());} - } else if (jj_2_911(2)) { + } else if (jj_2_931(2)) { jj_consume_token(ABSENT); jj_consume_token(ON); jj_consume_token(NULL); @@ -8692,15 +8917,15 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { jj_consume_token(JSON_OBJECT); span = span(); jj_consume_token(LPAREN); - if (jj_2_913(2)) { + if (jj_2_933(2)) { list = JsonNameAndValue(); nvArgs.addAll(list); - label_64: + label_65: while (true) { - if (jj_2_912(2)) { + if (jj_2_932(2)) { ; } else { - break label_64; + break label_65; } jj_consume_token(COMMA); list = JsonNameAndValue(); @@ -8709,7 +8934,7 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { } else { ; } - if (jj_2_914(2)) { + if (jj_2_934(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8736,7 +8961,7 @@ final public SqlCall JsonObjectAggFunctionCall() throws ParseException { list = JsonNameAndValue(); args[0] = list.get(0); args[1] = list.get(1); - if (jj_2_915(2)) { + if (jj_2_935(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8756,14 +8981,14 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { jj_consume_token(JSON_ARRAY); span = span(); jj_consume_token(LPAREN); - if (jj_2_917(2)) { + if (jj_2_937(2)) { AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); - label_65: + label_66: while (true) { - if (jj_2_916(2)) { + if (jj_2_936(2)) { ; } else { - break label_65; + break label_66; } jj_consume_token(COMMA); AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); @@ -8771,7 +8996,7 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { } else { ; } - if (jj_2_918(2)) { + if (jj_2_938(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8804,12 +9029,12 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_NON_QUERY); valueExpr = e; - if (jj_2_919(2)) { + if (jj_2_939(2)) { orderList = JsonArrayAggOrderByClause(); } else { orderList = null; } - if (jj_2_920(2)) { + if (jj_2_940(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8818,7 +9043,7 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(RPAREN); aggCall = SqlStdOperatorTable.JSON_ARRAYAGG.with(nullClause) .createCall(span.end(this), valueExpr, orderList); - if (jj_2_921(2)) { + if (jj_2_941(2)) { e = withinGroup(aggCall); if (orderList != null) { {if (true) throw SqlUtil.newContextException(span.pos().plus(e.getParserPosition()), @@ -8851,9 +9076,9 @@ final public SqlCall ContainsSubstrFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_922(2)) { + if (jj_2_942(2)) { jj_consume_token(RPAREN); - } else if (jj_2_923(2)) { + } else if (jj_2_943(2)) { jj_consume_token(COMMA); jj_consume_token(JSON_SCOPE); jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); @@ -8992,10 +9217,10 @@ final public SqlCall DateTruncFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); - if (jj_2_924(2)) { + if (jj_2_944(2)) { unit = TimeUnit(); args.add(unit); - } else if (jj_2_925(2)) { + } else if (jj_2_945(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9093,13 +9318,13 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final Span s; final List args; final SqlOperator op; - if (jj_2_926(2)) { + if (jj_2_946(2)) { jj_consume_token(TUMBLE); op = SqlStdOperatorTable.TUMBLE_OLD; - } else if (jj_2_927(2)) { + } else if (jj_2_947(2)) { jj_consume_token(HOP); op = SqlStdOperatorTable.HOP_OLD; - } else if (jj_2_928(2)) { + } else if (jj_2_948(2)) { jj_consume_token(SESSION); op = SqlStdOperatorTable.SESSION_OLD; } else { @@ -9115,23 +9340,23 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final public SqlCall MatchRecognizeFunctionCall() throws ParseException { final SqlCall func; final Span s; - if (jj_2_929(2)) { + if (jj_2_949(2)) { jj_consume_token(CLASSIFIER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.CLASSIFIER.createCall(s.end(this)); - } else if (jj_2_930(2)) { + } else if (jj_2_950(2)) { jj_consume_token(MATCH_NUMBER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.MATCH_NUMBER.createCall(s.end(this)); - } else if (jj_2_931(3)) { + } else if (jj_2_951(3)) { func = MatchRecognizeNavigationLogical(); - } else if (jj_2_932(2)) { + } else if (jj_2_952(2)) { func = MatchRecognizeNavigationPhysical(); - } else if (jj_2_933(2)) { + } else if (jj_2_953(2)) { func = MatchRecognizeCallWithModifier(); } else { jj_consume_token(-1); @@ -9144,11 +9369,11 @@ final public SqlCall MatchRecognizeFunctionCall() throws ParseException { final public SqlCall MatchRecognizeCallWithModifier() throws ParseException { final Span s; final SqlOperator runningOp; - final SqlNode func; - if (jj_2_934(2)) { + final SqlNode e; + if (jj_2_954(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; - } else if (jj_2_935(2)) { + } else if (jj_2_955(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; } else { @@ -9156,8 +9381,8 @@ final public SqlCall MatchRecognizeCallWithModifier() throws ParseException { throw new ParseException(); } s = span(); - func = NamedFunctionCall(); - {if (true) return runningOp.createCall(s.end(func), func);} + e = Expression3(ExprContext.ACCEPT_NON_QUERY); + {if (true) return runningOp.createCall(s.end(e), e);} throw new Error("Missing return statement in function"); } @@ -9168,19 +9393,19 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { final SqlOperator runningOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_936(2)) { + if (jj_2_956(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; s.add(this); - } else if (jj_2_937(2)) { + } else if (jj_2_957(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; s.add(this); } else { runningOp = null; } - if (jj_2_938(2)) { + if (jj_2_958(2)) { jj_consume_token(FIRST); funcOp = SqlStdOperatorTable.FIRST; - } else if (jj_2_939(2)) { + } else if (jj_2_959(2)) { jj_consume_token(LAST); funcOp = SqlStdOperatorTable.LAST; } else { @@ -9190,7 +9415,7 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { s.add(this); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_940(2)) { + if (jj_2_960(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9212,10 +9437,10 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { final SqlOperator funcOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_941(2)) { + if (jj_2_961(2)) { jj_consume_token(PREV); funcOp = SqlStdOperatorTable.PREV; - } else if (jj_2_942(2)) { + } else if (jj_2_962(2)) { jj_consume_token(NEXT); funcOp = SqlStdOperatorTable.NEXT; } else { @@ -9225,7 +9450,7 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_943(2)) { + if (jj_2_963(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9267,12 +9492,12 @@ final public SqlCall withinGroup(SqlNode arg) throws ParseException { final public Pair NullTreatment() throws ParseException { final Span span; - if (jj_2_944(2)) { + if (jj_2_964(2)) { jj_consume_token(IGNORE); span = span(); jj_consume_token(NULLS); {if (true) return Pair.of(span.end(this), SqlStdOperatorTable.IGNORE_NULLS);} - } else if (jj_2_945(2)) { + } else if (jj_2_965(2)) { jj_consume_token(RESPECT); span = span(); jj_consume_token(NULLS); @@ -9312,7 +9537,7 @@ final public SqlNode NamedFunctionCall() throws ParseException { final SqlNode filter; final Span overSpan; final SqlNode over; - if (jj_2_946(2)) { + if (jj_2_966(2)) { call = StringAggFunctionCall(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -9321,8 +9546,8 @@ final public SqlNode NamedFunctionCall() throws ParseException { call = PercentileFunctionCall(); break; default: - jj_la1[7] = jj_gen; - if (jj_2_947(2)) { + jj_la1[8] = jj_gen; + if (jj_2_967(2)) { call = NamedCall(); } else { jj_consume_token(-1); @@ -9330,23 +9555,23 @@ final public SqlNode NamedFunctionCall() throws ParseException { } } } - if (jj_2_948(2)) { + if (jj_2_968(2)) { call = nullTreatment(call); } else { ; } - if (jj_2_949(2)) { + if (jj_2_969(2)) { // decide between WITHIN DISTINCT and WITHIN GROUP call = withinDistinct(call); } else { ; } - if (jj_2_950(2)) { + if (jj_2_970(2)) { call = withinGroup(call); } else { ; } - if (jj_2_951(2)) { + if (jj_2_971(2)) { jj_consume_token(FILTER); filterSpan = span(); jj_consume_token(LPAREN); @@ -9358,12 +9583,12 @@ final public SqlNode NamedFunctionCall() throws ParseException { } else { ; } - if (jj_2_954(2)) { + if (jj_2_974(2)) { jj_consume_token(OVER); overSpan = span(); - if (jj_2_952(2)) { + if (jj_2_972(2)) { over = SimpleIdentifier(); - } else if (jj_2_953(2)) { + } else if (jj_2_973(2)) { over = WindowSpecification(); } else { jj_consume_token(-1); @@ -9383,7 +9608,7 @@ final public SqlCall NamedCall() throws ParseException { final Span s; final List args; SqlLiteral quantifier = null; - if (jj_2_955(2)) { + if (jj_2_975(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_SPECIFIC_FUNCTION; } else { @@ -9391,16 +9616,16 @@ final public SqlCall NamedCall() throws ParseException { } qualifiedName = FunctionName(); s = span(); - if (jj_2_956(2)) { + if (jj_2_976(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_957(2)) { + } else if (jj_2_977(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = ImmutableList.of(); - } else if (jj_2_958(2)) { + } else if (jj_2_978(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -9423,7 +9648,7 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws final Span s1; jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_959(2)) { + if (jj_2_979(2)) { jj_consume_token(TO); unit = TimeUnitOrName(); args.add(unit); @@ -9433,12 +9658,12 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws jj_consume_token(RPAREN); SqlOperator op = SqlStdOperatorTable.floorCeil(floorFlag, this.conformance); function = op.createCall(s.end(this), args); - if (jj_2_962(2)) { + if (jj_2_982(2)) { jj_consume_token(OVER); s1 = span(); - if (jj_2_960(2)) { + if (jj_2_980(2)) { e = SimpleIdentifier(); - } else if (jj_2_961(2)) { + } else if (jj_2_981(2)) { e = WindowSpecification(); } else { jj_consume_token(-1); @@ -9466,9 +9691,9 @@ final public String NonReservedJdbcFunctionName() throws ParseException { */ final public SqlIdentifier FunctionName() throws ParseException { SqlIdentifier qualifiedName; - if (jj_2_963(2)) { + if (jj_2_983(2)) { qualifiedName = CompoundIdentifier(); - } else if (jj_2_964(2)) { + } else if (jj_2_984(2)) { qualifiedName = ReservedFunctionName(); } else { jj_consume_token(-1); @@ -9482,135 +9707,135 @@ final public SqlIdentifier FunctionName() throws ParseException { * Parses a reserved word which is used as the name of a function. */ final public SqlIdentifier ReservedFunctionName() throws ParseException { - if (jj_2_965(2)) { + if (jj_2_985(2)) { jj_consume_token(ABS); - } else if (jj_2_966(2)) { + } else if (jj_2_986(2)) { jj_consume_token(AVG); - } else if (jj_2_967(2)) { + } else if (jj_2_987(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_968(2)) { + } else if (jj_2_988(2)) { jj_consume_token(CEILING); - } else if (jj_2_969(2)) { + } else if (jj_2_989(2)) { jj_consume_token(CHAR); - } else if (jj_2_970(2)) { + } else if (jj_2_990(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_971(2)) { + } else if (jj_2_991(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_972(2)) { + } else if (jj_2_992(2)) { jj_consume_token(COALESCE); - } else if (jj_2_973(2)) { + } else if (jj_2_993(2)) { jj_consume_token(COLLECT); - } else if (jj_2_974(2)) { + } else if (jj_2_994(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_975(2)) { + } else if (jj_2_995(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_976(2)) { + } else if (jj_2_996(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_977(2)) { + } else if (jj_2_997(2)) { jj_consume_token(COUNT); - } else if (jj_2_978(2)) { + } else if (jj_2_998(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_979(2)) { + } else if (jj_2_999(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_980(2)) { + } else if (jj_2_1000(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_981(2)) { + } else if (jj_2_1001(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_982(2)) { + } else if (jj_2_1002(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_983(2)) { + } else if (jj_2_1003(2)) { jj_consume_token(EVERY); - } else if (jj_2_984(2)) { + } else if (jj_2_1004(2)) { jj_consume_token(EXP); - } else if (jj_2_985(2)) { + } else if (jj_2_1005(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_986(2)) { + } else if (jj_2_1006(2)) { jj_consume_token(FLOOR); - } else if (jj_2_987(2)) { + } else if (jj_2_1007(2)) { jj_consume_token(FUSION); - } else if (jj_2_988(2)) { + } else if (jj_2_1008(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_989(2)) { + } else if (jj_2_1009(2)) { jj_consume_token(GROUPING); - } else if (jj_2_990(2)) { + } else if (jj_2_1010(2)) { jj_consume_token(HOUR); - } else if (jj_2_991(2)) { + } else if (jj_2_1011(2)) { jj_consume_token(LAG); - } else if (jj_2_992(2)) { + } else if (jj_2_1012(2)) { jj_consume_token(LEAD); - } else if (jj_2_993(2)) { + } else if (jj_2_1013(2)) { jj_consume_token(LEFT); - } else if (jj_2_994(2)) { + } else if (jj_2_1014(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_995(2)) { + } else if (jj_2_1015(2)) { jj_consume_token(LN); - } else if (jj_2_996(2)) { + } else if (jj_2_1016(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_997(2)) { + } else if (jj_2_1017(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_998(2)) { + } else if (jj_2_1018(2)) { jj_consume_token(LOWER); - } else if (jj_2_999(2)) { + } else if (jj_2_1019(2)) { jj_consume_token(MAX); - } else if (jj_2_1000(2)) { + } else if (jj_2_1020(2)) { jj_consume_token(MIN); - } else if (jj_2_1001(2)) { + } else if (jj_2_1021(2)) { jj_consume_token(MINUTE); - } else if (jj_2_1002(2)) { + } else if (jj_2_1022(2)) { jj_consume_token(MOD); - } else if (jj_2_1003(2)) { + } else if (jj_2_1023(2)) { jj_consume_token(MONTH); - } else if (jj_2_1004(2)) { + } else if (jj_2_1024(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_1005(2)) { + } else if (jj_2_1025(2)) { jj_consume_token(NTILE); - } else if (jj_2_1006(2)) { + } else if (jj_2_1026(2)) { jj_consume_token(NULLIF); - } else if (jj_2_1007(2)) { + } else if (jj_2_1027(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_1008(2)) { + } else if (jj_2_1028(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_1009(2)) { + } else if (jj_2_1029(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_1010(2)) { + } else if (jj_2_1030(2)) { jj_consume_token(PERCENT_RANK); - } else if (jj_2_1011(2)) { + } else if (jj_2_1031(2)) { jj_consume_token(POWER); - } else if (jj_2_1012(2)) { + } else if (jj_2_1032(2)) { jj_consume_token(RANK); - } else if (jj_2_1013(2)) { + } else if (jj_2_1033(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_1014(2)) { + } else if (jj_2_1034(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_1015(2)) { + } else if (jj_2_1035(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_1016(2)) { + } else if (jj_2_1036(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1017(2)) { + } else if (jj_2_1037(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_1018(2)) { + } else if (jj_2_1038(2)) { jj_consume_token(SECOND); - } else if (jj_2_1019(2)) { + } else if (jj_2_1039(2)) { jj_consume_token(SOME); - } else if (jj_2_1020(2)) { + } else if (jj_2_1040(2)) { jj_consume_token(SQRT); - } else if (jj_2_1021(2)) { + } else if (jj_2_1041(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_1022(2)) { + } else if (jj_2_1042(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_1023(2)) { + } else if (jj_2_1043(2)) { jj_consume_token(SUM); - } else if (jj_2_1024(2)) { + } else if (jj_2_1044(2)) { jj_consume_token(UPPER); - } else if (jj_2_1025(2)) { + } else if (jj_2_1045(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_1026(2)) { + } else if (jj_2_1046(2)) { jj_consume_token(USER); - } else if (jj_2_1027(2)) { + } else if (jj_2_1047(2)) { jj_consume_token(VAR_POP); - } else if (jj_2_1028(2)) { + } else if (jj_2_1048(2)) { jj_consume_token(VAR_SAMP); - } else if (jj_2_1029(2)) { + } else if (jj_2_1049(2)) { jj_consume_token(YEAR); } else { jj_consume_token(-1); @@ -9621,33 +9846,33 @@ final public SqlIdentifier ReservedFunctionName() throws ParseException { } final public SqlIdentifier ContextVariable() throws ParseException { - if (jj_2_1030(2)) { + if (jj_2_1050(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_1031(2)) { + } else if (jj_2_1051(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_1032(2)) { + } else if (jj_2_1052(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_1033(2)) { + } else if (jj_2_1053(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_1034(2)) { + } else if (jj_2_1054(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_1035(2)) { + } else if (jj_2_1055(2)) { jj_consume_token(CURRENT_SCHEMA); - } else if (jj_2_1036(2)) { + } else if (jj_2_1056(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_1037(2)) { + } else if (jj_2_1057(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_1038(2)) { + } else if (jj_2_1058(2)) { jj_consume_token(CURRENT_USER); - } else if (jj_2_1039(2)) { + } else if (jj_2_1059(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_1040(2)) { + } else if (jj_2_1060(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_1041(2)) { + } else if (jj_2_1061(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_1042(2)) { + } else if (jj_2_1062(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_1043(2)) { + } else if (jj_2_1063(2)) { jj_consume_token(USER); } else { jj_consume_token(-1); @@ -9717,12 +9942,12 @@ final public SqlNode JdbcFunctionCall() throws ParseException { args = new SqlNodeList(call.getOperandList(), getPos()); break; default: - jj_la1[9] = jj_gen; - if (jj_2_1054(3)) { + jj_la1[10] = jj_gen; + if (jj_2_1074(3)) { call = TimestampDiffFunctionCall(); name = call.getOperator().getName(); args = new SqlNodeList(call.getOperandList(), getPos()); - } else if (jj_2_1055(2)) { + } else if (jj_2_1075(2)) { jj_consume_token(CONVERT); name = unquotedIdentifier(); jj_consume_token(LPAREN); @@ -9733,19 +9958,19 @@ final public SqlNode JdbcFunctionCall() throws ParseException { tl = JdbcOdbcDataType(); args.add(tl); jj_consume_token(RPAREN); - } else if (jj_2_1056(2)) { + } else if (jj_2_1076(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case INSERT: case LEFT: case RIGHT: case TRUNCATE: - if (jj_2_1044(2)) { + if (jj_2_1064(2)) { jj_consume_token(INSERT); - } else if (jj_2_1045(2)) { + } else if (jj_2_1065(2)) { jj_consume_token(LEFT); - } else if (jj_2_1046(2)) { + } else if (jj_2_1066(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1047(2)) { + } else if (jj_2_1067(2)) { jj_consume_token(TRUNCATE); } else { jj_consume_token(-1); @@ -9754,33 +9979,33 @@ final public SqlNode JdbcFunctionCall() throws ParseException { name = unquotedIdentifier(); break; default: - jj_la1[8] = jj_gen; - if (jj_2_1048(2)) { + jj_la1[9] = jj_gen; + if (jj_2_1068(2)) { // For cases like {fn power(1,2)} and {fn lower('a')} id = ReservedFunctionName(); name = id.getSimple(); - } else if (jj_2_1049(2)) { + } else if (jj_2_1069(2)) { // For cases like {fn substring('foo', 1,2)} name = NonReservedJdbcFunctionName(); - } else if (jj_2_1050(2)) { + } else if (jj_2_1070(2)) { name = Identifier(); } else { jj_consume_token(-1); throw new ParseException(); } } - if (jj_2_1051(2)) { + if (jj_2_1071(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); s1 = span(); jj_consume_token(RPAREN); args = new SqlNodeList(s1.pos()); args.add(SqlIdentifier.star(s1.pos())); - } else if (jj_2_1052(2)) { + } else if (jj_2_1072(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_1053(2)) { + } else if (jj_2_1073(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9801,32 +10026,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { * Parses a binary query operator like UNION. */ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { - if (jj_2_1065(2)) { + if (jj_2_1085(2)) { jj_consume_token(UNION); - if (jj_2_1057(2)) { + if (jj_2_1077(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.UNION_ALL;} - } else if (jj_2_1058(2)) { + } else if (jj_2_1078(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.UNION;} } else { {if (true) return SqlStdOperatorTable.UNION;} } - } else if (jj_2_1066(2)) { + } else if (jj_2_1086(2)) { jj_consume_token(INTERSECT); - if (jj_2_1059(2)) { + if (jj_2_1079(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.INTERSECT_ALL;} - } else if (jj_2_1060(2)) { + } else if (jj_2_1080(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.INTERSECT;} } else { {if (true) return SqlStdOperatorTable.INTERSECT;} } - } else if (jj_2_1067(2)) { - if (jj_2_1061(2)) { + } else if (jj_2_1087(2)) { + if (jj_2_1081(2)) { jj_consume_token(EXCEPT); - } else if (jj_2_1062(2)) { + } else if (jj_2_1082(2)) { jj_consume_token(SET_MINUS); if (!this.conformance.isMinusAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.minusNotAllowed());} @@ -9835,10 +10060,10 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_1063(2)) { + if (jj_2_1083(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.EXCEPT_ALL;} - } else if (jj_2_1064(2)) { + } else if (jj_2_1084(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.EXCEPT;} } else { @@ -9856,12 +10081,12 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { */ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { jj_consume_token(MULTISET); - if (jj_2_1077(2)) { + if (jj_2_1097(2)) { jj_consume_token(UNION); - if (jj_2_1070(2)) { - if (jj_2_1068(2)) { + if (jj_2_1090(2)) { + if (jj_2_1088(2)) { jj_consume_token(ALL); - } else if (jj_2_1069(2)) { + } else if (jj_2_1089(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_UNION_DISTINCT;} } else { @@ -9872,12 +10097,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_UNION;} - } else if (jj_2_1078(2)) { + } else if (jj_2_1098(2)) { jj_consume_token(INTERSECT); - if (jj_2_1073(2)) { - if (jj_2_1071(2)) { + if (jj_2_1093(2)) { + if (jj_2_1091(2)) { jj_consume_token(ALL); - } else if (jj_2_1072(2)) { + } else if (jj_2_1092(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT_DISTINCT;} } else { @@ -9888,12 +10113,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT;} - } else if (jj_2_1079(2)) { + } else if (jj_2_1099(2)) { jj_consume_token(EXCEPT); - if (jj_2_1076(2)) { - if (jj_2_1074(2)) { + if (jj_2_1096(2)) { + if (jj_2_1094(2)) { jj_consume_token(ALL); - } else if (jj_2_1075(2)) { + } else if (jj_2_1095(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_EXCEPT_DISTINCT;} } else { @@ -9916,105 +10141,114 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { */ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { SqlBinaryOperator op; - if (jj_2_1080(2)) { + if (jj_2_1100(2)) { jj_consume_token(EQ); {if (true) return SqlStdOperatorTable.EQUALS;} - } else if (jj_2_1081(2)) { + } else if (jj_2_1101(2)) { + jj_consume_token(LEFTSHIFT); + {if (true) return SqlStdOperatorTable.BIT_LEFT_SHIFT;} + } else if (jj_2_1102(2)) { jj_consume_token(GT); {if (true) return SqlStdOperatorTable.GREATER_THAN;} - } else if (jj_2_1082(2)) { + } else if (jj_2_1103(2)) { jj_consume_token(LT); {if (true) return SqlStdOperatorTable.LESS_THAN;} - } else if (jj_2_1083(2)) { + } else if (jj_2_1104(2)) { jj_consume_token(LE); {if (true) return SqlStdOperatorTable.LESS_THAN_OR_EQUAL;} - } else if (jj_2_1084(2)) { + } else if (jj_2_1105(2)) { jj_consume_token(GE); {if (true) return SqlStdOperatorTable.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_1085(2)) { + } else if (jj_2_1106(2)) { jj_consume_token(NE); {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1086(2)) { + } else if (jj_2_1107(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} } {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1087(2)) { + } else if (jj_2_1108(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.PLUS;} - } else if (jj_2_1088(2)) { + } else if (jj_2_1109(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.MINUS;} - } else if (jj_2_1089(2)) { + } else if (jj_2_1110(2)) { jj_consume_token(STAR); {if (true) return SqlStdOperatorTable.MULTIPLY;} - } else if (jj_2_1090(2)) { + } else if (jj_2_1111(2)) { jj_consume_token(SLASH); {if (true) return SqlStdOperatorTable.DIVIDE;} - } else if (jj_2_1091(2)) { + } else if (jj_2_1112(2)) { jj_consume_token(PERCENT_REMAINDER); if (!this.conformance.isPercentRemainderAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.percentRemainderNotAllowed());} } {if (true) return SqlStdOperatorTable.PERCENT_REMAINDER;} - } else if (jj_2_1092(2)) { + } else if (jj_2_1113(2)) { jj_consume_token(CONCAT); {if (true) return SqlStdOperatorTable.CONCAT;} - } else if (jj_2_1093(2)) { + } else if (jj_2_1114(2)) { jj_consume_token(AND); {if (true) return SqlStdOperatorTable.AND;} - } else if (jj_2_1094(2)) { + } else if (jj_2_1115(2)) { jj_consume_token(OR); {if (true) return SqlStdOperatorTable.OR;} - } else if (jj_2_1095(2)) { + } else if (jj_2_1116(2)) { jj_consume_token(IS); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_DISTINCT_FROM;} - } else if (jj_2_1096(2)) { + } else if (jj_2_1117(2)) { jj_consume_token(IS); jj_consume_token(NOT); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_NOT_DISTINCT_FROM;} - } else if (jj_2_1097(2)) { + } else if (jj_2_1118(2)) { jj_consume_token(MEMBER); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.MEMBER_OF;} - } else if (jj_2_1098(2)) { + } else if (jj_2_1119(2)) { jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.SUBMULTISET_OF;} - } else if (jj_2_1099(2)) { + } else if (jj_2_1120(2)) { jj_consume_token(NOT); jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.NOT_SUBMULTISET_OF;} - } else if (jj_2_1100(2)) { + } else if (jj_2_1121(2)) { jj_consume_token(CONTAINS); {if (true) return SqlStdOperatorTable.CONTAINS;} - } else if (jj_2_1101(2)) { + } else if (jj_2_1122(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_1102(2)) { + } else if (jj_2_1123(2)) { + jj_consume_token(CARET); + {if (true) return SqlStdOperatorTable.BITXOR_OPERATOR;} + } else if (jj_2_1124(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} - } else if (jj_2_1103(2)) { + } else if (jj_2_1125(2)) { + jj_consume_token(AMPERSAND); + {if (true) return SqlStdOperatorTable.BITAND_OPERATOR;} + } else if (jj_2_1126(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_1104(2)) { + } else if (jj_2_1127(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_1105(2)) { + } else if (jj_2_1128(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_1106(2)) { + } else if (jj_2_1129(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_1107(2)) { + } else if (jj_2_1130(2)) { op = BinaryMultisetOperator(); {if (true) return op;} } else { @@ -10028,19 +10262,19 @@ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { * Parses a prefix row operator like NOT. */ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { - if (jj_2_1108(2)) { + if (jj_2_1131(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.UNARY_PLUS;} - } else if (jj_2_1109(2)) { + } else if (jj_2_1132(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.UNARY_MINUS;} - } else if (jj_2_1110(2)) { + } else if (jj_2_1133(2)) { jj_consume_token(NOT); {if (true) return SqlStdOperatorTable.NOT;} - } else if (jj_2_1111(2)) { + } else if (jj_2_1134(2)) { jj_consume_token(EXISTS); {if (true) return SqlStdOperatorTable.EXISTS;} - } else if (jj_2_1112(2)) { + } else if (jj_2_1135(2)) { jj_consume_token(UNIQUE); {if (true) return SqlStdOperatorTable.UNIQUE;} } else { @@ -10054,89 +10288,89 @@ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { * Parses a postfix row operator like IS NOT NULL. */ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { - if (jj_2_1137(2)) { + if (jj_2_1160(2)) { jj_consume_token(IS); - if (jj_2_1134(2)) { + if (jj_2_1157(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_A_SET;} - } else if (jj_2_1135(2)) { + } else if (jj_2_1158(2)) { jj_consume_token(NOT); - if (jj_2_1113(2)) { + if (jj_2_1136(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NOT_NULL;} - } else if (jj_2_1114(2)) { + } else if (jj_2_1137(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_NOT_TRUE;} - } else if (jj_2_1115(2)) { + } else if (jj_2_1138(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_NOT_FALSE;} - } else if (jj_2_1116(2)) { + } else if (jj_2_1139(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_NOT_UNKNOWN;} - } else if (jj_2_1117(2)) { + } else if (jj_2_1140(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_NOT_A_SET;} - } else if (jj_2_1118(2)) { + } else if (jj_2_1141(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_NOT_EMPTY;} - } else if (jj_2_1119(2)) { + } else if (jj_2_1142(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} - } else if (jj_2_1120(2)) { + } else if (jj_2_1143(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_OBJECT;} - } else if (jj_2_1121(2)) { + } else if (jj_2_1144(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_ARRAY;} - } else if (jj_2_1122(2)) { + } else if (jj_2_1145(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_SCALAR;} - } else if (jj_2_1123(2)) { + } else if (jj_2_1146(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1136(2)) { - if (jj_2_1124(2)) { + } else if (jj_2_1159(2)) { + if (jj_2_1147(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NULL;} - } else if (jj_2_1125(2)) { + } else if (jj_2_1148(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_TRUE;} - } else if (jj_2_1126(2)) { + } else if (jj_2_1149(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_FALSE;} - } else if (jj_2_1127(2)) { + } else if (jj_2_1150(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_UNKNOWN;} - } else if (jj_2_1128(2)) { + } else if (jj_2_1151(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_EMPTY;} - } else if (jj_2_1129(2)) { + } else if (jj_2_1152(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} - } else if (jj_2_1130(2)) { + } else if (jj_2_1153(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_JSON_OBJECT;} - } else if (jj_2_1131(2)) { + } else if (jj_2_1154(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_JSON_ARRAY;} - } else if (jj_2_1132(2)) { + } else if (jj_2_1155(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_JSON_SCALAR;} - } else if (jj_2_1133(2)) { + } else if (jj_2_1156(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} } else { @@ -10147,7 +10381,7 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1138(2)) { + } else if (jj_2_1161(2)) { jj_consume_token(FORMAT); JsonRepresentation(); {if (true) return SqlStdOperatorTable.JSON_VALUE_EXPRESSION;} @@ -10173,11 +10407,11 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { * @see Glossary#SQL2003 SQL:2003 Part 2 Section 5.2 */ final public String NonReservedKeyWord() throws ParseException { - if (jj_2_1139(2)) { + if (jj_2_1162(2)) { NonReservedKeyWord0of3(); - } else if (jj_2_1140(2)) { + } else if (jj_2_1163(2)) { NonReservedKeyWord1of3(); - } else if (jj_2_1141(2)) { + } else if (jj_2_1164(2)) { NonReservedKeyWord2of3(); } else { jj_consume_token(-1); @@ -10189,450 +10423,450 @@ final public String NonReservedKeyWord() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord0of3() throws ParseException { - if (jj_2_1142(2)) { + if (jj_2_1165(2)) { jj_consume_token(A); - } else if (jj_2_1143(2)) { + } else if (jj_2_1166(2)) { jj_consume_token(ACTION); - } else if (jj_2_1144(2)) { + } else if (jj_2_1167(2)) { jj_consume_token(ADMIN); - } else if (jj_2_1145(2)) { + } else if (jj_2_1168(2)) { jj_consume_token(APPLY); - } else if (jj_2_1146(2)) { + } else if (jj_2_1169(2)) { jj_consume_token(ASC); - } else if (jj_2_1147(2)) { + } else if (jj_2_1170(2)) { jj_consume_token(ATTRIBUTE); - } else if (jj_2_1148(2)) { + } else if (jj_2_1171(2)) { jj_consume_token(BERNOULLI); - } else if (jj_2_1149(2)) { + } else if (jj_2_1172(2)) { jj_consume_token(CASCADE); - } else if (jj_2_1150(2)) { + } else if (jj_2_1173(2)) { jj_consume_token(CENTURY); - } else if (jj_2_1151(2)) { + } else if (jj_2_1174(2)) { jj_consume_token(CHARACTERS); - } else if (jj_2_1152(2)) { + } else if (jj_2_1175(2)) { jj_consume_token(CHARACTER_SET_SCHEMA); - } else if (jj_2_1153(2)) { + } else if (jj_2_1176(2)) { jj_consume_token(COLLATION); - } else if (jj_2_1154(2)) { + } else if (jj_2_1177(2)) { jj_consume_token(COLLATION_SCHEMA); - } else if (jj_2_1155(2)) { + } else if (jj_2_1178(2)) { jj_consume_token(COMMAND_FUNCTION_CODE); - } else if (jj_2_1156(2)) { + } else if (jj_2_1179(2)) { jj_consume_token(CONDITION_NUMBER); - } else if (jj_2_1157(2)) { + } else if (jj_2_1180(2)) { jj_consume_token(CONSTRAINT_CATALOG); - } else if (jj_2_1158(2)) { + } else if (jj_2_1181(2)) { jj_consume_token(CONSTRAINT_SCHEMA); - } else if (jj_2_1159(2)) { + } else if (jj_2_1182(2)) { jj_consume_token(CONTINUE); - } else if (jj_2_1160(2)) { + } else if (jj_2_1183(2)) { jj_consume_token(DATABASE); - } else if (jj_2_1161(2)) { + } else if (jj_2_1184(2)) { jj_consume_token(DATETIME_DIFF); - } else if (jj_2_1162(2)) { + } else if (jj_2_1185(2)) { jj_consume_token(DATETIME_TRUNC); - } else if (jj_2_1163(2)) { + } else if (jj_2_1186(2)) { jj_consume_token(DAYS); - } else if (jj_2_1164(2)) { + } else if (jj_2_1187(2)) { jj_consume_token(DEFERRABLE); - } else if (jj_2_1165(2)) { + } else if (jj_2_1188(2)) { jj_consume_token(DEFINER); - } else if (jj_2_1166(2)) { + } else if (jj_2_1189(2)) { jj_consume_token(DERIVED); - } else if (jj_2_1167(2)) { + } else if (jj_2_1190(2)) { jj_consume_token(DESCRIPTOR); - } else if (jj_2_1168(2)) { + } else if (jj_2_1191(2)) { jj_consume_token(DOMAIN); - } else if (jj_2_1169(2)) { + } else if (jj_2_1192(2)) { jj_consume_token(DOT_FORMAT); - } else if (jj_2_1170(2)) { + } else if (jj_2_1193(2)) { jj_consume_token(ENCODING); - } else if (jj_2_1171(2)) { + } else if (jj_2_1194(2)) { jj_consume_token(EXCEPTION); - } else if (jj_2_1172(2)) { + } else if (jj_2_1195(2)) { jj_consume_token(FINAL); - } else if (jj_2_1173(2)) { + } else if (jj_2_1196(2)) { jj_consume_token(FORMAT); - } else if (jj_2_1174(2)) { + } else if (jj_2_1197(2)) { jj_consume_token(FRAC_SECOND); - } else if (jj_2_1175(2)) { + } else if (jj_2_1198(2)) { jj_consume_token(GENERATED); - } else if (jj_2_1176(2)) { + } else if (jj_2_1199(2)) { jj_consume_token(GOTO); - } else if (jj_2_1177(2)) { + } else if (jj_2_1200(2)) { jj_consume_token(HIERARCHY); - } else if (jj_2_1178(2)) { + } else if (jj_2_1201(2)) { jj_consume_token(IGNORE); - } else if (jj_2_1179(2)) { + } else if (jj_2_1202(2)) { jj_consume_token(IMMEDIATELY); - } else if (jj_2_1180(2)) { + } else if (jj_2_1203(2)) { jj_consume_token(INCLUDING); - } else if (jj_2_1181(2)) { + } else if (jj_2_1204(2)) { jj_consume_token(INPUT); - } else if (jj_2_1182(2)) { + } else if (jj_2_1205(2)) { jj_consume_token(INVOKER); - } else if (jj_2_1183(2)) { + } else if (jj_2_1206(2)) { jj_consume_token(ISOYEAR); - } else if (jj_2_1184(2)) { + } else if (jj_2_1207(2)) { jj_consume_token(K); - } else if (jj_2_1185(2)) { + } else if (jj_2_1208(2)) { jj_consume_token(KEY_TYPE); - } else if (jj_2_1186(2)) { + } else if (jj_2_1209(2)) { jj_consume_token(LENGTH); - } else if (jj_2_1187(2)) { + } else if (jj_2_1210(2)) { jj_consume_token(LOCATOR); - } else if (jj_2_1188(2)) { + } else if (jj_2_1211(2)) { jj_consume_token(MATCHED); - } else if (jj_2_1189(2)) { + } else if (jj_2_1212(2)) { jj_consume_token(MESSAGE_OCTET_LENGTH); - } else if (jj_2_1190(2)) { + } else if (jj_2_1213(2)) { jj_consume_token(MILLENNIUM); - } else if (jj_2_1191(2)) { + } else if (jj_2_1214(2)) { jj_consume_token(MINVALUE); - } else if (jj_2_1192(2)) { + } else if (jj_2_1215(2)) { jj_consume_token(MUMPS); - } else if (jj_2_1193(2)) { + } else if (jj_2_1216(2)) { jj_consume_token(NANOSECOND); - } else if (jj_2_1194(2)) { + } else if (jj_2_1217(2)) { jj_consume_token(NULLABLE); - } else if (jj_2_1195(2)) { + } else if (jj_2_1218(2)) { jj_consume_token(OBJECT); - } else if (jj_2_1196(2)) { + } else if (jj_2_1219(2)) { jj_consume_token(OPTIONS); - } else if (jj_2_1197(2)) { + } else if (jj_2_1220(2)) { jj_consume_token(OTHERS); - } else if (jj_2_1198(2)) { + } else if (jj_2_1221(2)) { jj_consume_token(PAD); - } else if (jj_2_1199(2)) { + } else if (jj_2_1222(2)) { jj_consume_token(PARAMETER_ORDINAL_POSITION); - } else if (jj_2_1200(2)) { + } else if (jj_2_1223(2)) { jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); - } else if (jj_2_1201(2)) { + } else if (jj_2_1224(2)) { jj_consume_token(PASSING); - } else if (jj_2_1202(2)) { + } else if (jj_2_1225(2)) { jj_consume_token(PATH); - } else if (jj_2_1203(2)) { + } else if (jj_2_1226(2)) { jj_consume_token(PLAN); - } else if (jj_2_1204(2)) { + } else if (jj_2_1227(2)) { jj_consume_token(PRESERVE); - } else if (jj_2_1205(2)) { + } else if (jj_2_1228(2)) { jj_consume_token(PUBLIC); - } else if (jj_2_1206(2)) { + } else if (jj_2_1229(2)) { jj_consume_token(READ); - } else if (jj_2_1207(2)) { + } else if (jj_2_1230(2)) { jj_consume_token(REPLACE); - } else if (jj_2_1208(2)) { + } else if (jj_2_1231(2)) { jj_consume_token(RESTRICT); - } else if (jj_2_1209(2)) { + } else if (jj_2_1232(2)) { jj_consume_token(RETURNED_OCTET_LENGTH); - } else if (jj_2_1210(2)) { + } else if (jj_2_1233(2)) { jj_consume_token(RLIKE); - } else if (jj_2_1211(2)) { + } else if (jj_2_1234(2)) { jj_consume_token(ROUTINE_CATALOG); - } else if (jj_2_1212(2)) { + } else if (jj_2_1235(2)) { jj_consume_token(ROW_COUNT); - } else if (jj_2_1213(2)) { + } else if (jj_2_1236(2)) { jj_consume_token(SCHEMA); - } else if (jj_2_1214(2)) { + } else if (jj_2_1237(2)) { jj_consume_token(SCOPE_NAME); - } else if (jj_2_1215(2)) { + } else if (jj_2_1238(2)) { jj_consume_token(SECTION); - } else if (jj_2_1216(2)) { + } else if (jj_2_1239(2)) { jj_consume_token(SEPARATOR); - } else if (jj_2_1217(2)) { + } else if (jj_2_1240(2)) { jj_consume_token(SERVER); - } else if (jj_2_1218(2)) { + } else if (jj_2_1241(2)) { jj_consume_token(SETS); - } else if (jj_2_1219(2)) { + } else if (jj_2_1242(2)) { jj_consume_token(SOURCE); - } else if (jj_2_1220(2)) { + } else if (jj_2_1243(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_1221(2)) { + } else if (jj_2_1244(2)) { jj_consume_token(SQL_BLOB); - } else if (jj_2_1222(2)) { + } else if (jj_2_1245(2)) { jj_consume_token(SQL_CLOB); - } else if (jj_2_1223(2)) { + } else if (jj_2_1246(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_1224(2)) { + } else if (jj_2_1247(2)) { jj_consume_token(SQL_INTERVAL_DAY); - } else if (jj_2_1225(2)) { + } else if (jj_2_1248(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); - } else if (jj_2_1226(2)) { + } else if (jj_2_1249(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); - } else if (jj_2_1227(2)) { + } else if (jj_2_1250(2)) { jj_consume_token(SQL_INTERVAL_MONTH); - } else if (jj_2_1228(2)) { + } else if (jj_2_1251(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); - } else if (jj_2_1229(2)) { + } else if (jj_2_1252(2)) { jj_consume_token(SQL_LONGVARNCHAR); - } else if (jj_2_1230(2)) { + } else if (jj_2_1253(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_1231(2)) { + } else if (jj_2_1254(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_1232(2)) { + } else if (jj_2_1255(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_1233(2)) { + } else if (jj_2_1256(2)) { jj_consume_token(SQL_TSI_HOUR); - } else if (jj_2_1234(2)) { + } else if (jj_2_1257(2)) { jj_consume_token(SQL_TSI_MONTH); - } else if (jj_2_1235(2)) { + } else if (jj_2_1258(2)) { jj_consume_token(SQL_TSI_WEEK); - } else if (jj_2_1236(2)) { + } else if (jj_2_1259(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_1237(2)) { + } else if (jj_2_1260(2)) { jj_consume_token(STRING_AGG); - } else if (jj_2_1238(2)) { + } else if (jj_2_1261(2)) { jj_consume_token(SUBCLASS_ORIGIN); - } else if (jj_2_1239(2)) { + } else if (jj_2_1262(2)) { jj_consume_token(TEMPORARY); - } else if (jj_2_1240(2)) { + } else if (jj_2_1263(2)) { jj_consume_token(TIME_TRUNC); - } else if (jj_2_1241(2)) { + } else if (jj_2_1264(2)) { jj_consume_token(TIMESTAMP_DIFF); - } else if (jj_2_1242(2)) { + } else if (jj_2_1265(2)) { jj_consume_token(TRANSACTION); - } else if (jj_2_1243(2)) { + } else if (jj_2_1266(2)) { jj_consume_token(TRANSACTIONS_ROLLED_BACK); - } else if (jj_2_1244(2)) { + } else if (jj_2_1267(2)) { jj_consume_token(TRIGGER_CATALOG); - } else if (jj_2_1245(2)) { + } else if (jj_2_1268(2)) { jj_consume_token(TUMBLE); - } else if (jj_2_1246(2)) { + } else if (jj_2_1269(2)) { jj_consume_token(UNCOMMITTED); - } else if (jj_2_1247(2)) { + } else if (jj_2_1270(2)) { jj_consume_token(UNPIVOT); - } else if (jj_2_1248(2)) { + } else if (jj_2_1271(2)) { jj_consume_token(USER_DEFINED_TYPE_CATALOG); - } else if (jj_2_1249(2)) { + } else if (jj_2_1272(2)) { jj_consume_token(USER_DEFINED_TYPE_SCHEMA); - } else if (jj_2_1250(2)) { + } else if (jj_2_1273(2)) { jj_consume_token(UTF8); - } else if (jj_2_1251(2)) { + } else if (jj_2_1274(2)) { jj_consume_token(WEEK); - } else if (jj_2_1252(2)) { + } else if (jj_2_1275(2)) { jj_consume_token(WRAPPER); - } else if (jj_2_1253(2)) { + } else if (jj_2_1276(2)) { jj_consume_token(YEARS); - } else if (jj_2_1254(2)) { + } else if (jj_2_1277(2)) { jj_consume_token(BACKUPS); - } else if (jj_2_1255(2)) { + } else if (jj_2_1278(2)) { jj_consume_token(WRITE_SYNCHRONIZATION_MODE); - } else if (jj_2_1256(2)) { + } else if (jj_2_1279(2)) { jj_consume_token(DATA_REGION); - } else if (jj_2_1257(2)) { + } else if (jj_2_1280(2)) { jj_consume_token(WRAP_VALUE); - } else if (jj_2_1258(2)) { + } else if (jj_2_1281(2)) { jj_consume_token(INLINE_SIZE); - } else if (jj_2_1259(2)) { + } else if (jj_2_1282(2)) { jj_consume_token(PASSWORD); - } else if (jj_2_1260(2)) { + } else if (jj_2_1283(2)) { jj_consume_token(CONTINUOUS); - } else if (jj_2_1261(2)) { + } else if (jj_2_1284(2)) { jj_consume_token(ASYNC); - } else if (jj_2_1262(2)) { + } else if (jj_2_1285(2)) { jj_consume_token(REFRESH); - } else if (jj_2_1263(2)) { + } else if (jj_2_1286(2)) { jj_consume_token(TOTAL); - } else if (jj_2_1264(2)) { + } else if (jj_2_1287(2)) { jj_consume_token(ALLOW); - } else if (jj_2_1265(2)) { + } else if (jj_2_1288(2)) { jj_consume_token(ASENSITIVE); - } else if (jj_2_1266(2)) { + } else if (jj_2_1289(2)) { jj_consume_token(ATOMIC); - } else if (jj_2_1267(2)) { + } else if (jj_2_1290(2)) { jj_consume_token(BEGIN); - } else if (jj_2_1268(2)) { + } else if (jj_2_1291(2)) { jj_consume_token(BIGINT); - } else if (jj_2_1269(2)) { + } else if (jj_2_1292(2)) { jj_consume_token(BLOB); - } else if (jj_2_1270(2)) { + } else if (jj_2_1293(2)) { jj_consume_token(CALLED); - } else if (jj_2_1271(2)) { + } else if (jj_2_1294(2)) { jj_consume_token(CEIL); - } else if (jj_2_1272(2)) { + } else if (jj_2_1295(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_1273(2)) { + } else if (jj_2_1296(2)) { jj_consume_token(CHECK); - } else if (jj_2_1274(2)) { + } else if (jj_2_1297(2)) { jj_consume_token(CLOSE); - } else if (jj_2_1275(2)) { + } else if (jj_2_1298(2)) { jj_consume_token(COLLECT); - } else if (jj_2_1276(2)) { + } else if (jj_2_1299(2)) { jj_consume_token(CONNECT); - } else if (jj_2_1277(2)) { + } else if (jj_2_1300(2)) { jj_consume_token(CORR); - } else if (jj_2_1278(2)) { + } else if (jj_2_1301(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_1279(2)) { + } else if (jj_2_1302(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_1280(2)) { + } else if (jj_2_1303(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_1281(2)) { + } else if (jj_2_1304(2)) { jj_consume_token(CURRENT_ROW); - } else if (jj_2_1282(2)) { + } else if (jj_2_1305(2)) { jj_consume_token(CYCLE); - } else if (jj_2_1283(2)) { + } else if (jj_2_1306(2)) { jj_consume_token(DAY); - } else if (jj_2_1284(2)) { + } else if (jj_2_1307(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_1285(2)) { + } else if (jj_2_1308(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_1286(2)) { + } else if (jj_2_1309(2)) { jj_consume_token(DETERMINISTIC); - } else if (jj_2_1287(2)) { + } else if (jj_2_1310(2)) { jj_consume_token(DOUBLE); - } else if (jj_2_1288(2)) { + } else if (jj_2_1311(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_1289(2)) { + } else if (jj_2_1312(2)) { jj_consume_token(END_EXEC); - } else if (jj_2_1290(2)) { + } else if (jj_2_1313(2)) { jj_consume_token(EQUALS); - } else if (jj_2_1291(2)) { + } else if (jj_2_1314(2)) { jj_consume_token(EXEC); - } else if (jj_2_1292(2)) { + } else if (jj_2_1315(2)) { jj_consume_token(EXTEND); - } else if (jj_2_1293(2)) { + } else if (jj_2_1316(2)) { jj_consume_token(FILTER); - } else if (jj_2_1294(2)) { + } else if (jj_2_1317(2)) { jj_consume_token(FLOOR); - } else if (jj_2_1295(2)) { + } else if (jj_2_1318(2)) { jj_consume_token(FREE); - } else if (jj_2_1296(2)) { + } else if (jj_2_1319(2)) { jj_consume_token(GET); - } else if (jj_2_1297(2)) { + } else if (jj_2_1320(2)) { jj_consume_token(GROUPING); - } else if (jj_2_1298(2)) { + } else if (jj_2_1321(2)) { jj_consume_token(HOUR); - } else if (jj_2_1299(2)) { + } else if (jj_2_1322(2)) { jj_consume_token(INDICATOR); - } else if (jj_2_1300(2)) { + } else if (jj_2_1323(2)) { jj_consume_token(INSENSITIVE); - } else if (jj_2_1301(2)) { + } else if (jj_2_1324(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_1302(2)) { + } else if (jj_2_1325(2)) { jj_consume_token(JSON_EXISTS); - } else if (jj_2_1303(2)) { + } else if (jj_2_1326(2)) { jj_consume_token(JSON_QUERY); - } else if (jj_2_1304(2)) { + } else if (jj_2_1327(2)) { jj_consume_token(LAG); - } else if (jj_2_1305(2)) { + } else if (jj_2_1328(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_1306(2)) { + } else if (jj_2_1329(2)) { jj_consume_token(LIKE_REGEX); - } else if (jj_2_1307(2)) { + } else if (jj_2_1330(2)) { jj_consume_token(LOWER); - } else if (jj_2_1308(2)) { + } else if (jj_2_1331(2)) { jj_consume_token(MATCH_CONDITION); - } else if (jj_2_1309(2)) { + } else if (jj_2_1332(2)) { jj_consume_token(MAX); - } else if (jj_2_1310(2)) { + } else if (jj_2_1333(2)) { jj_consume_token(MEMBER); - } else if (jj_2_1311(2)) { + } else if (jj_2_1334(2)) { jj_consume_token(MINUTE); - } else if (jj_2_1312(2)) { + } else if (jj_2_1335(2)) { jj_consume_token(MODULE); - } else if (jj_2_1313(2)) { + } else if (jj_2_1336(2)) { jj_consume_token(NATIONAL); - } else if (jj_2_1314(2)) { + } else if (jj_2_1337(2)) { jj_consume_token(NEW); - } else if (jj_2_1315(2)) { + } else if (jj_2_1338(2)) { jj_consume_token(NONE); - } else if (jj_2_1316(2)) { + } else if (jj_2_1339(2)) { jj_consume_token(NTILE); - } else if (jj_2_1317(2)) { + } else if (jj_2_1340(2)) { jj_consume_token(OCCURRENCES_REGEX); - } else if (jj_2_1318(2)) { + } else if (jj_2_1341(2)) { jj_consume_token(OLD); - } else if (jj_2_1319(2)) { + } else if (jj_2_1342(2)) { jj_consume_token(ONLY); - } else if (jj_2_1320(2)) { + } else if (jj_2_1343(2)) { jj_consume_token(OUT); - } else if (jj_2_1321(2)) { + } else if (jj_2_1344(2)) { jj_consume_token(OVERLAY); - } else if (jj_2_1322(2)) { + } else if (jj_2_1345(2)) { jj_consume_token(PER); - } else if (jj_2_1323(2)) { + } else if (jj_2_1346(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_1324(2)) { + } else if (jj_2_1347(2)) { jj_consume_token(PERMUTE); - } else if (jj_2_1325(2)) { + } else if (jj_2_1348(2)) { jj_consume_token(POSITION_REGEX); - } else if (jj_2_1326(2)) { + } else if (jj_2_1349(2)) { jj_consume_token(PRECISION); - } else if (jj_2_1327(2)) { + } else if (jj_2_1350(2)) { jj_consume_token(PROCEDURE); - } else if (jj_2_1328(2)) { + } else if (jj_2_1351(2)) { jj_consume_token(RANK); - } else if (jj_2_1329(2)) { + } else if (jj_2_1352(2)) { jj_consume_token(RECURSIVE); - } else if (jj_2_1330(2)) { + } else if (jj_2_1353(2)) { jj_consume_token(REFERENCING); - } else if (jj_2_1331(2)) { + } else if (jj_2_1354(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_1332(2)) { + } else if (jj_2_1355(2)) { jj_consume_token(REGR_SLOPE); - } else if (jj_2_1333(2)) { + } else if (jj_2_1356(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_1334(2)) { + } else if (jj_2_1357(2)) { jj_consume_token(RESULT); - } else if (jj_2_1335(2)) { + } else if (jj_2_1358(2)) { jj_consume_token(REVOKE); - } else if (jj_2_1336(2)) { + } else if (jj_2_1359(2)) { jj_consume_token(ROWS); - } else if (jj_2_1337(2)) { + } else if (jj_2_1360(2)) { jj_consume_token(SAFE_CAST); - } else if (jj_2_1338(2)) { + } else if (jj_2_1361(2)) { jj_consume_token(SAVEPOINT); - } else if (jj_2_1339(2)) { + } else if (jj_2_1362(2)) { jj_consume_token(SEARCH); - } else if (jj_2_1340(2)) { + } else if (jj_2_1363(2)) { jj_consume_token(SENSITIVE); - } else if (jj_2_1341(2)) { + } else if (jj_2_1364(2)) { jj_consume_token(SIMILAR); - } else if (jj_2_1342(2)) { + } else if (jj_2_1365(2)) { jj_consume_token(SPECIFIC); - } else if (jj_2_1343(2)) { + } else if (jj_2_1366(2)) { jj_consume_token(SQLEXCEPTION); - } else if (jj_2_1344(2)) { + } else if (jj_2_1367(2)) { jj_consume_token(SQRT); - } else if (jj_2_1345(2)) { + } else if (jj_2_1368(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_1346(2)) { + } else if (jj_2_1369(2)) { jj_consume_token(SUBMULTISET); - } else if (jj_2_1347(2)) { + } else if (jj_2_1370(2)) { jj_consume_token(SUBSTRING_REGEX); - } else if (jj_2_1348(2)) { + } else if (jj_2_1371(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_1349(2)) { + } else if (jj_2_1372(2)) { jj_consume_token(TABLESAMPLE); - } else if (jj_2_1350(2)) { + } else if (jj_2_1373(2)) { jj_consume_token(TIMEZONE_HOUR); - } else if (jj_2_1351(2)) { + } else if (jj_2_1374(2)) { jj_consume_token(TRANSLATE); - } else if (jj_2_1352(2)) { + } else if (jj_2_1375(2)) { jj_consume_token(TREAT); - } else if (jj_2_1353(2)) { + } else if (jj_2_1376(2)) { jj_consume_token(TRIM_ARRAY); - } else if (jj_2_1354(2)) { + } else if (jj_2_1377(2)) { jj_consume_token(UESCAPE); - } else if (jj_2_1355(2)) { - jj_consume_token(UPPER); - } else if (jj_2_1356(2)) { - jj_consume_token(VALUE); - } else if (jj_2_1357(2)) { - jj_consume_token(VARIANT); - } else if (jj_2_1358(2)) { - jj_consume_token(VAR_POP); - } else if (jj_2_1359(2)) { - jj_consume_token(WHENEVER); - } else if (jj_2_1360(2)) { - jj_consume_token(WITHIN); - } else if (jj_2_1361(2)) { - jj_consume_token(MONDAY); - } else if (jj_2_1362(2)) { - jj_consume_token(THURSDAY); - } else if (jj_2_1363(2)) { - jj_consume_token(SUNDAY); + } else if (jj_2_1378(2)) { + jj_consume_token(UNSIGNED); + } else if (jj_2_1379(2)) { + jj_consume_token(UUID); + } else if (jj_2_1380(2)) { + jj_consume_token(VARBINARY); + } else if (jj_2_1381(2)) { + jj_consume_token(VARYING); + } else if (jj_2_1382(2)) { + jj_consume_token(VERSIONING); + } else if (jj_2_1383(2)) { + jj_consume_token(WINDOW); + } else if (jj_2_1384(2)) { + jj_consume_token(YEAR); + } else if (jj_2_1385(2)) { + jj_consume_token(WEDNESDAY); + } else if (jj_2_1386(2)) { + jj_consume_token(SATURDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -10641,448 +10875,450 @@ final public void NonReservedKeyWord0of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord1of3() throws ParseException { - if (jj_2_1364(2)) { + if (jj_2_1387(2)) { jj_consume_token(ABSENT); - } else if (jj_2_1365(2)) { + } else if (jj_2_1388(2)) { jj_consume_token(ADA); - } else if (jj_2_1366(2)) { + } else if (jj_2_1389(2)) { jj_consume_token(AFTER); - } else if (jj_2_1367(2)) { + } else if (jj_2_1390(2)) { jj_consume_token(ARRAY_AGG); - } else if (jj_2_1368(2)) { + } else if (jj_2_1391(2)) { jj_consume_token(ASSERTION); - } else if (jj_2_1369(2)) { + } else if (jj_2_1392(2)) { jj_consume_token(ATTRIBUTES); - } else if (jj_2_1370(2)) { + } else if (jj_2_1393(2)) { jj_consume_token(BREADTH); - } else if (jj_2_1371(2)) { + } else if (jj_2_1394(2)) { jj_consume_token(CATALOG); - } else if (jj_2_1372(2)) { + } else if (jj_2_1395(2)) { jj_consume_token(CHAIN); - } else if (jj_2_1373(2)) { + } else if (jj_2_1396(2)) { jj_consume_token(CHARACTER_SET_CATALOG); - } else if (jj_2_1374(2)) { + } else if (jj_2_1397(2)) { jj_consume_token(CLASS_ORIGIN); - } else if (jj_2_1375(2)) { + } else if (jj_2_1398(2)) { jj_consume_token(COLLATION_CATALOG); - } else if (jj_2_1376(2)) { + } else if (jj_2_1399(2)) { jj_consume_token(COLUMN_NAME); - } else if (jj_2_1377(2)) { + } else if (jj_2_1400(2)) { jj_consume_token(COMMITTED); - } else if (jj_2_1378(2)) { + } else if (jj_2_1401(2)) { jj_consume_token(CONNECTION); - } else if (jj_2_1379(2)) { + } else if (jj_2_1402(2)) { jj_consume_token(CONSTRAINT_NAME); - } else if (jj_2_1380(2)) { + } else if (jj_2_1403(2)) { jj_consume_token(CONSTRUCTOR); - } else if (jj_2_1381(2)) { + } else if (jj_2_1404(2)) { jj_consume_token(CURSOR_NAME); - } else if (jj_2_1382(2)) { + } else if (jj_2_1405(2)) { jj_consume_token(DATE_DIFF); - } else if (jj_2_1383(2)) { + } else if (jj_2_1406(2)) { jj_consume_token(DATETIME_INTERVAL_CODE); - } else if (jj_2_1384(2)) { + } else if (jj_2_1407(2)) { jj_consume_token(DAYOFWEEK); - } else if (jj_2_1385(2)) { + } else if (jj_2_1408(2)) { jj_consume_token(DECADE); - } else if (jj_2_1386(2)) { + } else if (jj_2_1409(2)) { jj_consume_token(DEFERRED); - } else if (jj_2_1387(2)) { + } else if (jj_2_1410(2)) { jj_consume_token(DEGREE); - } else if (jj_2_1388(2)) { + } else if (jj_2_1411(2)) { jj_consume_token(DESC); - } else if (jj_2_1389(2)) { + } else if (jj_2_1412(2)) { jj_consume_token(DIAGNOSTICS); - } else if (jj_2_1390(2)) { + } else if (jj_2_1413(2)) { jj_consume_token(DOW); - } else if (jj_2_1391(2)) { + } else if (jj_2_1414(2)) { jj_consume_token(DYNAMIC_FUNCTION); - } else if (jj_2_1392(2)) { + } else if (jj_2_1415(2)) { jj_consume_token(EPOCH); - } else if (jj_2_1393(2)) { + } else if (jj_2_1416(2)) { jj_consume_token(EXCLUDE); - } else if (jj_2_1394(2)) { + } else if (jj_2_1417(2)) { jj_consume_token(FIRST); - } else if (jj_2_1395(2)) { + } else if (jj_2_1418(2)) { jj_consume_token(FORTRAN); - } else if (jj_2_1396(2)) { + } else if (jj_2_1419(2)) { jj_consume_token(G); - } else if (jj_2_1397(2)) { + } else if (jj_2_1420(2)) { jj_consume_token(GEOMETRY); - } else if (jj_2_1398(2)) { + } else if (jj_2_1421(2)) { jj_consume_token(GRANTED); - } else if (jj_2_1399(2)) { + } else if (jj_2_1422(2)) { jj_consume_token(HOP); - } else if (jj_2_1400(2)) { + } else if (jj_2_1423(2)) { jj_consume_token(ILIKE); - } else if (jj_2_1401(2)) { + } else if (jj_2_1424(2)) { jj_consume_token(IMPLEMENTATION); - } else if (jj_2_1402(2)) { + } else if (jj_2_1425(2)) { jj_consume_token(INCREMENT); - } else if (jj_2_1403(2)) { + } else if (jj_2_1426(2)) { jj_consume_token(INSTANCE); - } else if (jj_2_1404(2)) { + } else if (jj_2_1427(2)) { jj_consume_token(ISODOW); - } else if (jj_2_1405(2)) { + } else if (jj_2_1428(2)) { jj_consume_token(JAVA); - } else if (jj_2_1406(2)) { + } else if (jj_2_1429(2)) { jj_consume_token(KEY); - } else if (jj_2_1407(2)) { + } else if (jj_2_1430(2)) { jj_consume_token(LABEL); - } else if (jj_2_1408(2)) { + } else if (jj_2_1431(2)) { jj_consume_token(LEVEL); - } else if (jj_2_1409(2)) { + } else if (jj_2_1432(2)) { jj_consume_token(M); - } else if (jj_2_1410(2)) { + } else if (jj_2_1433(2)) { jj_consume_token(MAXVALUE); - } else if (jj_2_1411(2)) { + } else if (jj_2_1434(2)) { jj_consume_token(MESSAGE_TEXT); - } else if (jj_2_1412(2)) { + } else if (jj_2_1435(2)) { jj_consume_token(MILLISECOND); - } else if (jj_2_1413(2)) { + } else if (jj_2_1436(2)) { jj_consume_token(MONTHS); - } else if (jj_2_1414(2)) { + } else if (jj_2_1437(2)) { jj_consume_token(NAME); - } else if (jj_2_1415(2)) { + } else if (jj_2_1438(2)) { jj_consume_token(NESTING); - } else if (jj_2_1416(2)) { + } else if (jj_2_1439(2)) { jj_consume_token(NULLS); - } else if (jj_2_1417(2)) { + } else if (jj_2_1440(2)) { jj_consume_token(OCTETS); - } else if (jj_2_1418(2)) { + } else if (jj_2_1441(2)) { jj_consume_token(ORDERING); - } else if (jj_2_1419(2)) { + } else if (jj_2_1442(2)) { jj_consume_token(OUTPUT); - } else if (jj_2_1420(2)) { + } else if (jj_2_1443(2)) { jj_consume_token(PARAMETER_MODE); - } else if (jj_2_1421(2)) { + } else if (jj_2_1444(2)) { jj_consume_token(PARAMETER_SPECIFIC_CATALOG); - } else if (jj_2_1422(2)) { + } else if (jj_2_1445(2)) { jj_consume_token(PARTIAL); - } else if (jj_2_1423(2)) { + } else if (jj_2_1446(2)) { jj_consume_token(PASSTHROUGH); - } else if (jj_2_1424(2)) { + } else if (jj_2_1447(2)) { jj_consume_token(PIVOT); - } else if (jj_2_1425(2)) { + } else if (jj_2_1448(2)) { jj_consume_token(PLI); - } else if (jj_2_1426(2)) { + } else if (jj_2_1449(2)) { jj_consume_token(PRIOR); - } else if (jj_2_1427(2)) { + } else if (jj_2_1450(2)) { jj_consume_token(QUARTER); - } else if (jj_2_1428(2)) { + } else if (jj_2_1451(2)) { jj_consume_token(RELATIVE); - } else if (jj_2_1429(2)) { + } else if (jj_2_1452(2)) { jj_consume_token(RESPECT); - } else if (jj_2_1430(2)) { + } else if (jj_2_1453(2)) { jj_consume_token(RETURNED_CARDINALITY); - } else if (jj_2_1431(2)) { + } else if (jj_2_1454(2)) { jj_consume_token(RETURNED_SQLSTATE); - } else if (jj_2_1432(2)) { + } else if (jj_2_1455(2)) { jj_consume_token(ROLE); - } else if (jj_2_1433(2)) { + } else if (jj_2_1456(2)) { jj_consume_token(ROUTINE_NAME); - } else if (jj_2_1434(2)) { + } else if (jj_2_1457(2)) { jj_consume_token(SCALAR); - } else if (jj_2_1435(2)) { + } else if (jj_2_1458(2)) { jj_consume_token(SCHEMA_NAME); - } else if (jj_2_1436(2)) { + } else if (jj_2_1459(2)) { jj_consume_token(SCOPE_SCHEMA); - } else if (jj_2_1437(2)) { + } else if (jj_2_1460(2)) { jj_consume_token(SECURITY); - } else if (jj_2_1438(2)) { + } else if (jj_2_1461(2)) { jj_consume_token(SEQUENCE); - } else if (jj_2_1439(2)) { + } else if (jj_2_1462(2)) { jj_consume_token(SERVER_NAME); - } else if (jj_2_1440(2)) { + } else if (jj_2_1463(2)) { jj_consume_token(SIMPLE); - } else if (jj_2_1441(2)) { + } else if (jj_2_1464(2)) { jj_consume_token(SPACE); - } else if (jj_2_1442(2)) { + } else if (jj_2_1465(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_1443(2)) { + } else if (jj_2_1466(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_1444(2)) { + } else if (jj_2_1467(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_1445(2)) { + } else if (jj_2_1468(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_1446(2)) { + } else if (jj_2_1469(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); - } else if (jj_2_1447(2)) { + } else if (jj_2_1470(2)) { jj_consume_token(SQL_INTERVAL_HOUR); - } else if (jj_2_1448(2)) { + } else if (jj_2_1471(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); - } else if (jj_2_1449(2)) { + } else if (jj_2_1472(2)) { jj_consume_token(SQL_INTERVAL_SECOND); - } else if (jj_2_1450(2)) { + } else if (jj_2_1473(2)) { jj_consume_token(SQL_LONGVARBINARY); - } else if (jj_2_1451(2)) { + } else if (jj_2_1474(2)) { jj_consume_token(SQL_NCHAR); - } else if (jj_2_1452(2)) { + } else if (jj_2_1475(2)) { jj_consume_token(SQL_NVARCHAR); - } else if (jj_2_1453(2)) { + } else if (jj_2_1476(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_1454(2)) { + } else if (jj_2_1477(2)) { jj_consume_token(SQL_TSI_DAY); - } else if (jj_2_1455(2)) { + } else if (jj_2_1478(2)) { jj_consume_token(SQL_TSI_MICROSECOND); - } else if (jj_2_1456(2)) { + } else if (jj_2_1479(2)) { jj_consume_token(SQL_TSI_QUARTER); - } else if (jj_2_1457(2)) { + } else if (jj_2_1480(2)) { jj_consume_token(SQL_TSI_YEAR); - } else if (jj_2_1458(2)) { + } else if (jj_2_1481(2)) { jj_consume_token(STATE); - } else if (jj_2_1459(2)) { + } else if (jj_2_1482(2)) { jj_consume_token(STRUCTURE); - } else if (jj_2_1460(2)) { + } else if (jj_2_1483(2)) { jj_consume_token(SUBSTITUTE); - } else if (jj_2_1461(2)) { + } else if (jj_2_1484(2)) { jj_consume_token(TIES); - } else if (jj_2_1462(2)) { + } else if (jj_2_1485(2)) { jj_consume_token(TIMESTAMPADD); - } else if (jj_2_1463(2)) { + } else if (jj_2_1486(2)) { jj_consume_token(TIMESTAMP_TRUNC); - } else if (jj_2_1464(2)) { + } else if (jj_2_1487(2)) { jj_consume_token(TRANSACTIONS_ACTIVE); - } else if (jj_2_1465(2)) { + } else if (jj_2_1488(2)) { jj_consume_token(TRANSFORM); - } else if (jj_2_1466(2)) { + } else if (jj_2_1489(2)) { jj_consume_token(TRIGGER_NAME); - } else if (jj_2_1467(2)) { + } else if (jj_2_1490(2)) { jj_consume_token(TYPE); - } else if (jj_2_1468(2)) { + } else if (jj_2_1491(2)) { jj_consume_token(UNCONDITIONAL); - } else if (jj_2_1469(2)) { + } else if (jj_2_1492(2)) { jj_consume_token(UNNAMED); - } else if (jj_2_1470(2)) { + } else if (jj_2_1493(2)) { jj_consume_token(USER_DEFINED_TYPE_CODE); - } else if (jj_2_1471(2)) { + } else if (jj_2_1494(2)) { jj_consume_token(UTF16); - } else if (jj_2_1472(2)) { + } else if (jj_2_1495(2)) { jj_consume_token(VERSION); - } else if (jj_2_1473(2)) { + } else if (jj_2_1496(2)) { jj_consume_token(WEEKS); - } else if (jj_2_1474(2)) { + } else if (jj_2_1497(2)) { jj_consume_token(WRITE); - } else if (jj_2_1475(2)) { + } else if (jj_2_1498(2)) { jj_consume_token(ZONE); - } else if (jj_2_1476(2)) { + } else if (jj_2_1499(2)) { jj_consume_token(AFFINITY_KEY); - } else if (jj_2_1477(2)) { + } else if (jj_2_1500(2)) { jj_consume_token(CACHE_GROUP); - } else if (jj_2_1478(2)) { + } else if (jj_2_1501(2)) { jj_consume_token(VALUE_TYPE); - } else if (jj_2_1479(2)) { + } else if (jj_2_1502(2)) { jj_consume_token(ENCRYPTED); - } else if (jj_2_1480(2)) { + } else if (jj_2_1503(2)) { jj_consume_token(LOGGING); - } else if (jj_2_1481(2)) { + } else if (jj_2_1504(2)) { jj_consume_token(KILL); - } else if (jj_2_1482(2)) { + } else if (jj_2_1505(2)) { jj_consume_token(SERVICE); - } else if (jj_2_1483(2)) { + } else if (jj_2_1506(2)) { jj_consume_token(QUERY); - } else if (jj_2_1484(2)) { + } else if (jj_2_1507(2)) { jj_consume_token(ANALYZE); - } else if (jj_2_1485(2)) { + } else if (jj_2_1508(2)) { jj_consume_token(ABS); - } else if (jj_2_1486(2)) { + } else if (jj_2_1509(2)) { jj_consume_token(ARE); - } else if (jj_2_1487(2)) { + } else if (jj_2_1510(2)) { jj_consume_token(ASOF); - } else if (jj_2_1488(2)) { + } else if (jj_2_1511(2)) { jj_consume_token(AUTHORIZATION); - } else if (jj_2_1489(2)) { + } else if (jj_2_1512(2)) { jj_consume_token(BEGIN_FRAME); - } else if (jj_2_1490(2)) { + } else if (jj_2_1513(2)) { jj_consume_token(BINARY); - } else if (jj_2_1491(2)) { + } else if (jj_2_1514(2)) { jj_consume_token(BOOLEAN); - } else if (jj_2_1492(2)) { + } else if (jj_2_1515(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_1493(2)) { + } else if (jj_2_1516(2)) { jj_consume_token(CEILING); - } else if (jj_2_1494(2)) { + } else if (jj_2_1517(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_1495(2)) { + } else if (jj_2_1518(2)) { jj_consume_token(CLASSIFIER); - } else if (jj_2_1496(2)) { + } else if (jj_2_1519(2)) { jj_consume_token(COALESCE); - } else if (jj_2_1497(2)) { + } else if (jj_2_1520(2)) { jj_consume_token(COMMIT); - } else if (jj_2_1498(2)) { + } else if (jj_2_1521(2)) { jj_consume_token(CONTAINS); - } else if (jj_2_1499(2)) { + } else if (jj_2_1522(2)) { jj_consume_token(CORRESPONDING); - } else if (jj_2_1500(2)) { + } else if (jj_2_1523(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_1501(2)) { + } else if (jj_2_1524(2)) { jj_consume_token(CURRENT); - } else if (jj_2_1502(2)) { + } else if (jj_2_1525(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_1503(2)) { + } else if (jj_2_1526(2)) { jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); - } else if (jj_2_1504(2)) { + } else if (jj_2_1527(2)) { jj_consume_token(DATE); - } else if (jj_2_1505(2)) { + } else if (jj_2_1528(2)) { jj_consume_token(DEALLOCATE); - } else if (jj_2_1506(2)) { + } else if (jj_2_1529(2)) { jj_consume_token(DECLARE); - } else if (jj_2_1507(2)) { + } else if (jj_2_1530(2)) { jj_consume_token(DEREF); - } else if (jj_2_1508(2)) { + } else if (jj_2_1531(2)) { jj_consume_token(DISALLOW); - } else if (jj_2_1509(2)) { + } else if (jj_2_1532(2)) { jj_consume_token(DYNAMIC); - } else if (jj_2_1510(2)) { + } else if (jj_2_1533(2)) { jj_consume_token(EMPTY); - } else if (jj_2_1511(2)) { + } else if (jj_2_1534(2)) { jj_consume_token(END_FRAME); - } else if (jj_2_1512(2)) { + } else if (jj_2_1535(2)) { jj_consume_token(ESCAPE); - } else if (jj_2_1513(2)) { + } else if (jj_2_1536(2)) { jj_consume_token(EXECUTE); - } else if (jj_2_1514(2)) { + } else if (jj_2_1537(2)) { jj_consume_token(EXTERNAL); - } else if (jj_2_1515(2)) { + } else if (jj_2_1538(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_1516(2)) { + } else if (jj_2_1539(2)) { jj_consume_token(FOREIGN); - } else if (jj_2_1517(2)) { + } else if (jj_2_1540(2)) { jj_consume_token(FUNCTION); - } else if (jj_2_1518(2)) { + } else if (jj_2_1541(2)) { jj_consume_token(GLOBAL); - } else if (jj_2_1519(2)) { + } else if (jj_2_1542(2)) { jj_consume_token(GROUPS); - } else if (jj_2_1520(2)) { + } else if (jj_2_1543(2)) { jj_consume_token(IDENTITY); - } else if (jj_2_1521(2)) { + } else if (jj_2_1544(2)) { jj_consume_token(INITIAL); - } else if (jj_2_1522(2)) { + } else if (jj_2_1545(2)) { jj_consume_token(INT); - } else if (jj_2_1523(2)) { + } else if (jj_2_1546(2)) { jj_consume_token(JSON_ARRAY); - } else if (jj_2_1524(2)) { + } else if (jj_2_1547(2)) { jj_consume_token(JSON_OBJECT); - } else if (jj_2_1525(2)) { + } else if (jj_2_1548(2)) { jj_consume_token(JSON_SCOPE); - } else if (jj_2_1526(2)) { + } else if (jj_2_1549(2)) { jj_consume_token(LANGUAGE); - } else if (jj_2_1527(2)) { + } else if (jj_2_1550(2)) { jj_consume_token(LATERAL); - } else if (jj_2_1528(2)) { + } else if (jj_2_1551(2)) { jj_consume_token(LN); - } else if (jj_2_1529(2)) { + } else if (jj_2_1552(2)) { jj_consume_token(MATCH); - } else if (jj_2_1530(2)) { + } else if (jj_2_1553(2)) { jj_consume_token(MATCH_NUMBER); - } else if (jj_2_1531(2)) { + } else if (jj_2_1554(2)) { jj_consume_token(MEASURE); - } else if (jj_2_1532(2)) { + } else if (jj_2_1555(2)) { jj_consume_token(METHOD); - } else if (jj_2_1533(2)) { + } else if (jj_2_1556(2)) { jj_consume_token(MOD); - } else if (jj_2_1534(2)) { + } else if (jj_2_1557(2)) { jj_consume_token(MONTH); - } else if (jj_2_1535(2)) { + } else if (jj_2_1558(2)) { jj_consume_token(NCHAR); - } else if (jj_2_1536(2)) { + } else if (jj_2_1559(2)) { jj_consume_token(NEXT); - } else if (jj_2_1537(2)) { + } else if (jj_2_1560(2)) { jj_consume_token(NORMALIZE); - } else if (jj_2_1538(2)) { + } else if (jj_2_1561(2)) { jj_consume_token(NULLIF); - } else if (jj_2_1539(2)) { + } else if (jj_2_1562(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_1540(2)) { + } else if (jj_2_1563(2)) { jj_consume_token(OMIT); - } else if (jj_2_1541(2)) { + } else if (jj_2_1564(2)) { jj_consume_token(OPEN); - } else if (jj_2_1542(2)) { + } else if (jj_2_1565(2)) { jj_consume_token(OVER); - } else if (jj_2_1543(2)) { + } else if (jj_2_1566(2)) { jj_consume_token(PARAMETER); - } else if (jj_2_1544(2)) { + } else if (jj_2_1567(2)) { jj_consume_token(PERCENT); - } else if (jj_2_1545(2)) { + } else if (jj_2_1568(2)) { jj_consume_token(PERCENT_RANK); - } else if (jj_2_1546(2)) { + } else if (jj_2_1569(2)) { jj_consume_token(PORTION); - } else if (jj_2_1547(2)) { + } else if (jj_2_1570(2)) { jj_consume_token(POWER); - } else if (jj_2_1548(2)) { + } else if (jj_2_1571(2)) { jj_consume_token(PREPARE); - } else if (jj_2_1549(2)) { + } else if (jj_2_1572(2)) { jj_consume_token(QUALIFY); - } else if (jj_2_1550(2)) { + } else if (jj_2_1573(2)) { jj_consume_token(READS); - } else if (jj_2_1551(2)) { + } else if (jj_2_1574(2)) { jj_consume_token(REF); - } else if (jj_2_1552(2)) { + } else if (jj_2_1575(2)) { jj_consume_token(REGR_AVGX); - } else if (jj_2_1553(2)) { + } else if (jj_2_1576(2)) { jj_consume_token(REGR_INTERCEPT); - } else if (jj_2_1554(2)) { + } else if (jj_2_1577(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_1555(2)) { + } else if (jj_2_1578(2)) { jj_consume_token(RELEASE); - } else if (jj_2_1556(2)) { + } else if (jj_2_1579(2)) { jj_consume_token(RETURN); - } else if (jj_2_1557(2)) { + } else if (jj_2_1580(2)) { jj_consume_token(ROLLBACK); - } else if (jj_2_1558(2)) { + } else if (jj_2_1581(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_1559(2)) { + } else if (jj_2_1582(2)) { jj_consume_token(SAFE_OFFSET); - } else if (jj_2_1560(2)) { + } else if (jj_2_1583(2)) { jj_consume_token(SCOPE); - } else if (jj_2_1561(2)) { + } else if (jj_2_1584(2)) { jj_consume_token(SECOND); - } else if (jj_2_1562(2)) { + } else if (jj_2_1585(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_1563(2)) { + } else if (jj_2_1586(2)) { jj_consume_token(SKIP_); - } else if (jj_2_1564(2)) { + } else if (jj_2_1587(2)) { jj_consume_token(SPECIFICTYPE); - } else if (jj_2_1565(2)) { + } else if (jj_2_1588(2)) { jj_consume_token(SQLSTATE); - } else if (jj_2_1566(2)) { + } else if (jj_2_1589(2)) { jj_consume_token(START); - } else if (jj_2_1567(2)) { + } else if (jj_2_1590(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_1568(2)) { + } else if (jj_2_1591(2)) { jj_consume_token(SUBSET); - } else if (jj_2_1569(2)) { + } else if (jj_2_1592(2)) { jj_consume_token(SUCCEEDS); - } else if (jj_2_1570(2)) { + } else if (jj_2_1593(2)) { jj_consume_token(SYSTEM_TIME); - } else if (jj_2_1571(2)) { + } else if (jj_2_1594(2)) { jj_consume_token(TIME); - } else if (jj_2_1572(2)) { + } else if (jj_2_1595(2)) { jj_consume_token(TIMEZONE_MINUTE); - } else if (jj_2_1573(2)) { + } else if (jj_2_1596(2)) { jj_consume_token(TRANSLATE_REGEX); - } else if (jj_2_1574(2)) { + } else if (jj_2_1597(2)) { jj_consume_token(TRIGGER); - } else if (jj_2_1575(2)) { + } else if (jj_2_1598(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_1576(2)) { + } else if (jj_2_1599(2)) { jj_consume_token(UNIQUE); - } else if (jj_2_1577(2)) { - jj_consume_token(UPSERT); - } else if (jj_2_1578(2)) { - jj_consume_token(VALUE_OF); - } else if (jj_2_1579(2)) { - jj_consume_token(VARCHAR); - } else if (jj_2_1580(2)) { - jj_consume_token(VAR_SAMP); - } else if (jj_2_1581(2)) { - jj_consume_token(WIDTH_BUCKET); - } else if (jj_2_1582(2)) { - jj_consume_token(WITHOUT); - } else if (jj_2_1583(2)) { - jj_consume_token(TUESDAY); - } else if (jj_2_1584(2)) { - jj_consume_token(FRIDAY); + } else if (jj_2_1600(2)) { + jj_consume_token(UPPER); + } else if (jj_2_1601(2)) { + jj_consume_token(VALUE); + } else if (jj_2_1602(2)) { + jj_consume_token(VARIANT); + } else if (jj_2_1603(2)) { + jj_consume_token(VAR_POP); + } else if (jj_2_1604(2)) { + jj_consume_token(WHENEVER); + } else if (jj_2_1605(2)) { + jj_consume_token(WITHIN); + } else if (jj_2_1606(2)) { + jj_consume_token(MONDAY); + } else if (jj_2_1607(2)) { + jj_consume_token(THURSDAY); + } else if (jj_2_1608(2)) { + jj_consume_token(SUNDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -11091,448 +11327,448 @@ final public void NonReservedKeyWord1of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord2of3() throws ParseException { - if (jj_2_1585(2)) { + if (jj_2_1609(2)) { jj_consume_token(ABSOLUTE); - } else if (jj_2_1586(2)) { + } else if (jj_2_1610(2)) { jj_consume_token(ADD); - } else if (jj_2_1587(2)) { + } else if (jj_2_1611(2)) { jj_consume_token(ALWAYS); - } else if (jj_2_1588(2)) { + } else if (jj_2_1612(2)) { jj_consume_token(ARRAY_CONCAT_AGG); - } else if (jj_2_1589(2)) { + } else if (jj_2_1613(2)) { jj_consume_token(ASSIGNMENT); - } else if (jj_2_1590(2)) { + } else if (jj_2_1614(2)) { jj_consume_token(BEFORE); - } else if (jj_2_1591(2)) { + } else if (jj_2_1615(2)) { jj_consume_token(C); - } else if (jj_2_1592(2)) { + } else if (jj_2_1616(2)) { jj_consume_token(CATALOG_NAME); - } else if (jj_2_1593(2)) { + } else if (jj_2_1617(2)) { jj_consume_token(CHARACTERISTICS); - } else if (jj_2_1594(2)) { + } else if (jj_2_1618(2)) { jj_consume_token(CHARACTER_SET_NAME); - } else if (jj_2_1595(2)) { + } else if (jj_2_1619(2)) { jj_consume_token(COBOL); - } else if (jj_2_1596(2)) { + } else if (jj_2_1620(2)) { jj_consume_token(COLLATION_NAME); - } else if (jj_2_1597(2)) { + } else if (jj_2_1621(2)) { jj_consume_token(COMMAND_FUNCTION); - } else if (jj_2_1598(2)) { + } else if (jj_2_1622(2)) { jj_consume_token(CONDITIONAL); - } else if (jj_2_1599(2)) { + } else if (jj_2_1623(2)) { jj_consume_token(CONNECTION_NAME); - } else if (jj_2_1600(2)) { + } else if (jj_2_1624(2)) { jj_consume_token(CONSTRAINTS); - } else if (jj_2_1601(2)) { + } else if (jj_2_1625(2)) { jj_consume_token(CONTAINS_SUBSTR); - } else if (jj_2_1602(2)) { + } else if (jj_2_1626(2)) { jj_consume_token(DATA); - } else if (jj_2_1603(2)) { + } else if (jj_2_1627(2)) { jj_consume_token(DATE_TRUNC); - } else if (jj_2_1604(2)) { + } else if (jj_2_1628(2)) { jj_consume_token(DATETIME_INTERVAL_PRECISION); - } else if (jj_2_1605(2)) { + } else if (jj_2_1629(2)) { jj_consume_token(DAYOFYEAR); - } else if (jj_2_1606(2)) { + } else if (jj_2_1630(2)) { jj_consume_token(DEFAULTS); - } else if (jj_2_1607(2)) { + } else if (jj_2_1631(2)) { jj_consume_token(DEFINED); - } else if (jj_2_1608(2)) { + } else if (jj_2_1632(2)) { jj_consume_token(DEPTH); - } else if (jj_2_1609(2)) { + } else if (jj_2_1633(2)) { jj_consume_token(DESCRIPTION); - } else if (jj_2_1610(2)) { + } else if (jj_2_1634(2)) { jj_consume_token(DISPATCH); - } else if (jj_2_1611(2)) { + } else if (jj_2_1635(2)) { jj_consume_token(DOY); - } else if (jj_2_1612(2)) { + } else if (jj_2_1636(2)) { jj_consume_token(DYNAMIC_FUNCTION_CODE); - } else if (jj_2_1613(2)) { + } else if (jj_2_1637(2)) { jj_consume_token(ERROR); - } else if (jj_2_1614(2)) { + } else if (jj_2_1638(2)) { jj_consume_token(EXCLUDING); - } else if (jj_2_1615(2)) { + } else if (jj_2_1639(2)) { jj_consume_token(FOLLOWING); - } else if (jj_2_1616(2)) { + } else if (jj_2_1640(2)) { jj_consume_token(FOUND); - } else if (jj_2_1617(2)) { + } else if (jj_2_1641(2)) { jj_consume_token(GENERAL); - } else if (jj_2_1618(2)) { + } else if (jj_2_1642(2)) { jj_consume_token(GO); - } else if (jj_2_1619(2)) { + } else if (jj_2_1643(2)) { jj_consume_token(GROUP_CONCAT); - } else if (jj_2_1620(2)) { + } else if (jj_2_1644(2)) { jj_consume_token(HOURS); - } else if (jj_2_1621(2)) { + } else if (jj_2_1645(2)) { jj_consume_token(IMMEDIATE); - } else if (jj_2_1622(2)) { + } else if (jj_2_1646(2)) { jj_consume_token(INCLUDE); - } else if (jj_2_1623(2)) { + } else if (jj_2_1647(2)) { jj_consume_token(INITIALLY); - } else if (jj_2_1624(2)) { + } else if (jj_2_1648(2)) { jj_consume_token(INSTANTIABLE); - } else if (jj_2_1625(2)) { + } else if (jj_2_1649(2)) { jj_consume_token(ISOLATION); - } else if (jj_2_1626(2)) { + } else if (jj_2_1650(2)) { jj_consume_token(JSON); - } else if (jj_2_1627(2)) { + } else if (jj_2_1651(2)) { jj_consume_token(KEY_MEMBER); - } else if (jj_2_1628(2)) { + } else if (jj_2_1652(2)) { jj_consume_token(LAST); - } else if (jj_2_1629(2)) { + } else if (jj_2_1653(2)) { jj_consume_token(LIBRARY); - } else if (jj_2_1630(2)) { + } else if (jj_2_1654(2)) { jj_consume_token(MAP); - } else if (jj_2_1631(2)) { + } else if (jj_2_1655(2)) { jj_consume_token(MESSAGE_LENGTH); - } else if (jj_2_1632(2)) { + } else if (jj_2_1656(2)) { jj_consume_token(MICROSECOND); - } else if (jj_2_1633(2)) { + } else if (jj_2_1657(2)) { jj_consume_token(MINUTES); - } else if (jj_2_1634(2)) { + } else if (jj_2_1658(2)) { jj_consume_token(MORE_); - } else if (jj_2_1635(2)) { + } else if (jj_2_1659(2)) { jj_consume_token(NAMES); - } else if (jj_2_1636(2)) { + } else if (jj_2_1660(2)) { jj_consume_token(NORMALIZED); - } else if (jj_2_1637(2)) { + } else if (jj_2_1661(2)) { jj_consume_token(NUMBER); - } else if (jj_2_1638(2)) { + } else if (jj_2_1662(2)) { jj_consume_token(OPTION); - } else if (jj_2_1639(2)) { + } else if (jj_2_1663(2)) { jj_consume_token(ORDINALITY); - } else if (jj_2_1640(2)) { + } else if (jj_2_1664(2)) { jj_consume_token(OVERRIDING); - } else if (jj_2_1641(2)) { + } else if (jj_2_1665(2)) { jj_consume_token(PARAMETER_NAME); - } else if (jj_2_1642(2)) { + } else if (jj_2_1666(2)) { jj_consume_token(PARAMETER_SPECIFIC_NAME); - } else if (jj_2_1643(2)) { + } else if (jj_2_1667(2)) { jj_consume_token(PASCAL); - } else if (jj_2_1644(2)) { + } else if (jj_2_1668(2)) { jj_consume_token(PAST); - } else if (jj_2_1645(2)) { + } else if (jj_2_1669(2)) { jj_consume_token(PLACING); - } else if (jj_2_1646(2)) { + } else if (jj_2_1670(2)) { jj_consume_token(PRECEDING); - } else if (jj_2_1647(2)) { + } else if (jj_2_1671(2)) { jj_consume_token(PRIVILEGES); - } else if (jj_2_1648(2)) { + } else if (jj_2_1672(2)) { jj_consume_token(QUARTERS); - } else if (jj_2_1649(2)) { + } else if (jj_2_1673(2)) { jj_consume_token(REPEATABLE); - } else if (jj_2_1650(2)) { + } else if (jj_2_1674(2)) { jj_consume_token(RESTART); - } else if (jj_2_1651(2)) { + } else if (jj_2_1675(2)) { jj_consume_token(RETURNED_LENGTH); - } else if (jj_2_1652(2)) { + } else if (jj_2_1676(2)) { jj_consume_token(RETURNING); - } else if (jj_2_1653(2)) { + } else if (jj_2_1677(2)) { jj_consume_token(ROUTINE); - } else if (jj_2_1654(2)) { + } else if (jj_2_1678(2)) { jj_consume_token(ROUTINE_SCHEMA); - } else if (jj_2_1655(2)) { + } else if (jj_2_1679(2)) { jj_consume_token(SCALE); - } else if (jj_2_1656(2)) { + } else if (jj_2_1680(2)) { jj_consume_token(SCOPE_CATALOGS); - } else if (jj_2_1657(2)) { + } else if (jj_2_1681(2)) { jj_consume_token(SECONDS); - } else if (jj_2_1658(2)) { + } else if (jj_2_1682(2)) { jj_consume_token(SELF); - } else if (jj_2_1659(2)) { + } else if (jj_2_1683(2)) { jj_consume_token(SERIALIZABLE); - } else if (jj_2_1660(2)) { + } else if (jj_2_1684(2)) { jj_consume_token(SESSION); - } else if (jj_2_1661(2)) { + } else if (jj_2_1685(2)) { jj_consume_token(SIZE); - } else if (jj_2_1662(2)) { + } else if (jj_2_1686(2)) { jj_consume_token(SPECIFIC_NAME); - } else if (jj_2_1663(2)) { + } else if (jj_2_1687(2)) { jj_consume_token(SQL_BIT); - } else if (jj_2_1664(2)) { + } else if (jj_2_1688(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_1665(2)) { + } else if (jj_2_1689(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_1666(2)) { + } else if (jj_2_1690(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_1667(2)) { + } else if (jj_2_1691(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); - } else if (jj_2_1668(2)) { + } else if (jj_2_1692(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); - } else if (jj_2_1669(2)) { + } else if (jj_2_1693(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); - } else if (jj_2_1670(2)) { + } else if (jj_2_1694(2)) { jj_consume_token(SQL_INTERVAL_YEAR); - } else if (jj_2_1671(2)) { + } else if (jj_2_1695(2)) { jj_consume_token(SQL_LONGVARCHAR); - } else if (jj_2_1672(2)) { + } else if (jj_2_1696(2)) { jj_consume_token(SQL_NCLOB); - } else if (jj_2_1673(2)) { + } else if (jj_2_1697(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_1674(2)) { + } else if (jj_2_1698(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_1675(2)) { + } else if (jj_2_1699(2)) { jj_consume_token(SQL_TSI_FRAC_SECOND); - } else if (jj_2_1676(2)) { + } else if (jj_2_1700(2)) { jj_consume_token(SQL_TSI_MINUTE); - } else if (jj_2_1677(2)) { + } else if (jj_2_1701(2)) { jj_consume_token(SQL_TSI_SECOND); - } else if (jj_2_1678(2)) { + } else if (jj_2_1702(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_1679(2)) { + } else if (jj_2_1703(2)) { jj_consume_token(STATEMENT); - } else if (jj_2_1680(2)) { + } else if (jj_2_1704(2)) { jj_consume_token(STYLE); - } else if (jj_2_1681(2)) { + } else if (jj_2_1705(2)) { jj_consume_token(TABLE_NAME); - } else if (jj_2_1682(2)) { + } else if (jj_2_1706(2)) { jj_consume_token(TIME_DIFF); - } else if (jj_2_1683(2)) { + } else if (jj_2_1707(2)) { jj_consume_token(TIMESTAMPDIFF); - } else if (jj_2_1684(2)) { + } else if (jj_2_1708(2)) { jj_consume_token(TOP_LEVEL_COUNT); - } else if (jj_2_1685(2)) { + } else if (jj_2_1709(2)) { jj_consume_token(TRANSACTIONS_COMMITTED); - } else if (jj_2_1686(2)) { + } else if (jj_2_1710(2)) { jj_consume_token(TRANSFORMS); - } else if (jj_2_1687(2)) { + } else if (jj_2_1711(2)) { jj_consume_token(TRIGGER_SCHEMA); - } else if (jj_2_1688(2)) { + } else if (jj_2_1712(2)) { jj_consume_token(UNBOUNDED); - } else if (jj_2_1689(2)) { + } else if (jj_2_1713(2)) { jj_consume_token(UNDER); - } else if (jj_2_1690(2)) { + } else if (jj_2_1714(2)) { jj_consume_token(USAGE); - } else if (jj_2_1691(2)) { + } else if (jj_2_1715(2)) { jj_consume_token(USER_DEFINED_TYPE_NAME); - } else if (jj_2_1692(2)) { + } else if (jj_2_1716(2)) { jj_consume_token(UTF32); - } else if (jj_2_1693(2)) { + } else if (jj_2_1717(2)) { jj_consume_token(VIEW); - } else if (jj_2_1694(2)) { + } else if (jj_2_1718(2)) { jj_consume_token(WORK); - } else if (jj_2_1695(2)) { + } else if (jj_2_1719(2)) { jj_consume_token(XML); - } else if (jj_2_1696(2)) { + } else if (jj_2_1720(2)) { jj_consume_token(TEMPLATE); - } else if (jj_2_1697(2)) { + } else if (jj_2_1721(2)) { jj_consume_token(ATOMICITY); - } else if (jj_2_1698(2)) { + } else if (jj_2_1722(2)) { jj_consume_token(CACHE_NAME); - } else if (jj_2_1699(2)) { + } else if (jj_2_1723(2)) { jj_consume_token(WRAP_KEY); - } else if (jj_2_1700(2)) { + } else if (jj_2_1724(2)) { jj_consume_token(PARALLEL); - } else if (jj_2_1701(2)) { + } else if (jj_2_1725(2)) { jj_consume_token(NOLOGGING); - } else if (jj_2_1702(2)) { + } else if (jj_2_1726(2)) { jj_consume_token(SCAN); - } else if (jj_2_1703(2)) { + } else if (jj_2_1727(2)) { jj_consume_token(COMPUTE); - } else if (jj_2_1704(2)) { + } else if (jj_2_1728(2)) { jj_consume_token(STATISTICS); - } else if (jj_2_1705(2)) { + } else if (jj_2_1729(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); - } else if (jj_2_1706(2)) { + } else if (jj_2_1730(2)) { jj_consume_token(ALLOCATE); - } else if (jj_2_1707(2)) { + } else if (jj_2_1731(2)) { jj_consume_token(ARRAY_MAX_CARDINALITY); - } else if (jj_2_1708(2)) { + } else if (jj_2_1732(2)) { jj_consume_token(AT); - } else if (jj_2_1709(2)) { + } else if (jj_2_1733(2)) { jj_consume_token(AVG); - } else if (jj_2_1710(2)) { + } else if (jj_2_1734(2)) { jj_consume_token(BEGIN_PARTITION); - } else if (jj_2_1711(2)) { + } else if (jj_2_1735(2)) { jj_consume_token(BIT); - } else if (jj_2_1712(2)) { + } else if (jj_2_1736(2)) { jj_consume_token(CALL); - } else if (jj_2_1713(2)) { + } else if (jj_2_1737(2)) { jj_consume_token(CASCADED); - } else if (jj_2_1714(2)) { + } else if (jj_2_1738(2)) { jj_consume_token(CHAR); - } else if (jj_2_1715(2)) { + } else if (jj_2_1739(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_1716(2)) { + } else if (jj_2_1740(2)) { jj_consume_token(CLOB); - } else if (jj_2_1717(2)) { + } else if (jj_2_1741(2)) { jj_consume_token(COLLATE); - } else if (jj_2_1718(2)) { + } else if (jj_2_1742(2)) { jj_consume_token(CONDITION); - } else if (jj_2_1719(2)) { + } else if (jj_2_1743(2)) { jj_consume_token(CONVERT); - } else if (jj_2_1720(2)) { + } else if (jj_2_1744(2)) { jj_consume_token(COUNT); - } else if (jj_2_1721(2)) { + } else if (jj_2_1745(2)) { jj_consume_token(CUBE); - } else if (jj_2_1722(2)) { + } else if (jj_2_1746(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_1723(2)) { + } else if (jj_2_1747(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_1724(2)) { + } else if (jj_2_1748(2)) { jj_consume_token(CURSOR); - } else if (jj_2_1725(2)) { + } else if (jj_2_1749(2)) { jj_consume_token(DATETIME); - } else if (jj_2_1726(2)) { + } else if (jj_2_1750(2)) { jj_consume_token(DEC); - } else if (jj_2_1727(2)) { + } else if (jj_2_1751(2)) { jj_consume_token(DEFINE); - } else if (jj_2_1728(2)) { + } else if (jj_2_1752(2)) { jj_consume_token(DESCRIBE); - } else if (jj_2_1729(2)) { + } else if (jj_2_1753(2)) { jj_consume_token(DISCONNECT); - } else if (jj_2_1730(2)) { + } else if (jj_2_1754(2)) { jj_consume_token(EACH); - } else if (jj_2_1731(2)) { + } else if (jj_2_1755(2)) { jj_consume_token(END); - } else if (jj_2_1732(2)) { + } else if (jj_2_1756(2)) { jj_consume_token(END_PARTITION); - } else if (jj_2_1733(2)) { + } else if (jj_2_1757(2)) { jj_consume_token(EVERY); - } else if (jj_2_1734(2)) { + } else if (jj_2_1758(2)) { jj_consume_token(EXP); - } else if (jj_2_1735(2)) { + } else if (jj_2_1759(2)) { jj_consume_token(EXTRACT); - } else if (jj_2_1736(2)) { + } else if (jj_2_1760(2)) { jj_consume_token(FLOAT); - } else if (jj_2_1737(2)) { + } else if (jj_2_1761(2)) { jj_consume_token(FRAME_ROW); - } else if (jj_2_1738(2)) { + } else if (jj_2_1762(2)) { jj_consume_token(FUSION); - } else if (jj_2_1739(2)) { + } else if (jj_2_1763(2)) { jj_consume_token(GRANT); - } else if (jj_2_1740(2)) { + } else if (jj_2_1764(2)) { jj_consume_token(HOLD); - } else if (jj_2_1741(2)) { + } else if (jj_2_1765(2)) { jj_consume_token(IMPORT); - } else if (jj_2_1742(2)) { + } else if (jj_2_1766(2)) { jj_consume_token(INOUT); - } else if (jj_2_1743(2)) { + } else if (jj_2_1767(2)) { jj_consume_token(INTEGER); - } else if (jj_2_1744(2)) { + } else if (jj_2_1768(2)) { jj_consume_token(JSON_ARRAYAGG); - } else if (jj_2_1745(2)) { + } else if (jj_2_1769(2)) { jj_consume_token(JSON_OBJECTAGG); - } else if (jj_2_1746(2)) { + } else if (jj_2_1770(2)) { jj_consume_token(JSON_VALUE); - } else if (jj_2_1747(2)) { + } else if (jj_2_1771(2)) { jj_consume_token(LARGE); - } else if (jj_2_1748(2)) { + } else if (jj_2_1772(2)) { jj_consume_token(LEAD); - } else if (jj_2_1749(2)) { + } else if (jj_2_1773(2)) { jj_consume_token(LOCAL); - } else if (jj_2_1750(2)) { + } else if (jj_2_1774(2)) { jj_consume_token(MATCHES); - } else if (jj_2_1751(2)) { + } else if (jj_2_1775(2)) { jj_consume_token(MATCH_RECOGNIZE); - } else if (jj_2_1752(2)) { + } else if (jj_2_1776(2)) { jj_consume_token(MEASURES); - } else if (jj_2_1753(2)) { + } else if (jj_2_1777(2)) { jj_consume_token(MIN); - } else if (jj_2_1754(2)) { + } else if (jj_2_1778(2)) { jj_consume_token(MODIFIES); - } else if (jj_2_1755(2)) { + } else if (jj_2_1779(2)) { jj_consume_token(MULTISET); - } else if (jj_2_1756(2)) { + } else if (jj_2_1780(2)) { jj_consume_token(NCLOB); - } else if (jj_2_1757(2)) { + } else if (jj_2_1781(2)) { jj_consume_token(NO); - } else if (jj_2_1758(2)) { + } else if (jj_2_1782(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_1759(2)) { + } else if (jj_2_1783(2)) { jj_consume_token(NUMERIC); - } else if (jj_2_1760(2)) { + } else if (jj_2_1784(2)) { jj_consume_token(OF); - } else if (jj_2_1761(2)) { + } else if (jj_2_1785(2)) { jj_consume_token(ONE); - } else if (jj_2_1762(2)) { + } else if (jj_2_1786(2)) { jj_consume_token(ORDINAL); - } else if (jj_2_1763(2)) { + } else if (jj_2_1787(2)) { jj_consume_token(OVERLAPS); - } else if (jj_2_1764(2)) { + } else if (jj_2_1788(2)) { jj_consume_token(PATTERN); - } else if (jj_2_1765(2)) { + } else if (jj_2_1789(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_1766(2)) { + } else if (jj_2_1790(2)) { jj_consume_token(PERIOD); - } else if (jj_2_1767(2)) { + } else if (jj_2_1791(2)) { jj_consume_token(POSITION); - } else if (jj_2_1768(2)) { + } else if (jj_2_1792(2)) { jj_consume_token(PRECEDES); - } else if (jj_2_1769(2)) { + } else if (jj_2_1793(2)) { jj_consume_token(PREV); - } else if (jj_2_1770(2)) { + } else if (jj_2_1794(2)) { jj_consume_token(RANGE); - } else if (jj_2_1771(2)) { + } else if (jj_2_1795(2)) { jj_consume_token(REAL); - } else if (jj_2_1772(2)) { + } else if (jj_2_1796(2)) { jj_consume_token(REFERENCES); - } else if (jj_2_1773(2)) { + } else if (jj_2_1797(2)) { jj_consume_token(REGR_AVGY); - } else if (jj_2_1774(2)) { + } else if (jj_2_1798(2)) { jj_consume_token(REGR_R2); - } else if (jj_2_1775(2)) { + } else if (jj_2_1799(2)) { jj_consume_token(REGR_SXY); - } else if (jj_2_1776(2)) { + } else if (jj_2_1800(2)) { jj_consume_token(RESET); - } else if (jj_2_1777(2)) { + } else if (jj_2_1801(2)) { jj_consume_token(RETURNS); - } else if (jj_2_1778(2)) { + } else if (jj_2_1802(2)) { jj_consume_token(ROLLUP); - } else if (jj_2_1779(2)) { + } else if (jj_2_1803(2)) { jj_consume_token(RUNNING); - } else if (jj_2_1780(2)) { + } else if (jj_2_1804(2)) { jj_consume_token(SAFE_ORDINAL); - } else if (jj_2_1781(2)) { + } else if (jj_2_1805(2)) { jj_consume_token(SCROLL); - } else if (jj_2_1782(2)) { + } else if (jj_2_1806(2)) { jj_consume_token(SEEK); - } else if (jj_2_1783(2)) { + } else if (jj_2_1807(2)) { jj_consume_token(SHOW); - } else if (jj_2_1784(2)) { + } else if (jj_2_1808(2)) { jj_consume_token(SMALLINT); - } else if (jj_2_1785(2)) { + } else if (jj_2_1809(2)) { jj_consume_token(SQL); - } else if (jj_2_1786(2)) { + } else if (jj_2_1810(2)) { jj_consume_token(SQLWARNING); - } else if (jj_2_1787(2)) { + } else if (jj_2_1811(2)) { jj_consume_token(STATIC); - } else if (jj_2_1788(2)) { + } else if (jj_2_1812(2)) { jj_consume_token(STREAM); - } else if (jj_2_1789(2)) { + } else if (jj_2_1813(2)) { jj_consume_token(SUBSTRING); - } else if (jj_2_1790(2)) { + } else if (jj_2_1814(2)) { jj_consume_token(SUM); - } else if (jj_2_1791(2)) { + } else if (jj_2_1815(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_1792(2)) { + } else if (jj_2_1816(2)) { jj_consume_token(TIMESTAMP); - } else if (jj_2_1793(2)) { + } else if (jj_2_1817(2)) { jj_consume_token(TINYINT); - } else if (jj_2_1794(2)) { + } else if (jj_2_1818(2)) { jj_consume_token(TRANSLATION); - } else if (jj_2_1795(2)) { + } else if (jj_2_1819(2)) { jj_consume_token(TRIM); - } else if (jj_2_1796(2)) { + } else if (jj_2_1820(2)) { jj_consume_token(TRY_CAST); - } else if (jj_2_1797(2)) { + } else if (jj_2_1821(2)) { jj_consume_token(UNKNOWN); - } else if (jj_2_1798(2)) { - jj_consume_token(UUID); - } else if (jj_2_1799(2)) { - jj_consume_token(VARBINARY); - } else if (jj_2_1800(2)) { - jj_consume_token(VARYING); - } else if (jj_2_1801(2)) { - jj_consume_token(VERSIONING); - } else if (jj_2_1802(2)) { - jj_consume_token(WINDOW); - } else if (jj_2_1803(2)) { - jj_consume_token(YEAR); - } else if (jj_2_1804(2)) { - jj_consume_token(WEDNESDAY); - } else if (jj_2_1805(2)) { - jj_consume_token(SATURDAY); + } else if (jj_2_1822(2)) { + jj_consume_token(UPSERT); + } else if (jj_2_1823(2)) { + jj_consume_token(VALUE_OF); + } else if (jj_2_1824(2)) { + jj_consume_token(VARCHAR); + } else if (jj_2_1825(2)) { + jj_consume_token(VAR_SAMP); + } else if (jj_2_1826(2)) { + jj_consume_token(WIDTH_BUCKET); + } else if (jj_2_1827(2)) { + jj_consume_token(WITHOUT); + } else if (jj_2_1828(2)) { + jj_consume_token(TUESDAY); + } else if (jj_2_1829(2)) { + jj_consume_token(FRIDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -24191,760 +24427,590 @@ final private boolean jj_2_1805(int xla) { finally { jj_save(1804, xla); } } - final private boolean jj_3_642() { - if (jj_scan_token(HOUR)) return true; - return false; + final private boolean jj_2_1806(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1806(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1805, xla); } } - final private boolean jj_3_641() { - if (jj_scan_token(MINUTE)) return true; - return false; + final private boolean jj_2_1807(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1807(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1806, xla); } } - final private boolean jj_3_264() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(ORDINALITY)) return true; - return false; + final private boolean jj_2_1808(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1808(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1807, xla); } } - final private boolean jj_3_640() { - if (jj_scan_token(SECOND)) return true; - return false; + final private boolean jj_2_1809(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1809(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1808, xla); } } - final private boolean jj_3_639() { - if (jj_scan_token(MILLISECOND)) return true; - return false; + final private boolean jj_2_1810(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1810(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1809, xla); } } - final private boolean jj_3_638() { - if (jj_scan_token(MICROSECOND)) return true; - return false; + final private boolean jj_2_1811(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1811(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1810, xla); } } - final private boolean jj_3R_270() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_637()) { - jj_scanpos = xsp; - if (jj_3_638()) { - jj_scanpos = xsp; - if (jj_3_639()) { - jj_scanpos = xsp; - if (jj_3_640()) { - jj_scanpos = xsp; - if (jj_3_641()) { - jj_scanpos = xsp; - if (jj_3_642()) { - jj_scanpos = xsp; - if (jj_3_643()) { - jj_scanpos = xsp; - if (jj_3_644()) { - jj_scanpos = xsp; - if (jj_3_645()) { - jj_scanpos = xsp; - if (jj_3_646()) { - jj_scanpos = xsp; - if (jj_3_647()) { - jj_scanpos = xsp; - if (jj_3_648()) { - jj_scanpos = xsp; - if (jj_3_649()) { - jj_scanpos = xsp; - if (jj_3_650()) { - jj_scanpos = xsp; - if (jj_3_651()) { - jj_scanpos = xsp; - if (jj_3_652()) { - jj_scanpos = xsp; - if (jj_3_653()) { - jj_scanpos = xsp; - if (jj_3_654()) { - jj_scanpos = xsp; - if (jj_3_655()) { - jj_scanpos = xsp; - if (jj_3_656()) { - jj_scanpos = xsp; - if (jj_3_657()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - return false; + final private boolean jj_2_1812(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1812(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1811, xla); } } - final private boolean jj_3_637() { - if (jj_scan_token(NANOSECOND)) return true; - return false; + final private boolean jj_2_1813(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1813(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1812, xla); } } - final private boolean jj_3_263() { - if (jj_scan_token(LATERAL)) return true; - return false; + final private boolean jj_2_1814(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1814(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1813, xla); } } - final private boolean jj_3_262() { - if (jj_3R_168()) return true; - return false; + final private boolean jj_2_1815(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1815(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1814, xla); } } - final private boolean jj_3_268() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_263()) jj_scanpos = xsp; - if (jj_scan_token(UNNEST)) return true; - if (jj_3R_173()) return true; - return false; + final private boolean jj_2_1816(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1816(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1815, xla); } } - final private boolean jj_3_259() { - if (jj_3R_168()) return true; - return false; + final private boolean jj_2_1817(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1817(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1816, xla); } } - final private boolean jj_3_261() { - if (jj_scan_token(LATERAL)) return true; - return false; + final private boolean jj_2_1818(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1818(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1817, xla); } } - final private boolean jj_3_258() { - if (jj_3R_167()) return true; - return false; + final private boolean jj_2_1819(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1819(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1818, xla); } } - final private boolean jj_3_257() { - if (jj_3R_158()) return true; - return false; + final private boolean jj_2_1820(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1820(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1819, xla); } } - final private boolean jj_3_267() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_261()) jj_scanpos = xsp; - if (jj_3R_172()) return true; - return false; + final private boolean jj_2_1821(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1821(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1820, xla); } } - final private boolean jj_3_256() { - if (jj_3R_157()) return true; - return false; + final private boolean jj_2_1822(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1822(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1821, xla); } } - final private boolean jj_3R_171() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_256()) { - jj_scanpos = xsp; - if (jj_3R_372()) return true; - } - xsp = jj_scanpos; - if (jj_3_257()) jj_scanpos = xsp; - if (jj_3R_373()) return true; - xsp = jj_scanpos; - if (jj_3_258()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_259()) jj_scanpos = xsp; - return false; + final private boolean jj_2_1823(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1823(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1822, xla); } } - final private boolean jj_3_260() { - if (jj_3R_169()) return true; - return false; + final private boolean jj_2_1824(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1824(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1823, xla); } } - final private boolean jj_3_635() { - if (jj_3R_84()) return true; - return false; + final private boolean jj_2_1825(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1825(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1824, xla); } } - final private boolean jj_3R_332() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_634()) { - jj_scanpos = xsp; - if (jj_3_635()) return true; - } - return false; + final private boolean jj_2_1826(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1826(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1825, xla); } } - final private boolean jj_3_634() { - if (jj_3R_270()) return true; - return false; + final private boolean jj_2_1827(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1827(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1826, xla); } } - final private boolean jj_3_266() { - if (jj_3R_170()) return true; + final private boolean jj_2_1828(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1828(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1827, xla); } + } + + final private boolean jj_2_1829(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1829(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1828, xla); } + } + + final private boolean jj_3R_262() { Token xsp; xsp = jj_scanpos; - if (jj_3_260()) { + if (jj_3_615()) { jj_scanpos = xsp; - if (jj_3R_171()) return true; + if (jj_3_616()) return true; } return false; } - final private boolean jj_3R_345() { + final private boolean jj_3_615() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3R_349() { Token xsp; xsp = jj_scanpos; - if (jj_3_266()) { - jj_scanpos = xsp; - if (jj_3_267()) { - jj_scanpos = xsp; if (jj_3_268()) { jj_scanpos = xsp; if (jj_3_269()) { jj_scanpos = xsp; - if (jj_3_270()) return true; + if (jj_3_270()) { + jj_scanpos = xsp; + if (jj_3_271()) { + jj_scanpos = xsp; + if (jj_3_272()) return true; } } } } xsp = jj_scanpos; - if (jj_3_271()) jj_scanpos = xsp; + if (jj_3_273()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_272()) jj_scanpos = xsp; + if (jj_3_274()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_275()) jj_scanpos = xsp; + if (jj_3_277()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_276()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_630() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_260()) return true; - return false; - } - - final private boolean jj_3_631() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3_278()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_69() { - if (jj_3R_345()) return true; + final private boolean jj_3_614() { + if (jj_scan_token(MINUTES)) return true; return false; } - final private boolean jj_3_633() { - if (jj_3R_258()) return true; + final private boolean jj_3R_261() { Token xsp; xsp = jj_scanpos; - if (jj_3_631()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_629() { - if (jj_3R_257()) return true; - return false; - } - - final private boolean jj_3_628() { - if (jj_3R_256()) return true; - return false; - } - - final private boolean jj_3_627() { - if (jj_3R_265()) return true; + if (jj_3_613()) { + jj_scanpos = xsp; + if (jj_3_614()) return true; + } return false; } - final private boolean jj_3_626() { - if (jj_3R_264()) return true; + final private boolean jj_3_613() { + if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_625() { - if (jj_3R_255()) return true; + final private boolean jj_3_612() { + if (jj_scan_token(HOURS)) return true; return false; } - final private boolean jj_3_624() { - if (jj_3R_263()) return true; + final private boolean jj_3R_260() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_611()) { + jj_scanpos = xsp; + if (jj_3_612()) return true; + } return false; } - final private boolean jj_3_623() { - if (jj_3R_261()) return true; + final private boolean jj_3_611() { + if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_632() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_623()) { - jj_scanpos = xsp; - if (jj_3_624()) { - jj_scanpos = xsp; - if (jj_3_625()) { - jj_scanpos = xsp; - if (jj_3_626()) { - jj_scanpos = xsp; - if (jj_3_627()) { - jj_scanpos = xsp; - if (jj_3_628()) { - jj_scanpos = xsp; - if (jj_3_629()) return true; - } - } - } - } - } - } - if (jj_3R_259()) return true; + final private boolean jj_3_610() { + if (jj_scan_token(DAYS)) return true; return false; } - final private boolean jj_3R_254() { + final private boolean jj_3R_269() { Token xsp; xsp = jj_scanpos; - if (jj_3_632()) { + if (jj_3_609()) { jj_scanpos = xsp; - if (jj_3_633()) return true; + if (jj_3_610()) return true; } return false; } - final private boolean jj_3R_269() { + final private boolean jj_3_609() { + if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_613() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_260()) return true; + final private boolean jj_3R_70() { + if (jj_3R_349()) return true; return false; } - final private boolean jj_3_255() { - if (jj_scan_token(OUTER)) return true; - if (jj_scan_token(APPLY)) return true; + final private boolean jj_3_608() { + if (jj_scan_token(WEEKS)) return true; return false; } - final private boolean jj_3_614() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + final private boolean jj_3R_268() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_607()) { + jj_scanpos = xsp; + if (jj_3_608()) return true; + } return false; } - final private boolean jj_3_611() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + final private boolean jj_3_607() { + if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3R_268() { + final private boolean jj_3_606() { + if (jj_scan_token(MONTHS)) return true; return false; } - final private boolean jj_3_622() { - if (jj_3R_258()) return true; + final private boolean jj_3R_259() { Token xsp; xsp = jj_scanpos; - if (jj_3_614()) { + if (jj_3_605()) { jj_scanpos = xsp; - if (jj_3R_269()) return true; + if (jj_3_606()) return true; } return false; } - final private boolean jj_3_612() { - if (jj_scan_token(TO)) return true; - if (jj_3R_258()) return true; + final private boolean jj_3_605() { + if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_607() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + final private boolean jj_3_604() { + if (jj_scan_token(QUARTERS)) return true; return false; } - final private boolean jj_3_609() { - if (jj_3R_258()) return true; + final private boolean jj_3R_267() { Token xsp; xsp = jj_scanpos; - if (jj_3_607()) jj_scanpos = xsp; + if (jj_3_603()) { + jj_scanpos = xsp; + if (jj_3_604()) return true; + } return false; } - final private boolean jj_3R_267() { + final private boolean jj_3_603() { + if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_254() { - if (jj_scan_token(CROSS)) return true; + final private boolean jj_3_257() { + if (jj_scan_token(OUTER)) return true; if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_608() { - if (jj_3R_257()) return true; + final private boolean jj_3_602() { + if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_621() { - if (jj_3R_257()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3R_265() { Token xsp; xsp = jj_scanpos; - if (jj_3_612()) { + if (jj_3_601()) { jj_scanpos = xsp; - if (jj_3R_268()) return true; + if (jj_3_602()) return true; } return false; } - final private boolean jj_3R_166() { + final private boolean jj_3_601() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_610() { - if (jj_scan_token(TO)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_608()) { - jj_scanpos = xsp; - if (jj_3_609()) return true; - } + final private boolean jj_3_598() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_605() { - if (jj_3R_258()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_597() { + if (jj_3R_200()) return true; return false; } - final private boolean jj_3R_266() { + final private boolean jj_3_256() { + if (jj_scan_token(CROSS)) return true; + if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_604() { - if (jj_3R_257()) return true; + final private boolean jj_3_596() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_620() { - if (jj_3R_256()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3R_167() { + return false; + } + + final private boolean jj_3_600() { Token xsp; xsp = jj_scanpos; - if (jj_3_610()) { + if (jj_3_596()) { jj_scanpos = xsp; - if (jj_3R_267()) return true; + if (jj_3_597()) { + jj_scanpos = xsp; + if (jj_3_598()) return true; + } } + if (jj_3R_258()) return true; return false; } - final private boolean jj_3_603() { - if (jj_3R_256()) return true; + final private boolean jj_3_599() { + if (jj_3R_251()) return true; + if (jj_3R_219()) return true; return false; } - final private boolean jj_3_252() { + final private boolean jj_3_254() { if (jj_scan_token(USING)) return true; - if (jj_3R_124()) return true; + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_606() { - if (jj_scan_token(TO)) return true; + final private boolean jj_3_594() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3_593() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3_595() { Token xsp; xsp = jj_scanpos; - if (jj_3_603()) { + if (jj_3_593()) { jj_scanpos = xsp; - if (jj_3_604()) { - jj_scanpos = xsp; - if (jj_3_605()) return true; - } + if (jj_3_594()) return true; } return false; } - final private boolean jj_3_619() { - if (jj_3R_265()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3R_250() { + if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_606()) { + if (jj_3_595()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_599()) { jj_scanpos = xsp; - if (jj_3R_266()) return true; + if (jj_3_600()) return true; } return false; } - final private boolean jj_3_618() { - if (jj_3R_264()) return true; - if (jj_3R_259()) return true; - return false; - } - - final private boolean jj_3_617() { - if (jj_3R_255()) return true; - if (jj_3R_259()) return true; - return false; - } - - final private boolean jj_3R_262() { + final private boolean jj_3_591() { + if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_602() { - if (jj_scan_token(TO)) return true; - if (jj_3R_255()) return true; + final private boolean jj_3_252() { + if (jj_scan_token(MATCH_CONDITION)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_616() { - if (jj_3R_263()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_590() { + if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_615() { - if (jj_3R_261()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_592() { Token xsp; xsp = jj_scanpos; - if (jj_3_602()) { + if (jj_3_590()) { jj_scanpos = xsp; - if (jj_3R_262()) return true; + if (jj_3_591()) return true; } return false; } - final private boolean jj_3R_215() { + final private boolean jj_3_253() { Token xsp; xsp = jj_scanpos; - if (jj_3_615()) { - jj_scanpos = xsp; - if (jj_3_616()) { - jj_scanpos = xsp; - if (jj_3_617()) { - jj_scanpos = xsp; - if (jj_3_618()) { - jj_scanpos = xsp; - if (jj_3_619()) { - jj_scanpos = xsp; - if (jj_3_620()) { - jj_scanpos = xsp; - if (jj_3_621()) { - jj_scanpos = xsp; - if (jj_3_622()) return true; - } - } - } - } - } - } - } - return false; - } - - final private boolean jj_3_250() { - if (jj_scan_token(MATCH_CONDITION)) return true; - if (jj_3R_81()) return true; + if (jj_3_252()) jj_scanpos = xsp; + if (jj_scan_token(ON)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_251() { + final private boolean jj_3R_195() { + if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_250()) jj_scanpos = xsp; - if (jj_scan_token(ON)) return true; - if (jj_3R_81()) return true; + if (jj_3_592()) jj_scanpos = xsp; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3R_66() { + final private boolean jj_3R_67() { Token xsp; xsp = jj_scanpos; - if (jj_3_253()) { + if (jj_3_255()) { jj_scanpos = xsp; - if (jj_3_254()) { + if (jj_3_256()) { jj_scanpos = xsp; - if (jj_3_255()) return true; + if (jj_3_257()) return true; } } return false; } - final private boolean jj_3_253() { - if (jj_3R_164()) return true; + final private boolean jj_3_255() { if (jj_3R_165()) return true; - if (jj_3R_69()) return true; + if (jj_3R_166()) return true; + if (jj_3R_70()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_251()) { + if (jj_3_253()) { jj_scanpos = xsp; - if (jj_3_252()) { + if (jj_3_254()) { jj_scanpos = xsp; - if (jj_3R_166()) return true; + if (jj_3R_167()) return true; } } return false; } - final private boolean jj_3_601() { - if (jj_scan_token(SECONDS)) return true; - return false; - } - - final private boolean jj_3R_258() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_600()) { - jj_scanpos = xsp; - if (jj_3_601()) return true; - } - return false; - } - - final private boolean jj_3_600() { - if (jj_scan_token(SECOND)) return true; + final private boolean jj_3R_232() { + if (jj_scan_token(PERIOD)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_599() { - if (jj_scan_token(MINUTES)) return true; + final private boolean jj_3_251() { + if (jj_3R_67()) return true; return false; } final private boolean jj_3R_257() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_598()) { - jj_scanpos = xsp; - if (jj_3_599()) return true; - } - return false; - } - - final private boolean jj_3_598() { - if (jj_scan_token(MINUTE)) return true; - return false; - } - - final private boolean jj_3_597() { - if (jj_scan_token(HOURS)) return true; - return false; - } - - final private boolean jj_3R_256() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_596()) { - jj_scanpos = xsp; - if (jj_3_597()) return true; - } - return false; - } - - final private boolean jj_3_596() { - if (jj_scan_token(HOUR)) return true; - return false; - } - - final private boolean jj_3_249() { - if (jj_3R_66()) return true; return false; } - final private boolean jj_3_595() { - if (jj_scan_token(DAYS)) return true; + final private boolean jj_3_587() { + if (jj_3R_238()) return true; return false; } - final private boolean jj_3R_265() { + final private boolean jj_3_589() { + if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_594()) { + if (jj_3_587()) { jj_scanpos = xsp; - if (jj_3_595()) return true; + if (jj_3R_257()) return true; } return false; } - final private boolean jj_3_594() { - if (jj_scan_token(DAY)) return true; - return false; - } - - final private boolean jj_3_248() { + final private boolean jj_3_250() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_69()) return true; - return false; - } - - final private boolean jj_3_593() { - if (jj_scan_token(WEEKS)) return true; - return false; - } - - final private boolean jj_3R_264() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_592()) { - jj_scanpos = xsp; - if (jj_3_593()) return true; - } + if (jj_3R_70()) return true; return false; } - final private boolean jj_3_592() { - if (jj_scan_token(WEEK)) return true; + final private boolean jj_3_586() { + if (jj_3R_174()) return true; return false; } - final private boolean jj_3_591() { - if (jj_scan_token(MONTHS)) return true; + final private boolean jj_3_585() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_255() { + final private boolean jj_3_588() { Token xsp; xsp = jj_scanpos; - if (jj_3_590()) { + if (jj_3_585()) { jj_scanpos = xsp; - if (jj_3_591()) return true; + if (jj_3_586()) return true; } return false; } - final private boolean jj_3_590() { - if (jj_scan_token(MONTH)) return true; - return false; - } - - final private boolean jj_3R_150() { - if (jj_3R_69()) return true; - return false; - } - - final private boolean jj_3_589() { - if (jj_scan_token(QUARTERS)) return true; + final private boolean jj_3R_151() { + if (jj_3R_70()) return true; return false; } - final private boolean jj_3R_263() { + final private boolean jj_3R_231() { + if (jj_scan_token(MAP)) return true; Token xsp; xsp = jj_scanpos; if (jj_3_588()) { @@ -24954,148 +25020,134 @@ final private boolean jj_3R_263() { return false; } - final private boolean jj_3_588() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3_239() { + if (jj_scan_token(ASOF)) return true; return false; } - final private boolean jj_3_237() { - if (jj_scan_token(ASOF)) return true; + final private boolean jj_3_242() { + if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_240() { + final private boolean jj_3_241() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_587() { - if (jj_scan_token(YEARS)) return true; + final private boolean jj_3R_409() { return false; } - final private boolean jj_3_239() { + final private boolean jj_3_238() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3R_261() { + final private boolean jj_3_240() { Token xsp; xsp = jj_scanpos; - if (jj_3_586()) { + if (jj_3_238()) { jj_scanpos = xsp; - if (jj_3_587()) return true; + if (jj_3_239()) return true; } return false; } - final private boolean jj_3_586() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_582() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_256()) return true; return false; } - final private boolean jj_3_236() { - if (jj_scan_token(OUTER)) return true; + final private boolean jj_3_249() { + if (jj_scan_token(CROSS)) return true; + if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_238() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_236()) { - jj_scanpos = xsp; - if (jj_3_237()) return true; - } + final private boolean jj_3_581() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_247() { - if (jj_scan_token(CROSS)) return true; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_584() { + if (jj_3R_256()) return true; return false; } - final private boolean jj_3_246() { + final private boolean jj_3_248() { if (jj_scan_token(FULL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_240()) jj_scanpos = xsp; + if (jj_3_242()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } final private boolean jj_3_583() { - if (jj_3R_152()) return true; + if (jj_3R_120()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_581()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_245() { + final private boolean jj_3_247() { if (jj_scan_token(RIGHT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_239()) jj_scanpos = xsp; + if (jj_3_241()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_582() { - if (jj_3R_198()) return true; - return false; - } - - final private boolean jj_3_244() { + final private boolean jj_3_246() { if (jj_scan_token(LEFT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_238()) jj_scanpos = xsp; + if (jj_3_240()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_243() { + final private boolean jj_3_245() { if (jj_scan_token(ASOF)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_581() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3R_256() { + if (jj_scan_token(LBRACE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_583()) { + jj_scanpos = xsp; + if (jj_3_584()) { + jj_scanpos = xsp; + if (jj_3R_409()) return true; + } + } return false; } - final private boolean jj_3_242() { + final private boolean jj_3_244() { if (jj_scan_token(INNER)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_241() { + final private boolean jj_3_243() { if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_585() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_581()) { - jj_scanpos = xsp; - if (jj_3_582()) { - jj_scanpos = xsp; - if (jj_3_583()) return true; - } - } - if (jj_3R_254()) return true; - return false; - } - - final private boolean jj_3R_165() { + final private boolean jj_3R_166() { Token xsp; xsp = jj_scanpos; - if (jj_3_241()) { - jj_scanpos = xsp; - if (jj_3_242()) { - jj_scanpos = xsp; if (jj_3_243()) { jj_scanpos = xsp; if (jj_3_244()) { @@ -25104,7 +25156,11 @@ final private boolean jj_3R_165() { jj_scanpos = xsp; if (jj_3_246()) { jj_scanpos = xsp; - if (jj_3_247()) return true; + if (jj_3_247()) { + jj_scanpos = xsp; + if (jj_3_248()) { + jj_scanpos = xsp; + if (jj_3_249()) return true; } } } @@ -25114,695 +25170,715 @@ final private boolean jj_3R_165() { return false; } - final private boolean jj_3_584() { - if (jj_3R_247()) return true; - if (jj_3R_215()) return true; - return false; - } - - final private boolean jj_3R_371() { - return false; - } - - final private boolean jj_3_579() { - if (jj_scan_token(PLUS)) return true; - return false; - } - - final private boolean jj_3R_164() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_235()) { - jj_scanpos = xsp; - if (jj_3R_371()) return true; - } + final private boolean jj_3R_255() { return false; } - final private boolean jj_3_235() { - if (jj_scan_token(NATURAL)) return true; + final private boolean jj_3_578() { + if (jj_3R_238()) return true; return false; } - final private boolean jj_3_578() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3R_375() { return false; } final private boolean jj_3_580() { + if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; if (jj_3_578()) { jj_scanpos = xsp; - if (jj_3_579()) return true; + if (jj_3R_255()) return true; } return false; } - final private boolean jj_3R_246() { - if (jj_scan_token(INTERVAL)) return true; + final private boolean jj_3R_165() { Token xsp; xsp = jj_scanpos; - if (jj_3_580()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_584()) { + if (jj_3_237()) { jj_scanpos = xsp; - if (jj_3_585()) return true; + if (jj_3R_375()) return true; } return false; } - final private boolean jj_3_234() { - if (jj_3R_81()) return true; + final private boolean jj_3_237() { + if (jj_scan_token(NATURAL)) return true; return false; } - final private boolean jj_3R_365() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_233()) { - jj_scanpos = xsp; - if (jj_3_234()) return true; - } + final private boolean jj_3_1156() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_233() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1155() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3R_163() { - if (jj_3R_370()) return true; + final private boolean jj_3_577() { + if (jj_3R_174()) return true; return false; } - final private boolean jj_3_576() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3_1154() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_231() { - if (jj_3R_84()) return true; + final private boolean jj_3_236() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_575() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_1153() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_577() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_575()) { - jj_scanpos = xsp; - if (jj_3_576()) return true; - } + final private boolean jj_3_1161() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_317()) return true; return false; } - final private boolean jj_3_229() { - if (jj_scan_token(MEASURE)) return true; + final private boolean jj_3_1152() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3R_193() { - if (jj_scan_token(INTERVAL)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_577()) jj_scanpos = xsp; - if (jj_3R_247()) return true; + final private boolean jj_3_576() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_230() { - if (jj_scan_token(AS)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_229()) jj_scanpos = xsp; + final private boolean jj_3_1151() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_232() { + final private boolean jj_3R_369() { Token xsp; xsp = jj_scanpos; - if (jj_3_230()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_231()) { + if (jj_3_235()) { jj_scanpos = xsp; - if (jj_3R_163()) return true; + if (jj_3_236()) return true; } return false; } - final private boolean jj_3R_144() { - if (jj_3R_365()) return true; - return false; - } - - final private boolean jj_3R_228() { - if (jj_scan_token(PERIOD)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_235() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_253() { + final private boolean jj_3_1150() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_228() { - if (jj_scan_token(VALUES)) return true; - if (jj_3R_162()) return true; + final private boolean jj_3_1149() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_572() { - if (jj_3R_234()) return true; + final private boolean jj_3_1148() { + if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_227() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(VALUES)) return true; + final private boolean jj_3_1147() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_574() { - if (jj_scan_token(LBRACKET)) return true; + final private boolean jj_3_579() { Token xsp; xsp = jj_scanpos; - if (jj_3_572()) { + if (jj_3_576()) { jj_scanpos = xsp; - if (jj_3R_253()) return true; + if (jj_3_577()) return true; } return false; } - final private boolean jj_3_226() { - if (jj_3R_124()) return true; + final private boolean jj_3_1146() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_571() { - if (jj_3R_173()) return true; + final private boolean jj_3R_164() { + if (jj_3R_374()) return true; return false; } - final private boolean jj_3R_160() { - if (jj_scan_token(WHEN)) return true; - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_1159() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1147()) { + jj_scanpos = xsp; + if (jj_3_1148()) { + jj_scanpos = xsp; + if (jj_3_1149()) { + jj_scanpos = xsp; + if (jj_3_1150()) { + jj_scanpos = xsp; + if (jj_3_1151()) { + jj_scanpos = xsp; + if (jj_3_1152()) { + jj_scanpos = xsp; + if (jj_3_1153()) { + jj_scanpos = xsp; + if (jj_3_1154()) { + jj_scanpos = xsp; + if (jj_3_1155()) { + jj_scanpos = xsp; + if (jj_3_1156()) return true; + } + } + } + } + } + } + } + } + } return false; } - final private boolean jj_3_570() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1145() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_573() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_570()) { - jj_scanpos = xsp; - if (jj_3_571()) return true; - } + final private boolean jj_3_1144() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3R_227() { - if (jj_scan_token(MAP)) return true; + final private boolean jj_3R_230() { + if (jj_scan_token(ARRAY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_573()) { + if (jj_3_579()) { jj_scanpos = xsp; - if (jj_3_574()) return true; + if (jj_3_580()) return true; } return false; } - final private boolean jj_3_225() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_152()) return true; - return false; - } - - final private boolean jj_3R_397() { + final private boolean jj_3_1143() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_567() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_252()) return true; + final private boolean jj_3_1142() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_569() { - if (jj_3R_252()) return true; + final private boolean jj_3_233() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_566() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_119()) return true; + final private boolean jj_3_1141() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3R_161() { - if (jj_scan_token(WHEN)) return true; - if (jj_scan_token(MATCHED)) return true; + final private boolean jj_3_1140() { + if (jj_scan_token(A)) return true; + if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3_568() { - if (jj_3R_119()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_566()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1139() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3R_252() { - if (jj_scan_token(LBRACE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_568()) { - jj_scanpos = xsp; - if (jj_3_569()) { - jj_scanpos = xsp; - if (jj_3R_397()) return true; - } - } + final private boolean jj_3_1138() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_222() { - if (jj_3R_160()) return true; + final private boolean jj_3_1137() { + if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_224() { - if (jj_3R_160()) return true; + final private boolean jj_3_231() { + if (jj_scan_token(MEASURE)) return true; return false; } - final private boolean jj_3R_251() { + final private boolean jj_3_1136() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_563() { - if (jj_3R_234()) return true; + final private boolean jj_3_232() { + if (jj_scan_token(AS)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_231()) jj_scanpos = xsp; return false; } - final private boolean jj_3_223() { - if (jj_3R_161()) return true; + final private boolean jj_3_573() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_220() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1158() { + if (jj_scan_token(NOT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1136()) { + jj_scanpos = xsp; + if (jj_3_1137()) { + jj_scanpos = xsp; + if (jj_3_1138()) { + jj_scanpos = xsp; + if (jj_3_1139()) { + jj_scanpos = xsp; + if (jj_3_1140()) { + jj_scanpos = xsp; + if (jj_3_1141()) { + jj_scanpos = xsp; + if (jj_3_1142()) { + jj_scanpos = xsp; + if (jj_3_1143()) { + jj_scanpos = xsp; + if (jj_3_1144()) { + jj_scanpos = xsp; + if (jj_3_1145()) { + jj_scanpos = xsp; + if (jj_3_1146()) return true; + } + } + } + } + } + } + } + } + } + } return false; } - final private boolean jj_3_565() { - if (jj_scan_token(LBRACKET)) return true; + final private boolean jj_3_234() { Token xsp; xsp = jj_scanpos; - if (jj_3_563()) { + if (jj_3_232()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_233()) { jj_scanpos = xsp; - if (jj_3R_251()) return true; + if (jj_3R_164()) return true; } return false; } - final private boolean jj_3_221() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_220()) jj_scanpos = xsp; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_219() { - if (jj_3R_158()) return true; - return false; - } - - final private boolean jj_3_218() { - if (jj_3R_157()) return true; + final private boolean jj_3_1157() { + if (jj_scan_token(A)) return true; + if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3R_116() { - if (jj_scan_token(MERGE)) return true; - if (jj_scan_token(INTO)) return true; + final private boolean jj_3_575() { + if (jj_scan_token(LBRACKET)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_562() { - if (jj_3R_173()) return true; + final private boolean jj_3_572() { + if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_561() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3R_145() { + if (jj_3R_369()) return true; return false; } - final private boolean jj_3_564() { + final private boolean jj_3R_218() { Token xsp; xsp = jj_scanpos; - if (jj_3_561()) { + if (jj_3_1160()) { jj_scanpos = xsp; - if (jj_3_562()) return true; + if (jj_3_1161()) return true; } return false; } - final private boolean jj_3R_226() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_1160() { + if (jj_scan_token(IS)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_564()) { + if (jj_3_1157()) { + jj_scanpos = xsp; + if (jj_3_1158()) { jj_scanpos = xsp; - if (jj_3_565()) return true; + if (jj_3_1159()) return true; + } } return false; } - final private boolean jj_3_217() { - if (jj_3R_145()) return true; + final private boolean jj_3_574() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_254()) return true; return false; } - final private boolean jj_3_216() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_558() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_214() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1135() { + if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_558() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1134() { + if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3_215() { + final private boolean jj_3R_229() { + if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_214()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_574()) { + jj_scanpos = xsp; + if (jj_3_575()) return true; + } return false; } - final private boolean jj_3_213() { - if (jj_3R_158()) return true; + final private boolean jj_3_571() { + if (jj_scan_token(DATETIME)) return true; return false; } - final private boolean jj_3_212() { - if (jj_3R_157()) return true; + final private boolean jj_3_1133() { + if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_560() { - if (jj_scan_token(LBRACKET)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1132() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3R_426() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1131()) { + jj_scanpos = xsp; + if (jj_3_1132()) { + jj_scanpos = xsp; + if (jj_3_1133()) { + jj_scanpos = xsp; + if (jj_3_1134()) { + jj_scanpos = xsp; + if (jj_3_1135()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_1131() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3_230() { + if (jj_scan_token(VALUES)) return true; + if (jj_3R_163()) return true; return false; } final private boolean jj_3_557() { - if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3R_115() { - if (jj_scan_token(UPDATE)) return true; - if (jj_3R_170()) return true; + final private boolean jj_3_570() { + if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_559() { + final private boolean jj_3_229() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_250()) return true; + if (jj_scan_token(VALUES)) return true; return false; } - final private boolean jj_3_1133() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3_1130() { + if (jj_3R_344()) return true; return false; } - final private boolean jj_3_543() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1129() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_1132() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(SCALAR)) return true; + final private boolean jj_3_1128() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_1131() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_1127() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3R_225() { - if (jj_scan_token(MULTISET)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_559()) { - jj_scanpos = xsp; - if (jj_3_560()) return true; - } + final private boolean jj_3_228() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_556() { - if (jj_scan_token(DATETIME)) return true; + final private boolean jj_3_1126() { + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_1130() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_1125() { + if (jj_scan_token(AMPERSAND)) return true; return false; } - final private boolean jj_3_1129() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1124() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_1138() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_313()) return true; + final private boolean jj_3_569() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1128() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_1123() { + if (jj_scan_token(CARET)) return true; return false; } - final private boolean jj_3_1127() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3R_297() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_569()) { + jj_scanpos = xsp; + if (jj_3_570()) { + jj_scanpos = xsp; + if (jj_3_571()) { + jj_scanpos = xsp; + if (jj_3_572()) return true; + } + } + } + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_1126() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_1122() { + if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3_1125() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_1121() { + if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_1124() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1120() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_542() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1119() { + if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_555() { - if (jj_scan_token(TIME)) return true; + final private boolean jj_3_1118() { + if (jj_scan_token(MEMBER)) return true; + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1123() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3_1117() { + if (jj_scan_token(IS)) return true; + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_209() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1116() { + if (jj_scan_token(IS)) return true; + if (jj_scan_token(DISTINCT)) return true; + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_1122() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(SCALAR)) return true; + final private boolean jj_3R_161() { + if (jj_scan_token(WHEN)) return true; + if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_1136() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1124()) { - jj_scanpos = xsp; - if (jj_3_1125()) { - jj_scanpos = xsp; - if (jj_3_1126()) { - jj_scanpos = xsp; - if (jj_3_1127()) { - jj_scanpos = xsp; - if (jj_3_1128()) { - jj_scanpos = xsp; - if (jj_3_1129()) { - jj_scanpos = xsp; - if (jj_3_1130()) { - jj_scanpos = xsp; - if (jj_3_1131()) { - jj_scanpos = xsp; - if (jj_3_1132()) { - jj_scanpos = xsp; - if (jj_3_1133()) return true; - } - } - } - } - } - } - } - } - } + final private boolean jj_3_1115() { + if (jj_scan_token(OR)) return true; return false; } - final private boolean jj_3_211() { - if (jj_3R_145()) return true; + final private boolean jj_3_1114() { + if (jj_scan_token(AND)) return true; return false; } - final private boolean jj_3_1121() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_1113() { + if (jj_scan_token(CONCAT)) return true; return false; } - final private boolean jj_3_210() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_209()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3_1112() { + if (jj_scan_token(PERCENT_REMAINDER)) return true; return false; } - final private boolean jj_3_1120() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_1111() { + if (jj_scan_token(SLASH)) return true; return false; } - final private boolean jj_3_208() { - if (jj_3R_158()) return true; + final private boolean jj_3_568() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_1119() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1110() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_207() { - if (jj_3R_157()) return true; + final private boolean jj_3_1109() { + if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_1118() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_1108() { + if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_1117() { - if (jj_scan_token(A)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_567() { + if (jj_scan_token(TIME)) return true; + if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_1116() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_227() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_554() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_1107() { + if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3_1115() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_1106() { + if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3R_293() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_554()) { - jj_scanpos = xsp; - if (jj_3_555()) { - jj_scanpos = xsp; - if (jj_3_556()) { - jj_scanpos = xsp; - if (jj_3_557()) return true; - } - } - } - if (jj_3R_220()) return true; + final private boolean jj_3_566() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3_1114() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_1105() { + if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_1113() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1104() { + if (jj_scan_token(LE)) return true; return false; } - final private boolean jj_3R_114() { - if (jj_scan_token(DELETE)) return true; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_1103() { + if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3_1135() { - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_1102() { + if (jj_scan_token(GT)) return true; + return false; + } + + final private boolean jj_3_1101() { + if (jj_scan_token(LEFTSHIFT)) return true; + return false; + } + + final private boolean jj_3R_217() { Token xsp; xsp = jj_scanpos; + if (jj_3_1100()) { + jj_scanpos = xsp; + if (jj_3_1101()) { + jj_scanpos = xsp; + if (jj_3_1102()) { + jj_scanpos = xsp; + if (jj_3_1103()) { + jj_scanpos = xsp; + if (jj_3_1104()) { + jj_scanpos = xsp; + if (jj_3_1105()) { + jj_scanpos = xsp; + if (jj_3_1106()) { + jj_scanpos = xsp; + if (jj_3_1107()) { + jj_scanpos = xsp; + if (jj_3_1108()) { + jj_scanpos = xsp; + if (jj_3_1109()) { + jj_scanpos = xsp; + if (jj_3_1110()) { + jj_scanpos = xsp; + if (jj_3_1111()) { + jj_scanpos = xsp; + if (jj_3_1112()) { + jj_scanpos = xsp; if (jj_3_1113()) { jj_scanpos = xsp; if (jj_3_1114()) { @@ -25823,7 +25899,41 @@ final private boolean jj_3_1135() { jj_scanpos = xsp; if (jj_3_1122()) { jj_scanpos = xsp; - if (jj_3_1123()) return true; + if (jj_3_1123()) { + jj_scanpos = xsp; + if (jj_3_1124()) { + jj_scanpos = xsp; + if (jj_3_1125()) { + jj_scanpos = xsp; + if (jj_3_1126()) { + jj_scanpos = xsp; + if (jj_3_1127()) { + jj_scanpos = xsp; + if (jj_3_1128()) { + jj_scanpos = xsp; + if (jj_3_1129()) { + jj_scanpos = xsp; + if (jj_3_1130()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } } } } @@ -25837,307 +25947,217 @@ final private boolean jj_3_1135() { return false; } - final private boolean jj_3_1134() { - if (jj_scan_token(A)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_565() { + if (jj_scan_token(UUID)) return true; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3R_214() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1137()) { - jj_scanpos = xsp; - if (jj_3_1138()) return true; - } + final private boolean jj_3_1100() { + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_1137() { - if (jj_scan_token(IS)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1134()) { - jj_scanpos = xsp; - if (jj_3_1135()) { - jj_scanpos = xsp; - if (jj_3_1136()) return true; - } - } + final private boolean jj_3R_162() { + if (jj_scan_token(WHEN)) return true; + if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_553() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_scan_token(WITH)) return true; + final private boolean jj_3_564() { + if (jj_scan_token(TIME)) return true; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3_552() { - if (jj_scan_token(TIME)) return true; - if (jj_scan_token(WITH)) return true; + final private boolean jj_3_1095() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1112() { - if (jj_scan_token(UNIQUE)) return true; + final private boolean jj_3_1094() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1111() { - if (jj_scan_token(EXISTS)) return true; + final private boolean jj_3_1096() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1094()) { + jj_scanpos = xsp; + if (jj_3_1095()) return true; + } return false; } - final private boolean jj_3_1110() { - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_563() { + if (jj_scan_token(DATETIME)) return true; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3_551() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_247()) return true; + final private boolean jj_3_562() { + if (jj_scan_token(DATE)) return true; + if (jj_3R_251()) return true; return false; } - final private boolean jj_3_1109() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_1092() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3R_414() { + final private boolean jj_3_1099() { + if (jj_scan_token(EXCEPT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1108()) { - jj_scanpos = xsp; - if (jj_3_1109()) { - jj_scanpos = xsp; - if (jj_3_1110()) { - jj_scanpos = xsp; - if (jj_3_1111()) { - jj_scanpos = xsp; - if (jj_3_1112()) return true; - } - } - } - } + if (jj_3_1096()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1108() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3_1091() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_550() { - if (jj_scan_token(UUID)) return true; - if (jj_3R_247()) return true; + final private boolean jj_3_1093() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1091()) { + jj_scanpos = xsp; + if (jj_3_1092()) return true; + } return false; } - final private boolean jj_3_206() { - if (jj_3R_159()) return true; + final private boolean jj_3_224() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_549() { - if (jj_scan_token(TIME)) return true; - if (jj_3R_247()) return true; - return false; - } - - final private boolean jj_3_1107() { - if (jj_3R_340()) return true; - return false; - } - - final private boolean jj_3_1106() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(SUCCEEDS)) return true; - return false; - } - - final private boolean jj_3_1105() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(PRECEDES)) return true; - return false; - } - - final private boolean jj_3_1104() { - if (jj_scan_token(SUCCEEDS)) return true; - return false; - } - - final private boolean jj_3_205() { - if (jj_3R_158()) return true; - return false; - } - - final private boolean jj_3_548() { - if (jj_scan_token(DATETIME)) return true; - if (jj_3R_247()) return true; - return false; - } - - final private boolean jj_3_1103() { - if (jj_scan_token(PRECEDES)) return true; - return false; - } - - final private boolean jj_3_204() { - if (jj_3R_157()) return true; - return false; - } - - final private boolean jj_3_1102() { - if (jj_scan_token(EQUALS)) return true; - return false; - } - - final private boolean jj_3_1101() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3_226() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_1100() { - if (jj_scan_token(CONTAINS)) return true; + final private boolean jj_3_561() { + if (jj_scan_token(LBRACE_TS)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_547() { - if (jj_scan_token(DATE)) return true; - if (jj_3R_247()) return true; + final private boolean jj_3_225() { + if (jj_3R_162()) return true; return false; } - final private boolean jj_3_1099() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(SUBMULTISET)) return true; - if (jj_scan_token(OF)) return true; + final private boolean jj_3_1089() { + if (jj_scan_token(DISTINCT)) return true; return false; } final private boolean jj_3_1098() { - if (jj_scan_token(SUBMULTISET)) return true; - if (jj_scan_token(OF)) return true; + if (jj_scan_token(INTERSECT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1093()) jj_scanpos = xsp; return false; } - final private boolean jj_3_203() { - if (jj_scan_token(UPSERT)) return true; + final private boolean jj_3_1088() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1097() { - if (jj_scan_token(MEMBER)) return true; - if (jj_scan_token(OF)) return true; + final private boolean jj_3_1090() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1088()) { + jj_scanpos = xsp; + if (jj_3_1089()) return true; + } return false; } - final private boolean jj_3_1096() { - if (jj_scan_token(IS)) return true; - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_222() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_202() { - if (jj_scan_token(INSERT)) return true; + final private boolean jj_3_223() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_222()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1095() { - if (jj_scan_token(IS)) return true; - if (jj_scan_token(DISTINCT)) return true; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_560() { + if (jj_scan_token(LBRACE_T)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1094() { - if (jj_scan_token(OR)) return true; + final private boolean jj_3_221() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_1093() { - if (jj_scan_token(AND)) return true; + final private boolean jj_3_1097() { + if (jj_scan_token(UNION)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1090()) jj_scanpos = xsp; return false; } - final private boolean jj_3_546() { - if (jj_scan_token(LBRACE_TS)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_220() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3_1092() { - if (jj_scan_token(CONCAT)) return true; + final private boolean jj_3R_117() { + if (jj_scan_token(MERGE)) return true; + if (jj_scan_token(INTO)) return true; return false; } - final private boolean jj_3R_113() { + final private boolean jj_3R_344() { + if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_202()) { + if (jj_3_1097()) { + jj_scanpos = xsp; + if (jj_3_1098()) { jj_scanpos = xsp; - if (jj_3_203()) return true; + if (jj_3_1099()) return true; + } } - if (jj_3R_357()) return true; - return false; - } - - final private boolean jj_3_1091() { - if (jj_scan_token(PERCENT_REMAINDER)) return true; - return false; - } - - final private boolean jj_3_545() { - if (jj_scan_token(LBRACE_T)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; - return false; - } - - final private boolean jj_3_1090() { - if (jj_scan_token(SLASH)) return true; - return false; - } - - final private boolean jj_3_1089() { - if (jj_scan_token(STAR)) return true; - return false; - } - - final private boolean jj_3_1088() { - if (jj_scan_token(MINUS)) return true; - return false; - } - - final private boolean jj_3_1087() { - if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3R_245() { + final private boolean jj_3R_249() { Token xsp; xsp = jj_scanpos; - if (jj_3_544()) { + if (jj_3_559()) { jj_scanpos = xsp; - if (jj_3_545()) { + if (jj_3_560()) { jj_scanpos = xsp; - if (jj_3_546()) { + if (jj_3_561()) { jj_scanpos = xsp; - if (jj_3_547()) { + if (jj_3_562()) { jj_scanpos = xsp; - if (jj_3_548()) { + if (jj_3_563()) { jj_scanpos = xsp; - if (jj_3_549()) { + if (jj_3_564()) { jj_scanpos = xsp; - if (jj_3_550()) { + if (jj_3_565()) { jj_scanpos = xsp; - if (jj_3_551()) { + if (jj_3_566()) { jj_scanpos = xsp; - if (jj_3_552()) { + if (jj_3_567()) { jj_scanpos = xsp; - if (jj_3_553()) return true; + if (jj_3_568()) return true; } } } @@ -26150,832 +26170,676 @@ final private boolean jj_3R_245() { return false; } - final private boolean jj_3_544() { + final private boolean jj_3_559() { if (jj_scan_token(LBRACE_D)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1086() { - if (jj_scan_token(NE2)) return true; - return false; - } - - final private boolean jj_3_1085() { - if (jj_scan_token(NE)) return true; + final private boolean jj_3R_343() { return false; } final private boolean jj_3_1084() { - if (jj_scan_token(GE)) return true; + if (jj_scan_token(DISTINCT)) return true; return false; } final private boolean jj_3_1083() { - if (jj_scan_token(LE)) return true; + if (jj_scan_token(ALL)) return true; return false; } final private boolean jj_3_1082() { - if (jj_scan_token(LT)) return true; + if (jj_scan_token(SET_MINUS)) return true; + return false; + } + + final private boolean jj_3_556() { + if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } final private boolean jj_3_1081() { - if (jj_scan_token(GT)) return true; + if (jj_scan_token(EXCEPT)) return true; return false; } - final private boolean jj_3R_213() { + final private boolean jj_3_555() { + if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_342() { + return false; + } + + final private boolean jj_3_219() { + if (jj_3R_146()) return true; + return false; + } + + final private boolean jj_3_1080() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1087() { Token xsp; xsp = jj_scanpos; - if (jj_3_1080()) { - jj_scanpos = xsp; if (jj_3_1081()) { jj_scanpos = xsp; - if (jj_3_1082()) { - jj_scanpos = xsp; + if (jj_3_1082()) return true; + } + xsp = jj_scanpos; if (jj_3_1083()) { jj_scanpos = xsp; if (jj_3_1084()) { jj_scanpos = xsp; - if (jj_3_1085()) { - jj_scanpos = xsp; - if (jj_3_1086()) { - jj_scanpos = xsp; - if (jj_3_1087()) { - jj_scanpos = xsp; - if (jj_3_1088()) { - jj_scanpos = xsp; - if (jj_3_1089()) { - jj_scanpos = xsp; - if (jj_3_1090()) { - jj_scanpos = xsp; - if (jj_3_1091()) { - jj_scanpos = xsp; - if (jj_3_1092()) { - jj_scanpos = xsp; - if (jj_3_1093()) { - jj_scanpos = xsp; - if (jj_3_1094()) { - jj_scanpos = xsp; - if (jj_3_1095()) { - jj_scanpos = xsp; - if (jj_3_1096()) { - jj_scanpos = xsp; - if (jj_3_1097()) { - jj_scanpos = xsp; - if (jj_3_1098()) { - jj_scanpos = xsp; - if (jj_3_1099()) { - jj_scanpos = xsp; - if (jj_3_1100()) { - jj_scanpos = xsp; - if (jj_3_1101()) { - jj_scanpos = xsp; - if (jj_3_1102()) { - jj_scanpos = xsp; - if (jj_3_1103()) { - jj_scanpos = xsp; - if (jj_3_1104()) { - jj_scanpos = xsp; - if (jj_3_1105()) { - jj_scanpos = xsp; - if (jj_3_1106()) { - jj_scanpos = xsp; - if (jj_3_1107()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3R_343()) return true; } } return false; } - final private boolean jj_3_1080() { - if (jj_scan_token(EQ)) return true; - return false; - } - - final private boolean jj_3_541() { - if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; - return false; - } - - final private boolean jj_3_1075() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_218() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_1074() { + final private boolean jj_3_1079() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1076() { + final private boolean jj_3R_251() { Token xsp; xsp = jj_scanpos; - if (jj_3_1074()) { + if (jj_3_554()) { + jj_scanpos = xsp; + if (jj_3_555()) { jj_scanpos = xsp; - if (jj_3_1075()) return true; + if (jj_3_556()) return true; + } } return false; } - final private boolean jj_3_540() { - if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + final private boolean jj_3_554() { + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1072() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3R_341() { return false; } - final private boolean jj_3_1079() { - if (jj_scan_token(EXCEPT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1076()) jj_scanpos = xsp; + final private boolean jj_3_1078() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3R_247() { + final private boolean jj_3_1086() { + if (jj_scan_token(INTERSECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_539()) { + if (jj_3_1079()) { jj_scanpos = xsp; - if (jj_3_540()) { + if (jj_3_1080()) { jj_scanpos = xsp; - if (jj_3_541()) return true; + if (jj_3R_342()) return true; } } return false; } - final private boolean jj_3_539() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_216() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1071() { + final private boolean jj_3_1077() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1073() { + final private boolean jj_3_217() { Token xsp; xsp = jj_scanpos; - if (jj_3_1071()) { - jj_scanpos = xsp; - if (jj_3_1072()) return true; - } + if (jj_3_216()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_201() { - if (jj_3R_156()) return true; + final private boolean jj_3_215() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_1069() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_214() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3_1078() { - if (jj_scan_token(INTERSECT)) return true; + final private boolean jj_3_1085() { + if (jj_scan_token(UNION)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1073()) jj_scanpos = xsp; + if (jj_3_1077()) { + jj_scanpos = xsp; + if (jj_3_1078()) { + jj_scanpos = xsp; + if (jj_3R_341()) return true; + } + } return false; } - final private boolean jj_3_1068() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1067() { + if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3_1070() { + final private boolean jj_3R_348() { Token xsp; xsp = jj_scanpos; - if (jj_3_1068()) { + if (jj_3_1085()) { + jj_scanpos = xsp; + if (jj_3_1086()) { jj_scanpos = xsp; - if (jj_3_1069()) return true; + if (jj_3_1087()) return true; + } } return false; } - final private boolean jj_3_199() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_156()) return true; + final private boolean jj_3R_116() { + if (jj_scan_token(UPDATE)) return true; + if (jj_3R_171()) return true; return false; } - final private boolean jj_3_1077() { - if (jj_scan_token(UNION)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1070()) jj_scanpos = xsp; + final private boolean jj_3_553() { + if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_200() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_156()) return true; + final private boolean jj_3_1066() { + if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3R_340() { - if (jj_scan_token(MULTISET)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1077()) { - jj_scanpos = xsp; - if (jj_3_1078()) { - jj_scanpos = xsp; - if (jj_3_1079()) return true; - } - } + final private boolean jj_3_1073() { + if (jj_3R_174()) return true; return false; } - final private boolean jj_3_538() { - if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + final private boolean jj_3_1072() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_339() { + final private boolean jj_3_1065() { + if (jj_scan_token(LEFT)) return true; return false; } - final private boolean jj_3R_155() { - if (jj_scan_token(ORDER)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_552() { + if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1064() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_1071() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1063() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_211() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3R_410() { + final private boolean jj_3_1070() { + if (jj_3R_339()) return true; return false; } - final private boolean jj_3_198() { - if (jj_3R_155()) return true; + final private boolean jj_3_213() { + if (jj_3R_146()) return true; return false; } - final private boolean jj_3R_409() { + final private boolean jj_3_212() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_211()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_537() { - if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; + final private boolean jj_3_1069() { + if (jj_3R_338()) return true; return false; } - final private boolean jj_3_1062() { - if (jj_scan_token(SET_MINUS)) return true; + final private boolean jj_3_210() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_197() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_209() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3_1061() { - if (jj_scan_token(EXCEPT)) return true; + final private boolean jj_3_1068() { + if (jj_3R_337()) return true; return false; } - final private boolean jj_3R_338() { + final private boolean jj_3_1064() { + if (jj_scan_token(INSERT)) return true; return false; } - final private boolean jj_3_1060() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_551() { + if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1067() { + final private boolean jj_3R_340() { Token xsp; xsp = jj_scanpos; - if (jj_3_1061()) { + if (jj_3_1064()) { jj_scanpos = xsp; - if (jj_3_1062()) return true; - } - xsp = jj_scanpos; - if (jj_3_1063()) { + if (jj_3_1065()) { jj_scanpos = xsp; - if (jj_3_1064()) { + if (jj_3_1066()) { jj_scanpos = xsp; - if (jj_3R_339()) return true; + if (jj_3_1067()) return true; + } } } return false; } - final private boolean jj_3R_353() { + final private boolean jj_3R_115() { + if (jj_scan_token(DELETE)) return true; + if (jj_scan_token(FROM)) return true; + return false; + } + + final private boolean jj_3_1076() { Token xsp; xsp = jj_scanpos; - if (jj_3_197()) { + if (jj_3R_340()) { jj_scanpos = xsp; - if (jj_3R_409()) return true; + if (jj_3_1068()) { + jj_scanpos = xsp; + if (jj_3_1069()) { + jj_scanpos = xsp; + if (jj_3_1070()) return true; + } + } } xsp = jj_scanpos; - if (jj_3_198()) { + if (jj_3_1071()) { jj_scanpos = xsp; - if (jj_3R_410()) return true; + if (jj_3_1072()) { + jj_scanpos = xsp; + if (jj_3_1073()) return true; + } } return false; } - final private boolean jj_3_1059() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1075() { + if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_536() { - if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; + final private boolean jj_3_548() { + if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3R_337() { + final private boolean jj_3_1074() { + if (jj_3R_303()) return true; return false; } - final private boolean jj_3_1058() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3R_406() { + if (jj_3R_306()) return true; return false; } - final private boolean jj_3_1066() { - if (jj_scan_token(INTERSECT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1059()) { - jj_scanpos = xsp; - if (jj_3_1060()) { - jj_scanpos = xsp; - if (jj_3R_338()) return true; - } - } - return false; - } - - final private boolean jj_3_1057() { - if (jj_scan_token(ALL)) return true; - return false; - } - - final private boolean jj_3R_88() { - if (jj_3R_79()) return true; - if (jj_3R_353()) return true; - return false; - } - - final private boolean jj_3_1065() { - if (jj_scan_token(UNION)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_1057()) { - jj_scanpos = xsp; - if (jj_3_1058()) { - jj_scanpos = xsp; - if (jj_3R_337()) return true; - } - } - return false; - } - - final private boolean jj_3_1047() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3R_405() { + if (jj_3R_304()) return true; return false; } - final private boolean jj_3R_344() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1065()) { - jj_scanpos = xsp; - if (jj_3_1066()) { - jj_scanpos = xsp; - if (jj_3_1067()) return true; - } - } + final private boolean jj_3R_253() { + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3R_352() { + final private boolean jj_3_208() { + if (jj_3R_160()) return true; return false; } - final private boolean jj_3_196() { - if (jj_3R_155()) return true; + final private boolean jj_3_207() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3R_351() { + final private boolean jj_3R_404() { + if (jj_3R_307()) return true; return false; } - final private boolean jj_3_1046() { - if (jj_scan_token(RIGHT)) return true; + final private boolean jj_3_206() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3_195() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_205() { + if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_533() { - if (jj_scan_token(UESCAPE)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3R_403() { + if (jj_3R_305()) return true; return false; } - final private boolean jj_3_1053() { - if (jj_3R_173()) return true; + final private boolean jj_3_204() { + if (jj_scan_token(INSERT)) return true; return false; } - final private boolean jj_3_1052() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3R_402() { + if (jj_3R_299()) return true; return false; } - final private boolean jj_3R_87() { - if (jj_3R_77()) return true; + final private boolean jj_3R_114() { Token xsp; xsp = jj_scanpos; - if (jj_3_195()) { - jj_scanpos = xsp; - if (jj_3R_351()) return true; - } - xsp = jj_scanpos; - if (jj_3_196()) { + if (jj_3_204()) { jj_scanpos = xsp; - if (jj_3R_352()) return true; + if (jj_3_205()) return true; } + if (jj_3R_361()) return true; return false; } - final private boolean jj_3_1045() { - if (jj_scan_token(LEFT)) return true; - return false; - } - - final private boolean jj_3_1051() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3R_401() { + if (jj_3R_301()) return true; return false; } - final private boolean jj_3_1050() { - if (jj_3R_335()) return true; + final private boolean jj_3_547() { + if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; return false; } - final private boolean jj_3R_249() { + final private boolean jj_3_546() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1049() { - if (jj_3R_334()) return true; - return false; - } - - final private boolean jj_3_1048() { - if (jj_3R_333()) return true; + final private boolean jj_3_545() { + if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1044() { - if (jj_scan_token(INSERT)) return true; + final private boolean jj_3R_400() { + if (jj_3R_302()) return true; return false; } - final private boolean jj_3R_336() { + final private boolean jj_3_550() { Token xsp; xsp = jj_scanpos; - if (jj_3_1044()) { - jj_scanpos = xsp; - if (jj_3_1045()) { + if (jj_3_545()) { jj_scanpos = xsp; - if (jj_3_1046()) { + if (jj_3_546()) { jj_scanpos = xsp; - if (jj_3_1047()) return true; + if (jj_3_547()) return true; } } + while (true) { + xsp = jj_scanpos; + if (jj_3R_253()) { jj_scanpos = xsp; break; } } + xsp = jj_scanpos; + if (jj_3_548()) jj_scanpos = xsp; return false; } - final private boolean jj_3_193() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3R_399() { + if (jj_3R_298()) return true; return false; } - final private boolean jj_3_1056() { + final private boolean jj_3R_398() { + if (jj_3R_296()) return true; + return false; + } + + final private boolean jj_3R_252() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_228() { + if (jj_scan_token(LBRACE_FN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3R_336()) { + if (jj_3R_398()) { jj_scanpos = xsp; - if (jj_3_1048()) { + if (jj_3R_399()) { + jj_scanpos = xsp; + if (jj_3R_400()) { + jj_scanpos = xsp; + if (jj_3R_401()) { + jj_scanpos = xsp; + if (jj_3R_402()) { + jj_scanpos = xsp; + if (jj_3R_403()) { + jj_scanpos = xsp; + if (jj_3R_404()) { + jj_scanpos = xsp; + if (jj_3R_405()) { + jj_scanpos = xsp; + if (jj_3R_406()) { + jj_scanpos = xsp; + if (jj_3_1074()) { jj_scanpos = xsp; - if (jj_3_1049()) { + if (jj_3_1075()) { jj_scanpos = xsp; - if (jj_3_1050()) return true; + if (jj_3_1076()) return true; + } + } + } + } + } + } } } } - xsp = jj_scanpos; - if (jj_3_1051()) { - jj_scanpos = xsp; - if (jj_3_1052()) { - jj_scanpos = xsp; - if (jj_3_1053()) return true; } } return false; } - final private boolean jj_3_194() { - if (jj_3R_154()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_193()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_203() { + if (jj_3R_157()) return true; return false; } - final private boolean jj_3R_358() { - if (jj_3R_152()) return true; + final private boolean jj_3_201() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_157()) return true; return false; } - final private boolean jj_3_532() { - if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; + final private boolean jj_3_1063() { + if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_1055() { - if (jj_scan_token(CONVERT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1062() { + if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3_531() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_202() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_157()) return true; return false; } - final private boolean jj_3_530() { - if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; + final private boolean jj_3_1061() { + if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_1054() { - if (jj_3R_299()) return true; + final private boolean jj_3_1060() { + if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_535() { + final private boolean jj_3R_139() { Token xsp; xsp = jj_scanpos; - if (jj_3_530()) { + if (jj_3_549()) { + jj_scanpos = xsp; + if (jj_3_550()) { jj_scanpos = xsp; - if (jj_3_531()) { + if (jj_3_551()) { + jj_scanpos = xsp; + if (jj_3_552()) { jj_scanpos = xsp; - if (jj_3_532()) return true; + if (jj_3_553()) return true; } } + } + } + return false; + } + + final private boolean jj_3_549() { + if (jj_scan_token(BINARY_STRING_LITERAL)) return true; + Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3R_249()) { jj_scanpos = xsp; break; } + if (jj_3R_252()) { jj_scanpos = xsp; break; } } - xsp = jj_scanpos; - if (jj_3_533()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_394() { - if (jj_3R_302()) return true; + final private boolean jj_3_1059() { + if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3R_393() { - if (jj_3R_300()) return true; + final private boolean jj_3_1058() { + if (jj_scan_token(CURRENT_USER)) return true; return false; } - final private boolean jj_3R_117() { - if (jj_scan_token(CALL)) return true; - if (jj_3R_358()) return true; + final private boolean jj_3_1057() { + if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } - final private boolean jj_3R_392() { - if (jj_3R_303()) return true; + final private boolean jj_3_1056() { + if (jj_scan_token(CURRENT_TIME)) return true; return false; } - final private boolean jj_3R_248() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_1055() { + if (jj_scan_token(CURRENT_SCHEMA)) return true; return false; } - final private boolean jj_3_187() { - if (jj_scan_token(SCHEMA)) return true; + final private boolean jj_3_1054() { + if (jj_scan_token(CURRENT_ROLE)) return true; return false; } - final private boolean jj_3R_391() { - if (jj_3R_301()) return true; + final private boolean jj_3R_156() { + if (jj_scan_token(ORDER)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3R_390() { - if (jj_3R_295()) return true; + final private boolean jj_3_1053() { + if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_186() { - if (jj_scan_token(CATALOG)) return true; + final private boolean jj_3_1052() { + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } - final private boolean jj_3R_389() { - if (jj_3R_297()) return true; + final private boolean jj_3_1051() { + if (jj_scan_token(CURRENT_DATE)) return true; return false; } - final private boolean jj_3_192() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(601)) jj_scanpos = xsp; - if (jj_3R_153()) return true; + final private boolean jj_3_1050() { + if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } - final private boolean jj_3R_138() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_534()) { - jj_scanpos = xsp; - if (jj_3_535()) { - jj_scanpos = xsp; - if (jj_3_536()) { - jj_scanpos = xsp; - if (jj_3_537()) { - jj_scanpos = xsp; - if (jj_3_538()) return true; - } - } - } - } + final private boolean jj_3R_422() { return false; } - final private boolean jj_3_189() { - if (jj_3R_84()) return true; + final private boolean jj_3_200() { + if (jj_3R_156()) return true; return false; } - final private boolean jj_3_191() { + final private boolean jj_3R_234() { Token xsp; xsp = jj_scanpos; - if (jj_scan_token(622)) { - jj_scanpos = xsp; - if (jj_scan_token(821)) { - jj_scanpos = xsp; - if (jj_scan_token(820)) { - jj_scanpos = xsp; - if (jj_scan_token(817)) { + if (jj_3_1050()) { jj_scanpos = xsp; - if (jj_scan_token(818)) { - jj_scanpos = xsp; - if (jj_scan_token(819)) { + if (jj_3_1051()) { jj_scanpos = xsp; - if (jj_scan_token(816)) return true; - } - } - } - } - } - } - return false; - } - - final private boolean jj_3_534() { - if (jj_scan_token(BINARY_STRING_LITERAL)) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3R_248()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3R_388() { - if (jj_3R_298()) return true; - return false; - } - - final private boolean jj_3_188() { - if (jj_scan_token(TABLE)) return true; - return false; - } - - final private boolean jj_3R_387() { - if (jj_3R_294()) return true; - return false; - } - - final private boolean jj_3_185() { - if (jj_scan_token(DATABASE)) return true; - return false; - } - - final private boolean jj_3R_356() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_188()) jj_scanpos = xsp; - if (jj_3R_152()) return true; - return false; - } - - final private boolean jj_3R_386() { - if (jj_3R_292()) return true; - return false; - } - - final private boolean jj_3R_224() { - if (jj_scan_token(LBRACE_FN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3R_386()) { + if (jj_3_1052()) { jj_scanpos = xsp; - if (jj_3R_387()) { + if (jj_3_1053()) { jj_scanpos = xsp; - if (jj_3R_388()) { + if (jj_3_1054()) { jj_scanpos = xsp; - if (jj_3R_389()) { + if (jj_3_1055()) { jj_scanpos = xsp; - if (jj_3R_390()) { + if (jj_3_1056()) { jj_scanpos = xsp; - if (jj_3R_391()) { + if (jj_3_1057()) { jj_scanpos = xsp; - if (jj_3R_392()) { + if (jj_3_1058()) { jj_scanpos = xsp; - if (jj_3R_393()) { + if (jj_3_1059()) { jj_scanpos = xsp; - if (jj_3R_394()) { + if (jj_3_1060()) { jj_scanpos = xsp; - if (jj_3_1054()) { + if (jj_3_1061()) { jj_scanpos = xsp; - if (jj_3_1055()) { + if (jj_3_1062()) { jj_scanpos = xsp; - if (jj_3_1056()) return true; + if (jj_3_1063()) return true; } } } @@ -26987,804 +26851,539 @@ final private boolean jj_3R_224() { } } } - return false; - } - - final private boolean jj_3_190() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_185()) { - jj_scanpos = xsp; - if (jj_3_186()) { - jj_scanpos = xsp; - if (jj_3_187()) return true; } } - if (jj_3R_152()) return true; return false; } - final private boolean jj_3R_112() { - if (jj_scan_token(DESCRIBE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_190()) { - jj_scanpos = xsp; - if (jj_3R_356()) { - jj_scanpos = xsp; - if (jj_3_192()) return true; - } - } + final private boolean jj_3R_421() { return false; } - final private boolean jj_3_529() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_199() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_528() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_1049() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_527() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_1048() { + if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3R_244() { + final private boolean jj_3R_357() { Token xsp; xsp = jj_scanpos; - if (jj_3_526()) { - jj_scanpos = xsp; - if (jj_3_527()) { - jj_scanpos = xsp; - if (jj_3_528()) { + if (jj_3_199()) { jj_scanpos = xsp; - if (jj_3_529()) return true; - } + if (jj_3R_421()) return true; } + xsp = jj_scanpos; + if (jj_3_200()) { + jj_scanpos = xsp; + if (jj_3R_422()) return true; } return false; } - final private boolean jj_3_526() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_1047() { + if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3_1043() { + final private boolean jj_3_1046() { if (jj_scan_token(USER)) return true; return false; } + final private boolean jj_3_1045() { + if (jj_scan_token(TRUNCATE)) return true; + return false; + } + + final private boolean jj_3_1044() { + if (jj_scan_token(UPPER)) return true; + return false; + } + + final private boolean jj_3_1043() { + if (jj_scan_token(SUM)) return true; + return false; + } + final private boolean jj_3_1042() { - if (jj_scan_token(SYSTEM_USER)) return true; + if (jj_scan_token(STDDEV_SAMP)) return true; + return false; + } + + final private boolean jj_3_544() { + if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1041() { - if (jj_scan_token(SESSION_USER)) return true; + if (jj_scan_token(STDDEV_POP)) return true; return false; } final private boolean jj_3_1040() { - if (jj_scan_token(LOCALTIMESTAMP)) return true; + if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_1039() { - if (jj_scan_token(LOCALTIME)) return true; + final private boolean jj_3_543() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_182() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1039() { + if (jj_scan_token(SOME)) return true; return false; } final private boolean jj_3_1038() { - if (jj_scan_token(CURRENT_USER)) return true; + if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_1037() { - if (jj_scan_token(CURRENT_TIMESTAMP)) return true; + final private boolean jj_3_542() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_525() { - if (jj_3R_198()) return true; + final private boolean jj_3_1037() { + if (jj_scan_token(ROW_NUMBER)) return true; return false; } final private boolean jj_3_1036() { - if (jj_scan_token(CURRENT_TIME)) return true; + if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_184() { - if (jj_scan_token(INCLUDING)) return true; + final private boolean jj_3R_248() { Token xsp; xsp = jj_scanpos; - if (jj_3_182()) jj_scanpos = xsp; - if (jj_scan_token(ATTRIBUTES)) return true; + if (jj_3_541()) { + jj_scanpos = xsp; + if (jj_3_542()) { + jj_scanpos = xsp; + if (jj_3_543()) { + jj_scanpos = xsp; + if (jj_3_544()) return true; + } + } + } + return false; + } + + final private boolean jj_3_541() { + if (jj_scan_token(TRUE)) return true; return false; } final private boolean jj_3_1035() { - if (jj_scan_token(CURRENT_SCHEMA)) return true; + if (jj_scan_token(REGR_SYY)) return true; return false; } - final private boolean jj_3_1034() { - if (jj_scan_token(CURRENT_ROLE)) return true; + final private boolean jj_3R_89() { + if (jj_3R_80()) return true; + if (jj_3R_357()) return true; return false; } - final private boolean jj_3_1033() { - if (jj_scan_token(CURRENT_PATH)) return true; + final private boolean jj_3_1034() { + if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3_524() { - if (jj_scan_token(MINUS)) return true; - if (jj_3R_198()) return true; + final private boolean jj_3_1033() { + if (jj_scan_token(REGR_COUNT)) return true; return false; } final private boolean jj_3_1032() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + if (jj_scan_token(RANK)) return true; return false; } final private boolean jj_3_1031() { - if (jj_scan_token(CURRENT_DATE)) return true; + if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_183() { - if (jj_scan_token(EXCLUDING)) return true; - if (jj_scan_token(ATTRIBUTES)) return true; + final private boolean jj_3_1030() { + if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3_1030() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + final private boolean jj_3_1029() { + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3R_139() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_523()) { - jj_scanpos = xsp; - if (jj_3_524()) { - jj_scanpos = xsp; - if (jj_3_525()) return true; - } - } - return false; - } - - final private boolean jj_3_523() { - if (jj_scan_token(PLUS)) return true; - if (jj_3R_198()) return true; - return false; - } - - final private boolean jj_3R_230() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1030()) { - jj_scanpos = xsp; - if (jj_3_1031()) { - jj_scanpos = xsp; - if (jj_3_1032()) { - jj_scanpos = xsp; - if (jj_3_1033()) { - jj_scanpos = xsp; - if (jj_3_1034()) { - jj_scanpos = xsp; - if (jj_3_1035()) { - jj_scanpos = xsp; - if (jj_3_1036()) { - jj_scanpos = xsp; - if (jj_3_1037()) { - jj_scanpos = xsp; - if (jj_3_1038()) { - jj_scanpos = xsp; - if (jj_3_1039()) { - jj_scanpos = xsp; - if (jj_3_1040()) { - jj_scanpos = xsp; - if (jj_3_1041()) { - jj_scanpos = xsp; - if (jj_3_1042()) { - jj_scanpos = xsp; - if (jj_3_1043()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } + final private boolean jj_3R_356() { return false; } - final private boolean jj_3R_151() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_183()) { - jj_scanpos = xsp; - if (jj_3_184()) return true; - } + final private boolean jj_3_1028() { + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_1029() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_198() { + if (jj_3R_156()) return true; return false; } - final private boolean jj_3_1028() { - if (jj_scan_token(VAR_SAMP)) return true; + final private boolean jj_3_1027() { + if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_522() { - if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; + final private boolean jj_3_1026() { + if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3_1027() { - if (jj_scan_token(VAR_POP)) return true; + final private boolean jj_3_540() { + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_1026() { - if (jj_scan_token(USER)) return true; + final private boolean jj_3_1025() { + if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3_1025() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3R_355() { return false; } final private boolean jj_3_1024() { - if (jj_scan_token(UPPER)) return true; + if (jj_scan_token(NTH_VALUE)) return true; return false; } final private boolean jj_3_1023() { - if (jj_scan_token(SUM)) return true; + if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_521() { - if (jj_scan_token(DECIMAL)) return true; - if (jj_3R_247()) return true; + final private boolean jj_3_197() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } final private boolean jj_3_1022() { - if (jj_scan_token(STDDEV_SAMP)) return true; + if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3_1021() { - if (jj_scan_token(STDDEV_POP)) return true; + final private boolean jj_3_539() { + if (jj_scan_token(MINUS)) return true; + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_181() { - if (jj_scan_token(WITHOUT)) return true; - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_1021() { + if (jj_scan_token(MINUTE)) return true; return false; } final private boolean jj_3_1020() { - if (jj_scan_token(SQRT)) return true; + if (jj_scan_token(MIN)) return true; return false; } final private boolean jj_3_1019() { - if (jj_scan_token(SOME)) return true; - return false; - } - - final private boolean jj_3_520() { - if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; + if (jj_scan_token(MAX)) return true; return false; } final private boolean jj_3_1018() { - if (jj_scan_token(SECOND)) return true; + if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_1017() { - if (jj_scan_token(ROW_NUMBER)) return true; + final private boolean jj_3R_140() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_538()) { + jj_scanpos = xsp; + if (jj_3_539()) { + jj_scanpos = xsp; + if (jj_3_540()) return true; + } + } return false; } - final private boolean jj_3_1016() { - if (jj_scan_token(RIGHT)) return true; + final private boolean jj_3_538() { + if (jj_scan_token(PLUS)) return true; + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_180() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_1017() { + if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_1015() { - if (jj_scan_token(REGR_SYY)) return true; + final private boolean jj_3_1016() { + if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3R_198() { + final private boolean jj_3R_88() { + if (jj_3R_78()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_519()) { - jj_scanpos = xsp; - if (jj_3_520()) { - jj_scanpos = xsp; - if (jj_3_521()) { + if (jj_3_197()) { jj_scanpos = xsp; - if (jj_3_522()) return true; - } + if (jj_3R_355()) return true; } + xsp = jj_scanpos; + if (jj_3_198()) { + jj_scanpos = xsp; + if (jj_3R_356()) return true; } return false; } - final private boolean jj_3_519() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1015() { + if (jj_scan_token(LN)) return true; return false; } final private boolean jj_3_1014() { - if (jj_scan_token(REGR_SXX)) return true; + if (jj_scan_token(LAST_VALUE)) return true; return false; } final private boolean jj_3_1013() { - if (jj_scan_token(REGR_COUNT)) return true; + if (jj_scan_token(LEFT)) return true; return false; } final private boolean jj_3_1012() { - if (jj_scan_token(RANK)) return true; + if (jj_scan_token(LEAD)) return true; return false; } final private boolean jj_3_1011() { - if (jj_scan_token(POWER)) return true; + if (jj_scan_token(LAG)) return true; return false; } final private boolean jj_3_1010() { - if (jj_scan_token(PERCENT_RANK)) return true; - return false; - } - - final private boolean jj_3_179() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(TYPE)) return true; + if (jj_scan_token(HOUR)) return true; return false; } final private boolean jj_3_1009() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + if (jj_scan_token(GROUPING)) return true; return false; } final private boolean jj_3_1008() { - if (jj_scan_token(PERCENTILE_CONT)) return true; - return false; - } - - final private boolean jj_3_518() { - if (jj_3R_243()) return true; + if (jj_scan_token(INTERSECTION)) return true; return false; } final private boolean jj_3_1007() { - if (jj_scan_token(OCTET_LENGTH)) return true; + if (jj_scan_token(FUSION)) return true; return false; } final private boolean jj_3_1006() { - if (jj_scan_token(NULLIF)) return true; + if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_517() { - if (jj_3R_246()) return true; + final private boolean jj_3_537() { + if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; return false; } final private boolean jj_3_1005() { - if (jj_scan_token(NTILE)) return true; + if (jj_scan_token(FIRST_VALUE)) return true; return false; } final private boolean jj_3_1004() { - if (jj_scan_token(NTH_VALUE)) return true; + if (jj_scan_token(EXP)) return true; return false; } final private boolean jj_3_1003() { - if (jj_scan_token(MONTH)) return true; + if (jj_scan_token(EVERY)) return true; return false; } final private boolean jj_3_1002() { - if (jj_scan_token(MOD)) return true; + if (jj_scan_token(ELEMENT)) return true; return false; } final private boolean jj_3_1001() { - if (jj_scan_token(MINUTE)) return true; + if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3R_222() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_517()) { - jj_scanpos = xsp; - if (jj_3_518()) return true; - } + final private boolean jj_3_536() { + if (jj_scan_token(DECIMAL)) return true; + if (jj_3R_251()) return true; return false; } final private boolean jj_3_1000() { - if (jj_scan_token(MIN)) return true; + if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } final private boolean jj_3_999() { - if (jj_scan_token(MAX)) return true; + if (jj_scan_token(CURRENT_TIME)) return true; + return false; + } + + final private boolean jj_3_195() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } final private boolean jj_3_998() { - if (jj_scan_token(LOWER)) return true; + if (jj_scan_token(CURRENT_DATE)) return true; return false; } final private boolean jj_3_997() { - if (jj_scan_token(LOCALTIMESTAMP)) return true; + if (jj_scan_token(COUNT)) return true; return false; } - final private boolean jj_3_178() { - if (jj_3R_116()) return true; + final private boolean jj_3_535() { + if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; return false; } final private boolean jj_3_996() { - if (jj_scan_token(LOCALTIME)) return true; + if (jj_scan_token(CUME_DIST)) return true; return false; } final private boolean jj_3_995() { - if (jj_scan_token(LN)) return true; - return false; - } - - final private boolean jj_3_177() { - if (jj_3R_115()) return true; + if (jj_scan_token(COVAR_SAMP)) return true; return false; } final private boolean jj_3_994() { - if (jj_scan_token(LAST_VALUE)) return true; + if (jj_scan_token(COVAR_POP)) return true; return false; } final private boolean jj_3_993() { - if (jj_scan_token(LEFT)) return true; - return false; - } - - final private boolean jj_3_176() { - if (jj_3R_114()) return true; - return false; - } - - final private boolean jj_3_992() { - if (jj_scan_token(LEAD)) return true; - return false; - } - - final private boolean jj_3_991() { - if (jj_scan_token(LAG)) return true; - return false; - } - - final private boolean jj_3_175() { - if (jj_3R_113()) return true; - return false; - } - - final private boolean jj_3_990() { - if (jj_scan_token(HOUR)) return true; - return false; - } - - final private boolean jj_3_989() { - if (jj_scan_token(GROUPING)) return true; - return false; - } - - final private boolean jj_3_174() { - if (jj_3R_79()) return true; - return false; - } - - final private boolean jj_3_988() { - if (jj_scan_token(INTERSECTION)) return true; - return false; - } - - final private boolean jj_3_987() { - if (jj_scan_token(FUSION)) return true; - return false; - } - - final private boolean jj_3_516() { - if (jj_3R_245()) return true; - return false; - } - - final private boolean jj_3_986() { - if (jj_scan_token(FLOOR)) return true; - return false; - } - - final private boolean jj_3_985() { - if (jj_scan_token(FIRST_VALUE)) return true; - return false; - } - - final private boolean jj_3_515() { - if (jj_3R_244()) return true; - return false; - } - - final private boolean jj_3_984() { - if (jj_scan_token(EXP)) return true; + if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3R_153() { + final private boolean jj_3R_200() { Token xsp; xsp = jj_scanpos; - if (jj_3_174()) { - jj_scanpos = xsp; - if (jj_3_175()) { + if (jj_3_534()) { jj_scanpos = xsp; - if (jj_3_176()) { + if (jj_3_535()) { jj_scanpos = xsp; - if (jj_3_177()) { + if (jj_3_536()) { jj_scanpos = xsp; - if (jj_3_178()) return true; - } + if (jj_3_537()) return true; } } } return false; } - final private boolean jj_3_983() { - if (jj_scan_token(EVERY)) return true; - return false; - } - - final private boolean jj_3_514() { - if (jj_3R_138()) return true; - return false; - } - - final private boolean jj_3_982() { - if (jj_scan_token(ELEMENT)) return true; - return false; - } - - final private boolean jj_3_981() { - if (jj_scan_token(DENSE_RANK)) return true; - return false; - } - - final private boolean jj_3_513() { - if (jj_3R_139()) return true; - return false; - } - - final private boolean jj_3_980() { - if (jj_scan_token(CURRENT_TIMESTAMP)) return true; - return false; - } - - final private boolean jj_3_979() { - if (jj_scan_token(CURRENT_TIME)) return true; - return false; - } - - final private boolean jj_3_978() { - if (jj_scan_token(CURRENT_DATE)) return true; - return false; - } - - final private boolean jj_3_977() { - if (jj_scan_token(COUNT)) return true; - return false; - } - - final private boolean jj_3_976() { - if (jj_scan_token(CUME_DIST)) return true; - return false; - } - - final private boolean jj_3R_243() { + final private boolean jj_3_196() { + if (jj_3R_155()) return true; Token xsp; - xsp = jj_scanpos; - if (jj_3_513()) { - jj_scanpos = xsp; - if (jj_3_514()) { - jj_scanpos = xsp; - if (jj_3_515()) { - jj_scanpos = xsp; - if (jj_3_516()) return true; - } - } + while (true) { + xsp = jj_scanpos; + if (jj_3_195()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_975() { - if (jj_scan_token(COVAR_SAMP)) return true; - return false; - } - - final private boolean jj_3_974() { - if (jj_scan_token(COVAR_POP)) return true; - return false; - } - - final private boolean jj_3_973() { - if (jj_scan_token(COLLECT)) return true; + final private boolean jj_3_534() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_972() { + final private boolean jj_3_992() { if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_971() { + final private boolean jj_3_991() { if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_970() { + final private boolean jj_3_990() { if (jj_scan_token(CHAR_LENGTH)) return true; return false; } - final private boolean jj_3_969() { + final private boolean jj_3_989() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_512() { - if (jj_3R_193()) return true; - return false; - } - - final private boolean jj_3_968() { + final private boolean jj_3_988() { if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_967() { + final private boolean jj_3_987() { if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_173() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(DOT_FORMAT)) return true; - return false; - } - - final private boolean jj_3_511() { - if (jj_3R_243()) return true; + final private boolean jj_3_986() { + if (jj_scan_token(AVG)) return true; return false; } - final private boolean jj_3_966() { - if (jj_scan_token(AVG)) return true; + final private boolean jj_3_533() { + if (jj_3R_247()) return true; return false; } - final private boolean jj_3_965() { + final private boolean jj_3_985() { if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_172() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(JSON)) return true; + final private boolean jj_3R_362() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3R_119() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_511()) { - jj_scanpos = xsp; - if (jj_3_512()) return true; - } + final private boolean jj_3_532() { + if (jj_3R_250()) return true; return false; } - final private boolean jj_3R_333() { + final private boolean jj_3R_337() { Token xsp; xsp = jj_scanpos; - if (jj_3_965()) { - jj_scanpos = xsp; - if (jj_3_966()) { - jj_scanpos = xsp; - if (jj_3_967()) { - jj_scanpos = xsp; - if (jj_3_968()) { - jj_scanpos = xsp; - if (jj_3_969()) { - jj_scanpos = xsp; - if (jj_3_970()) { - jj_scanpos = xsp; - if (jj_3_971()) { - jj_scanpos = xsp; - if (jj_3_972()) { - jj_scanpos = xsp; - if (jj_3_973()) { - jj_scanpos = xsp; - if (jj_3_974()) { - jj_scanpos = xsp; - if (jj_3_975()) { - jj_scanpos = xsp; - if (jj_3_976()) { - jj_scanpos = xsp; - if (jj_3_977()) { - jj_scanpos = xsp; - if (jj_3_978()) { - jj_scanpos = xsp; - if (jj_3_979()) { - jj_scanpos = xsp; - if (jj_3_980()) { - jj_scanpos = xsp; - if (jj_3_981()) { - jj_scanpos = xsp; - if (jj_3_982()) { - jj_scanpos = xsp; - if (jj_3_983()) { - jj_scanpos = xsp; - if (jj_3_984()) { - jj_scanpos = xsp; if (jj_3_985()) { jj_scanpos = xsp; if (jj_3_986()) { @@ -27873,7 +27472,47 @@ final private boolean jj_3R_333() { jj_scanpos = xsp; if (jj_3_1028()) { jj_scanpos = xsp; - if (jj_3_1029()) return true; + if (jj_3_1029()) { + jj_scanpos = xsp; + if (jj_3_1030()) { + jj_scanpos = xsp; + if (jj_3_1031()) { + jj_scanpos = xsp; + if (jj_3_1032()) { + jj_scanpos = xsp; + if (jj_3_1033()) { + jj_scanpos = xsp; + if (jj_3_1034()) { + jj_scanpos = xsp; + if (jj_3_1035()) { + jj_scanpos = xsp; + if (jj_3_1036()) { + jj_scanpos = xsp; + if (jj_3_1037()) { + jj_scanpos = xsp; + if (jj_3_1038()) { + jj_scanpos = xsp; + if (jj_3_1039()) { + jj_scanpos = xsp; + if (jj_3_1040()) { + jj_scanpos = xsp; + if (jj_3_1041()) { + jj_scanpos = xsp; + if (jj_3_1042()) { + jj_scanpos = xsp; + if (jj_3_1043()) { + jj_scanpos = xsp; + if (jj_3_1044()) { + jj_scanpos = xsp; + if (jj_3_1045()) { + jj_scanpos = xsp; + if (jj_3_1046()) { + jj_scanpos = xsp; + if (jj_3_1047()) { + jj_scanpos = xsp; + if (jj_3_1048()) { + jj_scanpos = xsp; + if (jj_3_1049()) return true; } } } @@ -27941,1072 +27580,1152 @@ final private boolean jj_3R_333() { return false; } - final private boolean jj_3_171() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(XML)) return true; - return false; - } - - final private boolean jj_3_170() { - if (jj_3R_151()) return true; + final private boolean jj_3R_226() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_532()) { + jj_scanpos = xsp; + if (jj_3_533()) return true; + } return false; } - final private boolean jj_3R_111() { - if (jj_scan_token(EXPLAIN)) return true; - if (jj_scan_token(PLAN)) return true; + final private boolean jj_3_984() { + if (jj_3R_337()) return true; return false; } - final private boolean jj_3_964() { - if (jj_3R_333()) return true; + final private boolean jj_3_983() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_963() { - if (jj_3R_152()) return true; + final private boolean jj_3_531() { + if (jj_3R_249()) return true; return false; } - final private boolean jj_3R_229() { + final private boolean jj_3R_233() { Token xsp; xsp = jj_scanpos; - if (jj_3_963()) { + if (jj_3_983()) { jj_scanpos = xsp; - if (jj_3_964()) return true; + if (jj_3_984()) return true; } return false; } - final private boolean jj_3_510() { - if (jj_3R_242()) return true; + final private boolean jj_3R_118() { + if (jj_scan_token(CALL)) return true; + if (jj_3R_362()) return true; return false; } - final private boolean jj_3_509() { - if (jj_3R_241()) return true; + final private boolean jj_3_530() { + if (jj_3R_248()) return true; return false; } - final private boolean jj_3_508() { - if (jj_3R_240()) return true; + final private boolean jj_3_529() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_507() { - if (jj_3R_239()) return true; + final private boolean jj_3_528() { + if (jj_3R_140()) return true; return false; } - final private boolean jj_3R_110() { - if (jj_scan_token(DROP)) return true; + final private boolean jj_3_189() { + if (jj_scan_token(SCHEMA)) return true; + return false; + } + + final private boolean jj_3R_247() { Token xsp; xsp = jj_scanpos; - if (jj_3_507()) { + if (jj_3_528()) { jj_scanpos = xsp; - if (jj_3_508()) { + if (jj_3_529()) { jj_scanpos = xsp; - if (jj_3_509()) { + if (jj_3_530()) { jj_scanpos = xsp; - if (jj_3_510()) return true; + if (jj_3_531()) return true; } } } return false; } - final private boolean jj_3R_334() { + final private boolean jj_3R_338() { if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3_159() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_143()) return true; - return false; - } - - final private boolean jj_3_168() { - if (jj_3R_149()) return true; - return false; - } - - final private boolean jj_3_167() { - if (jj_3R_148()) return true; - return false; - } - - final private boolean jj_3_166() { - if (jj_3R_147()) return true; + final private boolean jj_3_527() { + if (jj_3R_195()) return true; return false; } - final private boolean jj_3_165() { - if (jj_3R_146()) return true; + final private boolean jj_3_526() { + if (jj_3R_247()) return true; return false; } - final private boolean jj_3_961() { - if (jj_3R_331()) return true; + final private boolean jj_3_188() { + if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3_164() { - if (jj_3R_145()) return true; + final private boolean jj_3_194() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(601)) jj_scanpos = xsp; + if (jj_3R_154()) return true; return false; } - final private boolean jj_3_506() { - if (jj_3R_238()) return true; + final private boolean jj_3R_120() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_526()) { + jj_scanpos = xsp; + if (jj_3_527()) return true; + } return false; } - final private boolean jj_3_960() { - if (jj_3R_84()) return true; + final private boolean jj_3_981() { + if (jj_3R_335()) return true; return false; } - final private boolean jj_3_505() { - if (jj_3R_237()) return true; + final private boolean jj_3_191() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_169() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_150()) return true; + final private boolean jj_3_193() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(622)) { + jj_scanpos = xsp; + if (jj_scan_token(824)) { + jj_scanpos = xsp; + if (jj_scan_token(823)) { + jj_scanpos = xsp; + if (jj_scan_token(820)) { + jj_scanpos = xsp; + if (jj_scan_token(821)) { + jj_scanpos = xsp; + if (jj_scan_token(822)) { + jj_scanpos = xsp; + if (jj_scan_token(819)) return true; + } + } + } + } + } + } return false; } - final private boolean jj_3_504() { - if (jj_3R_236()) return true; + final private boolean jj_3_980() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_163() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_144()) return true; + final private boolean jj_3_190() { + if (jj_scan_token(TABLE)) return true; return false; } - final private boolean jj_3_503() { - if (jj_3R_235()) return true; + final private boolean jj_3_187() { + if (jj_scan_token(DATABASE)) return true; return false; } - final private boolean jj_3_962() { + final private boolean jj_3_982() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_960()) { + if (jj_3_980()) { jj_scanpos = xsp; - if (jj_3_961()) return true; + if (jj_3_981()) return true; } return false; } - final private boolean jj_3_162() { - if (jj_3R_82()) return true; + final private boolean jj_3R_360() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_190()) jj_scanpos = xsp; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_502() { - if (jj_scan_token(OR)) return true; - if (jj_scan_token(REPLACE)) return true; + final private boolean jj_3_979() { + if (jj_scan_token(TO)) return true; + if (jj_3R_336()) return true; return false; } - final private boolean jj_3_161() { - if (jj_scan_token(STREAM)) return true; + final private boolean jj_3_525() { + if (jj_3R_246()) return true; return false; } - final private boolean jj_3_959() { - if (jj_scan_token(TO)) return true; - if (jj_3R_332()) return true; + final private boolean jj_3_524() { + if (jj_3R_245()) return true; return false; } - final private boolean jj_3R_109() { - if (jj_scan_token(CREATE)) return true; + final private boolean jj_3_192() { Token xsp; xsp = jj_scanpos; - if (jj_3_502()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_503()) { + if (jj_3_187()) { jj_scanpos = xsp; - if (jj_3_504()) { + if (jj_3_188()) { jj_scanpos = xsp; - if (jj_3_505()) { - jj_scanpos = xsp; - if (jj_3_506()) return true; - } + if (jj_3_189()) return true; } } + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_501() { - if (jj_scan_token(SESSION)) return true; + final private boolean jj_3_523() { + if (jj_3R_244()) return true; return false; } - final private boolean jj_3_160() { - if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_143()) return true; + final private boolean jj_3R_412() { + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_400() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_522() { + if (jj_3R_243()) return true; return false; } - final private boolean jj_3_158() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_143()) return true; + final private boolean jj_3R_113() { + if (jj_scan_token(DESCRIBE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_192()) { + jj_scanpos = xsp; + if (jj_3R_360()) { + jj_scanpos = xsp; + if (jj_3_194()) return true; + } + } return false; } - final private boolean jj_3R_75() { - if (jj_scan_token(SELECT)) return true; + final private boolean jj_3R_111() { + if (jj_scan_token(DROP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_160()) jj_scanpos = xsp; - if (jj_3R_346()) return true; + if (jj_3_522()) { + jj_scanpos = xsp; + if (jj_3_523()) { + jj_scanpos = xsp; + if (jj_3_524()) { + jj_scanpos = xsp; + if (jj_3_525()) return true; + } + } + } return false; } - final private boolean jj_3_500() { - if (jj_scan_token(SYSTEM)) return true; + final private boolean jj_3_978() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3R_355() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_500()) { - jj_scanpos = xsp; - if (jj_3_501()) return true; - } + final private boolean jj_3_521() { + if (jj_3R_242()) return true; return false; } - final private boolean jj_3_958() { - if (jj_3R_220()) return true; + final private boolean jj_3_184() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_957() { + final private boolean jj_3_520() { + if (jj_3R_241()) return true; + return false; + } + + final private boolean jj_3_977() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_108() { - if (jj_scan_token(ALTER)) return true; - if (jj_3R_355()) return true; + final private boolean jj_3_186() { + if (jj_scan_token(INCLUDING)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_184()) jj_scanpos = xsp; + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_956() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_519() { + if (jj_3R_240()) return true; return false; } - final private boolean jj_3R_157() { - if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_143()) return true; + final private boolean jj_3_518() { + if (jj_3R_239()) return true; return false; } - final private boolean jj_3R_404() { + final private boolean jj_3_976() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_497() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_185() { + if (jj_scan_token(EXCLUDING)) return true; + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_955() { - if (jj_scan_token(SPECIFIC)) return true; + final private boolean jj_3R_416() { return false; } - final private boolean jj_3_496() { - if (jj_3R_152()) return true; + final private boolean jj_3_517() { + if (jj_scan_token(OR)) return true; + if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3R_328() { + final private boolean jj_3R_152() { Token xsp; xsp = jj_scanpos; - if (jj_3_955()) { + if (jj_3_185()) { jj_scanpos = xsp; - if (jj_3R_404()) return true; + if (jj_3_186()) return true; } - if (jj_3R_229()) return true; return false; } - final private boolean jj_3_154() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_975() { + if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_499() { - if (jj_scan_token(RESET)) return true; + final private boolean jj_3R_110() { + if (jj_scan_token(CREATE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_496()) { + if (jj_3_517()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_518()) { + jj_scanpos = xsp; + if (jj_3_519()) { + jj_scanpos = xsp; + if (jj_3_520()) { jj_scanpos = xsp; - if (jj_3_497()) return true; + if (jj_3_521()) return true; + } + } } return false; } - final private boolean jj_3_157() { - if (jj_3R_142()) return true; + final private boolean jj_3_516() { + if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_495() { - if (jj_scan_token(ON)) return true; + final private boolean jj_3R_332() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_975()) { + jj_scanpos = xsp; + if (jj_3R_416()) return true; + } + if (jj_3R_233()) return true; return false; } - final private boolean jj_3_953() { - if (jj_3R_331()) return true; + final private boolean jj_3_183() { + if (jj_scan_token(WITHOUT)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_156() { - if (jj_3R_124()) return true; + final private boolean jj_3_515() { + if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3_494() { - if (jj_3R_84()) return true; + final private boolean jj_3R_359() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_515()) { + jj_scanpos = xsp; + if (jj_3_516()) return true; + } return false; } - final private boolean jj_3_153() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_140()) return true; + final private boolean jj_3_973() { + if (jj_3R_335()) return true; return false; } - final private boolean jj_3_952() { - if (jj_3R_84()) return true; + final private boolean jj_3_182() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_493() { - if (jj_3R_119()) return true; + final private boolean jj_3_972() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_155() { - if (jj_3R_141()) return true; + final private boolean jj_3_181() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_954() { + final private boolean jj_3_974() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_952()) { + if (jj_3_972()) { jj_scanpos = xsp; - if (jj_3_953()) return true; + if (jj_3_973()) return true; } return false; } - final private boolean jj_3R_143() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_498() { - if (jj_scan_token(SET)) return true; - if (jj_3R_152()) return true; - return false; - } - - final private boolean jj_3R_107() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_498()) { - jj_scanpos = xsp; - if (jj_3_499()) return true; - } + final private boolean jj_3R_109() { + if (jj_scan_token(ALTER)) return true; + if (jj_3R_359()) return true; return false; } - final private boolean jj_3_951() { + final private boolean jj_3_971() { if (jj_scan_token(FILTER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_950() { - if (jj_3R_323()) return true; + final private boolean jj_3_180() { + if (jj_3R_117()) return true; return false; } - final private boolean jj_3_949() { - if (jj_3R_330()) return true; + final private boolean jj_3_970() { + if (jj_3R_327()) return true; return false; } - final private boolean jj_3R_142() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_140()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_153()) { jj_scanpos = xsp; break; } - } - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_179() { + if (jj_3R_116()) return true; return false; } - final private boolean jj_3_948() { - if (jj_3R_329()) return true; + final private boolean jj_3_178() { + if (jj_3R_115()) return true; return false; } - final private boolean jj_3_947() { - if (jj_3R_328()) return true; + final private boolean jj_3_969() { + if (jj_3R_334()) return true; return false; } - final private boolean jj_3_492() { - if (jj_scan_token(CURRENT)) return true; + final private boolean jj_3_177() { + if (jj_3R_114()) return true; return false; } - final private boolean jj_3R_413() { - if (jj_3R_416()) return true; + final private boolean jj_3_512() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_491() { - if (jj_scan_token(NEXT)) return true; + final private boolean jj_3_176() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_152() { - if (jj_3R_138()) return true; + final private boolean jj_3_968() { + if (jj_3R_333()) return true; return false; } - final private boolean jj_3_946() { - if (jj_3R_327()) return true; + final private boolean jj_3_511() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_151() { - if (jj_3R_139()) return true; + final private boolean jj_3_967() { + if (jj_3R_332()) return true; return false; } - final private boolean jj_3R_233() { + final private boolean jj_3R_154() { Token xsp; xsp = jj_scanpos; - if (jj_3_491()) { + if (jj_3_176()) { + jj_scanpos = xsp; + if (jj_3_177()) { + jj_scanpos = xsp; + if (jj_3_178()) { jj_scanpos = xsp; - if (jj_3_492()) return true; + if (jj_3_179()) { + jj_scanpos = xsp; + if (jj_3_180()) return true; + } + } + } } - if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3R_378() { + final private boolean jj_3R_425() { + if (jj_3R_429()) return true; + return false; + } + + final private boolean jj_3_514() { + if (jj_scan_token(RESET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_946()) { - jj_scanpos = xsp; - if (jj_3R_413()) { + if (jj_3_511()) { jj_scanpos = xsp; - if (jj_3_947()) return true; - } + if (jj_3_512()) return true; } return false; } - final private boolean jj_3R_140() { + final private boolean jj_3_966() { + if (jj_3R_331()) return true; + return false; + } + + final private boolean jj_3R_387() { Token xsp; xsp = jj_scanpos; - if (jj_3_151()) { + if (jj_3_966()) { jj_scanpos = xsp; - if (jj_3_152()) return true; + if (jj_3R_425()) { + jj_scanpos = xsp; + if (jj_3_967()) return true; + } } return false; } - final private boolean jj_3_490() { - if (jj_scan_token(ELSE)) return true; - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_150() { - if (jj_3R_138()) return true; + final private boolean jj_3_510() { + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_149() { - if (jj_3R_84()) return true; + final private boolean jj_3_509() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_137() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_149()) { - jj_scanpos = xsp; - if (jj_3_150()) return true; - } - if (jj_scan_token(EQ)) return true; - if (jj_3R_138()) return true; + final private boolean jj_3_508() { + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_489() { - if (jj_scan_token(WHEN)) return true; - if (jj_3R_234()) return true; + final private boolean jj_3_175() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3R_395() { + final private boolean jj_3_174() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3R_329() { - if (jj_3R_221()) return true; + final private boolean jj_3_173() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_488() { - if (jj_3R_81()) return true; + final private boolean jj_3_513() { + if (jj_scan_token(SET)) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_148() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_137()) return true; + final private boolean jj_3_172() { + if (jj_3R_152()) return true; return false; } - final private boolean jj_3R_232() { - if (jj_scan_token(CASE)) return true; + final private boolean jj_3R_108() { Token xsp; xsp = jj_scanpos; - if (jj_3_488()) { + if (jj_3_513()) { jj_scanpos = xsp; - if (jj_3R_395()) return true; + if (jj_3_514()) return true; } return false; } - final private boolean jj_3_945() { - if (jj_scan_token(RESPECT)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3R_112() { + if (jj_scan_token(EXPLAIN)) return true; + if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3R_221() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_944()) { - jj_scanpos = xsp; - if (jj_3_945()) return true; - } + final private boolean jj_3R_333() { + if (jj_3R_225()) return true; return false; } - final private boolean jj_3R_141() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_137()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_148()) { jj_scanpos = xsp; break; } - } - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_507() { + if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3_944() { - if (jj_scan_token(IGNORE)) return true; + final private boolean jj_3_506() { + if (jj_scan_token(NEXT)) return true; + return false; + } + + final private boolean jj_3_965() { + if (jj_scan_token(RESPECT)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_487() { - if (jj_3R_233()) return true; + final private boolean jj_3R_237() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_506()) { + jj_scanpos = xsp; + if (jj_3_507()) return true; + } + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_482() { + final private boolean jj_3R_225() { Token xsp; xsp = jj_scanpos; - if (jj_scan_token(542)) jj_scanpos = xsp; - if (jj_3R_229()) return true; - if (jj_scan_token(LPAREN)) return true; + if (jj_3_964()) { + jj_scanpos = xsp; + if (jj_3_965()) return true; + } return false; } - final private boolean jj_3_486() { - if (jj_3R_232()) return true; + final private boolean jj_3_964() { + if (jj_scan_token(IGNORE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_485() { - if (jj_3R_231()) return true; + final private boolean jj_3_161() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_144()) return true; return false; } - final private boolean jj_3R_242() { - if (jj_scan_token(VIEW)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_505() { + if (jj_scan_token(ELSE)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_484() { - if (jj_3R_152()) return true; + final private boolean jj_3R_327() { + if (jj_scan_token(WITHIN)) return true; + if (jj_scan_token(GROUP)) return true; return false; } - final private boolean jj_3_483() { - if (jj_3R_230()) return true; + final private boolean jj_3_170() { + if (jj_3R_150()) return true; return false; } - final private boolean jj_3R_323() { - if (jj_scan_token(WITHIN)) return true; - if (jj_scan_token(GROUP)) return true; + final private boolean jj_3_169() { + if (jj_3R_149()) return true; return false; } - final private boolean jj_3R_384() { - if (jj_3R_378()) return true; + final private boolean jj_3_168() { + if (jj_3R_148()) return true; return false; } - final private boolean jj_3_481() { - if (jj_3R_228()) return true; + final private boolean jj_3_167() { + if (jj_3R_147()) return true; return false; } - final private boolean jj_3R_238() { - if (jj_scan_token(VIEW)) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_166() { + if (jj_3R_146()) return true; return false; } - final private boolean jj_3_480() { - if (jj_3R_227()) return true; + final private boolean jj_3_171() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_479() { - if (jj_3R_226()) return true; + final private boolean jj_3_165() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_145()) return true; return false; } - final private boolean jj_3_478() { - if (jj_3R_225()) return true; + final private boolean jj_3_504() { + if (jj_scan_token(WHEN)) return true; + if (jj_3R_238()) return true; return false; } - final private boolean jj_3R_330() { + final private boolean jj_3R_407() { + return false; + } + + final private boolean jj_3R_334() { if (jj_scan_token(WITHIN)) return true; if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_477() { - if (jj_3R_224()) return true; + final private boolean jj_3_164() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3_476() { - if (jj_3R_223()) return true; + final private boolean jj_3_503() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_475() { - if (jj_3R_219()) return true; + final private boolean jj_3_163() { + if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3R_104() { - if (jj_scan_token(ANALYZE)) return true; - if (jj_3R_354()) return true; + final private boolean jj_3R_236() { + if (jj_scan_token(CASE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_503()) { + jj_scanpos = xsp; + if (jj_3R_407()) return true; + } return false; } - final private boolean jj_3_474() { - if (jj_3R_222()) return true; + final private boolean jj_3_162() { + if (jj_scan_token(HINT_BEG)) return true; + if (jj_3R_144()) return true; return false; } - final private boolean jj_3_943() { + final private boolean jj_3_963() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_139()) return true; + if (jj_3R_140()) return true; return false; } - final private boolean jj_3R_216() { + final private boolean jj_3_160() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_144()) return true; + return false; + } + + final private boolean jj_3R_76() { + if (jj_scan_token(SELECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_474()) { - jj_scanpos = xsp; - if (jj_3_475()) { - jj_scanpos = xsp; - if (jj_3_476()) { - jj_scanpos = xsp; - if (jj_3_477()) { - jj_scanpos = xsp; - if (jj_3_478()) { - jj_scanpos = xsp; - if (jj_3_479()) { - jj_scanpos = xsp; - if (jj_3_480()) { - jj_scanpos = xsp; - if (jj_3_481()) { - jj_scanpos = xsp; - if (jj_3R_384()) { - jj_scanpos = xsp; - if (jj_3_483()) { - jj_scanpos = xsp; - if (jj_3_484()) { - jj_scanpos = xsp; - if (jj_3_485()) { - jj_scanpos = xsp; - if (jj_3_486()) { - jj_scanpos = xsp; - if (jj_3_487()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_162()) jj_scanpos = xsp; + if (jj_3R_350()) return true; return false; } - final private boolean jj_3_942() { + final private boolean jj_3_962() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_941() { + final private boolean jj_3_502() { + if (jj_3R_237()) return true; + return false; + } + + final private boolean jj_3_961() { if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3R_105() { - if (jj_scan_token(REFRESH)) return true; - if (jj_scan_token(STATISTICS)) return true; + final private boolean jj_3_501() { + if (jj_3R_236()) return true; return false; } - final private boolean jj_3R_325() { + final private boolean jj_3_497() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(542)) jj_scanpos = xsp; + if (jj_3R_233()) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_500() { + if (jj_3R_235()) return true; + return false; + } + + final private boolean jj_3R_329() { Token xsp; xsp = jj_scanpos; - if (jj_3_941()) { + if (jj_3_961()) { jj_scanpos = xsp; - if (jj_3_942()) return true; + if (jj_3_962()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_106() { - if (jj_scan_token(DROP)) return true; - if (jj_scan_token(STATISTICS)) return true; + final private boolean jj_3R_396() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_471() { - if (jj_3R_221()) return true; + final private boolean jj_3_499() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_147() { - if (jj_3R_84()) return true; + final private boolean jj_3_498() { + if (jj_3R_234()) return true; return false; } - final private boolean jj_3_473() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_139()) return true; + final private boolean jj_3R_395() { + if (jj_3R_387()) return true; return false; } - final private boolean jj_3_940() { + final private boolean jj_3_496() { + if (jj_3R_232()) return true; + return false; + } + + final private boolean jj_3R_158() { + if (jj_scan_token(HINT_BEG)) return true; + if (jj_3R_144()) return true; + return false; + } + + final private boolean jj_3_495() { + if (jj_3R_231()) return true; + return false; + } + + final private boolean jj_3_960() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_139()) return true; + if (jj_3R_140()) return true; return false; } - final private boolean jj_3_146() { - if (jj_3R_119()) return true; + final private boolean jj_3_494() { + if (jj_3R_230()) return true; return false; } - final private boolean jj_3_472() { - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_493() { + if (jj_3R_229()) return true; return false; } - final private boolean jj_3_939() { + final private boolean jj_3_492() { + if (jj_3R_228()) return true; + return false; + } + + final private boolean jj_3_959() { if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3R_136() { - if (jj_3R_364()) return true; - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_491() { + if (jj_3R_227()) return true; return false; } - final private boolean jj_3_938() { + final private boolean jj_3_958() { if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_470() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + final private boolean jj_3_490() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3_469() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + final private boolean jj_3R_415() { return false; } - final private boolean jj_3R_403() { + final private boolean jj_3_957() { + if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_937() { - if (jj_scan_token(FINAL)) return true; + final private boolean jj_3_156() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_936() { + final private boolean jj_3_489() { + if (jj_3R_226()) return true; + return false; + } + + final private boolean jj_3_956() { if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3R_416() { + final private boolean jj_3R_220() { Token xsp; xsp = jj_scanpos; - if (jj_3_469()) { + if (jj_3_489()) { jj_scanpos = xsp; - if (jj_3_470()) return true; + if (jj_3_490()) { + jj_scanpos = xsp; + if (jj_3_491()) { + jj_scanpos = xsp; + if (jj_3_492()) { + jj_scanpos = xsp; + if (jj_3_493()) { + jj_scanpos = xsp; + if (jj_3_494()) { + jj_scanpos = xsp; + if (jj_3_495()) { + jj_scanpos = xsp; + if (jj_3_496()) { + jj_scanpos = xsp; + if (jj_3R_395()) { + jj_scanpos = xsp; + if (jj_3_498()) { + jj_scanpos = xsp; + if (jj_3_499()) { + jj_scanpos = xsp; + lookingAhead = true; + jj_semLA = allowRowValueStar(); + lookingAhead = false; + if (!jj_semLA || jj_3R_396()) { + jj_scanpos = xsp; + if (jj_3_500()) { + jj_scanpos = xsp; + if (jj_3_501()) { + jj_scanpos = xsp; + if (jj_3_502()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } } - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_145() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3R_324() { + final private boolean jj_3R_328() { Token xsp; xsp = jj_scanpos; - if (jj_3_936()) { + if (jj_3_956()) { jj_scanpos = xsp; - if (jj_3_937()) { + if (jj_3_957()) { jj_scanpos = xsp; - if (jj_3R_403()) return true; + if (jj_3R_415()) return true; } } xsp = jj_scanpos; - if (jj_3_938()) { + if (jj_3_958()) { jj_scanpos = xsp; - if (jj_3_939()) return true; + if (jj_3_959()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_144() { - if (jj_scan_token(NULLS)) return true; - return false; - } - - final private boolean jj_3_143() { - if (jj_scan_token(SIZE)) return true; + final private boolean jj_3_159() { + if (jj_3R_143()) return true; return false; } - final private boolean jj_3_142() { - if (jj_scan_token(TOTAL)) return true; + final private boolean jj_3_158() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3R_364() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_141()) { - jj_scanpos = xsp; - if (jj_3_142()) { - jj_scanpos = xsp; - if (jj_3_143()) { - jj_scanpos = xsp; - if (jj_3_144()) { - jj_scanpos = xsp; - if (jj_3_145()) return true; - } - } - } - } + final private boolean jj_3_155() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_141()) return true; return false; } - final private boolean jj_3_141() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_157() { + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_935() { + final private boolean jj_3_955() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_139() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_954() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_934() { - if (jj_scan_token(RUNNING)) return true; + final private boolean jj_3R_144() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_137() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_136()) return true; + final private boolean jj_3_486() { + if (jj_3R_225()) return true; return false; } - final private boolean jj_3R_326() { + final private boolean jj_3R_330() { Token xsp; xsp = jj_scanpos; - if (jj_3_934()) { + if (jj_3_954()) { jj_scanpos = xsp; - if (jj_3_935()) return true; + if (jj_3_955()) return true; } - if (jj_3R_378()) return true; + if (jj_3R_213()) return true; return false; } - final private boolean jj_3_138() { - if (jj_3R_136()) return true; + final private boolean jj_3_488() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_140()) return true; return false; } - final private boolean jj_3_468() { - if (jj_scan_token(SEPARATOR)) return true; - if (jj_3R_138()) return true; + final private boolean jj_3_953() { + if (jj_3R_330()) return true; return false; } - final private boolean jj_3_140() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_138()) { - jj_scanpos = xsp; - if (jj_3_139()) return true; - } + final private boolean jj_3_487() { + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_467() { - if (jj_3R_70()) return true; + final private boolean jj_3_952() { + if (jj_3R_329()) return true; return false; } - final private boolean jj_3_933() { - if (jj_3R_326()) return true; + final private boolean jj_3R_143() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_141()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_155()) { jj_scanpos = xsp; break; } + } + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_932() { - if (jj_3R_325()) return true; + final private boolean jj_3_951() { + if (jj_3R_328()) return true; return false; } - final private boolean jj_3_466() { - if (jj_3R_221()) return true; + final private boolean jj_3_485() { + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_931() { - if (jj_3R_324()) return true; + final private boolean jj_3_484() { + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_930() { + final private boolean jj_3_950() { if (jj_scan_token(MATCH_NUMBER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_465() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3R_429() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_484()) { + jj_scanpos = xsp; + if (jj_3_485()) return true; + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_136() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_135()) return true; + final private boolean jj_3_154() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_929() { + final private boolean jj_3_949() { if (jj_scan_token(CLASSIFIER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_464() { - if (jj_3R_82()) return true; + final private boolean jj_3_153() { + if (jj_3R_140()) return true; return false; } - final private boolean jj_3R_304() { + final private boolean jj_3R_308() { Token xsp; xsp = jj_scanpos; - if (jj_3_929()) { + if (jj_3_949()) { jj_scanpos = xsp; - if (jj_3_930()) { + if (jj_3_950()) { jj_scanpos = xsp; - if (jj_3_931()) { + if (jj_3_951()) { jj_scanpos = xsp; - if (jj_3_932()) { + if (jj_3_952()) { jj_scanpos = xsp; - if (jj_3_933()) return true; + if (jj_3_953()) return true; } } } @@ -29014,640 +28733,695 @@ final private boolean jj_3R_304() { return false; } - final private boolean jj_3R_354() { - if (jj_3R_135()) return true; - return false; - } - - final private boolean jj_3_463() { - if (jj_scan_token(STRING_AGG)) return true; - return false; - } - - final private boolean jj_3_462() { - if (jj_scan_token(GROUP_CONCAT)) return true; - return false; - } - - final private boolean jj_3_461() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; - return false; - } - - final private boolean jj_3_460() { - if (jj_scan_token(ARRAY_AGG)) return true; - return false; - } - - final private boolean jj_3R_327() { + final private boolean jj_3R_141() { Token xsp; xsp = jj_scanpos; - if (jj_3_460()) { - jj_scanpos = xsp; - if (jj_3_461()) { + if (jj_3_153()) { jj_scanpos = xsp; - if (jj_3_462()) { - jj_scanpos = xsp; - if (jj_3_463()) return true; - } + if (jj_3_154()) return true; } - } - if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_928() { + final private boolean jj_3_948() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_927() { + final private boolean jj_3_152() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_947() { if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_135() { - if (jj_3R_124()) return true; + final private boolean jj_3_151() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_926() { + final private boolean jj_3_946() { if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3R_312() { + final private boolean jj_3_150() { + if (jj_3R_139()) return true; + return false; + } + + final private boolean jj_3R_316() { Token xsp; xsp = jj_scanpos; - if (jj_3_926()) { + if (jj_3_946()) { jj_scanpos = xsp; - if (jj_3_927()) { + if (jj_3_947()) { jj_scanpos = xsp; - if (jj_3_928()) return true; + if (jj_3_948()) return true; } } - if (jj_3R_401()) return true; + if (jj_3R_413()) return true; return false; } - final private boolean jj_3R_135() { - if (jj_3R_152()) return true; + final private boolean jj_3_149() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_134() { - if (jj_scan_token(TRANSACTION)) return true; - return false; - } - - final private boolean jj_3_458() { - if (jj_3R_220()) return true; - return false; - } - - final private boolean jj_3R_101() { - if (jj_scan_token(ROLLBACK)) return true; - if (jj_scan_token(TO)) return true; + final private boolean jj_3_483() { + if (jj_scan_token(SEPARATOR)) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_457() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3R_138() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_149()) { + jj_scanpos = xsp; + if (jj_3_150()) return true; + } + if (jj_scan_token(EQ)) return true; + xsp = jj_scanpos; + if (jj_3_151()) { + jj_scanpos = xsp; + if (jj_3_152()) return true; + } return false; } - final private boolean jj_3_459() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_482() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_133() { - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_481() { + if (jj_3R_225()) return true; return false; } - final private boolean jj_3_456() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_148() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_138()) return true; return false; } - final private boolean jj_3R_303() { + final private boolean jj_3R_307() { if (jj_scan_token(TIME_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_100() { - if (jj_scan_token(SAVEPOINT)) return true; + final private boolean jj_3_480() { + if (jj_scan_token(COMMA)) return true; if (jj_3R_84()) return true; return false; } - final private boolean jj_3R_207() { - if (jj_3R_84()) return true; + final private boolean jj_3_479() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3R_103() { - if (jj_scan_token(ROLLBACK)) return true; + final private boolean jj_3R_142() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_138()) return true; Token xsp; - xsp = jj_scanpos; - if (jj_3_134()) jj_scanpos = xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_148()) { jj_scanpos = xsp; break; } + } + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_296() { - if (jj_scan_token(DATETIME_TRUNC)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_478() { + if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3R_102() { - if (jj_scan_token(COMMIT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_133()) jj_scanpos = xsp; + final private boolean jj_3_477() { + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_455() { - if (jj_3R_219()) return true; + final private boolean jj_3_476() { + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3_454() { - if (jj_3R_198()) return true; + final private boolean jj_3_475() { + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3R_74() { + final private boolean jj_3R_331() { Token xsp; xsp = jj_scanpos; - if (jj_3_454()) { + if (jj_3_475()) { + jj_scanpos = xsp; + if (jj_3_476()) { + jj_scanpos = xsp; + if (jj_3_477()) { jj_scanpos = xsp; - if (jj_3_455()) return true; + if (jj_3_478()) return true; + } } + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_99() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(QUERY)) return true; + final private boolean jj_3R_246() { + if (jj_scan_token(VIEW)) return true; + if (jj_3R_134()) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3R_302() { - if (jj_scan_token(TIME_DIFF)) return true; + final private boolean jj_3R_300() { + if (jj_scan_token(DATETIME_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_132() { - if (jj_scan_token(ASYNC)) return true; + final private boolean jj_3R_242() { + if (jj_scan_token(VIEW)) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_453() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3_473() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_452() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_472() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_98() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(COMPUTE)) return true; + final private boolean jj_3_474() { + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_451() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3R_306() { + if (jj_scan_token(TIME_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_450() { - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3R_105() { + if (jj_scan_token(ANALYZE)) return true; + if (jj_3R_358()) return true; return false; } - final private boolean jj_3R_301() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + final private boolean jj_3_471() { if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_449() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3R_211() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_448() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3R_106() { + if (jj_scan_token(REFRESH)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3R_96() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SERVICE)) return true; + final private boolean jj_3R_305() { + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_447() { - if (jj_3R_134()) return true; + final private boolean jj_3R_107() { + if (jj_scan_token(DROP)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_925() { - if (jj_3R_78()) return true; + final private boolean jj_3_470() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3R_415() { + final private boolean jj_3_469() { + if (jj_3R_200()) return true; + return false; + } + + final private boolean jj_3_945() { + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3R_75() { Token xsp; xsp = jj_scanpos; - if (jj_3_446()) { + if (jj_3_469()) { jj_scanpos = xsp; - if (jj_3_447()) return true; + if (jj_3_470()) return true; } return false; } - final private boolean jj_3_446() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_147() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_924() { - if (jj_3R_270()) return true; + final private boolean jj_3_944() { + if (jj_3R_274()) return true; return false; } - final private boolean jj_3R_97() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_146() { + if (jj_3R_120()) return true; return false; } - final private boolean jj_3R_295() { + final private boolean jj_3R_137() { + if (jj_3R_368()) return true; + if (jj_scan_token(EQ)) return true; + return false; + } + + final private boolean jj_3R_299() { if (jj_scan_token(DATE_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_95() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(CONTINUOUS)) return true; + final private boolean jj_3_145() { + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3R_408() { - if (jj_3R_415()) return true; - if (jj_scan_token(LAMBDA)) return true; + final private boolean jj_3_144() { + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3R_298() { - if (jj_scan_token(DATETIME_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_143() { + if (jj_scan_token(SIZE)) return true; return false; } - final private boolean jj_3R_94() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SCAN)) return true; + final private boolean jj_3_468() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3R_300() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_142() { + if (jj_scan_token(TOTAL)) return true; return false; } - final private boolean jj_3_441() { - if (jj_3R_215()) return true; + final private boolean jj_3_467() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3R_299() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_332()) return true; + final private boolean jj_3R_368() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_141()) { + jj_scanpos = xsp; + if (jj_3_142()) { + jj_scanpos = xsp; + if (jj_3_143()) { + jj_scanpos = xsp; + if (jj_3_144()) { + jj_scanpos = xsp; + if (jj_3_145()) return true; + } + } + } + } return false; } - final private boolean jj_3_131() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_141() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3R_218() { + final private boolean jj_3_466() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_130() { - if (jj_scan_token(MINUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_465() { + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_440() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_464() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_129() { - if (jj_scan_token(PLUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3R_302() { + if (jj_scan_token(DATETIME_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_445() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_440()) { - jj_scanpos = xsp; - if (jj_3R_218()) return true; - } - if (jj_3R_173()) return true; + final private boolean jj_3_139() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3R_297() { - if (jj_scan_token(TIMESTAMPADD)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_463() { + if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3R_241() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_137() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_444() { - if (jj_scan_token(ROW)) return true; - if (jj_3R_173()) return true; + final private boolean jj_3_138() { + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_443() { - if (jj_3R_217()) return true; + final private boolean jj_3_462() { + if (jj_3R_135()) return true; return false; } - final private boolean jj_3R_209() { + final private boolean jj_3R_428() { Token xsp; xsp = jj_scanpos; - if (jj_3_442()) { - jj_scanpos = xsp; - if (jj_3_443()) { - jj_scanpos = xsp; - if (jj_3_444()) { + if (jj_3_461()) { jj_scanpos = xsp; - if (jj_3_445()) return true; - } - } + if (jj_3_462()) return true; } return false; } - final private boolean jj_3_442() { - if (jj_3R_216()) return true; + final private boolean jj_3_461() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_93() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(USER)) return true; + final private boolean jj_3_140() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_138()) { + jj_scanpos = xsp; + if (jj_3_139()) return true; + } return false; } - final private boolean jj_3R_294() { - if (jj_scan_token(DATE_DIFF)) return true; + final private boolean jj_3R_304() { + if (jj_scan_token(TIMESTAMP_DIFF)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_237() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_136() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_124() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3R_420() { + if (jj_3R_428()) return true; + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_439() { - if (jj_scan_token(NE2)) return true; + final private boolean jj_3R_358() { + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_438() { - if (jj_scan_token(NE)) return true; + final private boolean jj_3_135() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_923() { - if (jj_scan_token(COMMA)) return true; - if (jj_scan_token(JSON_SCOPE)) return true; + final private boolean jj_3R_303() { + if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_336()) return true; return false; } - final private boolean jj_3_123() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3R_136() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_437() { - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_134() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_922() { - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3R_102() { + if (jj_scan_token(ROLLBACK)) return true; + if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_128() { - if (jj_scan_token(DROP)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_124()) jj_scanpos = xsp; - if (jj_3R_133()) return true; - if (jj_3R_134()) return true; + final private boolean jj_3_133() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_436() { - if (jj_scan_token(GE)) return true; + final private boolean jj_3R_301() { + if (jj_scan_token(TIMESTAMPADD)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_435() { - if (jj_scan_token(GT)) return true; + final private boolean jj_3R_101() { + if (jj_scan_token(SAVEPOINT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_127() { - if (jj_scan_token(ADD)) return true; + final private boolean jj_3R_104() { + if (jj_scan_token(ROLLBACK)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_123()) jj_scanpos = xsp; - if (jj_3R_131()) return true; - if (jj_3R_132()) return true; + if (jj_3_134()) jj_scanpos = xsp; return false; } - final private boolean jj_3_434() { - if (jj_scan_token(LE)) return true; + final private boolean jj_3_456() { + if (jj_3R_219()) return true; return false; } - final private boolean jj_3R_208() { + final private boolean jj_3R_298() { + if (jj_scan_token(DATE_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3R_103() { + if (jj_scan_token(COMMIT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_433()) { - jj_scanpos = xsp; - if (jj_3_434()) { - jj_scanpos = xsp; - if (jj_3_435()) { - jj_scanpos = xsp; - if (jj_3_436()) { - jj_scanpos = xsp; - if (jj_3_437()) { - jj_scanpos = xsp; - if (jj_3_438()) { - jj_scanpos = xsp; - if (jj_3_439()) return true; - } - } - } - } - } - } + if (jj_3_133()) jj_scanpos = xsp; return false; } - final private boolean jj_3_126() { - if (jj_scan_token(NOLOGGING)) return true; + final private boolean jj_3R_222() { return false; } - final private boolean jj_3_433() { - if (jj_scan_token(LT)) return true; + final private boolean jj_3_943() { + if (jj_scan_token(COMMA)) return true; + if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3R_292() { - if (jj_scan_token(CONTAINS_SUBSTR)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_455() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_125() { - if (jj_scan_token(LOGGING)) return true; + final private boolean jj_3_942() { + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_407() { + final private boolean jj_3_460() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_455()) { + jj_scanpos = xsp; + if (jj_3R_222()) return true; + } + if (jj_3R_174()) return true; return false; } - final private boolean jj_3R_92() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(TABLE)) return true; + final private boolean jj_3R_100() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3_430() { - if (jj_3R_214()) return true; + final private boolean jj_3R_296() { + if (jj_scan_token(CONTAINS_SUBSTR)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_423() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_132() { + if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3_122() { - if (jj_3R_130()) return true; + final private boolean jj_3R_99() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(COMPUTE)) return true; return false; } - final private boolean jj_3R_132() { + final private boolean jj_3_459() { + if (jj_scan_token(ROW)) return true; + if (jj_3R_174()) return true; + return false; + } + + final private boolean jj_3_458() { + if (jj_3R_221()) return true; + return false; + } + + final private boolean jj_3R_213() { Token xsp; xsp = jj_scanpos; - if (jj_3_121()) { + if (jj_3_457()) { jj_scanpos = xsp; - if (jj_3_122()) return true; + if (jj_3_458()) { + jj_scanpos = xsp; + if (jj_3_459()) { + jj_scanpos = xsp; + if (jj_3_460()) return true; + } + } } return false; } - final private boolean jj_3_121() { - if (jj_3R_129()) return true; + final private boolean jj_3_457() { + if (jj_3R_220()) return true; return false; } - final private boolean jj_3_422() { - if (jj_3R_81()) return true; + final private boolean jj_3_941() { + if (jj_3R_327()) return true; return false; } - final private boolean jj_3_921() { - if (jj_3R_323()) return true; + final private boolean jj_3R_97() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3_421() { - if (jj_scan_token(SAFE_ORDINAL)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_940() { + if (jj_3R_325()) return true; return false; } - final private boolean jj_3_420() { - if (jj_scan_token(SAFE_OFFSET)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; + final private boolean jj_3R_98() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(TRANSACTION)) return true; + return false; } - final private boolean jj_3_419() { - if (jj_scan_token(ORDINAL)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_939() { + if (jj_3R_326()) return true; return false; } - final private boolean jj_3_418() { - if (jj_scan_token(OFFSET)) return true; + final private boolean jj_3_454() { + if (jj_scan_token(NE2)) return true; + return false; + } + + final private boolean jj_3R_315() { + if (jj_scan_token(JSON_ARRAYAGG)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_429() { - if (jj_scan_token(LBRACKET)) return true; + final private boolean jj_3_453() { + if (jj_scan_token(NE)) return true; + return false; + } + + final private boolean jj_3_452() { + if (jj_scan_token(EQ)) return true; + return false; + } + + final private boolean jj_3_451() { + if (jj_scan_token(GE)) return true; + return false; + } + + final private boolean jj_3R_96() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(CONTINUOUS)) return true; + return false; + } + + final private boolean jj_3_450() { + if (jj_scan_token(GT)) return true; + return false; + } + + final private boolean jj_3_449() { + if (jj_scan_token(LE)) return true; + return false; + } + + final private boolean jj_3R_212() { Token xsp; xsp = jj_scanpos; - if (jj_3_418()) { + if (jj_3_448()) { jj_scanpos = xsp; - if (jj_3_419()) { + if (jj_3_449()) { jj_scanpos = xsp; - if (jj_3_420()) { + if (jj_3_450()) { + jj_scanpos = xsp; + if (jj_3_451()) { jj_scanpos = xsp; - if (jj_3_421()) { + if (jj_3_452()) { jj_scanpos = xsp; - if (jj_3_422()) return true; + if (jj_3_453()) { + jj_scanpos = xsp; + if (jj_3_454()) return true; + } + } } } } @@ -29655,180 +29429,264 @@ final private boolean jj_3_429() { return false; } - final private boolean jj_3_120() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_448() { + if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3_920() { - if (jj_3R_321()) return true; + final private boolean jj_3R_326() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_428() { - if (jj_3R_213()) return true; - if (jj_3R_210()) return true; + final private boolean jj_3R_419() { return false; } - final private boolean jj_3R_129() { - if (jj_3R_84()) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_445() { + if (jj_3R_218()) return true; return false; } - final private boolean jj_3_427() { - if (jj_3R_212()) return true; + final private boolean jj_3R_95() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3_919() { - if (jj_3R_322()) return true; + final private boolean jj_3_438() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_311() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + final private boolean jj_3_938() { + if (jj_3R_325()) return true; + return false; + } + + final private boolean jj_3_936() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_937() { + if (jj_3R_79()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_936()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3R_314() { + if (jj_scan_token(JSON_ARRAY)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_417() { + final private boolean jj_3_437() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_436() { + if (jj_scan_token(SAFE_ORDINAL)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_435() { + if (jj_scan_token(SAFE_OFFSET)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_434() { + if (jj_scan_token(ORDINAL)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_433() { + if (jj_scan_token(OFFSET)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_444() { + if (jj_scan_token(LBRACKET)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_433()) { + jj_scanpos = xsp; + if (jj_3_434()) { + jj_scanpos = xsp; + if (jj_3_435()) { + jj_scanpos = xsp; + if (jj_3_436()) { + jj_scanpos = xsp; + if (jj_3_437()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_443() { + if (jj_3R_217()) return true; + if (jj_3R_214()) return true; + return false; + } + + final private boolean jj_3_935() { + if (jj_3R_325()) return true; + return false; + } + + final private boolean jj_3_442() { + if (jj_3R_216()) return true; + return false; + } + + final private boolean jj_3_432() { if (jj_scan_token(ESCAPE)) return true; - if (jj_3R_209()) return true; + if (jj_3R_213()) return true; return false; } - final private boolean jj_3_119() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_129()) return true; + final private boolean jj_3R_313() { + if (jj_scan_token(JSON_OBJECTAGG)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_413() { + final private boolean jj_3_428() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_416() { + final private boolean jj_3_431() { if (jj_scan_token(TILDE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_413()) jj_scanpos = xsp; + if (jj_3_428()) jj_scanpos = xsp; return false; } - final private boolean jj_3_412() { + final private boolean jj_3_427() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_411() { + final private boolean jj_3_426() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_415() { + final private boolean jj_3_430() { if (jj_scan_token(NEGATE)) return true; if (jj_scan_token(TILDE)) return true; return false; } - final private boolean jj_3R_130() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_129()) return true; - return false; - } - - final private boolean jj_3_410() { + final private boolean jj_3_425() { if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3R_322() { - if (jj_3R_70()) return true; + final private boolean jj_3_131() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_409() { + final private boolean jj_3_424() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_406() { + final private boolean jj_3_421() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_408() { + final private boolean jj_3_423() { if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_405() { + final private boolean jj_3_130() { + if (jj_scan_token(MINUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + return false; + } + + final private boolean jj_3_420() { if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3_404() { + final private boolean jj_3_419() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_403() { - if (jj_scan_token(LIKE)) return true; + final private boolean jj_3_129() { + if (jj_scan_token(PLUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_407() { - if (jj_scan_token(NOT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_403()) { - jj_scanpos = xsp; - if (jj_3_404()) { - jj_scanpos = xsp; - if (jj_3_405()) { - jj_scanpos = xsp; - if (jj_3_406()) return true; - } - } - } + final private boolean jj_3_418() { + if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_918() { - if (jj_3R_321()) return true; + final private boolean jj_3_934() { + if (jj_3R_325()) return true; return false; } - final private boolean jj_3_916() { + final private boolean jj_3_932() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + if (jj_3R_324()) return true; return false; } - final private boolean jj_3R_212() { - if (jj_scan_token(INFIX_CAST)) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_422() { + if (jj_scan_token(NOT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_418()) { + jj_scanpos = xsp; + if (jj_3_419()) { + jj_scanpos = xsp; + if (jj_3_420()) { + jj_scanpos = xsp; + if (jj_3_421()) return true; + } + } + } return false; } - final private boolean jj_3_414() { + final private boolean jj_3_429() { Token xsp; xsp = jj_scanpos; - if (jj_3_407()) { + if (jj_3_422()) { jj_scanpos = xsp; - if (jj_3_408()) { + if (jj_3_423()) { jj_scanpos = xsp; - if (jj_3_409()) { + if (jj_3_424()) { jj_scanpos = xsp; - if (jj_3_410()) { + if (jj_3_425()) { jj_scanpos = xsp; - if (jj_3_411()) return true; + if (jj_3_426()) return true; } } } @@ -29836,1320 +29694,1342 @@ final private boolean jj_3_414() { return false; } - final private boolean jj_3_917() { - if (jj_3R_78()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_916()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_933() { + if (jj_3R_324()) return true; return false; } - final private boolean jj_3R_310() { - if (jj_scan_token(JSON_ARRAY)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_245() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_240() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3R_312() { + if (jj_scan_token(JSON_OBJECT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_426() { + final private boolean jj_3_441() { Token xsp; xsp = jj_scanpos; - if (jj_3_414()) { + if (jj_3_429()) { jj_scanpos = xsp; - if (jj_3_415()) { + if (jj_3_430()) { jj_scanpos = xsp; - if (jj_3_416()) return true; + if (jj_3_431()) return true; } } - if (jj_3R_211()) return true; + if (jj_3R_215()) return true; return false; } - final private boolean jj_3_399() { + final private boolean jj_3_414() { if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_400() { + final private boolean jj_3_415() { Token xsp; xsp = jj_scanpos; - if (jj_3_398()) { + if (jj_3_413()) { jj_scanpos = xsp; - if (jj_3_399()) return true; + if (jj_3_414()) return true; } return false; } - final private boolean jj_3_398() { + final private boolean jj_3_413() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3R_239() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3R_94() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_915() { - if (jj_3R_321()) return true; + final private boolean jj_3_411() { + if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_396() { - if (jj_scan_token(ASYMMETRIC)) return true; + final private boolean jj_3_931() { + if (jj_scan_token(ABSENT)) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_402() { + final private boolean jj_3_417() { if (jj_scan_token(BETWEEN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_400()) jj_scanpos = xsp; + if (jj_3_415()) jj_scanpos = xsp; return false; } - final private boolean jj_3_397() { + final private boolean jj_3_412() { Token xsp; xsp = jj_scanpos; - if (jj_3_395()) { + if (jj_3_410()) { jj_scanpos = xsp; - if (jj_3_396()) return true; + if (jj_3_411()) return true; } return false; } - final private boolean jj_3_395() { + final private boolean jj_3_410() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3R_363() { - return false; - } - - final private boolean jj_3R_309() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3R_133() { + final private boolean jj_3R_325() { Token xsp; xsp = jj_scanpos; - if (jj_3_118()) { + if (jj_3_930()) { jj_scanpos = xsp; - if (jj_3R_363()) return true; + if (jj_3_931()) return true; } return false; } - final private boolean jj_3_118() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(EXISTS)) return true; + final private boolean jj_3_930() { + if (jj_scan_token(NULL)) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_401() { + final private boolean jj_3_416() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(BETWEEN)) return true; return false; } - final private boolean jj_3_425() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_401()) { - jj_scanpos = xsp; - if (jj_3_402()) return true; - } - if (jj_3R_210()) return true; + final private boolean jj_3R_241() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_117() { - if (jj_scan_token(INLINE_SIZE)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_124() { + if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_914() { - if (jj_3R_321()) return true; + final private boolean jj_3_929() { + if (jj_scan_token(COLON)) return true; return false; } - final private boolean jj_3_116() { - if (jj_scan_token(PARALLEL)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_123() { + if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_115() { + final private boolean jj_3_926() { + if (jj_scan_token(KEY)) return true; + if (jj_3R_323()) return true; + return false; + } + + final private boolean jj_3_440() { Token xsp; xsp = jj_scanpos; - if (jj_3_116()) { + if (jj_3_416()) { jj_scanpos = xsp; - if (jj_3_117()) return true; + if (jj_3_417()) return true; } + if (jj_3R_214()) return true; return false; } - final private boolean jj_3_912() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_320()) return true; - return false; - } - - final private boolean jj_3_391() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_128() { + if (jj_scan_token(DROP)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_124()) jj_scanpos = xsp; + if (jj_3R_134()) return true; + if (jj_3R_135()) return true; return false; } - final private boolean jj_3_390() { - if (jj_scan_token(ANY)) return true; + final private boolean jj_3_928() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_114() { - if (jj_3R_84()) return true; + final private boolean jj_3_927() { + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_389() { - if (jj_scan_token(SOME)) return true; + final private boolean jj_3_127() { + if (jj_scan_token(ADD)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_123()) jj_scanpos = xsp; + if (jj_3R_132()) return true; + if (jj_3R_133()) return true; return false; } - final private boolean jj_3_913() { - if (jj_3R_320()) return true; + final private boolean jj_3_126() { + if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_394() { - if (jj_3R_208()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_389()) { - jj_scanpos = xsp; - if (jj_3_390()) { - jj_scanpos = xsp; - if (jj_3_391()) return true; - } - } + final private boolean jj_3R_424() { return false; } - final private boolean jj_3R_236() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_131()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_114()) jj_scanpos = xsp; - if (jj_scan_token(ON)) return true; + final private boolean jj_3_125() { + if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3R_308() { - if (jj_scan_token(JSON_OBJECT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_414() { + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_393() { - if (jj_scan_token(IN)) return true; + final private boolean jj_3_406() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_392() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(IN)) return true; + final private boolean jj_3_405() { + if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_424() { + final private boolean jj_3R_324() { Token xsp; xsp = jj_scanpos; - if (jj_3_392()) { + if (jj_3R_414()) jj_scanpos = xsp; + if (jj_3R_323()) return true; + xsp = jj_scanpos; + if (jj_3_927()) { jj_scanpos = xsp; - if (jj_3_393()) { + if (jj_3_928()) { jj_scanpos = xsp; - if (jj_3_394()) return true; + if (jj_3_929()) return true; } } - if (jj_3R_173()) return true; return false; } - final private boolean jj_3_113() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_128()) return true; + final private boolean jj_3R_93() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(TABLE)) return true; return false; } - final private boolean jj_3_911() { - if (jj_scan_token(ABSENT)) return true; - if (jj_scan_token(ON)) return true; + final private boolean jj_3_404() { + if (jj_scan_token(SOME)) return true; return false; } - final private boolean jj_3R_321() { + final private boolean jj_3_409() { + if (jj_3R_212()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_910()) { + if (jj_3_404()) { + jj_scanpos = xsp; + if (jj_3_405()) { jj_scanpos = xsp; - if (jj_3_911()) return true; + if (jj_3_406()) return true; + } } return false; } - final private boolean jj_3_431() { + final private boolean jj_3R_384() { Token xsp; xsp = jj_scanpos; - if (jj_3_424()) { - jj_scanpos = xsp; - if (jj_3_425()) { - jj_scanpos = xsp; - if (jj_3_426()) { - jj_scanpos = xsp; - if (jj_3_427()) { - jj_scanpos = xsp; - if (jj_3_428()) { - jj_scanpos = xsp; - if (jj_3_429()) { - jj_scanpos = xsp; - if (jj_3_430()) return true; - } - } - } - } - } - } + lookingAhead = true; + jj_semLA = false; + lookingAhead = false; + if (!jj_semLA || jj_3R_424()) return true; + if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_910() { - if (jj_scan_token(NULL)) return true; - if (jj_scan_token(ON)) return true; + final private boolean jj_3_408() { + if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_432() { - Token xsp; - if (jj_3_431()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_431()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3R_323() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_211() { - if (jj_3R_210()) return true; + final private boolean jj_3_407() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(IN)) return true; + return false; + } + + final private boolean jj_3_122() { + if (jj_3R_131()) return true; + return false; + } + + final private boolean jj_3R_133() { Token xsp; xsp = jj_scanpos; - if (jj_3_432()) { + if (jj_3_121()) { jj_scanpos = xsp; - if (jj_3R_407()) return true; + if (jj_3_122()) return true; } return false; } - final private boolean jj_3_909() { - if (jj_scan_token(COLON)) return true; + final private boolean jj_3_121() { + if (jj_3R_130()) return true; return false; } - final private boolean jj_3_111() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_439() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_407()) { + jj_scanpos = xsp; + if (jj_3_408()) { + jj_scanpos = xsp; + if (jj_3_409()) return true; + } + } + if (jj_3R_174()) return true; return false; } - final private boolean jj_3_112() { + final private boolean jj_3_120() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3_446() { Token xsp; xsp = jj_scanpos; - if (jj_3_110()) { + if (jj_3_439()) { jj_scanpos = xsp; - if (jj_3_111()) return true; + if (jj_3_440()) { + jj_scanpos = xsp; + if (jj_3_441()) { + jj_scanpos = xsp; + if (jj_3_442()) { + jj_scanpos = xsp; + if (jj_3_443()) { + jj_scanpos = xsp; + if (jj_3_444()) { + jj_scanpos = xsp; + if (jj_3_445()) return true; + } + } + } + } + } } return false; } - final private boolean jj_3_110() { - if (jj_scan_token(ASC)) return true; + final private boolean jj_3_925() { + if (jj_3R_322()) return true; return false; } - final private boolean jj_3_906() { - if (jj_scan_token(KEY)) return true; - if (jj_3R_319()) return true; + final private boolean jj_3R_130() { + if (jj_3R_85()) return true; + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_908() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_447() { + Token xsp; + if (jj_3_446()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_446()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3R_128() { - if (jj_3R_84()) return true; + final private boolean jj_3_924() { + if (jj_3R_321()) return true; + if (jj_scan_token(WRAPPER)) return true; return false; } - final private boolean jj_3_907() { - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3R_215() { + if (jj_3R_214()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_447()) { + jj_scanpos = xsp; + if (jj_3R_419()) return true; + } return false; } - final private boolean jj_3R_402() { - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_919() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3R_126() { + final private boolean jj_3_923() { + if (jj_3R_319()) return true; return false; } - final private boolean jj_3_107() { - if (jj_3R_124()) return true; + final private boolean jj_3_119() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_130()) return true; return false; } - final private boolean jj_3R_412() { + final private boolean jj_3_917() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3R_320() { - Token xsp; - xsp = jj_scanpos; - if (jj_3R_402()) jj_scanpos = xsp; - if (jj_3R_319()) return true; - xsp = jj_scanpos; - if (jj_3_907()) { - jj_scanpos = xsp; - if (jj_3_908()) { - jj_scanpos = xsp; - if (jj_3_909()) return true; - } - } + final private boolean jj_3R_311() { + if (jj_scan_token(JSON_QUERY)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_109() { + final private boolean jj_3R_131() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_130()) return true; + return false; + } + + final private boolean jj_3_918() { + if (jj_scan_token(UNCONDITIONAL)) return true; + return false; + } + + final private boolean jj_3_916() { + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3_922() { + if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_107()) { - jj_scanpos = xsp; - if (jj_3R_126()) return true; - } - if (jj_3R_127()) return true; - if (jj_scan_token(AS)) return true; - if (jj_3R_79()) return true; + if (jj_3_918()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_919()) jj_scanpos = xsp; return false; } - final private boolean jj_3_108() { - if (jj_3R_125()) return true; + final private boolean jj_3R_216() { + if (jj_scan_token(INFIX_CAST)) return true; + if (jj_3R_123()) return true; return false; } - final private boolean jj_3R_319() { - if (jj_3R_81()) return true; + final private boolean jj_3_921() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3_388() { + final private boolean jj_3_403() { if (jj_scan_token(DOT)) return true; - if (jj_3R_207()) return true; + if (jj_3R_211()) return true; return false; } - final private boolean jj_3R_375() { + final private boolean jj_3R_321() { Token xsp; xsp = jj_scanpos; - lookingAhead = true; - jj_semLA = false; - lookingAhead = false; - if (!jj_semLA || jj_3R_412()) return true; - if (jj_scan_token(ZONE)) return true; + if (jj_3_920()) { + jj_scanpos = xsp; + if (jj_3_921()) { + jj_scanpos = xsp; + if (jj_3_922()) return true; + } + } return false; } - final private boolean jj_3R_235() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_131()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_920() { + if (jj_scan_token(WITHOUT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_916()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_383() { - if (jj_3R_414()) return true; + final private boolean jj_3R_244() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_134()) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3R_210() { + final private boolean jj_3_915() { + if (jj_scan_token(ERROR)) return true; + return false; + } + + final private boolean jj_3R_393() { + if (jj_3R_426()) return true; + return false; + } + + final private boolean jj_3_914() { + if (jj_scan_token(EMPTY)) return true; + return false; + } + + final private boolean jj_3R_214() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3R_383()) { jj_scanpos = xsp; break; } + if (jj_3R_393()) { jj_scanpos = xsp; break; } } - if (jj_3R_209()) return true; + if (jj_3R_213()) return true; while (true) { xsp = jj_scanpos; - if (jj_3_388()) { jj_scanpos = xsp; break; } + if (jj_3_403()) { jj_scanpos = xsp; break; } } + if (jj_3R_394()) return true; return false; } - final private boolean jj_3_905() { - if (jj_3R_318()) return true; + final private boolean jj_3R_243() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_134()) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_106() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3_913() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_904() { - if (jj_3R_317()) return true; - if (jj_scan_token(WRAPPER)) return true; + final private boolean jj_3_402() { + if (jj_3R_85()) return true; + if (jj_scan_token(RBRACKET)) return true; return false; } - final private boolean jj_3R_81() { - if (jj_3R_211()) return true; + final private boolean jj_3_912() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_899() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3R_367() { return false; } - final private boolean jj_3R_125() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3_911() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_903() { - if (jj_3R_315()) return true; + final private boolean jj_3R_134() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_118()) { + jj_scanpos = xsp; + if (jj_3R_367()) return true; + } return false; } - final private boolean jj_3_897() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_118() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3R_78() { - if (jj_3R_81()) return true; + final private boolean jj_3R_392() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_307() { - if (jj_scan_token(JSON_QUERY)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_910() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_103() { - if (jj_scan_token(CONSTRAINT)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_401() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_105() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_103()) jj_scanpos = xsp; - if (jj_scan_token(PRIMARY)) return true; - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_400() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_898() { - if (jj_scan_token(UNCONDITIONAL)) return true; + final private boolean jj_3R_322() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_910()) { + jj_scanpos = xsp; + if (jj_3_911()) { + jj_scanpos = xsp; + if (jj_3_912()) { + jj_scanpos = xsp; + if (jj_3_913()) return true; + } + } + } + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_387() { - if (jj_3R_81()) return true; + final private boolean jj_3_117() { + if (jj_scan_token(INLINE_SIZE)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3R_250() { + final private boolean jj_3R_209() { + if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_386()) { + if (jj_3_400()) { jj_scanpos = xsp; - if (jj_3_387()) return true; + if (jj_3_401()) { + jj_scanpos = xsp; + if (jj_3R_392()) return true; + } } return false; } - final private boolean jj_3_102() { - if (jj_scan_token(PRIMARY)) return true; - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_909() { + if (jj_3R_320()) return true; return false; } - final private boolean jj_3_386() { - if (jj_3R_206()) return true; + final private boolean jj_3_116() { + if (jj_scan_token(PARALLEL)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_896() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_115() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_116()) { + jj_scanpos = xsp; + if (jj_3_117()) return true; + } return false; } - final private boolean jj_3_902() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_898()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_899()) jj_scanpos = xsp; + final private boolean jj_3_398() { + if (jj_3R_209()) return true; return false; } - final private boolean jj_3_901() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(CONDITIONAL)) return true; + final private boolean jj_3_908() { + if (jj_3R_319()) return true; return false; } - final private boolean jj_3_101() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_119()) return true; + final private boolean jj_3_114() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_385() { - if (jj_3R_124()) return true; + final private boolean jj_3R_210() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_317() { + final private boolean jj_3_397() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_396() { Token xsp; xsp = jj_scanpos; - if (jj_3_900()) { + if (jj_3_397()) { jj_scanpos = xsp; - if (jj_3_901()) { - jj_scanpos = xsp; - if (jj_3_902()) return true; - } + if (jj_3_398()) return true; } return false; } - final private boolean jj_3_900() { - if (jj_scan_token(WITHOUT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_896()) jj_scanpos = xsp; + final private boolean jj_3R_310() { + if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_205() { - if (jj_3R_84()) return true; + final private boolean jj_3_395() { + if (jj_3R_209()) return true; return false; } - final private boolean jj_3R_123() { + final private boolean jj_3R_240() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_132()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_104()) { - jj_scanpos = xsp; - if (jj_3_105()) return true; - } + if (jj_3_114()) jj_scanpos = xsp; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_104() { - if (jj_3R_84()) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_399() { + if (jj_scan_token(COLON)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3R_210()) { + jj_scanpos = xsp; + if (jj_scan_token(775)) return true; + } return false; } - final private boolean jj_3_383() { - if (jj_scan_token(RECURSIVE)) return true; + final private boolean jj_3_394() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_895() { + final private boolean jj_3_907() { if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_384() { + final private boolean jj_3_113() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_205()) return true; + if (jj_3R_129()) return true; return false; } - final private boolean jj_3_894() { + final private boolean jj_3_906() { if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3R_204() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_383()) jj_scanpos = xsp; - if (jj_3R_205()) return true; + final private boolean jj_3R_427() { + if (jj_scan_token(COLON)) return true; return false; } - final private boolean jj_3_893() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_905() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3R_121() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; + final private boolean jj_3R_394() { + Token xsp; + xsp = jj_scanpos; + if (jj_3R_427()) jj_scanpos = xsp; return false; } - final private boolean jj_3_892() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_904() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_891() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_903() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_100() { - if (jj_3R_121()) return true; + final private boolean jj_3_111() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_99() { - if (jj_3R_120()) return true; + final private boolean jj_3_112() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_110()) { + jj_scanpos = xsp; + if (jj_3_111()) return true; + } return false; } - final private boolean jj_3_890() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_110() { + if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3R_318() { + final private boolean jj_3R_320() { Token xsp; xsp = jj_scanpos; - if (jj_3_890()) { - jj_scanpos = xsp; - if (jj_3_891()) { + if (jj_3_903()) { jj_scanpos = xsp; - if (jj_3_892()) { + if (jj_3_904()) { jj_scanpos = xsp; - if (jj_3_893()) return true; - } + if (jj_3_905()) return true; } } if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_122() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_99()) { - jj_scanpos = xsp; - if (jj_3_100()) return true; - } - return false; - } - - final private boolean jj_3R_67() { - if (jj_3R_344()) return true; + final private boolean jj_3R_129() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_98() { - if (jj_3R_84()) return true; + final private boolean jj_3R_82() { + if (jj_3R_215()) return true; return false; } - final private boolean jj_3_97() { - if (jj_3R_119()) return true; + final private boolean jj_3_902() { + if (jj_3R_318()) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_889() { - if (jj_3R_316()) return true; + final private boolean jj_3R_127() { return false; } - final private boolean jj_3R_118() { - if (jj_3R_359()) return true; - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_107() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_888() { - if (jj_3R_315()) return true; + final private boolean jj_3R_79() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_306() { - if (jj_scan_token(JSON_VALUE)) return true; + final private boolean jj_3R_309() { + if (jj_scan_token(JSON_EXISTS)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_96() { - if (jj_scan_token(WRAP_VALUE)) return true; - return false; - } - - final private boolean jj_3_95() { - if (jj_scan_token(WRAP_KEY)) return true; + final private boolean jj_3_109() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_107()) { + jj_scanpos = xsp; + if (jj_3R_127()) return true; + } + if (jj_3R_128()) return true; + if (jj_scan_token(AS)) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_94() { - if (jj_scan_token(ENCRYPTED)) return true; + final private boolean jj_3_108() { + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_93() { - if (jj_scan_token(VALUE_TYPE)) return true; + final private boolean jj_3_393() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_92() { - if (jj_scan_token(KEY_TYPE)) return true; + final private boolean jj_3R_254() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_392()) { + jj_scanpos = xsp; + if (jj_3_393()) return true; + } return false; } - final private boolean jj_3_91() { - if (jj_scan_token(DATA_REGION)) return true; + final private boolean jj_3_392() { + if (jj_3R_207()) return true; return false; } - final private boolean jj_3_887() { + final private boolean jj_3_901() { if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_90() { - if (jj_scan_token(CACHE_NAME)) return true; + final private boolean jj_3_900() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_89() { - if (jj_scan_token(CACHE_GROUP)) return true; + final private boolean jj_3_899() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_886() { - if (jj_scan_token(EMPTY)) return true; - return false; + final private boolean jj_3R_318() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_898()) { + jj_scanpos = xsp; + if (jj_3_899()) { + jj_scanpos = xsp; + if (jj_3_900()) { + jj_scanpos = xsp; + if (jj_3_901()) return true; + } + } + } + return false; } - final private boolean jj_3_88() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + final private boolean jj_3_898() { + if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_87() { - if (jj_scan_token(ATOMICITY)) return true; + final private boolean jj_3R_239() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_132()) return true; + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_86() { - if (jj_scan_token(AFFINITY_KEY)) return true; + final private boolean jj_3_391() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_85() { - if (jj_scan_token(BACKUPS)) return true; + final private boolean jj_3R_208() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_885() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_896() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_359() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_84()) { - jj_scanpos = xsp; - if (jj_3_85()) { - jj_scanpos = xsp; - if (jj_3_86()) { - jj_scanpos = xsp; - if (jj_3_87()) { - jj_scanpos = xsp; - if (jj_3_88()) { - jj_scanpos = xsp; - if (jj_3_89()) { - jj_scanpos = xsp; - if (jj_3_90()) { - jj_scanpos = xsp; - if (jj_3_91()) { - jj_scanpos = xsp; - if (jj_3_92()) { - jj_scanpos = xsp; - if (jj_3_93()) { - jj_scanpos = xsp; - if (jj_3_94()) { - jj_scanpos = xsp; - if (jj_3_95()) { - jj_scanpos = xsp; - if (jj_3_96()) return true; - } - } - } - } - } - } - } - } - } - } - } - } + final private boolean jj_3_389() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3_84() { - if (jj_scan_token(TEMPLATE)) return true; + final private boolean jj_3_106() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_124()) return true; return false; } - final private boolean jj_3_80() { + final private boolean jj_3_390() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_118()) return true; + if (jj_3R_208()) return true; return false; } - final private boolean jj_3_884() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3R_206() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_389()) jj_scanpos = xsp; + if (jj_3R_208()) return true; return false; } - final private boolean jj_3_382() { - if (jj_3R_67()) return true; + final private boolean jj_3R_126() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_124()) return true; return false; } - final private boolean jj_3_381() { - if (jj_3R_204()) return true; + final private boolean jj_3_897() { + if (jj_scan_token(PASSING)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_883() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_103() { + if (jj_scan_token(CONSTRAINT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_68() { + final private boolean jj_3_105() { Token xsp; xsp = jj_scanpos; - if (jj_3_381()) jj_scanpos = xsp; - if (jj_3R_206()) return true; + if (jj_3_103()) jj_scanpos = xsp; + if (jj_scan_token(PRIMARY)) return true; + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_82() { - if (jj_3R_118()) return true; + final private boolean jj_3_102() { + if (jj_scan_token(PRIMARY)) return true; + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3R_316() { + final private boolean jj_3R_68() { + if (jj_3R_348()) return true; + return false; + } + + final private boolean jj_3_895() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_317()) return true; + return false; + } + + final private boolean jj_3_101() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_120()) return true; + return false; + } + + final private boolean jj_3R_124() { Token xsp; xsp = jj_scanpos; - if (jj_3_883()) { - jj_scanpos = xsp; - if (jj_3_884()) { + if (jj_3_104()) { jj_scanpos = xsp; - if (jj_3_885()) return true; - } + if (jj_3_105()) return true; } - if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_81() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_104() { + if (jj_3R_85()) return true; + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_380() { - if (jj_3R_67()) return true; + final private boolean jj_3R_319() { + if (jj_scan_token(RETURNING)) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_379() { - if (jj_3R_204()) return true; + final private boolean jj_3R_122() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_219()) return true; return false; } - final private boolean jj_3R_347() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_379()) jj_scanpos = xsp; - if (jj_3R_250()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_380()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_893() { + if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3_882() { - if (jj_3R_314()) return true; - if (jj_scan_token(ON)) return true; + final private boolean jj_3_892() { + if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3_83() { - if (jj_scan_token(WITH)) return true; + final private boolean jj_3_891() { + if (jj_scan_token(UTF8)) return true; + return false; + } + + final private boolean jj_3_100() { + if (jj_3R_122()) return true; + return false; + } + + final private boolean jj_3_99() { + if (jj_3R_121()) return true; + return false; + } + + final private boolean jj_3_894() { + if (jj_scan_token(ENCODING)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_81()) { + if (jj_3_891()) { jj_scanpos = xsp; - if (jj_3_82()) return true; + if (jj_3_892()) { + jj_scanpos = xsp; + if (jj_3_893()) return true; + } } return false; } - final private boolean jj_3R_127() { + final private boolean jj_3R_123() { Token xsp; xsp = jj_scanpos; - if (jj_3_83()) jj_scanpos = xsp; + if (jj_3_99()) { + jj_scanpos = xsp; + if (jj_3_100()) return true; + } return false; } - final private boolean jj_3R_305() { - if (jj_scan_token(JSON_EXISTS)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_317() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3R_362() { + final private boolean jj_3_388() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3R_131() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_79()) { - jj_scanpos = xsp; - if (jj_3R_362()) return true; - } + final private boolean jj_3_387() { + if (jj_3R_207()) return true; return false; } - final private boolean jj_3_79() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_386() { + if (jj_3R_206()) return true; return false; } - final private boolean jj_3_881() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_890() { + if (jj_3R_316()) return true; return false; } - final private boolean jj_3_880() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_98() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_879() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_889() { + if (jj_3R_315()) return true; return false; } - final private boolean jj_3R_314() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_878()) { - jj_scanpos = xsp; - if (jj_3_879()) { - jj_scanpos = xsp; - if (jj_3_880()) { - jj_scanpos = xsp; - if (jj_3_881()) return true; - } - } - } + final private boolean jj_3_97() { + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_878() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_888() { + if (jj_3R_314()) return true; return false; } - final private boolean jj_3_876() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3R_69() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_386()) { + jj_scanpos = xsp; + if (jj_3_387()) return true; + } return false; } - final private boolean jj_3_78() { - if (jj_3R_117()) return true; + final private boolean jj_3_887() { + if (jj_3R_313()) return true; return false; } - final private boolean jj_3_77() { - if (jj_3R_116()) return true; + final private boolean jj_3_886() { + if (jj_3R_312()) return true; return false; } - final private boolean jj_3_76() { - if (jj_3R_115()) return true; + final private boolean jj_3R_119() { + if (jj_3R_363()) return true; + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_75() { - if (jj_3R_114()) return true; + final private boolean jj_3_885() { + if (jj_3R_311()) return true; return false; } - final private boolean jj_3_74() { - if (jj_3R_113()) return true; + final private boolean jj_3_884() { + if (jj_3R_310()) return true; return false; } - final private boolean jj_3_877() { - if (jj_scan_token(PASSING)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_385() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_73() { - if (jj_3R_112()) return true; + final private boolean jj_3_883() { + if (jj_3R_309()) return true; return false; } - final private boolean jj_3R_203() { - if (jj_3R_84()) return true; + final private boolean jj_3_384() { + if (jj_3R_206()) return true; return false; } - final private boolean jj_3_72() { - if (jj_3R_111()) return true; + final private boolean jj_3_882() { + if (jj_3R_308()) return true; return false; } - final private boolean jj_3_71() { - if (jj_3R_79()) return true; + final private boolean jj_3R_351() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_384()) jj_scanpos = xsp; + if (jj_3R_254()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_385()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_70() { - if (jj_3R_110()) return true; + final private boolean jj_3_881() { + if (jj_3R_307()) return true; return false; } - final private boolean jj_3_69() { - if (jj_3R_109()) return true; + final private boolean jj_3_96() { + if (jj_scan_token(WRAP_VALUE)) return true; return false; } - final private boolean jj_3_68() { - if (jj_3R_108()) return true; + final private boolean jj_3_880() { + if (jj_3R_306()) return true; return false; } - final private boolean jj_3_67() { - if (jj_3R_107()) return true; + final private boolean jj_3_95() { + if (jj_scan_token(WRAP_KEY)) return true; return false; } - final private boolean jj_3_66() { - if (jj_3R_106()) return true; + final private boolean jj_3_879() { + if (jj_3R_305()) return true; return false; } - final private boolean jj_3_378() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_203()) return true; + final private boolean jj_3_94() { + if (jj_scan_token(ENCRYPTED)) return true; return false; } - final private boolean jj_3_65() { - if (jj_3R_105()) return true; + final private boolean jj_3_878() { + if (jj_3R_304()) return true; return false; } - final private boolean jj_3_64() { - if (jj_3R_104()) return true; + final private boolean jj_3_93() { + if (jj_scan_token(VALUE_TYPE)) return true; return false; } - final private boolean jj_3_63() { - if (jj_3R_103()) return true; + final private boolean jj_3_877() { + if (jj_3R_303()) return true; return false; } - final private boolean jj_3_62() { - if (jj_3R_102()) return true; + final private boolean jj_3_92() { + if (jj_scan_token(KEY_TYPE)) return true; return false; } - final private boolean jj_3_61() { - if (jj_3R_101()) return true; + final private boolean jj_3_876() { + if (jj_3R_302()) return true; return false; } - final private boolean jj_3_60() { - if (jj_3R_100()) return true; + final private boolean jj_3_91() { + if (jj_scan_token(DATA_REGION)) return true; return false; } final private boolean jj_3_875() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_313()) return true; + if (jj_3R_301()) return true; return false; } - final private boolean jj_3_59() { - if (jj_3R_99()) return true; + final private boolean jj_3_90() { + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_58() { - if (jj_3R_98()) return true; + final private boolean jj_3_874() { + if (jj_3R_300()) return true; return false; } - final private boolean jj_3_57() { - if (jj_3R_97()) return true; + final private boolean jj_3_89() { + if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_56() { - if (jj_3R_96()) return true; + final private boolean jj_3_873() { + if (jj_3R_299()) return true; return false; } - final private boolean jj_3_55() { - if (jj_3R_95()) return true; + final private boolean jj_3_88() { + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3_54() { - if (jj_3R_94()) return true; + final private boolean jj_3_872() { + if (jj_3R_298()) return true; return false; } - final private boolean jj_3R_202() { - if (jj_3R_84()) return true; + final private boolean jj_3_87() { + if (jj_scan_token(ATOMICITY)) return true; return false; } - final private boolean jj_3R_315() { - if (jj_scan_token(RETURNING)) return true; - if (jj_3R_120()) return true; + final private boolean jj_3_871() { + if (jj_3R_297()) return true; return false; } - final private boolean jj_3_53() { - if (jj_3R_93()) return true; + final private boolean jj_3_86() { + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_52() { - if (jj_3R_92()) return true; + final private boolean jj_3_870() { + if (jj_3R_296()) return true; return false; } - final private boolean jj_3R_91() { + final private boolean jj_3_85() { + if (jj_scan_token(BACKUPS)) return true; + return false; + } + + final private boolean jj_3R_363() { Token xsp; xsp = jj_scanpos; - if (jj_3_52()) { - jj_scanpos = xsp; - if (jj_3_53()) { - jj_scanpos = xsp; - if (jj_3_54()) { - jj_scanpos = xsp; - if (jj_3_55()) { - jj_scanpos = xsp; - if (jj_3_56()) { - jj_scanpos = xsp; - if (jj_3_57()) { - jj_scanpos = xsp; - if (jj_3_58()) { - jj_scanpos = xsp; - if (jj_3_59()) { - jj_scanpos = xsp; - if (jj_3_60()) { - jj_scanpos = xsp; - if (jj_3_61()) { - jj_scanpos = xsp; - if (jj_3_62()) { - jj_scanpos = xsp; - if (jj_3_63()) { - jj_scanpos = xsp; - if (jj_3_64()) { - jj_scanpos = xsp; - if (jj_3_65()) { - jj_scanpos = xsp; - if (jj_3_66()) { + if (jj_3_84()) { jj_scanpos = xsp; - if (jj_3_67()) { + if (jj_3_85()) { jj_scanpos = xsp; - if (jj_3_68()) { + if (jj_3_86()) { jj_scanpos = xsp; - if (jj_3_69()) { + if (jj_3_87()) { jj_scanpos = xsp; - if (jj_3_70()) { + if (jj_3_88()) { jj_scanpos = xsp; - if (jj_3_71()) { + if (jj_3_89()) { jj_scanpos = xsp; - if (jj_3_72()) { + if (jj_3_90()) { jj_scanpos = xsp; - if (jj_3_73()) { + if (jj_3_91()) { jj_scanpos = xsp; - if (jj_3_74()) { + if (jj_3_92()) { jj_scanpos = xsp; - if (jj_3_75()) { + if (jj_3_93()) { jj_scanpos = xsp; - if (jj_3_76()) { + if (jj_3_94()) { jj_scanpos = xsp; - if (jj_3_77()) { + if (jj_3_95()) { jj_scanpos = xsp; - if (jj_3_78()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_96()) return true; } } } @@ -31165,2430 +31045,2284 @@ final private boolean jj_3R_91() { return false; } - final private boolean jj_3_377() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_202()) return true; + final private boolean jj_3_84() { + if (jj_scan_token(TEMPLATE)) return true; return false; } - final private boolean jj_3R_194() { - if (jj_3R_202()) return true; + final private boolean jj_3_857() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_873() { - if (jj_scan_token(UTF32)) return true; + final private boolean jj_3_80() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_872() { - if (jj_scan_token(UTF16)) return true; + final private boolean jj_3_82() { + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_50() { - if (jj_3R_91()) return true; + final private boolean jj_3_856() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_871() { - if (jj_scan_token(UTF8)) return true; + final private boolean jj_3_859() { + if (jj_3R_82()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_857()) jj_scanpos = xsp; return false; } - final private boolean jj_3_372() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_201()) return true; + final private boolean jj_3_855() { + if (jj_scan_token(LEADING)) return true; return false; } - final private boolean jj_3_49() { - if (jj_scan_token(SEMICOLON)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_50()) jj_scanpos = xsp; + final private boolean jj_3_81() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_874() { - if (jj_scan_token(ENCODING)) return true; + final private boolean jj_3_854() { + if (jj_scan_token(TRAILING)) return true; + return false; + } + + final private boolean jj_3_83() { + if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_871()) { - jj_scanpos = xsp; - if (jj_3_872()) { + if (jj_3_81()) { jj_scanpos = xsp; - if (jj_3_873()) return true; - } + if (jj_3_82()) return true; } return false; } - final private boolean jj_3_376() { - if (jj_scan_token(PERMUTE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_853() { + if (jj_scan_token(BOTH)) return true; return false; } - final private boolean jj_3R_313() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3R_205() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_51() { - if (jj_3R_91()) return true; + final private boolean jj_3R_128() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_49()) { jj_scanpos = xsp; break; } - } + xsp = jj_scanpos; + if (jj_3_83()) jj_scanpos = xsp; return false; } - final private boolean jj_3_375() { - if (jj_scan_token(LBRACE)) return true; - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_858() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_853()) { + jj_scanpos = xsp; + if (jj_3_854()) { + jj_scanpos = xsp; + if (jj_3_855()) return true; + } + } + xsp = jj_scanpos; + if (jj_3_856()) jj_scanpos = xsp; + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_870() { - if (jj_3R_312()) return true; + final private boolean jj_3R_366() { return false; } - final private boolean jj_3_374() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_201()) return true; + final private boolean jj_3_1829() { + if (jj_scan_token(FRIDAY)) return true; return false; } - final private boolean jj_3_869() { - if (jj_3R_311()) return true; + final private boolean jj_3_1828() { + if (jj_scan_token(TUESDAY)) return true; return false; } - final private boolean jj_3R_380() { + final private boolean jj_3R_132() { Token xsp; xsp = jj_scanpos; - if (jj_3_373()) { - jj_scanpos = xsp; - if (jj_3_374()) { - jj_scanpos = xsp; - if (jj_3_375()) { + if (jj_3_79()) { jj_scanpos = xsp; - if (jj_3_376()) return true; - } - } + if (jj_3R_366()) return true; } return false; } - final private boolean jj_3_373() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_868() { - if (jj_3R_310()) return true; - return false; - } - - final private boolean jj_3_867() { - if (jj_3R_309()) return true; + final private boolean jj_3_1827() { + if (jj_scan_token(WITHOUT)) return true; return false; } - final private boolean jj_3R_90() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_79() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_866() { - if (jj_3R_308()) return true; + final private boolean jj_3_383() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_205()) return true; return false; } - final private boolean jj_3_865() { - if (jj_3R_307()) return true; + final private boolean jj_3_1826() { + if (jj_scan_token(WIDTH_BUCKET)) return true; return false; } - final private boolean jj_3_864() { - if (jj_3R_306()) return true; + final private boolean jj_3_1825() { + if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_863() { - if (jj_3R_305()) return true; + final private boolean jj_3_851() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3R_382() { + final private boolean jj_3_1824() { + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_862() { - if (jj_3R_304()) return true; + final private boolean jj_3_1823() { + if (jj_scan_token(VALUE_OF)) return true; return false; } - final private boolean jj_3_861() { - if (jj_3R_303()) return true; + final private boolean jj_3_1822() { + if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_371() { - if (jj_scan_token(HOOK)) return true; + final private boolean jj_3_1821() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_860() { - if (jj_3R_302()) return true; + final private boolean jj_3_1820() { + if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_859() { - if (jj_3R_301()) return true; + final private boolean jj_3_849() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_858() { - if (jj_3R_300()) return true; + final private boolean jj_3_869() { + if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_366() { - if (jj_scan_token(MINUS)) return true; - if (jj_3R_201()) return true; + final private boolean jj_3_1819() { + if (jj_scan_token(TRIM)) return true; return false; } - final private boolean jj_3_857() { - if (jj_3R_299()) return true; + final private boolean jj_3_1818() { + if (jj_scan_token(TRANSLATION)) return true; return false; } - final private boolean jj_3_856() { - if (jj_3R_298()) return true; + final private boolean jj_3_1817() { + if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3R_200() { + final private boolean jj_3_850() { + if (jj_scan_token(FOR)) return true; return false; } - final private boolean jj_3R_199() { + final private boolean jj_3_1816() { + if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_365() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_198()) return true; + final private boolean jj_3_852() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_850()) { + jj_scanpos = xsp; + if (jj_3_851()) return true; + } + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_855() { - if (jj_3R_297()) return true; + final private boolean jj_3_1815() { + if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3R_80() { - if (jj_scan_token(DEFAULT_)) return true; + final private boolean jj_3_1814() { + if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_362() { - if (jj_3R_198()) return true; + final private boolean jj_3_1813() { + if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3_854() { - if (jj_3R_296()) return true; + final private boolean jj_3_1812() { + if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3R_89() { - if (jj_3R_134()) return true; + final private boolean jj_3_847() { + if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_853() { - if (jj_3R_295()) return true; + final private boolean jj_3_1811() { + if (jj_scan_token(STATIC)) return true; return false; } - final private boolean jj_3_46() { - Token xsp; - xsp = jj_scanpos; - if (jj_3R_89()) { - jj_scanpos = xsp; - if (jj_3R_90()) return true; - } - if (jj_scan_token(LAMBDA)) return true; + final private boolean jj_3_848() { + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_852() { - if (jj_3R_294()) return true; + final private boolean jj_3_1810() { + if (jj_scan_token(SQLWARNING)) return true; return false; } - final private boolean jj_3R_86() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1809() { + if (jj_scan_token(SQL)) return true; return false; } - final private boolean jj_3_363() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_362()) { - jj_scanpos = xsp; - if (jj_3R_199()) return true; - } + final private boolean jj_3_1808() { + if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_851() { - if (jj_3R_293()) return true; + final private boolean jj_3_1807() { + if (jj_scan_token(SHOW)) return true; return false; } - final private boolean jj_3_48() { - if (jj_3R_87()) return true; + final private boolean jj_3_1806() { + if (jj_scan_token(SEEK)) return true; return false; } - final private boolean jj_3_850() { - if (jj_3R_292()) return true; + final private boolean jj_3_868() { + if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_47() { - if (jj_3R_81()) return true; + final private boolean jj_3_1805() { + if (jj_scan_token(SCROLL)) return true; return false; } - final private boolean jj_3_364() { - if (jj_3R_198()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_363()) { - jj_scanpos = xsp; - if (jj_3R_200()) return true; - } - if (jj_scan_token(RBRACE)) return true; + final private boolean jj_3_78() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_837() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1804() { + if (jj_scan_token(SAFE_ORDINAL)) return true; return false; } - final private boolean jj_3R_350() { - if (jj_3R_408()) return true; + final private boolean jj_3_1803() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_45() { - if (jj_3R_80()) return true; + final private boolean jj_3_77() { + if (jj_3R_117()) return true; return false; } - final private boolean jj_3_370() { - if (jj_scan_token(LBRACE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_364()) { - jj_scanpos = xsp; - if (jj_3_365()) { - jj_scanpos = xsp; - if (jj_3_366()) return true; - } - } + final private boolean jj_3_846() { + if (jj_scan_token(CEIL)) return true; return false; } - final private boolean jj_3R_349() { + final private boolean jj_3R_204() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_44() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; + final private boolean jj_3_1802() { + if (jj_scan_token(ROLLUP)) return true; return false; } - final private boolean jj_3_369() { - if (jj_scan_token(HOOK)) return true; + final private boolean jj_3_1801() { + if (jj_scan_token(RETURNS)) return true; return false; } - final private boolean jj_3_836() { - if (jj_3R_81()) return true; + final private boolean jj_3_76() { + if (jj_3R_116()) return true; return false; } - final private boolean jj_3_839() { - if (jj_3R_81()) return true; + final private boolean jj_3_867() { Token xsp; xsp = jj_scanpos; - if (jj_3_837()) jj_scanpos = xsp; + if (jj_3_846()) { + jj_scanpos = xsp; + if (jj_3_847()) return true; + } + if (jj_3R_295()) return true; return false; } - final private boolean jj_3R_83() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_44()) { - jj_scanpos = xsp; - if (jj_3R_349()) return true; - } - xsp = jj_scanpos; - if (jj_3_45()) { - jj_scanpos = xsp; - if (jj_3R_350()) { - jj_scanpos = xsp; - if (jj_3_47()) { - jj_scanpos = xsp; - if (jj_3_48()) return true; - } - } - } + final private boolean jj_3_1800() { + if (jj_scan_token(RESET)) return true; return false; } - final private boolean jj_3_835() { - if (jj_scan_token(LEADING)) return true; + final private boolean jj_3_1799() { + if (jj_scan_token(REGR_SXY)) return true; return false; } - final private boolean jj_3_368() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3_75() { + if (jj_3R_115()) return true; return false; } - final private boolean jj_3_834() { - if (jj_scan_token(TRAILING)) return true; + final private boolean jj_3_1798() { + if (jj_scan_token(REGR_R2)) return true; return false; } - final private boolean jj_3R_85() { - if (jj_3R_134()) return true; + final private boolean jj_3_1797() { + if (jj_scan_token(REGR_AVGY)) return true; return false; } - final private boolean jj_3_367() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_74() { + if (jj_3R_114()) return true; return false; } - final private boolean jj_3_41() { - Token xsp; - xsp = jj_scanpos; - if (jj_3R_85()) { - jj_scanpos = xsp; - if (jj_3R_86()) return true; - } - if (jj_scan_token(LAMBDA)) return true; + final private boolean jj_3_1796() { + if (jj_scan_token(REFERENCES)) return true; return false; } - final private boolean jj_3_833() { - if (jj_scan_token(BOTH)) return true; + final private boolean jj_3_866() { + if (jj_scan_token(FLOOR)) return true; + if (jj_3R_295()) return true; return false; } - final private boolean jj_3_43() { - if (jj_3R_88()) return true; + final private boolean jj_3_1795() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3R_381() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_367()) { - jj_scanpos = xsp; - if (jj_3_368()) { - jj_scanpos = xsp; - if (jj_3_369()) { - jj_scanpos = xsp; - if (jj_3_370()) return true; - } - } - } + final private boolean jj_3_73() { + if (jj_3R_113()) return true; return false; } - final private boolean jj_3_42() { - if (jj_3R_87()) return true; + final private boolean jj_3_1794() { + if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3R_367() { - if (jj_3R_408()) return true; + final private boolean jj_3_382() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_204()) return true; return false; } - final private boolean jj_3R_197() { - if (jj_3R_380()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3R_381()) { - jj_scanpos = xsp; - if (jj_3R_382()) return true; - } + final private boolean jj_3_1793() { + if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3_40() { - if (jj_3R_80()) return true; + final private boolean jj_3_72() { + if (jj_3R_112()) return true; return false; } - final private boolean jj_3_838() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_833()) { - jj_scanpos = xsp; - if (jj_3_834()) { - jj_scanpos = xsp; - if (jj_3_835()) return true; - } - } - xsp = jj_scanpos; - if (jj_3_836()) jj_scanpos = xsp; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_845() { + if (jj_scan_token(FOR)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3R_366() { + final private boolean jj_3_1792() { + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_39() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; + final private boolean jj_3R_196() { + if (jj_3R_204()) return true; return false; } - final private boolean jj_3_831() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_1791() { + if (jj_scan_token(POSITION)) return true; return false; } - final private boolean jj_3_1805() { - if (jj_scan_token(SATURDAY)) return true; + final private boolean jj_3_71() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3R_154() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_39()) { - jj_scanpos = xsp; - if (jj_3R_366()) return true; - } - xsp = jj_scanpos; - if (jj_3_40()) { - jj_scanpos = xsp; - if (jj_3R_367()) { - jj_scanpos = xsp; - if (jj_3_42()) { - jj_scanpos = xsp; - if (jj_3_43()) return true; - } - } - } + final private boolean jj_3_1790() { + if (jj_scan_token(PERIOD)) return true; return false; } - final private boolean jj_3_1804() { - if (jj_scan_token(WEDNESDAY)) return true; + final private boolean jj_3_1789() { + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_1803() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_70() { + if (jj_3R_111()) return true; return false; } - final private boolean jj_3_1802() { - if (jj_scan_token(WINDOW)) return true; + final private boolean jj_3_1788() { + if (jj_scan_token(PATTERN)) return true; return false; } - final private boolean jj_3_1801() { - if (jj_scan_token(VERSIONING)) return true; + final private boolean jj_3_1787() { + if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3_829() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_69() { + if (jj_3R_110()) return true; return false; } - final private boolean jj_3_849() { - if (jj_scan_token(TRIM)) return true; + final private boolean jj_3_865() { + if (jj_scan_token(OVERLAY)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1800() { - if (jj_scan_token(VARYING)) return true; + final private boolean jj_3_1786() { + if (jj_scan_token(ORDINAL)) return true; return false; } - final private boolean jj_3_1799() { - if (jj_scan_token(VARBINARY)) return true; + final private boolean jj_3_842() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_361() { - if (jj_3R_197()) return true; + final private boolean jj_3_1785() { + if (jj_scan_token(ONE)) return true; return false; } - final private boolean jj_3_1798() { - if (jj_scan_token(UUID)) return true; + final private boolean jj_3_68() { + if (jj_3R_109()) return true; return false; } - final private boolean jj_3_830() { - if (jj_scan_token(FOR)) return true; + final private boolean jj_3_1784() { + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1797() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_377() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_203()) return true; return false; } - final private boolean jj_3_832() { + final private boolean jj_3_844() { Token xsp; - xsp = jj_scanpos; - if (jj_3_830()) { - jj_scanpos = xsp; - if (jj_3_831()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_842()) { jj_scanpos = xsp; break; } } - if (jj_3R_78()) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1796() { - if (jj_scan_token(TRY_CAST)) return true; + final private boolean jj_3_1783() { + if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_1795() { - if (jj_scan_token(TRIM)) return true; + final private boolean jj_3_67() { + if (jj_3R_108()) return true; return false; } - final private boolean jj_3_1794() { - if (jj_scan_token(TRANSLATION)) return true; + final private boolean jj_3_1782() { + if (jj_scan_token(NTH_VALUE)) return true; return false; } - final private boolean jj_3R_196() { - if (jj_3R_197()) return true; + final private boolean jj_3_1781() { + if (jj_scan_token(NO)) return true; return false; } - final private boolean jj_3_1793() { - if (jj_scan_token(TINYINT)) return true; + final private boolean jj_3_66() { + if (jj_3R_107()) return true; return false; } - final private boolean jj_3_827() { - if (jj_scan_token(CEILING)) return true; + final private boolean jj_3_1780() { + if (jj_scan_token(NCLOB)) return true; return false; } - final private boolean jj_3_1792() { - if (jj_scan_token(TIMESTAMP)) return true; + final private boolean jj_3_1779() { + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3_828() { - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_65() { + if (jj_3R_106()) return true; return false; } - final private boolean jj_3_1791() { - if (jj_scan_token(SYSTEM_USER)) return true; + final private boolean jj_3_1778() { + if (jj_scan_token(MODIFIES)) return true; return false; } - final private boolean jj_3_1790() { - if (jj_scan_token(SUM)) return true; + final private boolean jj_3_843() { + if (jj_scan_token(USING)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1789() { - if (jj_scan_token(SUBSTRING)) return true; + final private boolean jj_3_1777() { + if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3_1788() { - if (jj_scan_token(STREAM)) return true; - return false; - } - - final private boolean jj_3_1787() { - if (jj_scan_token(STATIC)) return true; - return false; - } - - final private boolean jj_3_848() { - if (jj_scan_token(SUBSTRING)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_1786() { - if (jj_scan_token(SQLWARNING)) return true; - return false; - } - - final private boolean jj_3_1785() { - if (jj_scan_token(SQL)) return true; - return false; - } - - final private boolean jj_3_1784() { - if (jj_scan_token(SMALLINT)) return true; - return false; - } - - final private boolean jj_3_826() { - if (jj_scan_token(CEIL)) return true; - return false; - } - - final private boolean jj_3_1783() { - if (jj_scan_token(SHOW)) return true; - return false; - } - - final private boolean jj_3_1782() { - if (jj_scan_token(SEEK)) return true; - return false; - } - - final private boolean jj_3_847() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_826()) { - jj_scanpos = xsp; - if (jj_3_827()) return true; - } - if (jj_3R_291()) return true; + final private boolean jj_3_64() { + if (jj_3R_105()) return true; return false; } - final private boolean jj_3_1781() { - if (jj_scan_token(SCROLL)) return true; + final private boolean jj_3_1776() { + if (jj_scan_token(MEASURES)) return true; return false; } - final private boolean jj_3_1780() { - if (jj_scan_token(SAFE_ORDINAL)) return true; + final private boolean jj_3_1775() { + if (jj_scan_token(MATCH_RECOGNIZE)) return true; return false; } - final private boolean jj_3_360() { - if (jj_scan_token(VERTICAL_BAR)) return true; - if (jj_3R_196()) return true; + final private boolean jj_3_63() { + if (jj_3R_104()) return true; return false; } - final private boolean jj_3_1779() { - if (jj_scan_token(RUNNING)) return true; + final private boolean jj_3_1774() { + if (jj_scan_token(MATCHES)) return true; return false; } - final private boolean jj_3_38() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_381() { + if (jj_scan_token(PERMUTE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1778() { - if (jj_scan_token(ROLLUP)) return true; + final private boolean jj_3_838() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3R_82() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_37()) { - jj_scanpos = xsp; - if (jj_3_38()) return true; - } + final private boolean jj_3_1773() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_1777() { - if (jj_scan_token(RETURNS)) return true; + final private boolean jj_3_62() { + if (jj_3R_103()) return true; return false; } - final private boolean jj_3_37() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_1772() { + if (jj_scan_token(LEAD)) return true; return false; } - final private boolean jj_3_846() { - if (jj_scan_token(FLOOR)) return true; - if (jj_3R_291()) return true; + final private boolean jj_3_837() { + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_1776() { - if (jj_scan_token(RESET)) return true; + final private boolean jj_3_1771() { + if (jj_scan_token(LARGE)) return true; return false; } - final private boolean jj_3_1775() { - if (jj_scan_token(REGR_SXY)) return true; + final private boolean jj_3_61() { + if (jj_3R_102()) return true; return false; } - final private boolean jj_3R_201() { - if (jj_3R_196()) return true; + final private boolean jj_3_1770() { + if (jj_scan_token(JSON_VALUE)) return true; return false; } - final private boolean jj_3_1774() { - if (jj_scan_token(REGR_R2)) return true; + final private boolean jj_3_864() { + if (jj_scan_token(TRANSLATE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_825() { - if (jj_scan_token(FOR)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1769() { + if (jj_scan_token(JSON_OBJECTAGG)) return true; return false; } - final private boolean jj_3_1773() { - if (jj_scan_token(REGR_AVGY)) return true; + final private boolean jj_3_60() { + if (jj_3R_101()) return true; return false; } - final private boolean jj_3_1772() { - if (jj_scan_token(REFERENCES)) return true; + final private boolean jj_3_1768() { + if (jj_scan_token(JSON_ARRAYAGG)) return true; return false; } - final private boolean jj_3_1771() { - if (jj_scan_token(REAL)) return true; + final private boolean jj_3_380() { + if (jj_scan_token(LBRACE)) return true; + if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_1770() { - if (jj_scan_token(RANGE)) return true; + final private boolean jj_3_1767() { + if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_1769() { - if (jj_scan_token(PREV)) return true; + final private boolean jj_3_59() { + if (jj_3R_100()) return true; return false; } - final private boolean jj_3_1768() { - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3_1766() { + if (jj_scan_token(INOUT)) return true; return false; } - final private boolean jj_3_845() { - if (jj_scan_token(OVERLAY)) return true; + final private boolean jj_3_379() { if (jj_scan_token(LPAREN)) return true; + if (jj_3R_203()) return true; return false; } - final private boolean jj_3_1767() { - if (jj_scan_token(POSITION)) return true; - return false; - } - - final private boolean jj_3_822() { + final private boolean jj_3_839() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3_1766() { - if (jj_scan_token(PERIOD)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_837()) { + jj_scanpos = xsp; + if (jj_3_838()) return true; + } return false; } final private boolean jj_3_1765() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + if (jj_scan_token(IMPORT)) return true; return false; } - final private boolean jj_3_36() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3_58() { + if (jj_3R_99()) return true; return false; } - final private boolean jj_3_824() { + final private boolean jj_3R_389() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_822()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_378()) { + jj_scanpos = xsp; + if (jj_3_379()) { + jj_scanpos = xsp; + if (jj_3_380()) { + jj_scanpos = xsp; + if (jj_3_381()) return true; + } + } } - if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1764() { - if (jj_scan_token(PATTERN)) return true; + if (jj_scan_token(HOLD)) return true; + return false; + } + + final private boolean jj_3_378() { + if (jj_3R_85()) return true; return false; } final private boolean jj_3_1763() { - if (jj_scan_token(OVERLAPS)) return true; + if (jj_scan_token(GRANT)) return true; + return false; + } + + final private boolean jj_3_57() { + if (jj_3R_98()) return true; return false; } final private boolean jj_3_1762() { - if (jj_scan_token(ORDINAL)) return true; + if (jj_scan_token(FUSION)) return true; return false; } - final private boolean jj_3R_385() { + final private boolean jj_3_1761() { + if (jj_scan_token(FRAME_ROW)) return true; return false; } - final private boolean jj_3R_195() { - if (jj_3R_81()) return true; + final private boolean jj_3_56() { + if (jj_3R_97()) return true; return false; } - final private boolean jj_3_1761() { - if (jj_scan_token(ONE)) return true; + final private boolean jj_3_836() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_219()) return true; return false; } final private boolean jj_3_1760() { - if (jj_scan_token(OF)) return true; + if (jj_scan_token(FLOAT)) return true; return false; } final private boolean jj_3_1759() { - if (jj_scan_token(NUMERIC)) return true; + if (jj_scan_token(EXTRACT)) return true; return false; } - final private boolean jj_3_35() { - if (jj_3R_82()) return true; + final private boolean jj_3_55() { + if (jj_3R_96()) return true; return false; } - final private boolean jj_3_823() { - if (jj_scan_token(USING)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_835() { + if (jj_3R_121()) return true; return false; } final private boolean jj_3_1758() { - if (jj_scan_token(NTH_VALUE)) return true; + if (jj_scan_token(EXP)) return true; return false; } final private boolean jj_3_1757() { - if (jj_scan_token(NO)) return true; + if (jj_scan_token(EVERY)) return true; + return false; + } + + final private boolean jj_3_54() { + if (jj_3R_95()) return true; return false; } final private boolean jj_3_1756() { - if (jj_scan_token(NCLOB)) return true; + if (jj_scan_token(END_PARTITION)) return true; return false; } final private boolean jj_3_1755() { - if (jj_scan_token(MULTISET)) return true; + if (jj_scan_token(END)) return true; return false; } - final private boolean jj_3_818() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_53() { + if (jj_3R_94()) return true; + return false; + } + + final private boolean jj_3_832() { + if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1754() { - if (jj_scan_token(MODIFIES)) return true; + if (jj_scan_token(EACH)) return true; return false; } - final private boolean jj_3R_220() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_841() { Token xsp; xsp = jj_scanpos; - if (jj_3_35()) { + if (jj_3_835()) { jj_scanpos = xsp; - if (jj_3R_385()) return true; + if (jj_3_836()) return true; } + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1753() { - if (jj_scan_token(MIN)) return true; + final private boolean jj_3R_391() { return false; } - final private boolean jj_3_359() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_195()) return true; + final private boolean jj_3_1753() { + if (jj_scan_token(DISCONNECT)) return true; return false; } - final private boolean jj_3_817() { - if (jj_3R_198()) return true; + final private boolean jj_3_52() { + if (jj_3R_93()) return true; return false; } final private boolean jj_3_1752() { - if (jj_scan_token(MEASURES)) return true; + if (jj_scan_token(DESCRIBE)) return true; return false; } final private boolean jj_3_1751() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(DEFINE)) return true; return false; } - final private boolean jj_3_844() { - if (jj_scan_token(TRANSLATE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1750() { + if (jj_scan_token(DEC)) return true; return false; } - final private boolean jj_3R_191() { - if (jj_3R_195()) return true; + final private boolean jj_3_1749() { + if (jj_scan_token(DATETIME)) return true; return false; } - final private boolean jj_3_1750() { - if (jj_scan_token(MATCHES)) return true; + final private boolean jj_3_831() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1749() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3R_92() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_52()) { + jj_scanpos = xsp; + if (jj_3_53()) { + jj_scanpos = xsp; + if (jj_3_54()) { + jj_scanpos = xsp; + if (jj_3_55()) { + jj_scanpos = xsp; + if (jj_3_56()) { + jj_scanpos = xsp; + if (jj_3_57()) { + jj_scanpos = xsp; + if (jj_3_58()) { + jj_scanpos = xsp; + if (jj_3_59()) { + jj_scanpos = xsp; + if (jj_3_60()) { + jj_scanpos = xsp; + if (jj_3_61()) { + jj_scanpos = xsp; + if (jj_3_62()) { + jj_scanpos = xsp; + if (jj_3_63()) { + jj_scanpos = xsp; + if (jj_3_64()) { + jj_scanpos = xsp; + if (jj_3_65()) { + jj_scanpos = xsp; + if (jj_3_66()) { + jj_scanpos = xsp; + if (jj_3_67()) { + jj_scanpos = xsp; + if (jj_3_68()) { + jj_scanpos = xsp; + if (jj_3_69()) { + jj_scanpos = xsp; + if (jj_3_70()) { + jj_scanpos = xsp; + if (jj_3_71()) { + jj_scanpos = xsp; + if (jj_3_72()) { + jj_scanpos = xsp; + if (jj_3_73()) { + jj_scanpos = xsp; + if (jj_3_74()) { + jj_scanpos = xsp; + if (jj_3_75()) { + jj_scanpos = xsp; + if (jj_3_76()) { + jj_scanpos = xsp; + if (jj_3_77()) { + jj_scanpos = xsp; + if (jj_3_78()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } return false; } final private boolean jj_3_1748() { - if (jj_scan_token(LEAD)) return true; + if (jj_scan_token(CURSOR)) return true; return false; } - final private boolean jj_3_1747() { - if (jj_scan_token(LARGE)) return true; + final private boolean jj_3_376() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_819() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_817()) { - jj_scanpos = xsp; - if (jj_3_818()) return true; - } + final private boolean jj_3_1747() { + if (jj_scan_token(CURRENT_ROLE)) return true; return false; } final private boolean jj_3_1746() { - if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } final private boolean jj_3_1745() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; + if (jj_scan_token(CUBE)) return true; return false; } final private boolean jj_3_1744() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + if (jj_scan_token(COUNT)) return true; return false; } final private boolean jj_3_1743() { - if (jj_scan_token(INTEGER)) return true; + if (jj_scan_token(CONVERT)) return true; return false; } - final private boolean jj_3_1742() { - if (jj_scan_token(INOUT)) return true; + final private boolean jj_3_371() { + if (jj_scan_token(MINUS)) return true; + if (jj_3R_203()) return true; return false; } - final private boolean jj_3_816() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; + final private boolean jj_3_834() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1742() { + if (jj_scan_token(CONDITION)) return true; return false; } final private boolean jj_3_1741() { - if (jj_scan_token(IMPORT)) return true; + if (jj_scan_token(COLLATE)) return true; return false; } final private boolean jj_3_1740() { - if (jj_scan_token(HOLD)) return true; + if (jj_scan_token(CLOB)) return true; return false; } - final private boolean jj_3_815() { - if (jj_3R_120()) return true; + final private boolean jj_3_50() { + if (jj_3R_92()) return true; return false; } - final private boolean jj_3_1739() { - if (jj_scan_token(GRANT)) return true; + final private boolean jj_3R_202() { return false; } - final private boolean jj_3_1738() { - if (jj_scan_token(FUSION)) return true; + final private boolean jj_3R_201() { return false; } - final private boolean jj_3R_401() { - if (jj_3R_220()) return true; + final private boolean jj_3_1739() { + if (jj_scan_token(CHAR_LENGTH)) return true; return false; } - final private boolean jj_3_1737() { - if (jj_scan_token(FRAME_ROW)) return true; + final private boolean jj_3_1738() { + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_358() { - if (jj_scan_token(SUBSET)) return true; - if (jj_3R_194()) return true; + final private boolean jj_3_370() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_1736() { - if (jj_scan_token(FLOAT)) return true; + final private boolean jj_3_833() { + if (jj_scan_token(USING)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_812() { - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1737() { + if (jj_scan_token(CASCADED)) return true; return false; } - final private boolean jj_3_1735() { - if (jj_scan_token(EXTRACT)) return true; + final private boolean jj_3_367() { + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_821() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_815()) { - jj_scanpos = xsp; - if (jj_3_816()) return true; - } - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_1736() { + if (jj_scan_token(CALL)) return true; + return false; + } + + final private boolean jj_3_1735() { + if (jj_scan_token(BIT)) return true; return false; } final private boolean jj_3_1734() { - if (jj_scan_token(EXP)) return true; + if (jj_scan_token(BEGIN_PARTITION)) return true; return false; } - final private boolean jj_3_1733() { - if (jj_scan_token(EVERY)) return true; + final private boolean jj_3_49() { + if (jj_scan_token(SEMICOLON)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_50()) jj_scanpos = xsp; return false; } - final private boolean jj_3_357() { - if (jj_scan_token(WITHIN)) return true; - if (jj_3R_193()) return true; + final private boolean jj_3_1733() { + if (jj_scan_token(AVG)) return true; return false; } final private boolean jj_3_1732() { - if (jj_scan_token(END_PARTITION)) return true; + if (jj_scan_token(AT)) return true; return false; } final private boolean jj_3_1731() { - if (jj_scan_token(END)) return true; + if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; return false; } - final private boolean jj_3_1730() { - if (jj_scan_token(EACH)) return true; + final private boolean jj_3_368() { + if (jj_scan_token(COMMA)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_367()) { + jj_scanpos = xsp; + if (jj_3R_201()) return true; + } return false; } - final private boolean jj_3_349() { - if (jj_scan_token(LAST)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_840() { + if (jj_3R_79()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_833()) { + jj_scanpos = xsp; + if (jj_3_834()) return true; + } return false; } - final private boolean jj_3_811() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_1730() { + if (jj_scan_token(ALLOCATE)) return true; return false; } final private boolean jj_3_1729() { - if (jj_scan_token(DISCONNECT)) return true; + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } final private boolean jj_3_1728() { - if (jj_scan_token(DESCRIBE)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_356() { - if (jj_scan_token(DOLLAR)) return true; + final private boolean jj_3_1727() { + if (jj_scan_token(COMPUTE)) return true; return false; } - final private boolean jj_3_1727() { - if (jj_scan_token(DEFINE)) return true; - return false; - } - - final private boolean jj_3_34() { - if (jj_3R_80()) return true; + final private boolean jj_3_1726() { + if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3_1726() { - if (jj_scan_token(DEC)) return true; + final private boolean jj_3_51() { + if (jj_3R_92()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_49()) { jj_scanpos = xsp; break; } + } return false; } final private boolean jj_3_1725() { - if (jj_scan_token(DATETIME)) return true; + if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_33() { - if (jj_3R_81()) return true; + final private boolean jj_3_369() { + if (jj_3R_200()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_368()) { + jj_scanpos = xsp; + if (jj_3R_202()) return true; + } + if (jj_scan_token(RBRACE)) return true; return false; } final private boolean jj_3_1724() { - if (jj_scan_token(CURSOR)) return true; - return false; - } - - final private boolean jj_3_814() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + if (jj_scan_token(PARALLEL)) return true; return false; } final private boolean jj_3_1723() { - if (jj_scan_token(CURRENT_ROLE)) return true; - return false; - } - - final private boolean jj_3_355() { - if (jj_scan_token(CARET)) return true; + if (jj_scan_token(WRAP_KEY)) return true; return false; } final private boolean jj_3_1722() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + if (jj_scan_token(CACHE_NAME)) return true; return false; } final private boolean jj_3_1721() { - if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(ATOMICITY)) return true; return false; } final private boolean jj_3_1720() { - if (jj_scan_token(COUNT)) return true; + if (jj_scan_token(TEMPLATE)) return true; return false; } final private boolean jj_3_1719() { - if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_813() { - if (jj_scan_token(USING)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_375() { + if (jj_scan_token(LBRACE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_369()) { + jj_scanpos = xsp; + if (jj_3_370()) { + jj_scanpos = xsp; + if (jj_3_371()) return true; + } + } return false; } - final private boolean jj_3_1718() { - if (jj_scan_token(CONDITION)) return true; + final private boolean jj_3_863() { + if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1717() { - if (jj_scan_token(COLLATE)) return true; + final private boolean jj_3_1718() { + if (jj_scan_token(WORK)) return true; return false; } - final private boolean jj_3_353() { - if (jj_scan_token(PAST)) return true; - if (jj_scan_token(LAST)) return true; + final private boolean jj_3_1717() { + if (jj_scan_token(VIEW)) return true; return false; } final private boolean jj_3_1716() { - if (jj_scan_token(CLOB)) return true; + if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3_1715() { - if (jj_scan_token(CHAR_LENGTH)) return true; + final private boolean jj_3_830() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_32() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_33()) { - jj_scanpos = xsp; - if (jj_3_34()) return true; - } + final private boolean jj_3R_91() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_192() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(304)) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3_1715() { + if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; return false; } final private boolean jj_3_1714() { - if (jj_scan_token(CHAR)) return true; - return false; - } - - final private boolean jj_3_1713() { - if (jj_scan_token(CASCADED)) return true; + if (jj_scan_token(USAGE)) return true; return false; } - final private boolean jj_3_1712() { - if (jj_scan_token(CALL)) return true; + final private boolean jj_3_374() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_31() { - if (jj_3R_80()) return true; + final private boolean jj_3_1713() { + if (jj_scan_token(UNDER)) return true; return false; } - final private boolean jj_3_820() { - if (jj_3R_78()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_813()) { - jj_scanpos = xsp; - if (jj_3_814()) return true; - } + final private boolean jj_3_1712() { + if (jj_scan_token(UNBOUNDED)) return true; return false; } final private boolean jj_3_1711() { - if (jj_scan_token(BIT)) return true; + if (jj_scan_token(TRIGGER_SCHEMA)) return true; return false; } final private boolean jj_3_1710() { - if (jj_scan_token(BEGIN_PARTITION)) return true; + if (jj_scan_token(TRANSFORMS)) return true; return false; } - final private boolean jj_3_30() { - if (jj_3R_79()) return true; + final private boolean jj_3_1709() { + if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; return false; } - final private boolean jj_3_1709() { - if (jj_scan_token(AVG)) return true; + final private boolean jj_3_373() { + if (jj_scan_token(PLUS)) return true; return false; } final private boolean jj_3_1708() { - if (jj_scan_token(AT)) return true; + if (jj_scan_token(TOP_LEVEL_COUNT)) return true; return false; } final private boolean jj_3_1707() { - if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; + if (jj_scan_token(TIMESTAMPDIFF)) return true; return false; } final private boolean jj_3_1706() { - if (jj_scan_token(ALLOCATE)) return true; + if (jj_scan_token(TIME_DIFF)) return true; + return false; + } + + final private boolean jj_3_862() { + if (jj_scan_token(POSITION)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1705() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; + if (jj_scan_token(TABLE_NAME)) return true; return false; } final private boolean jj_3_1704() { - if (jj_scan_token(STATISTICS)) return true; + if (jj_scan_token(STYLE)) return true; + return false; + } + + final private boolean jj_3_372() { + if (jj_scan_token(STAR)) return true; return false; } final private boolean jj_3_1703() { - if (jj_scan_token(COMPUTE)) return true; + if (jj_scan_token(STATEMENT)) return true; return false; } final private boolean jj_3_1702() { - if (jj_scan_token(SCAN)) return true; + if (jj_scan_token(SQL_VARBINARY)) return true; return false; } final private boolean jj_3_1701() { - if (jj_scan_token(NOLOGGING)) return true; + if (jj_scan_token(SQL_TSI_SECOND)) return true; return false; } final private boolean jj_3_1700() { - if (jj_scan_token(PARALLEL)) return true; - return false; - } - - final private boolean jj_3_843() { - if (jj_scan_token(CONVERT)) return true; - if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(SQL_TSI_MINUTE)) return true; return false; } final private boolean jj_3_1699() { - if (jj_scan_token(WRAP_KEY)) return true; + if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; return false; } - final private boolean jj_3_351() { - if (jj_scan_token(FIRST)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3R_390() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_372()) { + jj_scanpos = xsp; + if (jj_3_373()) { + jj_scanpos = xsp; + if (jj_3_374()) { + jj_scanpos = xsp; + if (jj_3_375()) return true; + } + } + } return false; } final private boolean jj_3_1698() { - if (jj_scan_token(CACHE_NAME)) return true; + if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } final private boolean jj_3_1697() { - if (jj_scan_token(ATOMICITY)) return true; + if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_810() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1696() { + if (jj_scan_token(SQL_NCLOB)) return true; return false; } - final private boolean jj_3_1696() { - if (jj_scan_token(TEMPLATE)) return true; + final private boolean jj_3_861() { + if (jj_scan_token(EXTRACT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1695() { - if (jj_scan_token(XML)) return true; + if (jj_scan_token(SQL_LONGVARCHAR)) return true; return false; } final private boolean jj_3_1694() { - if (jj_scan_token(WORK)) return true; + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } final private boolean jj_3_1693() { - if (jj_scan_token(VIEW)) return true; - return false; - } - - final private boolean jj_3_350() { - if (jj_scan_token(NEXT)) return true; - if (jj_scan_token(ROW)) return true; + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } - final private boolean jj_3_1692() { - if (jj_scan_token(UTF32)) return true; + final private boolean jj_3_829() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_183() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_199() { + if (jj_3R_389()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_30()) { + if (jj_3R_390()) { jj_scanpos = xsp; - if (jj_3_31()) return true; + if (jj_3R_391()) return true; } return false; } + final private boolean jj_3_1692() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + return false; + } + + final private boolean jj_3_828() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_219()) return true; + return false; + } + + final private boolean jj_3R_81() { + if (jj_scan_token(DEFAULT_)) return true; + return false; + } + final private boolean jj_3_1691() { - if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } final private boolean jj_3_1690() { - if (jj_scan_token(USAGE)) return true; + if (jj_scan_token(SQL_INTEGER)) return true; + return false; + } + + final private boolean jj_3_827() { + if (jj_3R_121()) return true; return false; } final private boolean jj_3_1689() { - if (jj_scan_token(UNDER)) return true; + if (jj_scan_token(SQL_DECIMAL)) return true; + return false; + } + + final private boolean jj_3R_90() { + if (jj_3R_135()) return true; return false; } final private boolean jj_3_1688() { - if (jj_scan_token(UNBOUNDED)) return true; + if (jj_scan_token(SQL_CHAR)) return true; return false; } final private boolean jj_3_1687() { - if (jj_scan_token(TRIGGER_SCHEMA)) return true; + if (jj_scan_token(SQL_BIT)) return true; return false; } - final private boolean jj_3_352() { - if (jj_scan_token(TO)) return true; + final private boolean jj_3_46() { Token xsp; xsp = jj_scanpos; - if (jj_3_350()) { + if (jj_3R_90()) { jj_scanpos = xsp; - if (jj_3_351()) { - jj_scanpos = xsp; - lookingAhead = true; - jj_semLA = true; - lookingAhead = false; - if (!jj_semLA || jj_3R_192()) return true; - } + if (jj_3R_91()) return true; } + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_842() { - if (jj_scan_token(POSITION)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1686() { + if (jj_scan_token(SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_1686() { - if (jj_scan_token(TRANSFORMS)) return true; + final private boolean jj_3R_87() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1685() { - if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + if (jj_scan_token(SIZE)) return true; return false; } final private boolean jj_3_1684() { - if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + if (jj_scan_token(SESSION)) return true; return false; } final private boolean jj_3_1683() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(SERIALIZABLE)) return true; return false; } final private boolean jj_3_1682() { - if (jj_scan_token(TIME_DIFF)) return true; + if (jj_scan_token(SELF)) return true; + return false; + } + + final private boolean jj_3_48() { + if (jj_3R_88()) return true; + return false; + } + + final private boolean jj_3_826() { + if (jj_scan_token(TRY_CAST)) return true; return false; } final private boolean jj_3_1681() { - if (jj_scan_token(TABLE_NAME)) return true; + if (jj_scan_token(SECONDS)) return true; return false; } - final private boolean jj_3_354() { - if (jj_scan_token(AFTER)) return true; - if (jj_scan_token(MATCH)) return true; + final private boolean jj_3_824() { + if (jj_scan_token(CAST)) return true; + return false; + } + + final private boolean jj_3_825() { + if (jj_scan_token(SAFE_CAST)) return true; return false; } final private boolean jj_3_1680() { - if (jj_scan_token(STYLE)) return true; + if (jj_scan_token(SCOPE_CATALOGS)) return true; + return false; + } + + final private boolean jj_3_47() { + if (jj_3R_82()) return true; return false; } final private boolean jj_3_1679() { - if (jj_scan_token(STATEMENT)) return true; + if (jj_scan_token(SCALE)) return true; return false; } final private boolean jj_3_1678() { - if (jj_scan_token(SQL_VARBINARY)) return true; + if (jj_scan_token(ROUTINE_SCHEMA)) return true; + return false; + } + + final private boolean jj_3_860() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_824()) { + jj_scanpos = xsp; + if (jj_3_825()) { + jj_scanpos = xsp; + if (jj_3_826()) return true; + } + } + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3R_354() { + if (jj_3R_420()) return true; return false; } final private boolean jj_3_1677() { - if (jj_scan_token(SQL_TSI_SECOND)) return true; + if (jj_scan_token(ROUTINE)) return true; return false; } - final private boolean jj_3_841() { - if (jj_scan_token(EXTRACT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_366() { + if (jj_3R_199()) return true; return false; } final private boolean jj_3_1676() { - if (jj_scan_token(SQL_TSI_MINUTE)) return true; + if (jj_scan_token(RETURNING)) return true; return false; } final private boolean jj_3_1675() { - if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; + if (jj_scan_token(RETURNED_LENGTH)) return true; return false; } - final private boolean jj_3_348() { - if (jj_scan_token(ALL)) return true; - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_45() { + if (jj_3R_81()) return true; return false; } final private boolean jj_3_1674() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + if (jj_scan_token(RESTART)) return true; return false; } - final private boolean jj_3_808() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; + final private boolean jj_3R_227() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_860()) { + jj_scanpos = xsp; + if (jj_3_861()) { + jj_scanpos = xsp; + if (jj_3_862()) { + jj_scanpos = xsp; + if (jj_3_863()) { + jj_scanpos = xsp; + if (jj_3_864()) { + jj_scanpos = xsp; + if (jj_3_865()) { + jj_scanpos = xsp; + if (jj_3_866()) { + jj_scanpos = xsp; + if (jj_3_867()) { + jj_scanpos = xsp; + if (jj_3_868()) { + jj_scanpos = xsp; + if (jj_3_869()) { + jj_scanpos = xsp; + if (jj_3_870()) { + jj_scanpos = xsp; + if (jj_3_871()) { + jj_scanpos = xsp; + if (jj_3_872()) { + jj_scanpos = xsp; + if (jj_3_873()) { + jj_scanpos = xsp; + if (jj_3_874()) { + jj_scanpos = xsp; + if (jj_3_875()) { + jj_scanpos = xsp; + if (jj_3_876()) { + jj_scanpos = xsp; + if (jj_3_877()) { + jj_scanpos = xsp; + if (jj_3_878()) { + jj_scanpos = xsp; + if (jj_3_879()) { + jj_scanpos = xsp; + if (jj_3_880()) { + jj_scanpos = xsp; + if (jj_3_881()) { + jj_scanpos = xsp; + if (jj_3_882()) { + jj_scanpos = xsp; + if (jj_3_883()) { + jj_scanpos = xsp; + if (jj_3_884()) { + jj_scanpos = xsp; + if (jj_3_885()) { + jj_scanpos = xsp; + if (jj_3_886()) { + jj_scanpos = xsp; + if (jj_3_887()) { + jj_scanpos = xsp; + if (jj_3_888()) { + jj_scanpos = xsp; + if (jj_3_889()) { + jj_scanpos = xsp; + if (jj_3_890()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } return false; } - final private boolean jj_3_809() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_138()) return true; + final private boolean jj_3_1673() { + if (jj_scan_token(REPEATABLE)) return true; return false; } - final private boolean jj_3_1673() { - if (jj_scan_token(SQL_REAL)) return true; + final private boolean jj_3R_353() { return false; } final private boolean jj_3_1672() { - if (jj_scan_token(SQL_NCLOB)) return true; + if (jj_scan_token(QUARTERS)) return true; return false; } - final private boolean jj_3_807() { - if (jj_3R_120()) return true; + final private boolean jj_3R_198() { + if (jj_3R_199()) return true; return false; } final private boolean jj_3_1671() { - if (jj_scan_token(SQL_LONGVARCHAR)) return true; + if (jj_scan_token(PRIVILEGES)) return true; return false; } - final private boolean jj_3_347() { - if (jj_scan_token(ONE)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_44() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } final private boolean jj_3_1670() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; - return false; - } - - final private boolean jj_3_29() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + if (jj_scan_token(PRECEDING)) return true; return false; } final private boolean jj_3_1669() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + if (jj_scan_token(PLACING)) return true; return false; } final private boolean jj_3_1668() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + if (jj_scan_token(PAST)) return true; return false; } final private boolean jj_3_1667() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + if (jj_scan_token(PASCAL)) return true; return false; } - final private boolean jj_3_1666() { - if (jj_scan_token(SQL_INTEGER)) return true; + final private boolean jj_3R_84() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_44()) { + jj_scanpos = xsp; + if (jj_3R_353()) return true; + } + xsp = jj_scanpos; + if (jj_3_45()) { + jj_scanpos = xsp; + if (jj_3R_354()) { + jj_scanpos = xsp; + if (jj_3_47()) { + jj_scanpos = xsp; + if (jj_3_48()) return true; + } + } + } return false; } - final private boolean jj_3_1665() { - if (jj_scan_token(SQL_DECIMAL)) return true; + final private boolean jj_3_1666() { + if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_346() { - if (jj_scan_token(MEASURES)) return true; - if (jj_3R_191()) return true; + final private boolean jj_3_1665() { + if (jj_scan_token(PARAMETER_NAME)) return true; return false; } final private boolean jj_3_1664() { - if (jj_scan_token(SQL_CHAR)) return true; + if (jj_scan_token(OVERRIDING)) return true; return false; } - final private boolean jj_3_806() { - if (jj_scan_token(TRY_CAST)) return true; - return false; - } - - final private boolean jj_3_1663() { - if (jj_scan_token(SQL_BIT)) return true; - return false; - } - - final private boolean jj_3_804() { - if (jj_scan_token(CAST)) return true; - return false; - } - - final private boolean jj_3_805() { - if (jj_scan_token(SAFE_CAST)) return true; + final private boolean jj_3_1663() { + if (jj_scan_token(ORDINALITY)) return true; return false; } final private boolean jj_3_1662() { - if (jj_scan_token(SPECIFIC_NAME)) return true; + if (jj_scan_token(OPTION)) return true; return false; } final private boolean jj_3_1661() { - if (jj_scan_token(SIZE)) return true; + if (jj_scan_token(NUMBER)) return true; return false; } final private boolean jj_3_1660() { - if (jj_scan_token(SESSION)) return true; - return false; - } - - final private boolean jj_3_345() { - if (jj_3R_70()) return true; + if (jj_scan_token(NORMALIZED)) return true; return false; } - final private boolean jj_3_840() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_804()) { - jj_scanpos = xsp; - if (jj_3_805()) { - jj_scanpos = xsp; - if (jj_3_806()) return true; - } - } - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1659() { + if (jj_scan_token(NAMES)) return true; return false; } - final private boolean jj_3_1659() { - if (jj_scan_token(SERIALIZABLE)) return true; + final private boolean jj_3R_86() { + if (jj_3R_135()) return true; return false; } final private boolean jj_3_1658() { - if (jj_scan_token(SELF)) return true; + if (jj_scan_token(MORE_)) return true; return false; } - final private boolean jj_3_1657() { - if (jj_scan_token(SECONDS)) return true; + final private boolean jj_3_365() { + if (jj_scan_token(VERTICAL_BAR)) return true; + if (jj_3R_198()) return true; return false; } - final private boolean jj_3_1656() { - if (jj_scan_token(SCOPE_CATALOGS)) return true; + final private boolean jj_3_1657() { + if (jj_scan_token(MINUTES)) return true; return false; } - final private boolean jj_3R_223() { + final private boolean jj_3_41() { Token xsp; xsp = jj_scanpos; - if (jj_3_840()) { - jj_scanpos = xsp; - if (jj_3_841()) { - jj_scanpos = xsp; - if (jj_3_842()) { - jj_scanpos = xsp; - if (jj_3_843()) { - jj_scanpos = xsp; - if (jj_3_844()) { - jj_scanpos = xsp; - if (jj_3_845()) { - jj_scanpos = xsp; - if (jj_3_846()) { - jj_scanpos = xsp; - if (jj_3_847()) { - jj_scanpos = xsp; - if (jj_3_848()) { - jj_scanpos = xsp; - if (jj_3_849()) { - jj_scanpos = xsp; - if (jj_3_850()) { - jj_scanpos = xsp; - if (jj_3_851()) { - jj_scanpos = xsp; - if (jj_3_852()) { - jj_scanpos = xsp; - if (jj_3_853()) { - jj_scanpos = xsp; - if (jj_3_854()) { - jj_scanpos = xsp; - if (jj_3_855()) { - jj_scanpos = xsp; - if (jj_3_856()) { - jj_scanpos = xsp; - if (jj_3_857()) { - jj_scanpos = xsp; - if (jj_3_858()) { - jj_scanpos = xsp; - if (jj_3_859()) { - jj_scanpos = xsp; - if (jj_3_860()) { - jj_scanpos = xsp; - if (jj_3_861()) { - jj_scanpos = xsp; - if (jj_3_862()) { - jj_scanpos = xsp; - if (jj_3_863()) { - jj_scanpos = xsp; - if (jj_3_864()) { - jj_scanpos = xsp; - if (jj_3_865()) { - jj_scanpos = xsp; - if (jj_3_866()) { - jj_scanpos = xsp; - if (jj_3_867()) { - jj_scanpos = xsp; - if (jj_3_868()) { - jj_scanpos = xsp; - if (jj_3_869()) { + if (jj_3R_86()) { jj_scanpos = xsp; - if (jj_3_870()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3R_87()) return true; } + if (jj_scan_token(LAMBDA)) return true; + return false; + } + + final private boolean jj_3_1656() { + if (jj_scan_token(MICROSECOND)) return true; return false; } final private boolean jj_3_1655() { - if (jj_scan_token(SCALE)) return true; + if (jj_scan_token(MESSAGE_LENGTH)) return true; return false; } final private boolean jj_3_1654() { - if (jj_scan_token(ROUTINE_SCHEMA)) return true; + if (jj_scan_token(MAP)) return true; return false; } - final private boolean jj_3_344() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_1653() { + if (jj_scan_token(LIBRARY)) return true; return false; } - final private boolean jj_3_1653() { - if (jj_scan_token(ROUTINE)) return true; + final private boolean jj_3_43() { + if (jj_3R_89()) return true; + return false; + } + + final private boolean jj_3R_203() { + if (jj_3R_198()) return true; return false; } final private boolean jj_3_1652() { - if (jj_scan_token(RETURNING)) return true; + if (jj_scan_token(LAST)) return true; return false; } final private boolean jj_3_1651() { - if (jj_scan_token(RETURNED_LENGTH)) return true; + if (jj_scan_token(KEY_MEMBER)) return true; return false; } - final private boolean jj_3R_173() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_79()) return true; + final private boolean jj_3_1650() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_1650() { - if (jj_scan_token(RESTART)) return true; + final private boolean jj_3_42() { + if (jj_3R_88()) return true; return false; } final private boolean jj_3_1649() { - if (jj_scan_token(REPEATABLE)) return true; + if (jj_scan_token(ISOLATION)) return true; return false; } - final private boolean jj_3R_168() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1648() { + if (jj_scan_token(INSTANTIABLE)) return true; return false; } - final private boolean jj_3_1648() { - if (jj_scan_token(QUARTERS)) return true; + final private boolean jj_3R_371() { + if (jj_3R_420()) return true; return false; } final private boolean jj_3_1647() { - if (jj_scan_token(PRIVILEGES)) return true; + if (jj_scan_token(INITIALLY)) return true; return false; } final private boolean jj_3_1646() { - if (jj_scan_token(PRECEDING)) return true; + if (jj_scan_token(INCLUDE)) return true; return false; } final private boolean jj_3_1645() { - if (jj_scan_token(PLACING)) return true; - return false; - } - - final private boolean jj_3_1644() { - if (jj_scan_token(PAST)) return true; - return false; - } - - final private boolean jj_3_1643() { - if (jj_scan_token(PASCAL)) return true; - return false; - } - - final private boolean jj_3_1642() { - if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; - return false; - } - - final private boolean jj_3_1641() { - if (jj_scan_token(PARAMETER_NAME)) return true; - return false; - } - - final private boolean jj_3_1640() { - if (jj_scan_token(OVERRIDING)) return true; - return false; - } - - final private boolean jj_3_1639() { - if (jj_scan_token(ORDINALITY)) return true; - return false; - } - - final private boolean jj_3_1638() { - if (jj_scan_token(OPTION)) return true; - return false; - } - - final private boolean jj_3_1637() { - if (jj_scan_token(NUMBER)) return true; - return false; - } - - final private boolean jj_3_1636() { - if (jj_scan_token(NORMALIZED)) return true; - return false; - } - - final private boolean jj_3_1635() { - if (jj_scan_token(NAMES)) return true; - return false; - } - - final private boolean jj_3_1634() { - if (jj_scan_token(MORE_)) return true; - return false; - } - - final private boolean jj_3_1633() { - if (jj_scan_token(MINUTES)) return true; - return false; - } - - final private boolean jj_3_1632() { - if (jj_scan_token(MICROSECOND)) return true; - return false; - } - - final private boolean jj_3_1631() { - if (jj_scan_token(MESSAGE_LENGTH)) return true; + if (jj_scan_token(IMMEDIATE)) return true; return false; } - final private boolean jj_3_1630() { - if (jj_scan_token(MAP)) return true; + final private boolean jj_3_40() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_1629() { - if (jj_scan_token(LIBRARY)) return true; + final private boolean jj_3_1644() { + if (jj_scan_token(HOURS)) return true; return false; } - final private boolean jj_3_1628() { - if (jj_scan_token(LAST)) return true; + final private boolean jj_3_1643() { + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_1627() { - if (jj_scan_token(KEY_MEMBER)) return true; + final private boolean jj_3R_370() { return false; } - final private boolean jj_3_1626() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3R_221() { + if (jj_scan_token(CURSOR)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_342() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_190()) return true; + final private boolean jj_3_1642() { + if (jj_scan_token(GO)) return true; return false; } - final private boolean jj_3_1625() { - if (jj_scan_token(ISOLATION)) return true; + final private boolean jj_3_1641() { + if (jj_scan_token(GENERAL)) return true; return false; } - final private boolean jj_3R_217() { - if (jj_scan_token(CURSOR)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_39() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } - final private boolean jj_3_1624() { - if (jj_scan_token(INSTANTIABLE)) return true; + final private boolean jj_3_1640() { + if (jj_scan_token(FOUND)) return true; return false; } - final private boolean jj_3_1623() { - if (jj_scan_token(INITIALLY)) return true; + final private boolean jj_3R_197() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1622() { - if (jj_scan_token(INCLUDE)) return true; + final private boolean jj_3_1639() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_1621() { - if (jj_scan_token(IMMEDIATE)) return true; + final private boolean jj_3_1638() { + if (jj_scan_token(EXCLUDING)) return true; return false; } - final private boolean jj_3_343() { - if (jj_scan_token(AS)) return true; - if (jj_3R_162()) return true; + final private boolean jj_3_1637() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_1620() { - if (jj_scan_token(HOURS)) return true; + final private boolean jj_3R_155() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_39()) { + jj_scanpos = xsp; + if (jj_3R_370()) return true; + } + xsp = jj_scanpos; + if (jj_3_40()) { + jj_scanpos = xsp; + if (jj_3R_371()) { + jj_scanpos = xsp; + if (jj_3_42()) { + jj_scanpos = xsp; + if (jj_3_43()) return true; + } + } + } return false; } - final private boolean jj_3_1619() { - if (jj_scan_token(GROUP_CONCAT)) return true; + final private boolean jj_3_1636() { + if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_1618() { - if (jj_scan_token(GO)) return true; + final private boolean jj_3_1635() { + if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_1617() { - if (jj_scan_token(GENERAL)) return true; + final private boolean jj_3_1634() { + if (jj_scan_token(DISPATCH)) return true; return false; } - final private boolean jj_3_1616() { - if (jj_scan_token(FOUND)) return true; + final private boolean jj_3_1633() { + if (jj_scan_token(DESCRIPTION)) return true; return false; } - final private boolean jj_3R_190() { - if (jj_3R_134()) return true; + final private boolean jj_3_821() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_1615() { - if (jj_scan_token(FOLLOWING)) return true; + final private boolean jj_3_1632() { + if (jj_scan_token(DEPTH)) return true; return false; } - final private boolean jj_3_801() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1631() { + if (jj_scan_token(DEFINED)) return true; return false; } - final private boolean jj_3_1614() { - if (jj_scan_token(EXCLUDING)) return true; + final private boolean jj_3_364() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_197()) return true; return false; } - final private boolean jj_3_1613() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_1630() { + if (jj_scan_token(DEFAULTS)) return true; return false; } - final private boolean jj_3_1612() { - if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; + final private boolean jj_3_1629() { + if (jj_scan_token(DAYOFYEAR)) return true; return false; } - final private boolean jj_3_1611() { - if (jj_scan_token(DOY)) return true; + final private boolean jj_3R_411() { return false; } - final private boolean jj_3R_399() { + final private boolean jj_3R_193() { + if (jj_3R_197()) return true; return false; } - final private boolean jj_3_1610() { - if (jj_scan_token(DISPATCH)) return true; + final private boolean jj_3_1628() { + if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; return false; } - final private boolean jj_3_1609() { - if (jj_scan_token(DESCRIPTION)) return true; + final private boolean jj_3_1627() { + if (jj_scan_token(DATE_TRUNC)) return true; return false; } - final private boolean jj_3_1608() { - if (jj_scan_token(DEPTH)) return true; + final private boolean jj_3_1626() { + if (jj_scan_token(DATA)) return true; return false; } - final private boolean jj_3_1607() { - if (jj_scan_token(DEFINED)) return true; + final private boolean jj_3_1625() { + if (jj_scan_token(CONTAINS_SUBSTR)) return true; return false; } - final private boolean jj_3_1606() { - if (jj_scan_token(DEFAULTS)) return true; + final private boolean jj_3_1624() { + if (jj_scan_token(CONSTRAINTS)) return true; return false; } - final private boolean jj_3_803() { + final private boolean jj_3_823() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_801()) jj_scanpos = xsp; + if (jj_3_821()) jj_scanpos = xsp; if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_1605() { - if (jj_scan_token(DAYOFYEAR)) return true; + final private boolean jj_3_1623() { + if (jj_scan_token(CONNECTION_NAME)) return true; return false; } - final private boolean jj_3_1604() { - if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + final private boolean jj_3_1622() { + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3R_290() { + final private boolean jj_3R_294() { Token xsp; xsp = jj_scanpos; - if (jj_3_802()) { + if (jj_3_822()) { jj_scanpos = xsp; - if (jj_3_803()) { + if (jj_3_823()) { jj_scanpos = xsp; - if (jj_3R_399()) return true; + if (jj_3R_411()) return true; } } return false; } - final private boolean jj_3_1603() { - if (jj_scan_token(DATE_TRUNC)) return true; + final private boolean jj_3_1621() { + if (jj_scan_token(COMMAND_FUNCTION)) return true; return false; } - final private boolean jj_3_802() { + final private boolean jj_3_822() { if (jj_scan_token(WITHOUT)) return true; if (jj_scan_token(TIME)) return true; if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1602() { - if (jj_scan_token(DATA)) return true; - return false; - } - - final private boolean jj_3_1601() { - if (jj_scan_token(CONTAINS_SUBSTR)) return true; - return false; - } - - final private boolean jj_3_1600() { - if (jj_scan_token(CONSTRAINTS)) return true; - return false; - } - - final private boolean jj_3_1599() { - if (jj_scan_token(CONNECTION_NAME)) return true; - return false; - } - - final private boolean jj_3_1598() { - if (jj_scan_token(CONDITIONAL)) return true; + final private boolean jj_3_1620() { + if (jj_scan_token(COLLATION_NAME)) return true; return false; } - final private boolean jj_3R_376() { + final private boolean jj_3_1619() { + if (jj_scan_token(COBOL)) return true; return false; } - final private boolean jj_3_1597() { - if (jj_scan_token(COMMAND_FUNCTION)) return true; + final private boolean jj_3_1618() { + if (jj_scan_token(CHARACTER_SET_NAME)) return true; return false; } - final private boolean jj_3R_172() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_374()) return true; + final private boolean jj_3_1617() { + if (jj_scan_token(CHARACTERISTICS)) return true; return false; } - final private boolean jj_3_1596() { - if (jj_scan_token(COLLATION_NAME)) return true; + final private boolean jj_3_1616() { + if (jj_scan_token(CATALOG_NAME)) return true; return false; } - final private boolean jj_3_341() { - if (jj_scan_token(EXCLUDE)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1615() { + if (jj_scan_token(C)) return true; return false; } - final private boolean jj_3_1595() { - if (jj_scan_token(COBOL)) return true; + final private boolean jj_3_363() { + if (jj_scan_token(SUBSET)) return true; + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_340() { - if (jj_scan_token(INCLUDE)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1614() { + if (jj_scan_token(BEFORE)) return true; return false; } - final private boolean jj_3_1594() { - if (jj_scan_token(CHARACTER_SET_NAME)) return true; + final private boolean jj_3_1613() { + if (jj_scan_token(ASSIGNMENT)) return true; return false; } - final private boolean jj_3_1593() { - if (jj_scan_token(CHARACTERISTICS)) return true; + final private boolean jj_3_1612() { + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3_1592() { - if (jj_scan_token(CATALOG_NAME)) return true; + final private boolean jj_3_1611() { + if (jj_scan_token(ALWAYS)) return true; return false; } - final private boolean jj_3_1591() { - if (jj_scan_token(C)) return true; + final private boolean jj_3_38() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3R_398() { + final private boolean jj_3_362() { + if (jj_scan_token(WITHIN)) return true; + if (jj_3R_195()) return true; return false; } - final private boolean jj_3_1590() { - if (jj_scan_token(BEFORE)) return true; + final private boolean jj_3_1610() { + if (jj_scan_token(ADD)) return true; return false; } - final private boolean jj_3R_177() { - if (jj_scan_token(UNPIVOT)) return true; + final private boolean jj_3R_83() { Token xsp; xsp = jj_scanpos; - if (jj_3_340()) { - jj_scanpos = xsp; - if (jj_3_341()) { + if (jj_3_37()) { jj_scanpos = xsp; - if (jj_3R_376()) return true; - } + if (jj_3_38()) return true; } - if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1589() { - if (jj_scan_token(ASSIGNMENT)) return true; + final private boolean jj_3_1609() { + if (jj_scan_token(ABSOLUTE)) return true; return false; } - final private boolean jj_3_1588() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; + final private boolean jj_3_37() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1587() { - if (jj_scan_token(ALWAYS)) return true; + final private boolean jj_3R_410() { return false; } - final private boolean jj_3_1586() { - if (jj_scan_token(ADD)) return true; + final private boolean jj_3_354() { + if (jj_scan_token(LAST)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_259() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_800()) { - jj_scanpos = xsp; - if (jj_3R_398()) return true; - } - return false; - } - - final private boolean jj_3_1585() { - if (jj_scan_token(ABSOLUTE)) return true; - return false; - } - - final private boolean jj_3_800() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; - return false; - } - - final private boolean jj_3_28() { - if (jj_3R_77()) return true; - return false; - } - - final private boolean jj_3_27() { - if (jj_3R_76()) return true; + final private boolean jj_3_361() { + if (jj_scan_token(DOLLAR)) return true; return false; } - final private boolean jj_3R_343() { + final private boolean jj_3R_347() { Token xsp; xsp = jj_scanpos; - if (jj_3_1585()) { - jj_scanpos = xsp; - if (jj_3_1586()) { - jj_scanpos = xsp; - if (jj_3_1587()) { - jj_scanpos = xsp; - if (jj_3_1588()) { - jj_scanpos = xsp; - if (jj_3_1589()) { - jj_scanpos = xsp; - if (jj_3_1590()) { - jj_scanpos = xsp; - if (jj_3_1591()) { - jj_scanpos = xsp; - if (jj_3_1592()) { - jj_scanpos = xsp; - if (jj_3_1593()) { - jj_scanpos = xsp; - if (jj_3_1594()) { - jj_scanpos = xsp; - if (jj_3_1595()) { - jj_scanpos = xsp; - if (jj_3_1596()) { - jj_scanpos = xsp; - if (jj_3_1597()) { - jj_scanpos = xsp; - if (jj_3_1598()) { - jj_scanpos = xsp; - if (jj_3_1599()) { - jj_scanpos = xsp; - if (jj_3_1600()) { - jj_scanpos = xsp; - if (jj_3_1601()) { - jj_scanpos = xsp; - if (jj_3_1602()) { - jj_scanpos = xsp; - if (jj_3_1603()) { - jj_scanpos = xsp; - if (jj_3_1604()) { - jj_scanpos = xsp; - if (jj_3_1605()) { - jj_scanpos = xsp; - if (jj_3_1606()) { - jj_scanpos = xsp; - if (jj_3_1607()) { - jj_scanpos = xsp; - if (jj_3_1608()) { - jj_scanpos = xsp; if (jj_3_1609()) { jj_scanpos = xsp; if (jj_3_1610()) { @@ -33981,7 +33715,55 @@ final private boolean jj_3R_343() { jj_scanpos = xsp; if (jj_3_1804()) { jj_scanpos = xsp; - if (jj_3_1805()) return true; + if (jj_3_1805()) { + jj_scanpos = xsp; + if (jj_3_1806()) { + jj_scanpos = xsp; + if (jj_3_1807()) { + jj_scanpos = xsp; + if (jj_3_1808()) { + jj_scanpos = xsp; + if (jj_3_1809()) { + jj_scanpos = xsp; + if (jj_3_1810()) { + jj_scanpos = xsp; + if (jj_3_1811()) { + jj_scanpos = xsp; + if (jj_3_1812()) { + jj_scanpos = xsp; + if (jj_3_1813()) { + jj_scanpos = xsp; + if (jj_3_1814()) { + jj_scanpos = xsp; + if (jj_3_1815()) { + jj_scanpos = xsp; + if (jj_3_1816()) { + jj_scanpos = xsp; + if (jj_3_1817()) { + jj_scanpos = xsp; + if (jj_3_1818()) { + jj_scanpos = xsp; + if (jj_3_1819()) { + jj_scanpos = xsp; + if (jj_3_1820()) { + jj_scanpos = xsp; + if (jj_3_1821()) { + jj_scanpos = xsp; + if (jj_3_1822()) { + jj_scanpos = xsp; + if (jj_3_1823()) { + jj_scanpos = xsp; + if (jj_3_1824()) { + jj_scanpos = xsp; + if (jj_3_1825()) { + jj_scanpos = xsp; + if (jj_3_1826()) { + jj_scanpos = xsp; + if (jj_3_1827()) { + jj_scanpos = xsp; + if (jj_3_1828()) { + jj_scanpos = xsp; + if (jj_3_1829()) return true; } } } @@ -34205,2198 +33987,2088 @@ final private boolean jj_3R_343() { return false; } - final private boolean jj_3R_379() { - return false; - } - - final private boolean jj_3R_206() { + final private boolean jj_3R_263() { Token xsp; xsp = jj_scanpos; - if (jj_3_26()) { + if (jj_3_820()) { jj_scanpos = xsp; - if (jj_3_27()) { - jj_scanpos = xsp; - if (jj_3_28()) return true; - } + if (jj_3R_410()) return true; } return false; } - final private boolean jj_3_26() { - if (jj_3R_75()) return true; + final private boolean jj_3_820() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_1584() { - if (jj_scan_token(FRIDAY)) return true; + final private boolean jj_3_360() { + if (jj_scan_token(CARET)) return true; return false; } - final private boolean jj_3_1583() { - if (jj_scan_token(TUESDAY)) return true; + final private boolean jj_3_1608() { + if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3_1582() { - if (jj_scan_token(WITHOUT)) return true; + final private boolean jj_3_1607() { + if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_338() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1606() { + if (jj_scan_token(MONDAY)) return true; return false; } - final private boolean jj_3_1581() { - if (jj_scan_token(WIDTH_BUCKET)) return true; + final private boolean jj_3_36() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_1580() { - if (jj_scan_token(VAR_SAMP)) return true; + final private boolean jj_3R_380() { return false; } - final private boolean jj_3_339() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_338()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3_1605() { + if (jj_scan_token(WITHIN)) return true; return false; } - final private boolean jj_3_799() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_259()) return true; - if (jj_3R_290()) return true; + final private boolean jj_3_1604() { + if (jj_scan_token(WHENEVER)) return true; return false; } - final private boolean jj_3_1579() { - if (jj_scan_token(VARCHAR)) return true; + final private boolean jj_3_358() { + if (jj_scan_token(PAST)) return true; + if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_1578() { - if (jj_scan_token(VALUE_OF)) return true; + final private boolean jj_3_1603() { + if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3_1577() { - if (jj_scan_token(UPSERT)) return true; + final private boolean jj_3R_397() { return false; } - final private boolean jj_3_25() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1602() { + if (jj_scan_token(VARIANT)) return true; return false; } - final private boolean jj_3_1576() { - if (jj_scan_token(UNIQUE)) return true; + final private boolean jj_3R_194() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(304)) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1575() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3_1601() { + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_24() { - if (jj_3R_74()) return true; + final private boolean jj_3_1600() { + if (jj_scan_token(UPPER)) return true; return false; } - final private boolean jj_3R_189() { - if (jj_3R_162()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_339()) { - jj_scanpos = xsp; - if (jj_3R_379()) return true; - } + final private boolean jj_3_35() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3_1574() { + final private boolean jj_3_1599() { + if (jj_scan_token(UNIQUE)) return true; + return false; + } + + final private boolean jj_3_1598() { + if (jj_scan_token(TRUNCATE)) return true; + return false; + } + + final private boolean jj_3_819() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_3R_263()) return true; + if (jj_3R_294()) return true; + return false; + } + + final private boolean jj_3_1597() { if (jj_scan_token(TRIGGER)) return true; return false; } - final private boolean jj_3_1573() { + final private boolean jj_3_1596() { if (jj_scan_token(TRANSLATE_REGEX)) return true; return false; } - final private boolean jj_3_1572() { + final private boolean jj_3_1595() { if (jj_scan_token(TIMEZONE_MINUTE)) return true; return false; } - final private boolean jj_3_798() { - if (jj_scan_token(TIME)) return true; - if (jj_3R_259()) return true; - if (jj_3R_290()) return true; + final private boolean jj_3R_224() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_35()) { + jj_scanpos = xsp; + if (jj_3R_397()) return true; + } return false; } - final private boolean jj_3_1571() { + final private boolean jj_3_1594() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_1570() { + final private boolean jj_3_1593() { if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_1569() { + final private boolean jj_3_1592() { if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_22() { - if (jj_scan_token(ALL)) return true; - return false; - } - - final private boolean jj_3_1568() { + final private boolean jj_3_1591() { if (jj_scan_token(SUBSET)) return true; return false; } - final private boolean jj_3R_285() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_797()) { - jj_scanpos = xsp; - if (jj_3_798()) { - jj_scanpos = xsp; - if (jj_3_799()) return true; - } - } - return false; - } - - final private boolean jj_3_1567() { + final private boolean jj_3_1590() { if (jj_scan_token(STDDEV_SAMP)) return true; return false; } - final private boolean jj_3_797() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_818() { + if (jj_scan_token(TIME)) return true; + if (jj_3R_263()) return true; + if (jj_3R_294()) return true; return false; } - final private boolean jj_3_1566() { + final private boolean jj_3_1589() { if (jj_scan_token(START)) return true; return false; } - final private boolean jj_3_1565() { + final private boolean jj_3_1588() { if (jj_scan_token(SQLSTATE)) return true; return false; } - final private boolean jj_3_21() { - if (jj_3R_74()) return true; + final private boolean jj_3_1587() { + if (jj_scan_token(SPECIFICTYPE)) return true; return false; } - final private boolean jj_3_1564() { - if (jj_scan_token(SPECIFICTYPE)) return true; + final private boolean jj_3_1586() { + if (jj_scan_token(SKIP_)) return true; return false; } - final private boolean jj_3_335() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_189()) return true; + final private boolean jj_3_356() { + if (jj_scan_token(FIRST)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1563() { - if (jj_scan_token(SKIP_)) return true; + final private boolean jj_3R_289() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_817()) { + jj_scanpos = xsp; + if (jj_3_818()) { + jj_scanpos = xsp; + if (jj_3_819()) return true; + } + } return false; } - final private boolean jj_3_337() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1585() { + if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_1562() { - if (jj_scan_token(SESSION_USER)) return true; + final private boolean jj_3_817() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1561() { + final private boolean jj_3_1584() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_1560() { + final private boolean jj_3_1583() { if (jj_scan_token(SCOPE)) return true; return false; } - final private boolean jj_3_1559() { + final private boolean jj_3_1582() { if (jj_scan_token(SAFE_OFFSET)) return true; return false; } - final private boolean jj_3_1558() { + final private boolean jj_3_1581() { if (jj_scan_token(ROW_NUMBER)) return true; return false; } - final private boolean jj_3_1557() { + final private boolean jj_3_1580() { if (jj_scan_token(ROLLBACK)) return true; return false; } - final private boolean jj_3_23() { - if (jj_3R_74()) return true; - if (jj_scan_token(COMMA)) return true; - return false; - } - - final private boolean jj_3_18() { + final private boolean jj_3_355() { if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_792() { - if (jj_scan_token(CHAR)) return true; - return false; - } - - final private boolean jj_3_1556() { + final private boolean jj_3_1579() { if (jj_scan_token(RETURN)) return true; return false; } - final private boolean jj_3_1555() { - if (jj_scan_token(RELEASE)) return true; + final private boolean jj_3R_413() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_334() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_188()) return true; + final private boolean jj_3_1578() { + if (jj_scan_token(RELEASE)) return true; return false; } - final private boolean jj_3_1554() { + final private boolean jj_3_1577() { if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3R_188() { - if (jj_3R_378()) return true; - return false; - } - - final private boolean jj_3_1553() { + final private boolean jj_3_1576() { if (jj_scan_token(REGR_INTERCEPT)) return true; return false; } - final private boolean jj_3_796() { - if (jj_scan_token(CHARACTER)) return true; - if (jj_scan_token(SET)) return true; - return false; - } - - final private boolean jj_3_1552() { + final private boolean jj_3_1575() { if (jj_scan_token(REGR_AVGX)) return true; return false; } - final private boolean jj_3_1551() { - if (jj_scan_token(REF)) return true; + final private boolean jj_3_812() { + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3R_289() { + final private boolean jj_3_1574() { + if (jj_scan_token(REF)) return true; return false; } - final private boolean jj_3R_72() { - if (jj_scan_token(LIMIT)) return true; + final private boolean jj_3_357() { + if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_23()) { + if (jj_3_355()) { jj_scanpos = xsp; - if (jj_3_24()) { + if (jj_3_356()) { jj_scanpos = xsp; - if (jj_3_25()) return true; + lookingAhead = true; + jj_semLA = true; + lookingAhead = false; + if (!jj_semLA || jj_3R_194()) return true; } } return false; } - final private boolean jj_3_1550() { + final private boolean jj_3_1573() { if (jj_scan_token(READS)) return true; return false; } - final private boolean jj_3_1549() { + final private boolean jj_3_1572() { if (jj_scan_token(QUALIFY)) return true; return false; } - final private boolean jj_3_795() { - if (jj_scan_token(VARCHAR)) return true; + final private boolean jj_3_1571() { + if (jj_scan_token(PREPARE)) return true; return false; } - final private boolean jj_3_1548() { - if (jj_scan_token(PREPARE)) return true; + final private boolean jj_3_816() { + if (jj_scan_token(CHARACTER)) return true; + if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3_20() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_1570() { + if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_793() { - if (jj_scan_token(VARYING)) return true; + final private boolean jj_3_1569() { + if (jj_scan_token(PORTION)) return true; return false; } - final private boolean jj_3_1547() { - if (jj_scan_token(POWER)) return true; + final private boolean jj_3R_293() { return false; } - final private boolean jj_3_17() { - if (jj_scan_token(FIRST)) return true; + final private boolean jj_3_1568() { + if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3_1546() { - if (jj_scan_token(PORTION)) return true; + final private boolean jj_3_34() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_1545() { - if (jj_scan_token(PERCENT_RANK)) return true; + final private boolean jj_3_359() { + if (jj_scan_token(AFTER)) return true; + if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_1544() { + final private boolean jj_3_1567() { if (jj_scan_token(PERCENT)) return true; return false; } - final private boolean jj_3_1543() { + final private boolean jj_3_815() { + if (jj_scan_token(VARCHAR)) return true; + return false; + } + + final private boolean jj_3_1566() { if (jj_scan_token(PARAMETER)) return true; return false; } - final private boolean jj_3_791() { - if (jj_scan_token(CHARACTER)) return true; + final private boolean jj_3_33() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1542() { - if (jj_scan_token(OVER)) return true; + final private boolean jj_3_813() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_794() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_791()) { - jj_scanpos = xsp; - if (jj_3_792()) return true; - } - xsp = jj_scanpos; - if (jj_3_793()) { - jj_scanpos = xsp; - if (jj_3R_289()) return true; - } + final private boolean jj_3R_379() { return false; } - final private boolean jj_3_1541() { - if (jj_scan_token(OPEN)) return true; + final private boolean jj_3_1565() { + if (jj_scan_token(OVER)) return true; return false; } - final private boolean jj_3_1540() { - if (jj_scan_token(OMIT)) return true; + final private boolean jj_3_1564() { + if (jj_scan_token(OPEN)) return true; return false; } - final private boolean jj_3_19() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1563() { + if (jj_scan_token(OMIT)) return true; return false; } - final private boolean jj_3_1539() { + final private boolean jj_3_1562() { if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1538() { - if (jj_scan_token(NULLIF)) return true; + final private boolean jj_3_353() { + if (jj_scan_token(ALL)) return true; + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3R_284() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_794()) { - jj_scanpos = xsp; - if (jj_3_795()) return true; - } - if (jj_3R_259()) return true; - xsp = jj_scanpos; - if (jj_3_796()) jj_scanpos = xsp; + final private boolean jj_3_1561() { + if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3R_73() { - if (jj_scan_token(FETCH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_17()) { - jj_scanpos = xsp; - if (jj_3_18()) return true; - } + final private boolean jj_3_811() { + if (jj_scan_token(CHARACTER)) return true; return false; } - final private boolean jj_3_1537() { + final private boolean jj_3_1560() { if (jj_scan_token(NORMALIZE)) return true; return false; } - final private boolean jj_3_336() { - if (jj_3R_189()) return true; + final private boolean jj_3_814() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_811()) { + jj_scanpos = xsp; + if (jj_3_812()) return true; + } + xsp = jj_scanpos; + if (jj_3_813()) { + jj_scanpos = xsp; + if (jj_3R_293()) return true; + } return false; } - final private boolean jj_3_1536() { + final private boolean jj_3_1559() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_1535() { + final private boolean jj_3_1558() { if (jj_scan_token(NCHAR)) return true; return false; } - final private boolean jj_3_15() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_352() { + if (jj_scan_token(ONE)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1534() { + final private boolean jj_3_1557() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_1533() { + final private boolean jj_3_1556() { if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3_1532() { - if (jj_scan_token(METHOD)) return true; - return false; - } - - final private boolean jj_3_1531() { - if (jj_scan_token(MEASURE)) return true; + final private boolean jj_3_32() { + if (jj_scan_token(COMMA)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_33()) { + jj_scanpos = xsp; + if (jj_3_34()) return true; + } return false; } - final private boolean jj_3R_176() { - if (jj_scan_token(PIVOT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_378() { return false; } - final private boolean jj_3_1530() { + final private boolean jj_3R_288() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_814()) { + jj_scanpos = xsp; + if (jj_3_815()) return true; + } + if (jj_3R_263()) return true; + xsp = jj_scanpos; + if (jj_3_816()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_1555() { + if (jj_scan_token(METHOD)) return true; + return false; + } + + final private boolean jj_3_1554() { + if (jj_scan_token(MEASURE)) return true; + return false; + } + + final private boolean jj_3_1553() { if (jj_scan_token(MATCH_NUMBER)) return true; return false; } - final private boolean jj_3_1529() { + final private boolean jj_3_31() { + if (jj_3R_81()) return true; + return false; + } + + final private boolean jj_3_1552() { if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_1528() { + final private boolean jj_3_351() { + if (jj_scan_token(MEASURES)) return true; + if (jj_3R_193()) return true; + return false; + } + + final private boolean jj_3_1551() { if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_1527() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_30() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_14() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1550() { + if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_16() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_14()) { - jj_scanpos = xsp; - if (jj_3_15()) return true; - } + final private boolean jj_3R_377() { return false; } - final private boolean jj_3_1526() { + final private boolean jj_3_1549() { if (jj_scan_token(LANGUAGE)) return true; return false; } - final private boolean jj_3_1525() { + final private boolean jj_3_1548() { if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3_1524() { + final private boolean jj_3_1547() { if (jj_scan_token(JSON_OBJECT)) return true; return false; } - final private boolean jj_3R_71() { - if (jj_scan_token(OFFSET)) return true; - if (jj_3R_74()) return true; + final private boolean jj_3_350() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_1523() { + final private boolean jj_3_1546() { if (jj_scan_token(JSON_ARRAY)) return true; return false; } - final private boolean jj_3_1522() { + final private boolean jj_3_1545() { if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3_1521() { + final private boolean jj_3R_376() { + return false; + } + + final private boolean jj_3_1544() { if (jj_scan_token(INITIAL)) return true; return false; } - final private boolean jj_3_1520() { + final private boolean jj_3_1543() { if (jj_scan_token(IDENTITY)) return true; return false; } - final private boolean jj_3_1519() { + final private boolean jj_3_1542() { if (jj_scan_token(GROUPS)) return true; return false; } - final private boolean jj_3_1518() { + final private boolean jj_3_1541() { if (jj_scan_token(GLOBAL)) return true; return false; } - final private boolean jj_3_1517() { - if (jj_scan_token(FUNCTION)) return true; + final private boolean jj_3_349() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3R_280() { - if (jj_scan_token(MAP)) return true; - if (jj_scan_token(LT)) return true; - if (jj_3R_120()) return true; + final private boolean jj_3_1540() { + if (jj_scan_token(FUNCTION)) return true; return false; } - final private boolean jj_3_1516() { + final private boolean jj_3_1539() { if (jj_scan_token(FOREIGN)) return true; return false; } - final private boolean jj_3_1515() { + final private boolean jj_3_1538() { if (jj_scan_token(FIRST_VALUE)) return true; return false; } - final private boolean jj_3_1514() { + final private boolean jj_3_1537() { if (jj_scan_token(EXTERNAL)) return true; return false; } - final private boolean jj_3_1513() { + final private boolean jj_3_1536() { if (jj_scan_token(EXECUTE)) return true; return false; } - final private boolean jj_3_1512() { + final private boolean jj_3_1535() { if (jj_scan_token(ESCAPE)) return true; return false; } - final private boolean jj_3_1511() { - if (jj_scan_token(END_FRAME)) return true; + final private boolean jj_3R_284() { + if (jj_scan_token(MAP)) return true; + if (jj_scan_token(LT)) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_1510() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_1534() { + if (jj_scan_token(END_FRAME)) return true; return false; } - final private boolean jj_3_1509() { - if (jj_scan_token(DYNAMIC)) return true; + final private boolean jj_3_1533() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1508() { - if (jj_scan_token(DISALLOW)) return true; + final private boolean jj_3R_184() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_30()) { + jj_scanpos = xsp; + if (jj_3_31()) return true; + } return false; } - final private boolean jj_3_1507() { - if (jj_scan_token(DEREF)) return true; + final private boolean jj_3_1532() { + if (jj_scan_token(DYNAMIC)) return true; return false; } - final private boolean jj_3_8() { - if (jj_3R_73()) return true; + final private boolean jj_3_348() { + if (jj_scan_token(AS)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1506() { - if (jj_scan_token(DECLARE)) return true; + final private boolean jj_3_1531() { + if (jj_scan_token(DISALLOW)) return true; return false; } - final private boolean jj_3_12() { - if (jj_3R_73()) return true; + final private boolean jj_3_1530() { + if (jj_scan_token(DEREF)) return true; return false; } - final private boolean jj_3_1505() { - if (jj_scan_token(DEALLOCATE)) return true; + final private boolean jj_3R_169() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_348()) jj_scanpos = xsp; + if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(LPAREN)) return true; + xsp = jj_scanpos; + if (jj_3_349()) { + jj_scanpos = xsp; + if (jj_3R_376()) return true; + } + xsp = jj_scanpos; + if (jj_3_350()) { + jj_scanpos = xsp; + if (jj_3R_377()) return true; + } + xsp = jj_scanpos; + if (jj_3_351()) { + jj_scanpos = xsp; + if (jj_3R_378()) return true; + } + xsp = jj_scanpos; + if (jj_3_352()) { + jj_scanpos = xsp; + if (jj_3_353()) { + jj_scanpos = xsp; + if (jj_3R_379()) return true; + } + } + xsp = jj_scanpos; + if (jj_3_359()) { + jj_scanpos = xsp; + if (jj_3R_380()) return true; + } + if (jj_scan_token(PATTERN)) return true; return false; } - final private boolean jj_3R_167() { - if (jj_scan_token(FOR)) return true; - if (jj_scan_token(SYSTEM_TIME)) return true; + final private boolean jj_3_1529() { + if (jj_scan_token(DECLARE)) return true; return false; } - final private boolean jj_3_1504() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_1528() { + if (jj_scan_token(DEALLOCATE)) return true; return false; } - final private boolean jj_3R_279() { - if (jj_scan_token(ROW)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_417()) return true; + final private boolean jj_3_1527() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1503() { + final private boolean jj_3_1526() { if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; return false; } - final private boolean jj_3_1502() { + final private boolean jj_3_1525() { if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_1501() { + final private boolean jj_3_1524() { if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3_1500() { + final private boolean jj_3_1523() { if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_7() { - if (jj_3R_72()) return true; - return false; - } - - final private boolean jj_3_9() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_7()) { - jj_scanpos = xsp; - if (jj_3_8()) return true; - } + final private boolean jj_3_1522() { + if (jj_scan_token(CORRESPONDING)) return true; return false; } - final private boolean jj_3_1499() { - if (jj_scan_token(CORRESPONDING)) return true; + final private boolean jj_3R_283() { + if (jj_scan_token(ROW)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_430()) return true; return false; } - final private boolean jj_3_1498() { + final private boolean jj_3_1521() { if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_1497() { + final private boolean jj_3_1520() { if (jj_scan_token(COMMIT)) return true; return false; } - final private boolean jj_3_1496() { + final private boolean jj_3_1519() { if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_1495() { + final private boolean jj_3_1518() { if (jj_scan_token(CLASSIFIER)) return true; return false; } - final private boolean jj_3_1494() { + final private boolean jj_3_1517() { if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_6() { - if (jj_3R_71()) return true; - return false; - } - - final private boolean jj_3_11() { - if (jj_3R_71()) return true; - return false; - } - - final private boolean jj_3_1493() { + final private boolean jj_3_1516() { if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_1492() { + final private boolean jj_3_1515() { if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_1491() { + final private boolean jj_3_1514() { if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_10() { - if (jj_3R_72()) return true; - return false; - } - - final private boolean jj_3_13() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_10()) { - jj_scanpos = xsp; - if (jj_3_11()) { - jj_scanpos = xsp; - if (jj_3_12()) return true; - } - } - return false; - } - - final private boolean jj_3_1490() { + final private boolean jj_3_1513() { if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_1489() { + final private boolean jj_3_1512() { if (jj_scan_token(BEGIN_FRAME)) return true; return false; } - final private boolean jj_3R_406() { - return false; - } - - final private boolean jj_3_1488() { + final private boolean jj_3_1511() { if (jj_scan_token(AUTHORIZATION)) return true; return false; } - final private boolean jj_3_1487() { - if (jj_scan_token(ASOF)) return true; + final private boolean jj_3_29() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_5() { - if (jj_3R_70()) return true; + final private boolean jj_3_1510() { + if (jj_scan_token(ASOF)) return true; return false; } - final private boolean jj_3_1486() { + final private boolean jj_3_1509() { if (jj_scan_token(ARE)) return true; return false; } - final private boolean jj_3_1485() { + final private boolean jj_3_1508() { if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_1484() { + final private boolean jj_3_1507() { if (jj_scan_token(ANALYZE)) return true; return false; } - final private boolean jj_3R_288() { - if (jj_3R_84()) return true; + final private boolean jj_3_1506() { + if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3_1483() { - if (jj_scan_token(QUERY)) return true; + final private boolean jj_3_346() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_192()) return true; return false; } - final private boolean jj_3_1482() { + final private boolean jj_3_1505() { if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3_1481() { + final private boolean jj_3_1504() { if (jj_scan_token(KILL)) return true; return false; } - final private boolean jj_3R_348() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_5()) { - jj_scanpos = xsp; - if (jj_3R_406()) return true; - } - xsp = jj_scanpos; - if (jj_3_13()) jj_scanpos = xsp; + final private boolean jj_3_1503() { + if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3_1480() { - if (jj_scan_token(LOGGING)) return true; + final private boolean jj_3_1502() { + if (jj_scan_token(ENCRYPTED)) return true; return false; } - final private boolean jj_3_1479() { - if (jj_scan_token(ENCRYPTED)) return true; + final private boolean jj_3R_292() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1478() { + final private boolean jj_3_1501() { if (jj_scan_token(VALUE_TYPE)) return true; return false; } - final private boolean jj_3R_373() { - if (jj_3R_411()) return true; + final private boolean jj_3_347() { + if (jj_scan_token(AS)) return true; + if (jj_3R_163()) return true; return false; } - final private boolean jj_3_1477() { + final private boolean jj_3_1500() { if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_1476() { + final private boolean jj_3_1499() { if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_1475() { + final private boolean jj_3_1498() { if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1474() { + final private boolean jj_3_1497() { if (jj_scan_token(WRITE)) return true; return false; } - final private boolean jj_3_790() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_288()) return true; - return false; - } - - final private boolean jj_3_1473() { + final private boolean jj_3_1496() { if (jj_scan_token(WEEKS)) return true; return false; } - final private boolean jj_3_1472() { - if (jj_scan_token(VERSION)) return true; + final private boolean jj_3R_192() { + if (jj_3R_135()) return true; return false; } - final private boolean jj_3R_417() { - if (jj_3R_288()) return true; + final private boolean jj_3_1495() { + if (jj_scan_token(VERSION)) return true; return false; } - final private boolean jj_3_1471() { + final private boolean jj_3_1494() { if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3_1470() { + final private boolean jj_3_1493() { if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; return false; } - final private boolean jj_3_1469() { + final private boolean jj_3_1492() { if (jj_scan_token(UNNAMED)) return true; return false; } - final private boolean jj_3_1468() { - if (jj_scan_token(UNCONDITIONAL)) return true; + final private boolean jj_3_810() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_292()) return true; return false; } - final private boolean jj_3_1467() { - if (jj_scan_token(TYPE)) return true; + final private boolean jj_3R_174() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_1466() { - if (jj_scan_token(TRIGGER_NAME)) return true; + final private boolean jj_3_1491() { + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_1465() { - if (jj_scan_token(TRANSFORM)) return true; + final private boolean jj_3_1490() { + if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_332() { - if (jj_scan_token(NULLS)) return true; - if (jj_scan_token(LAST)) return true; + final private boolean jj_3R_430() { + if (jj_3R_292()) return true; return false; } - final private boolean jj_3R_79() { - if (jj_3R_347()) return true; - if (jj_3R_348()) return true; + final private boolean jj_3_1489() { + if (jj_scan_token(TRIGGER_NAME)) return true; return false; } - final private boolean jj_3_1464() { + final private boolean jj_3_1488() { + if (jj_scan_token(TRANSFORM)) return true; + return false; + } + + final private boolean jj_3_1487() { if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; return false; } - final private boolean jj_3_1463() { + final private boolean jj_3_1486() { if (jj_scan_token(TIMESTAMP_TRUNC)) return true; return false; } - final private boolean jj_3_1462() { + final private boolean jj_3_1485() { if (jj_scan_token(TIMESTAMPADD)) return true; return false; } - final private boolean jj_3_1461() { + final private boolean jj_3_1484() { if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3_1460() { + final private boolean jj_3_1483() { if (jj_scan_token(SUBSTITUTE)) return true; return false; } - final private boolean jj_3_333() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_331()) { - jj_scanpos = xsp; - if (jj_3_332()) return true; - } - return false; - } - - final private boolean jj_3_331() { - if (jj_scan_token(NULLS)) return true; - if (jj_scan_token(FIRST)) return true; - return false; - } - - final private boolean jj_3R_377() { + final private boolean jj_3_1482() { + if (jj_scan_token(STRUCTURE)) return true; return false; } - final private boolean jj_3_1459() { - if (jj_scan_token(STRUCTURE)) return true; + final private boolean jj_3_1481() { + if (jj_scan_token(STATE)) return true; return false; } - final private boolean jj_3_1458() { - if (jj_scan_token(STATE)) return true; + final private boolean jj_3_1480() { + if (jj_scan_token(SQL_TSI_YEAR)) return true; return false; } - final private boolean jj_3R_181() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_789()) { - jj_scanpos = xsp; - if (jj_3R_377()) return true; - } + final private boolean jj_3_1479() { + if (jj_scan_token(SQL_TSI_QUARTER)) return true; return false; } - final private boolean jj_3_1457() { - if (jj_scan_token(SQL_TSI_YEAR)) return true; + final private boolean jj_3_1478() { + if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; return false; } - final private boolean jj_3_789() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3R_386() { return false; } - final private boolean jj_3_1456() { - if (jj_scan_token(SQL_TSI_QUARTER)) return true; + final private boolean jj_3R_385() { return false; } - final private boolean jj_3_1455() { - if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; + final private boolean jj_3_1477() { + if (jj_scan_token(SQL_TSI_DAY)) return true; return false; } - final private boolean jj_3_329() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_1476() { + if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_1454() { - if (jj_scan_token(SQL_TSI_DAY)) return true; + final private boolean jj_3_345() { + if (jj_scan_token(EXCLUDE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_330() { + final private boolean jj_3R_182() { Token xsp; xsp = jj_scanpos; - if (jj_3_328()) { + if (jj_3_809()) { jj_scanpos = xsp; - if (jj_3_329()) return true; + if (jj_3R_386()) return true; } return false; } - final private boolean jj_3_328() { - if (jj_scan_token(ASC)) return true; + final private boolean jj_3_1475() { + if (jj_scan_token(SQL_NVARCHAR)) return true; return false; } - final private boolean jj_3_1453() { - if (jj_scan_token(SQL_TIME)) return true; + final private boolean jj_3_344() { + if (jj_scan_token(INCLUDE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_1452() { - if (jj_scan_token(SQL_NVARCHAR)) return true; + final private boolean jj_3_809() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1451() { + final private boolean jj_3_1474() { if (jj_scan_token(SQL_NCHAR)) return true; return false; } - final private boolean jj_3_1450() { + final private boolean jj_3_1473() { if (jj_scan_token(SQL_LONGVARBINARY)) return true; return false; } - final private boolean jj_3_1449() { + final private boolean jj_3_1472() { if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3R_156() { - if (jj_3R_81()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_330()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_333()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_1448() { + final private boolean jj_3_1471() { if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_1447() { + final private boolean jj_3_1470() { if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3_788() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3R_178() { + if (jj_scan_token(UNPIVOT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_344()) { + jj_scanpos = xsp; + if (jj_3_345()) { + jj_scanpos = xsp; + if (jj_3R_385()) return true; + } + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1446() { + final private boolean jj_3_1469() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1445() { + final private boolean jj_3_1468() { if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_787() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_1444() { + final private boolean jj_3_1467() { if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_1443() { + final private boolean jj_3_1466() { if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_1442() { + final private boolean jj_3_1465() { if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_1441() { - if (jj_scan_token(SPACE)) return true; + final private boolean jj_3_808() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1440() { + final private boolean jj_3_1464() { + if (jj_scan_token(SPACE)) return true; + return false; + } + + final private boolean jj_3_1463() { if (jj_scan_token(SIMPLE)) return true; return false; } - final private boolean jj_3_1439() { - if (jj_scan_token(SERVER_NAME)) return true; + final private boolean jj_3_807() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1438() { - if (jj_scan_token(SEQUENCE)) return true; + final private boolean jj_3_1462() { + if (jj_scan_token(SERVER_NAME)) return true; return false; } - final private boolean jj_3_1437() { - if (jj_scan_token(SECURITY)) return true; + final private boolean jj_3_1461() { + if (jj_scan_token(SEQUENCE)) return true; return false; } - final private boolean jj_3_327() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_156()) return true; + final private boolean jj_3_1460() { + if (jj_scan_token(SECURITY)) return true; return false; } - final private boolean jj_3_1436() { + final private boolean jj_3_1459() { if (jj_scan_token(SCOPE_SCHEMA)) return true; return false; } - final private boolean jj_3_1435() { + final private boolean jj_3_1458() { if (jj_scan_token(SCHEMA_NAME)) return true; return false; } - final private boolean jj_3_1434() { - if (jj_scan_token(SCALAR)) return true; + final private boolean jj_3R_388() { return false; } - final private boolean jj_3_1433() { - if (jj_scan_token(ROUTINE_NAME)) return true; + final private boolean jj_3_1457() { + if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_786() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1456() { + if (jj_scan_token(ROUTINE_NAME)) return true; return false; } - final private boolean jj_3_1432() { + final private boolean jj_3_1455() { if (jj_scan_token(ROLE)) return true; return false; } - final private boolean jj_3_1431() { + final private boolean jj_3_1454() { if (jj_scan_token(RETURNED_SQLSTATE)) return true; return false; } - final private boolean jj_3_785() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1453() { + if (jj_scan_token(RETURNED_CARDINALITY)) return true; return false; } - final private boolean jj_3_1430() { - if (jj_scan_token(RETURNED_CARDINALITY)) return true; + final private boolean jj_3_342() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1429() { + final private boolean jj_3_1452() { if (jj_scan_token(RESPECT)) return true; return false; } - final private boolean jj_3_2() { - if (jj_3R_67()) return true; + final private boolean jj_3_1451() { + if (jj_scan_token(RELATIVE)) return true; return false; } - final private boolean jj_3_1428() { - if (jj_scan_token(RELATIVE)) return true; + final private boolean jj_3_343() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_342()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1427() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3_806() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1() { - if (jj_3R_66()) return true; + final private boolean jj_3_1450() { + if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_1426() { + final private boolean jj_3_1449() { if (jj_scan_token(PRIOR)) return true; return false; } - final private boolean jj_3_1425() { - if (jj_scan_token(PLI)) return true; + final private boolean jj_3_805() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1424() { - if (jj_scan_token(PIVOT)) return true; + final private boolean jj_3_1448() { + if (jj_scan_token(PLI)) return true; return false; } - final private boolean jj_3_4() { - if (jj_3R_69()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_1()) { jj_scanpos = xsp; break; } - } - while (true) { - xsp = jj_scanpos; - if (jj_3_2()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1447() { + if (jj_scan_token(PIVOT)) return true; return false; } - final private boolean jj_3_1423() { + final private boolean jj_3_1446() { if (jj_scan_token(PASSTHROUGH)) return true; return false; } - final private boolean jj_3_1422() { - if (jj_scan_token(PARTIAL)) return true; + final private boolean jj_3R_191() { + if (jj_3R_163()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_343()) { + jj_scanpos = xsp; + if (jj_3R_388()) return true; + } return false; } - final private boolean jj_3_1421() { - if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; + final private boolean jj_3_1445() { + if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3R_70() { - if (jj_scan_token(ORDER)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_1444() { + if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; return false; } - final private boolean jj_3_1420() { + final private boolean jj_3_1443() { if (jj_scan_token(PARAMETER_MODE)) return true; return false; } - final private boolean jj_3_784() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_1442() { + if (jj_scan_token(OUTPUT)) return true; return false; } - final private boolean jj_3_1419() { - if (jj_scan_token(OUTPUT)) return true; + final private boolean jj_3_1441() { + if (jj_scan_token(ORDERING)) return true; return false; } - final private boolean jj_3_3() { - if (jj_3R_68()) return true; + final private boolean jj_3_1440() { + if (jj_scan_token(OCTETS)) return true; return false; } - final private boolean jj_3_1418() { - if (jj_scan_token(ORDERING)) return true; + final private boolean jj_3_1439() { + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_783() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3_1438() { + if (jj_scan_token(NESTING)) return true; return false; } - final private boolean jj_3_1417() { - if (jj_scan_token(OCTETS)) return true; + final private boolean jj_3_804() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_1416() { - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3R_173() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_383()) return true; return false; } - final private boolean jj_3_1415() { - if (jj_scan_token(NESTING)) return true; + final private boolean jj_3_1437() { + if (jj_scan_token(NAME)) return true; return false; } - final private boolean jj_3R_374() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_3()) { - jj_scanpos = xsp; - if (jj_3_4()) return true; - } + final private boolean jj_3_1436() { + if (jj_scan_token(MONTHS)) return true; return false; } - final private boolean jj_3_1414() { - if (jj_scan_token(NAME)) return true; + final private boolean jj_3_803() { + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3R_277() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_783()) { - jj_scanpos = xsp; - if (jj_3_784()) return true; - } + final private boolean jj_3_1435() { + if (jj_scan_token(MILLISECOND)) return true; return false; } - final private boolean jj_3_1413() { - if (jj_scan_token(MONTHS)) return true; + final private boolean jj_3_339() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_191()) return true; return false; } - final private boolean jj_3_1412() { - if (jj_scan_token(MILLISECOND)) return true; + final private boolean jj_3_1434() { + if (jj_scan_token(MESSAGE_TEXT)) return true; return false; } - final private boolean jj_3_1411() { - if (jj_scan_token(MESSAGE_TEXT)) return true; + final private boolean jj_3_341() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1410() { + final private boolean jj_3_1433() { if (jj_scan_token(MAXVALUE)) return true; return false; } - final private boolean jj_3_1409() { + final private boolean jj_3_1432() { if (jj_scan_token(M)) return true; return false; } - final private boolean jj_3R_149() { - if (jj_scan_token(QUALIFY)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3R_281() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_803()) { + jj_scanpos = xsp; + if (jj_3_804()) return true; + } return false; } - final private boolean jj_3_1408() { + final private boolean jj_3_1431() { if (jj_scan_token(LEVEL)) return true; return false; } - final private boolean jj_3_1407() { + final private boolean jj_3_1430() { if (jj_scan_token(LABEL)) return true; return false; } - final private boolean jj_3_1406() { + final private boolean jj_3_1429() { if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_1405() { + final private boolean jj_3_1428() { if (jj_scan_token(JAVA)) return true; return false; } - final private boolean jj_3_1404() { + final private boolean jj_3_1427() { if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_1403() { + final private boolean jj_3_1426() { if (jj_scan_token(INSTANCE)) return true; return false; } - final private boolean jj_3_325() { - if (jj_scan_token(TIES)) return true; + final private boolean jj_3_338() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_190()) return true; return false; } - final private boolean jj_3_1402() { + final private boolean jj_3_1425() { if (jj_scan_token(INCREMENT)) return true; return false; } - final private boolean jj_3_1401() { - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_28() { + if (jj_3R_78()) return true; return false; } - final private boolean jj_3_324() { - if (jj_scan_token(GROUP)) return true; + final private boolean jj_3R_190() { + if (jj_3R_387()) return true; return false; } - final private boolean jj_3_1400() { + final private boolean jj_3_1424() { + if (jj_scan_token(IMPLEMENTATION)) return true; + return false; + } + + final private boolean jj_3_1423() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_1399() { - if (jj_scan_token(HOP)) return true; + final private boolean jj_3_27() { + if (jj_3R_77()) return true; return false; } - final private boolean jj_3_323() { - if (jj_scan_token(NO)) return true; - if (jj_scan_token(OTHERS)) return true; + final private boolean jj_3_1422() { + if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_1398() { + final private boolean jj_3_1421() { if (jj_scan_token(GRANTED)) return true; return false; } - final private boolean jj_3_1397() { + final private boolean jj_3_1420() { if (jj_scan_token(GEOMETRY)) return true; return false; } - final private boolean jj_3_322() { - if (jj_scan_token(CURRENT)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1419() { + if (jj_scan_token(G)) return true; return false; } - final private boolean jj_3_1396() { - if (jj_scan_token(G)) return true; + final private boolean jj_3_1418() { + if (jj_scan_token(FORTRAN)) return true; return false; } - final private boolean jj_3_1395() { - if (jj_scan_token(FORTRAN)) return true; + final private boolean jj_3R_207() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_26()) { + jj_scanpos = xsp; + if (jj_3_27()) { + jj_scanpos = xsp; + if (jj_3_28()) return true; + } + } return false; } - final private boolean jj_3_1394() { + final private boolean jj_3_1417() { if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_1393() { + final private boolean jj_3_26() { + if (jj_3R_76()) return true; + return false; + } + + final private boolean jj_3_1416() { if (jj_scan_token(EXCLUDE)) return true; return false; } - final private boolean jj_3_750() { + final private boolean jj_3_1415() { + if (jj_scan_token(EPOCH)) return true; + return false; + } + + final private boolean jj_3_1414() { + if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + return false; + } + + final private boolean jj_3_1413() { + if (jj_scan_token(DOW)) return true; + return false; + } + + final private boolean jj_3_1412() { + if (jj_scan_token(DIAGNOSTICS)) return true; + return false; + } + + final private boolean jj_3_1411() { + if (jj_scan_token(DESC)) return true; + return false; + } + + final private boolean jj_3_770() { if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_752() { + final private boolean jj_3_772() { if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_1392() { - if (jj_scan_token(EPOCH)) return true; + final private boolean jj_3_1410() { + if (jj_scan_token(DEGREE)) return true; return false; } - final private boolean jj_3_744() { + final private boolean jj_3_764() { if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1391() { - if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + final private boolean jj_3_1409() { + if (jj_scan_token(DEFERRED)) return true; return false; } - final private boolean jj_3_326() { - if (jj_scan_token(EXCLUDE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_322()) { - jj_scanpos = xsp; - if (jj_3_323()) { - jj_scanpos = xsp; - if (jj_3_324()) { - jj_scanpos = xsp; - if (jj_3_325()) return true; - } - } - } + final private boolean jj_3_25() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_740() { + final private boolean jj_3_760() { if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_746() { + final private boolean jj_3_766() { if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_782() { + final private boolean jj_3_802() { if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3_1390() { - if (jj_scan_token(DOW)) return true; + final private boolean jj_3_1408() { + if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_742() { + final private boolean jj_3_340() { + if (jj_3R_191()) return true; + return false; + } + + final private boolean jj_3_762() { if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_781() { + final private boolean jj_3_801() { if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } - final private boolean jj_3_1389() { - if (jj_scan_token(DIAGNOSTICS)) return true; + final private boolean jj_3_1407() { + if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_748() { + final private boolean jj_3_24() { + if (jj_3R_75()) return true; + return false; + } + + final private boolean jj_3_768() { if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_780() { + final private boolean jj_3_800() { if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_1388() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_1406() { + if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; return false; } - final private boolean jj_3_779() { + final private boolean jj_3_799() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_1387() { - if (jj_scan_token(DEGREE)) return true; + final private boolean jj_3_1405() { + if (jj_scan_token(DATE_DIFF)) return true; return false; } - final private boolean jj_3_736() { + final private boolean jj_3_756() { if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_738() { + final private boolean jj_3_758() { if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_778() { + final private boolean jj_3_798() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } - final private boolean jj_3_1386() { - if (jj_scan_token(DEFERRED)) return true; + final private boolean jj_3_1404() { + if (jj_scan_token(CURSOR_NAME)) return true; return false; } - final private boolean jj_3_734() { + final private boolean jj_3_754() { if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_777() { + final private boolean jj_3_797() { if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3_1385() { - if (jj_scan_token(DECADE)) return true; + final private boolean jj_3_1403() { + if (jj_scan_token(CONSTRUCTOR)) return true; return false; } - final private boolean jj_3_728() { + final private boolean jj_3_748() { if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_732() { + final private boolean jj_3_752() { if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_776() { + final private boolean jj_3_796() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } - final private boolean jj_3_1384() { - if (jj_scan_token(DAYOFWEEK)) return true; + final private boolean jj_3_1402() { + if (jj_scan_token(CONSTRAINT_NAME)) return true; return false; } - final private boolean jj_3_730() { + final private boolean jj_3_750() { if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_775() { + final private boolean jj_3_795() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } - final private boolean jj_3_1383() { - if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; + final private boolean jj_3R_177() { + if (jj_scan_token(PIVOT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_774() { + final private boolean jj_3_1401() { + if (jj_scan_token(CONNECTION)) return true; + return false; + } + + final private boolean jj_3_22() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_794() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1382() { - if (jj_scan_token(DATE_DIFF)) return true; + final private boolean jj_3_1400() { + if (jj_scan_token(COMMITTED)) return true; return false; } - final private boolean jj_3_773() { + final private boolean jj_3_793() { if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } - final private boolean jj_3_1381() { - if (jj_scan_token(CURSOR_NAME)) return true; + final private boolean jj_3_1399() { + if (jj_scan_token(COLUMN_NAME)) return true; return false; } - final private boolean jj_3_772() { + final private boolean jj_3_792() { if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3_1380() { - if (jj_scan_token(CONSTRUCTOR)) return true; + final private boolean jj_3_1398() { + if (jj_scan_token(COLLATION_CATALOG)) return true; return false; } - final private boolean jj_3_722() { + final private boolean jj_3_742() { if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_771() { + final private boolean jj_3_791() { if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } - final private boolean jj_3_1379() { - if (jj_scan_token(CONSTRAINT_NAME)) return true; + final private boolean jj_3_1397() { + if (jj_scan_token(CLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_318() { - if (jj_scan_token(FOLLOWING)) return true; + final private boolean jj_3_21() { + if (jj_3R_75()) return true; return false; } - final private boolean jj_3_726() { + final private boolean jj_3_746() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_751() { + final private boolean jj_3_771() { if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_770() { + final private boolean jj_3_790() { if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } - final private boolean jj_3_1378() { - if (jj_scan_token(CONNECTION)) return true; + final private boolean jj_3_1396() { + if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; return false; } - final private boolean jj_3_724() { + final private boolean jj_3_744() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_749() { + final private boolean jj_3_769() { if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_769() { + final private boolean jj_3_789() { Token xsp; xsp = jj_scanpos; - if (jj_3_751()) { + if (jj_3_771()) { jj_scanpos = xsp; - if (jj_3_752()) return true; + if (jj_3_772()) return true; } return false; } - final private boolean jj_3_1377() { - if (jj_scan_token(COMMITTED)) return true; + final private boolean jj_3_1395() { + if (jj_scan_token(CHAIN)) return true; return false; } - final private boolean jj_3_747() { + final private boolean jj_3_767() { if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_768() { + final private boolean jj_3_788() { Token xsp; xsp = jj_scanpos; - if (jj_3_749()) { + if (jj_3_769()) { jj_scanpos = xsp; - if (jj_3_750()) return true; + if (jj_3_770()) return true; } return false; } - final private boolean jj_3_1376() { - if (jj_scan_token(COLUMN_NAME)) return true; + final private boolean jj_3_1394() { + if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3_720() { + final private boolean jj_3_740() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_745() { + final private boolean jj_3_765() { if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_767() { + final private boolean jj_3_787() { Token xsp; xsp = jj_scanpos; - if (jj_3_747()) { + if (jj_3_767()) { jj_scanpos = xsp; - if (jj_3_748()) return true; + if (jj_3_768()) return true; } return false; } - final private boolean jj_3_1375() { - if (jj_scan_token(COLLATION_CATALOG)) return true; - return false; - } - - final private boolean jj_3_317() { - if (jj_scan_token(PRECEDING)) return true; + final private boolean jj_3_1393() { + if (jj_scan_token(BREADTH)) return true; return false; } - final private boolean jj_3_743() { + final private boolean jj_3_763() { if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_766() { + final private boolean jj_3_786() { Token xsp; xsp = jj_scanpos; - if (jj_3_745()) { + if (jj_3_765()) { jj_scanpos = xsp; - if (jj_3_746()) return true; + if (jj_3_766()) return true; } return false; } - final private boolean jj_3_1374() { - if (jj_scan_token(CLASS_ORIGIN)) return true; + final private boolean jj_3_1392() { + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_741() { + final private boolean jj_3_761() { if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_765() { + final private boolean jj_3_785() { Token xsp; xsp = jj_scanpos; - if (jj_3_743()) { + if (jj_3_763()) { jj_scanpos = xsp; - if (jj_3_744()) return true; + if (jj_3_764()) return true; } return false; } - final private boolean jj_3_1373() { - if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; - return false; + final private boolean jj_3_1391() { + if (jj_scan_token(ASSERTION)) return true; + return false; } - final private boolean jj_3_739() { + final private boolean jj_3_759() { if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_764() { + final private boolean jj_3_784() { Token xsp; xsp = jj_scanpos; - if (jj_3_741()) { + if (jj_3_761()) { jj_scanpos = xsp; - if (jj_3_742()) return true; + if (jj_3_762()) return true; } return false; } - final private boolean jj_3_1372() { - if (jj_scan_token(CHAIN)) return true; + final private boolean jj_3_1390() { + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3_737() { + final private boolean jj_3_757() { if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_763() { + final private boolean jj_3_783() { Token xsp; xsp = jj_scanpos; - if (jj_3_739()) { + if (jj_3_759()) { jj_scanpos = xsp; - if (jj_3_740()) return true; + if (jj_3_760()) return true; } return false; } - final private boolean jj_3_1371() { - if (jj_scan_token(CATALOG)) return true; + final private boolean jj_3_1389() { + if (jj_scan_token(AFTER)) return true; return false; } - final private boolean jj_3_735() { + final private boolean jj_3_23() { + if (jj_3R_75()) return true; + if (jj_scan_token(COMMA)) return true; + return false; + } + + final private boolean jj_3_18() { + if (jj_scan_token(NEXT)) return true; + return false; + } + + final private boolean jj_3_755() { if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_762() { + final private boolean jj_3_782() { Token xsp; xsp = jj_scanpos; - if (jj_3_737()) { + if (jj_3_757()) { jj_scanpos = xsp; - if (jj_3_738()) return true; + if (jj_3_758()) return true; } return false; } - final private boolean jj_3_1370() { - if (jj_scan_token(BREADTH)) return true; + final private boolean jj_3_1388() { + if (jj_scan_token(ADA)) return true; return false; } - final private boolean jj_3_733() { + final private boolean jj_3_753() { if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_761() { + final private boolean jj_3_781() { Token xsp; xsp = jj_scanpos; - if (jj_3_735()) { + if (jj_3_755()) { jj_scanpos = xsp; - if (jj_3_736()) return true; + if (jj_3_756()) return true; } return false; } - final private boolean jj_3_1369() { - if (jj_scan_token(ATTRIBUTES)) return true; - return false; - } - - final private boolean jj_3_321() { - if (jj_3R_81()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_317()) { - jj_scanpos = xsp; - if (jj_3_318()) return true; - } + final private boolean jj_3_1387() { + if (jj_scan_token(ABSENT)) return true; return false; } - final private boolean jj_3_731() { + final private boolean jj_3_751() { if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_760() { + final private boolean jj_3_780() { Token xsp; xsp = jj_scanpos; - if (jj_3_733()) { + if (jj_3_753()) { jj_scanpos = xsp; - if (jj_3_734()) return true; + if (jj_3_754()) return true; } return false; } - final private boolean jj_3_1368() { - if (jj_scan_token(ASSERTION)) return true; - return false; - } - - final private boolean jj_3_316() { - if (jj_scan_token(FOLLOWING)) return true; - return false; - } - - final private boolean jj_3_729() { + final private boolean jj_3_749() { if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_759() { + final private boolean jj_3_779() { Token xsp; xsp = jj_scanpos; - if (jj_3_731()) { + if (jj_3_751()) { jj_scanpos = xsp; - if (jj_3_732()) return true; + if (jj_3_752()) return true; } return false; } - final private boolean jj_3_1367() { - if (jj_scan_token(ARRAY_AGG)) return true; - return false; - } - - final private boolean jj_3_727() { + final private boolean jj_3_747() { if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } - final private boolean jj_3_758() { + final private boolean jj_3_778() { Token xsp; xsp = jj_scanpos; - if (jj_3_729()) { + if (jj_3_749()) { jj_scanpos = xsp; - if (jj_3_730()) return true; + if (jj_3_750()) return true; } return false; } - final private boolean jj_3_1366() { - if (jj_scan_token(AFTER)) return true; - return false; - } - - final private boolean jj_3_725() { + final private boolean jj_3_745() { if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_757() { + final private boolean jj_3_777() { Token xsp; xsp = jj_scanpos; - if (jj_3_727()) { + if (jj_3_747()) { jj_scanpos = xsp; - if (jj_3_728()) return true; + if (jj_3_748()) return true; } return false; } - final private boolean jj_3_1365() { - if (jj_scan_token(ADA)) return true; - return false; - } - - final private boolean jj_3_723() { + final private boolean jj_3_743() { if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_756() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_725()) { - jj_scanpos = xsp; - if (jj_3_726()) return true; - } - return false; - } - - final private boolean jj_3_1364() { - if (jj_scan_token(ABSENT)) return true; - return false; - } - - final private boolean jj_3_315() { - if (jj_scan_token(PRECEDING)) return true; - return false; - } - - final private boolean jj_3_714() { - if (jj_scan_token(NUMERIC)) return true; - return false; - } - - final private boolean jj_3_721() { - if (jj_scan_token(SQL_VARCHAR)) return true; - return false; - } - - final private boolean jj_3_755() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_723()) { - jj_scanpos = xsp; - if (jj_3_724()) return true; - } - return false; - } - - final private boolean jj_3_719() { - if (jj_scan_token(SQL_CHAR)) return true; - return false; - } - - final private boolean jj_3_754() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_721()) { - jj_scanpos = xsp; - if (jj_3_722()) return true; - } - return false; - } - - final private boolean jj_3_753() { + final private boolean jj_3_776() { Token xsp; xsp = jj_scanpos; - if (jj_3_719()) { + if (jj_3_745()) { jj_scanpos = xsp; - if (jj_3_720()) return true; + if (jj_3_746()) return true; } return false; } - final private boolean jj_3R_342() { + final private boolean jj_3R_346() { Token xsp; xsp = jj_scanpos; - if (jj_3_1364()) { - jj_scanpos = xsp; - if (jj_3_1365()) { - jj_scanpos = xsp; - if (jj_3_1366()) { - jj_scanpos = xsp; - if (jj_3_1367()) { - jj_scanpos = xsp; - if (jj_3_1368()) { - jj_scanpos = xsp; - if (jj_3_1369()) { - jj_scanpos = xsp; - if (jj_3_1370()) { - jj_scanpos = xsp; - if (jj_3_1371()) { - jj_scanpos = xsp; - if (jj_3_1372()) { - jj_scanpos = xsp; - if (jj_3_1373()) { - jj_scanpos = xsp; - if (jj_3_1374()) { - jj_scanpos = xsp; - if (jj_3_1375()) { - jj_scanpos = xsp; - if (jj_3_1376()) { - jj_scanpos = xsp; - if (jj_3_1377()) { - jj_scanpos = xsp; - if (jj_3_1378()) { - jj_scanpos = xsp; - if (jj_3_1379()) { - jj_scanpos = xsp; - if (jj_3_1380()) { - jj_scanpos = xsp; - if (jj_3_1381()) { - jj_scanpos = xsp; - if (jj_3_1382()) { - jj_scanpos = xsp; - if (jj_3_1383()) { - jj_scanpos = xsp; - if (jj_3_1384()) { - jj_scanpos = xsp; - if (jj_3_1385()) { - jj_scanpos = xsp; - if (jj_3_1386()) { - jj_scanpos = xsp; if (jj_3_1387()) { jj_scanpos = xsp; if (jj_3_1388()) { @@ -36791,7 +36463,56 @@ final private boolean jj_3R_342() { jj_scanpos = xsp; if (jj_3_1583()) { jj_scanpos = xsp; - if (jj_3_1584()) return true; + if (jj_3_1584()) { + jj_scanpos = xsp; + if (jj_3_1585()) { + jj_scanpos = xsp; + if (jj_3_1586()) { + jj_scanpos = xsp; + if (jj_3_1587()) { + jj_scanpos = xsp; + if (jj_3_1588()) { + jj_scanpos = xsp; + if (jj_3_1589()) { + jj_scanpos = xsp; + if (jj_3_1590()) { + jj_scanpos = xsp; + if (jj_3_1591()) { + jj_scanpos = xsp; + if (jj_3_1592()) { + jj_scanpos = xsp; + if (jj_3_1593()) { + jj_scanpos = xsp; + if (jj_3_1594()) { + jj_scanpos = xsp; + if (jj_3_1595()) { + jj_scanpos = xsp; + if (jj_3_1596()) { + jj_scanpos = xsp; + if (jj_3_1597()) { + jj_scanpos = xsp; + if (jj_3_1598()) { + jj_scanpos = xsp; + if (jj_3_1599()) { + jj_scanpos = xsp; + if (jj_3_1600()) { + jj_scanpos = xsp; + if (jj_3_1601()) { + jj_scanpos = xsp; + if (jj_3_1602()) { + jj_scanpos = xsp; + if (jj_3_1603()) { + jj_scanpos = xsp; + if (jj_3_1604()) { + jj_scanpos = xsp; + if (jj_3_1605()) { + jj_scanpos = xsp; + if (jj_3_1606()) { + jj_scanpos = xsp; + if (jj_3_1607()) { + jj_scanpos = xsp; + if (jj_3_1608()) return true; + } } } } @@ -37015,1786 +36736,2027 @@ final private boolean jj_3R_342() { return false; } - final private boolean jj_3_320() { - if (jj_scan_token(UNBOUNDED)) return true; + final private boolean jj_3R_73() { + if (jj_scan_token(LIMIT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_315()) { + if (jj_3_23()) { + jj_scanpos = xsp; + if (jj_3_24()) { jj_scanpos = xsp; - if (jj_3_316()) return true; + if (jj_3_25()) return true; + } } return false; } - final private boolean jj_3_713() { - if (jj_scan_token(DEC)) return true; + final private boolean jj_3_734() { + if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_717() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_287()) return true; + final private boolean jj_3_741() { + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_1363() { - if (jj_scan_token(SUNDAY)) return true; + final private boolean jj_3_775() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_743()) { + jj_scanpos = xsp; + if (jj_3_744()) return true; + } return false; } - final private boolean jj_3_1362() { - if (jj_scan_token(THURSDAY)) return true; + final private boolean jj_3_739() { + if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3R_187() { + final private boolean jj_3_774() { Token xsp; xsp = jj_scanpos; - if (jj_3_319()) { - jj_scanpos = xsp; - if (jj_3_320()) { + if (jj_3_741()) { jj_scanpos = xsp; - if (jj_3_321()) return true; - } + if (jj_3_742()) return true; } return false; } - final private boolean jj_3_1361() { - if (jj_scan_token(MONDAY)) return true; + final private boolean jj_3_20() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_319() { - if (jj_scan_token(CURRENT)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_773() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_739()) { + jj_scanpos = xsp; + if (jj_3_740()) return true; + } return false; } - final private boolean jj_3_1360() { - if (jj_scan_token(WITHIN)) return true; + final private boolean jj_3_17() { + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_1359() { - if (jj_scan_token(WHENEVER)) return true; + final private boolean jj_3_1386() { + if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3_1358() { - if (jj_scan_token(VAR_POP)) return true; + final private boolean jj_3_1385() { + if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_1357() { - if (jj_scan_token(VARIANT)) return true; + final private boolean jj_3R_168() { + if (jj_scan_token(FOR)) return true; + if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_718() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + final private boolean jj_3_1384() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_1356() { - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1383() { + if (jj_scan_token(WINDOW)) return true; return false; } - final private boolean jj_3_1355() { - if (jj_scan_token(UPPER)) return true; + final private boolean jj_3_733() { + if (jj_scan_token(DEC)) return true; return false; } - final private boolean jj_3_1354() { - if (jj_scan_token(UESCAPE)) return true; + final private boolean jj_3_1382() { + if (jj_scan_token(VERSIONING)) return true; return false; } - final private boolean jj_3_716() { - if (jj_scan_token(ANY)) return true; + final private boolean jj_3_737() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_291()) return true; return false; } - final private boolean jj_3_1353() { - if (jj_scan_token(TRIM_ARRAY)) return true; + final private boolean jj_3_1381() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_712() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3_19() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1352() { - if (jj_scan_token(TREAT)) return true; + final private boolean jj_3_1380() { + if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_715() { + final private boolean jj_3_1379() { + if (jj_scan_token(UUID)) return true; + return false; + } + + final private boolean jj_3R_74() { + if (jj_scan_token(FETCH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_712()) { - jj_scanpos = xsp; - if (jj_3_713()) { + if (jj_3_17()) { jj_scanpos = xsp; - if (jj_3_714()) return true; - } + if (jj_3_18()) return true; } return false; } - final private boolean jj_3_1351() { + final private boolean jj_3_1378() { + if (jj_scan_token(UNSIGNED)) return true; + return false; + } + + final private boolean jj_3_1377() { + if (jj_scan_token(UESCAPE)) return true; + return false; + } + + final private boolean jj_3_1376() { + if (jj_scan_token(TRIM_ARRAY)) return true; + return false; + } + + final private boolean jj_3_15() { + if (jj_scan_token(ROWS)) return true; + return false; + } + + final private boolean jj_3_1375() { + if (jj_scan_token(TREAT)) return true; + return false; + } + + final private boolean jj_3_738() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; + return false; + } + + final private boolean jj_3_1374() { if (jj_scan_token(TRANSLATE)) return true; return false; } - final private boolean jj_3_1350() { + final private boolean jj_3_1373() { if (jj_scan_token(TIMEZONE_HOUR)) return true; return false; } - final private boolean jj_3_1349() { + final private boolean jj_3_1372() { if (jj_scan_token(TABLESAMPLE)) return true; return false; } - final private boolean jj_3_1348() { + final private boolean jj_3_736() { + if (jj_scan_token(ANY)) return true; + return false; + } + + final private boolean jj_3_1371() { if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3R_283() { + final private boolean jj_3_732() { + if (jj_scan_token(DECIMAL)) return true; + return false; + } + + final private boolean jj_3_1370() { + if (jj_scan_token(SUBSTRING_REGEX)) return true; + return false; + } + + final private boolean jj_3_735() { Token xsp; xsp = jj_scanpos; - if (jj_3_715()) { + if (jj_3_732()) { + jj_scanpos = xsp; + if (jj_3_733()) { jj_scanpos = xsp; - if (jj_3_716()) return true; + if (jj_3_734()) return true; + } } - xsp = jj_scanpos; - if (jj_3_718()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1347() { - if (jj_scan_token(SUBSTRING_REGEX)) return true; + final private boolean jj_3_1369() { + if (jj_scan_token(SUBMULTISET)) return true; return false; } - final private boolean jj_3_314() { - if (jj_scan_token(DISALLOW)) return true; - if (jj_scan_token(PARTIAL)) return true; + final private boolean jj_3_1368() { + if (jj_scan_token(STDDEV_POP)) return true; return false; } - final private boolean jj_3_1346() { - if (jj_scan_token(SUBMULTISET)) return true; + final private boolean jj_3_14() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1345() { - if (jj_scan_token(STDDEV_POP)) return true; + final private boolean jj_3_16() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_14()) { + jj_scanpos = xsp; + if (jj_3_15()) return true; + } return false; } - final private boolean jj_3_1344() { + final private boolean jj_3_1367() { if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_1343() { + final private boolean jj_3_1366() { if (jj_scan_token(SQLEXCEPTION)) return true; return false; } - final private boolean jj_3_313() { - if (jj_scan_token(ALLOW)) return true; - if (jj_scan_token(PARTIAL)) return true; + final private boolean jj_3R_287() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_735()) { + jj_scanpos = xsp; + if (jj_3_736()) return true; + } + xsp = jj_scanpos; + if (jj_3_738()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1342() { + final private boolean jj_3_1365() { if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_1341() { + final private boolean jj_3R_72() { + if (jj_scan_token(OFFSET)) return true; + if (jj_3R_75()) return true; + return false; + } + + final private boolean jj_3_1364() { if (jj_scan_token(SIMILAR)) return true; return false; } - final private boolean jj_3_1340() { + final private boolean jj_3_1363() { if (jj_scan_token(SENSITIVE)) return true; return false; } - final private boolean jj_3_1339() { + final private boolean jj_3_1362() { if (jj_scan_token(SEARCH)) return true; return false; } - final private boolean jj_3_1338() { + final private boolean jj_3_1361() { if (jj_scan_token(SAVEPOINT)) return true; return false; } - final private boolean jj_3_1337() { + final private boolean jj_3_1360() { if (jj_scan_token(SAFE_CAST)) return true; return false; } - final private boolean jj_3R_286() { - return false; - } - - final private boolean jj_3_1336() { + final private boolean jj_3_1359() { if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1335() { + final private boolean jj_3_1358() { if (jj_scan_token(REVOKE)) return true; return false; } - final private boolean jj_3_311() { - if (jj_3R_187()) return true; - return false; - } - - final private boolean jj_3_711() { - if (jj_scan_token(VARBINARY)) return true; + final private boolean jj_3R_382() { + if (jj_3R_423()) return true; return false; } - final private boolean jj_3_1334() { + final private boolean jj_3_1357() { if (jj_scan_token(RESULT)) return true; return false; } - final private boolean jj_3_709() { - if (jj_scan_token(VARYING)) return true; - return false; - } - - final private boolean jj_3_1333() { + final private boolean jj_3_1356() { if (jj_scan_token(REGR_SYY)) return true; return false; } - final private boolean jj_3_1332() { + final private boolean jj_3_1355() { if (jj_scan_token(REGR_SLOPE)) return true; return false; } - final private boolean jj_3_310() { - if (jj_scan_token(BETWEEN)) return true; - if (jj_3R_187()) return true; + final private boolean jj_3R_290() { return false; } - final private boolean jj_3_1331() { + final private boolean jj_3_1354() { if (jj_scan_token(REGR_COUNT)) return true; return false; } - final private boolean jj_3_1330() { + final private boolean jj_3_1353() { if (jj_scan_token(REFERENCING)) return true; return false; } - final private boolean jj_3_1329() { - if (jj_scan_token(RECURSIVE)) return true; + final private boolean jj_3_731() { + if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_309() { - if (jj_scan_token(RANGE)) return true; + final private boolean jj_3_1352() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3_1328() { - if (jj_scan_token(RANK)) return true; + final private boolean jj_3_729() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_710() { - if (jj_scan_token(BINARY)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_709()) { - jj_scanpos = xsp; - if (jj_3R_286()) return true; - } + final private boolean jj_3_1351() { + if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3_1327() { + final private boolean jj_3_1350() { if (jj_scan_token(PROCEDURE)) return true; return false; } - final private boolean jj_3_308() { - if (jj_scan_token(ROWS)) return true; - return false; - } - - final private boolean jj_3_1326() { + final private boolean jj_3_1349() { if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_1325() { + final private boolean jj_3_1348() { if (jj_scan_token(POSITION_REGEX)) return true; return false; } - final private boolean jj_3_1324() { + final private boolean jj_3_1347() { if (jj_scan_token(PERMUTE)) return true; return false; } - final private boolean jj_3R_282() { + final private boolean jj_3_1346() { + if (jj_scan_token(PERCENTILE_DISC)) return true; + return false; + } + + final private boolean jj_3_730() { + if (jj_scan_token(BINARY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_710()) { + if (jj_3_729()) { jj_scanpos = xsp; - if (jj_3_711()) return true; + if (jj_3R_290()) return true; } - if (jj_3R_259()) return true; - return false; - } - - final private boolean jj_3_1323() { - if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_1322() { + final private boolean jj_3_1345() { if (jj_scan_token(PER)) return true; return false; } - final private boolean jj_3_312() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_308()) { - jj_scanpos = xsp; - if (jj_3_309()) return true; - } - xsp = jj_scanpos; - if (jj_3_310()) { - jj_scanpos = xsp; - if (jj_3_311()) return true; - } + final private boolean jj_3_336() { + if (jj_scan_token(NULLS)) return true; + if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_1321() { + final private boolean jj_3_1344() { if (jj_scan_token(OVERLAY)) return true; return false; } - final private boolean jj_3_1320() { + final private boolean jj_3_1343() { if (jj_scan_token(OUT)) return true; return false; } - final private boolean jj_3_1319() { + final private boolean jj_3_1342() { if (jj_scan_token(ONLY)) return true; return false; } - final private boolean jj_3_1318() { + final private boolean jj_3_8() { + if (jj_3R_74()) return true; + return false; + } + + final private boolean jj_3R_286() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_730()) { + jj_scanpos = xsp; + if (jj_3_731()) return true; + } + if (jj_3R_263()) return true; + return false; + } + + final private boolean jj_3_1341() { if (jj_scan_token(OLD)) return true; return false; } - final private boolean jj_3_307() { - if (jj_3R_70()) return true; + final private boolean jj_3_12() { + if (jj_3R_74()) return true; return false; } - final private boolean jj_3_1317() { + final private boolean jj_3_1340() { if (jj_scan_token(OCCURRENCES_REGEX)) return true; return false; } - final private boolean jj_3_1316() { + final private boolean jj_3_337() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_335()) { + jj_scanpos = xsp; + if (jj_3_336()) return true; + } + return false; + } + + final private boolean jj_3_335() { + if (jj_scan_token(NULLS)) return true; + if (jj_scan_token(FIRST)) return true; + return false; + } + + final private boolean jj_3_1339() { if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3_1315() { + final private boolean jj_3_1338() { if (jj_scan_token(NONE)) return true; return false; } - final private boolean jj_3_1314() { + final private boolean jj_3_1337() { if (jj_scan_token(NEW)) return true; return false; } - final private boolean jj_3_1313() { + final private boolean jj_3_1336() { if (jj_scan_token(NATIONAL)) return true; return false; } - final private boolean jj_3_708() { - if (jj_scan_token(UUID)) return true; + final private boolean jj_3R_189() { + if (jj_3R_374()) return true; return false; } - final private boolean jj_3_1312() { + final private boolean jj_3_1335() { if (jj_scan_token(MODULE)) return true; return false; } - final private boolean jj_3_306() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_7() { + if (jj_3R_73()) return true; return false; } - final private boolean jj_3_1311() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_9() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_7()) { + jj_scanpos = xsp; + if (jj_3_8()) return true; + } return false; } - final private boolean jj_3_707() { - if (jj_scan_token(VARIANT)) return true; + final private boolean jj_3_333() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_1310() { - if (jj_scan_token(MEMBER)) return true; + final private boolean jj_3_1334() { + if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_696() { - if (jj_scan_token(INT)) return true; + final private boolean jj_3_334() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_332()) { + jj_scanpos = xsp; + if (jj_3_333()) return true; + } return false; } - final private boolean jj_3R_405() { + final private boolean jj_3_332() { + if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1309() { - if (jj_scan_token(MAX)) return true; + final private boolean jj_3_1333() { + if (jj_scan_token(MEMBER)) return true; return false; } - final private boolean jj_3_697() { - if (jj_scan_token(PRECISION)) return true; + final private boolean jj_3_330() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_706() { - if (jj_scan_token(FLOAT)) return true; + final private boolean jj_3_1332() { + if (jj_scan_token(MAX)) return true; return false; } - final private boolean jj_3_1308() { + final private boolean jj_3_1331() { if (jj_scan_token(MATCH_CONDITION)) return true; return false; } - final private boolean jj_3_305() { - if (jj_3R_84()) return true; + final private boolean jj_3_728() { + if (jj_scan_token(UUID)) return true; return false; } - final private boolean jj_3_1307() { + final private boolean jj_3_1330() { if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_1306() { + final private boolean jj_3_1329() { if (jj_scan_token(LIKE_REGEX)) return true; return false; } - final private boolean jj_3_705() { - if (jj_scan_token(DOUBLE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_697()) jj_scanpos = xsp; + final private boolean jj_3_6() { + if (jj_3R_72()) return true; return false; } - final private boolean jj_3_1305() { + final private boolean jj_3_11() { + if (jj_3R_72()) return true; + return false; + } + + final private boolean jj_3_727() { + if (jj_scan_token(VARIANT)) return true; + return false; + } + + final private boolean jj_3_1328() { if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_1304() { + final private boolean jj_3_1327() { if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_704() { - if (jj_scan_token(REAL)) return true; + final private boolean jj_3_716() { + if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_1303() { + final private boolean jj_3_726() { + if (jj_scan_token(FLOAT)) return true; + return false; + } + + final private boolean jj_3_1326() { if (jj_scan_token(JSON_QUERY)) return true; return false; } - final private boolean jj_3R_331() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_10() { + if (jj_3R_73()) return true; + return false; + } + + final private boolean jj_3_13() { Token xsp; xsp = jj_scanpos; - if (jj_3_305()) { + if (jj_3_10()) { + jj_scanpos = xsp; + if (jj_3_11()) { jj_scanpos = xsp; - if (jj_3R_405()) return true; + if (jj_3_12()) return true; + } } return false; } - final private boolean jj_3_1302() { + final private boolean jj_3_715() { + if (jj_scan_token(UNSIGNED)) return true; + return false; + } + + final private boolean jj_3_1325() { if (jj_scan_token(JSON_EXISTS)) return true; return false; } - final private boolean jj_3_703() { - if (jj_scan_token(BIGINT)) return true; + final private boolean jj_3_331() { + if (jj_scan_token(AS)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_330()) { + jj_scanpos = xsp; + if (jj_3R_189()) return true; + } return false; } - final private boolean jj_3_1301() { + final private boolean jj_3_1324() { if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_1300() { - if (jj_scan_token(INSENSITIVE)) return true; + final private boolean jj_3_725() { + if (jj_scan_token(DOUBLE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_716()) jj_scanpos = xsp; return false; } - final private boolean jj_3_702() { - if (jj_scan_token(SMALLINT)) return true; + final private boolean jj_3R_418() { return false; } - final private boolean jj_3_1299() { + final private boolean jj_3_1323() { + if (jj_scan_token(INSENSITIVE)) return true; + return false; + } + + final private boolean jj_3_1322() { if (jj_scan_token(INDICATOR)) return true; return false; } - final private boolean jj_3_1298() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3_5() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_695() { - if (jj_scan_token(INTEGER)) return true; + final private boolean jj_3_724() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_701() { - if (jj_scan_token(TINYINT)) return true; + final private boolean jj_3_1321() { + if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_1297() { + final private boolean jj_3_714() { + if (jj_scan_token(UNSIGNED)) return true; + return false; + } + + final private boolean jj_3_1320() { if (jj_scan_token(GROUPING)) return true; return false; } - final private boolean jj_3_1296() { + final private boolean jj_3_1319() { if (jj_scan_token(GET)) return true; return false; } - final private boolean jj_3_700() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_695()) { - jj_scanpos = xsp; - if (jj_3_696()) return true; - } + final private boolean jj_3_1318() { + if (jj_scan_token(FREE)) return true; return false; } - final private boolean jj_3_1295() { - if (jj_scan_token(FREE)) return true; + final private boolean jj_3R_157() { + if (jj_3R_82()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_331()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_334()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_337()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1294() { + final private boolean jj_3_1317() { if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_699() { - if (jj_scan_token(BOOLEAN)) return true; + final private boolean jj_3_1316() { + if (jj_scan_token(FILTER)) return true; return false; } - final private boolean jj_3_1293() { - if (jj_scan_token(FILTER)) return true; + final private boolean jj_3R_352() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_5()) { + jj_scanpos = xsp; + if (jj_3R_418()) return true; + } + xsp = jj_scanpos; + if (jj_3_13()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1292() { + final private boolean jj_3_1315() { if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3_1291() { + final private boolean jj_3_723() { + if (jj_scan_token(BIGINT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_715()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_1314() { if (jj_scan_token(EXEC)) return true; return false; } - final private boolean jj_3_1290() { + final private boolean jj_3_1313() { if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_1289() { + final private boolean jj_3_713() { + if (jj_scan_token(UNSIGNED)) return true; + return false; + } + + final private boolean jj_3_1312() { if (jj_scan_token(END_EXEC)) return true; return false; } - final private boolean jj_3_1288() { + final private boolean jj_3_1311() { if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_1287() { - if (jj_scan_token(DOUBLE)) return true; + final private boolean jj_3_712() { + if (jj_scan_token(UNSIGNED)) return true; return false; } - final private boolean jj_3_1286() { - if (jj_scan_token(DETERMINISTIC)) return true; + final private boolean jj_3_1310() { + if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_698() { - if (jj_scan_token(GEOMETRY)) return true; + final private boolean jj_3_1309() { + if (jj_scan_token(DETERMINISTIC)) return true; return false; } - final private boolean jj_3_1285() { + final private boolean jj_3_1308() { if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3_1284() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3_329() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_157()) return true; return false; } - final private boolean jj_3_1283() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_722() { + if (jj_scan_token(SMALLINT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_714()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1282() { - if (jj_scan_token(CYCLE)) return true; + final private boolean jj_3_1307() { + if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3R_281() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_698()) { - jj_scanpos = xsp; - if (jj_3_699()) { - jj_scanpos = xsp; - if (jj_3_700()) { - jj_scanpos = xsp; - if (jj_3_701()) { - jj_scanpos = xsp; - if (jj_3_702()) { - jj_scanpos = xsp; - if (jj_3_703()) { - jj_scanpos = xsp; - if (jj_3_704()) { - jj_scanpos = xsp; - if (jj_3_705()) { - jj_scanpos = xsp; - if (jj_3_706()) { - jj_scanpos = xsp; - if (jj_3_707()) { - jj_scanpos = xsp; - if (jj_3_708()) return true; - } - } - } - } - } - } - } - } - } - } + final private boolean jj_3_1306() { + if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3R_186() { - if (jj_3R_84()) return true; + final private boolean jj_3_1305() { + if (jj_scan_token(CYCLE)) return true; return false; } - final private boolean jj_3_1281() { + final private boolean jj_3_1304() { if (jj_scan_token(CURRENT_ROW)) return true; return false; } - final private boolean jj_3_1280() { + final private boolean jj_3_1303() { if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } - final private boolean jj_3_1279() { + final private boolean jj_3_1302() { if (jj_scan_token(CUME_DIST)) return true; return false; } - final private boolean jj_3_1278() { + final private boolean jj_3_1301() { if (jj_scan_token(COVAR_POP)) return true; return false; } - final private boolean jj_3_1277() { + final private boolean jj_3_711() { + if (jj_scan_token(INT)) return true; + return false; + } + + final private boolean jj_3_721() { + if (jj_scan_token(TINYINT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_713()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_1300() { if (jj_scan_token(CORR)) return true; return false; } - final private boolean jj_3_1276() { + final private boolean jj_3R_80() { + if (jj_3R_351()) return true; + if (jj_3R_352()) return true; + return false; + } + + final private boolean jj_3_1299() { if (jj_scan_token(CONNECT)) return true; return false; } - final private boolean jj_3_1275() { + final private boolean jj_3_1298() { if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3_1274() { + final private boolean jj_3_1297() { if (jj_scan_token(CLOSE)) return true; return false; } - final private boolean jj_3_1273() { + final private boolean jj_3_1296() { if (jj_scan_token(CHECK)) return true; return false; } - final private boolean jj_3_1272() { + final private boolean jj_3_1295() { if (jj_scan_token(CHARACTER)) return true; return false; } - final private boolean jj_3_1271() { + final private boolean jj_3_1294() { if (jj_scan_token(CEIL)) return true; return false; } - final private boolean jj_3_304() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_186()) return true; - return false; - } - - final private boolean jj_3_694() { - if (jj_3R_285()) return true; + final private boolean jj_3_720() { + if (jj_scan_token(UNSIGNED)) return true; return false; } - final private boolean jj_3_1270() { + final private boolean jj_3_1293() { if (jj_scan_token(CALLED)) return true; return false; } - final private boolean jj_3_1269() { + final private boolean jj_3_1292() { if (jj_scan_token(BLOB)) return true; return false; } - final private boolean jj_3_693() { - if (jj_3R_284()) return true; - return false; - } - - final private boolean jj_3_1268() { + final private boolean jj_3_1291() { if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_1267() { + final private boolean jj_3_1290() { if (jj_scan_token(BEGIN)) return true; return false; } - final private boolean jj_3_692() { - if (jj_3R_283()) return true; - return false; - } - - final private boolean jj_3_1266() { + final private boolean jj_3_1289() { if (jj_scan_token(ATOMIC)) return true; return false; } - final private boolean jj_3_1265() { - if (jj_scan_token(ASENSITIVE)) return true; + final private boolean jj_3_710() { + if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_691() { - if (jj_3R_282()) return true; + final private boolean jj_3_1288() { + if (jj_scan_token(ASENSITIVE)) return true; return false; } - final private boolean jj_3R_148() { - if (jj_scan_token(WINDOW)) return true; - if (jj_3R_186()) return true; + final private boolean jj_3_1287() { + if (jj_scan_token(ALLOW)) return true; return false; } - final private boolean jj_3_1264() { - if (jj_scan_token(ALLOW)) return true; + final private boolean jj_3_719() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_710()) { + jj_scanpos = xsp; + if (jj_3_711()) return true; + } + xsp = jj_scanpos; + if (jj_3_712()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1263() { + final private boolean jj_3_1286() { if (jj_scan_token(TOTAL)) return true; return false; } - final private boolean jj_3_690() { - if (jj_3R_281()) return true; + final private boolean jj_3_1285() { + if (jj_scan_token(REFRESH)) return true; return false; } - final private boolean jj_3_1262() { - if (jj_scan_token(REFRESH)) return true; + final private boolean jj_3_718() { + if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_1261() { + final private boolean jj_3_1284() { if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3_1260() { + final private boolean jj_3_1283() { if (jj_scan_token(CONTINUOUS)) return true; return false; } - final private boolean jj_3_1259() { + final private boolean jj_3_1282() { if (jj_scan_token(PASSWORD)) return true; return false; } - final private boolean jj_3R_278() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_690()) { - jj_scanpos = xsp; - if (jj_3_691()) { - jj_scanpos = xsp; - if (jj_3_692()) { - jj_scanpos = xsp; - if (jj_3_693()) { - jj_scanpos = xsp; - if (jj_3_694()) return true; - } - } - } - } - return false; - } - - final private boolean jj_3_1258() { + final private boolean jj_3_1281() { if (jj_scan_token(INLINE_SIZE)) return true; return false; } - final private boolean jj_3_1257() { + final private boolean jj_3_1280() { if (jj_scan_token(WRAP_VALUE)) return true; return false; } - final private boolean jj_3_1256() { + final private boolean jj_3_1279() { if (jj_scan_token(DATA_REGION)) return true; return false; } - final private boolean jj_3_1255() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + final private boolean jj_3R_71() { + if (jj_scan_token(ORDER)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3R_147() { - if (jj_scan_token(HAVING)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1278() { + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3_1254() { + final private boolean jj_3_1277() { if (jj_scan_token(BACKUPS)) return true; return false; } - final private boolean jj_3_1253() { + final private boolean jj_3_717() { + if (jj_scan_token(GEOMETRY)) return true; + return false; + } + + final private boolean jj_3_1276() { if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_1252() { + final private boolean jj_3_1275() { if (jj_scan_token(WRAPPER)) return true; return false; } - final private boolean jj_3_1251() { + final private boolean jj_3_1274() { if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3_1250() { + final private boolean jj_3_1273() { if (jj_scan_token(UTF8)) return true; return false; } - final private boolean jj_3_1249() { - if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; - return false; - } - - final private boolean jj_3_1248() { - if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; + final private boolean jj_3R_285() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_717()) { + jj_scanpos = xsp; + if (jj_3_718()) { + jj_scanpos = xsp; + if (jj_3_719()) { + jj_scanpos = xsp; + if (jj_3_720()) { + jj_scanpos = xsp; + if (jj_3_721()) { + jj_scanpos = xsp; + if (jj_3_722()) { + jj_scanpos = xsp; + if (jj_3_723()) { + jj_scanpos = xsp; + if (jj_3_724()) { + jj_scanpos = xsp; + if (jj_3_725()) { + jj_scanpos = xsp; + if (jj_3_726()) { + jj_scanpos = xsp; + if (jj_3_727()) { + jj_scanpos = xsp; + if (jj_3_728()) return true; + } + } + } + } + } + } + } + } + } + } + } return false; } - final private boolean jj_3_1247() { - if (jj_scan_token(UNPIVOT)) return true; + final private boolean jj_3_1272() { + if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; return false; } - final private boolean jj_3_303() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1271() { + if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; return false; } - final private boolean jj_3_689() { - if (jj_3R_152()) return true; + final private boolean jj_3_1270() { + if (jj_scan_token(UNPIVOT)) return true; return false; } - final private boolean jj_3_1246() { + final private boolean jj_3_1269() { if (jj_scan_token(UNCOMMITTED)) return true; return false; } - final private boolean jj_3_1245() { + final private boolean jj_3_1268() { if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3_1244() { + final private boolean jj_3_1267() { if (jj_scan_token(TRIGGER_CATALOG)) return true; return false; } - final private boolean jj_3_688() { - if (jj_3R_280()) return true; + final private boolean jj_3R_150() { + if (jj_scan_token(QUALIFY)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1243() { + final private boolean jj_3_1266() { if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; return false; } - final private boolean jj_3_1242() { + final private boolean jj_3_1265() { if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_687() { - if (jj_3R_279()) return true; + final private boolean jj_3_1264() { + if (jj_scan_token(TIMESTAMP_DIFF)) return true; return false; } - final private boolean jj_3_1241() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; + final private boolean jj_3_2() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_1240() { + final private boolean jj_3_1263() { if (jj_scan_token(TIME_TRUNC)) return true; return false; } - final private boolean jj_3R_396() { - if (jj_3R_78()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_303()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1262() { + if (jj_scan_token(TEMPORARY)) return true; return false; } - final private boolean jj_3_1239() { - if (jj_scan_token(TEMPORARY)) return true; + final private boolean jj_3_1() { + if (jj_3R_67()) return true; return false; } - final private boolean jj_3_686() { - if (jj_3R_278()) return true; + final private boolean jj_3_1261() { + if (jj_scan_token(SUBCLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_1238() { - if (jj_scan_token(SUBCLASS_ORIGIN)) return true; + final private boolean jj_3_327() { + if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3_1237() { - if (jj_scan_token(STRING_AGG)) return true; + final private boolean jj_3_709() { + if (jj_3R_289()) return true; return false; } - final private boolean jj_3_1236() { - if (jj_scan_token(SQL_VARCHAR)) return true; + final private boolean jj_3_1260() { + if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3_1235() { - if (jj_scan_token(SQL_TSI_WEEK)) return true; + final private boolean jj_3_1259() { + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3R_360() { + final private boolean jj_3_4() { + if (jj_3R_70()) return true; Token xsp; - xsp = jj_scanpos; - if (jj_3_686()) { - jj_scanpos = xsp; - if (jj_3_687()) { - jj_scanpos = xsp; - if (jj_3_688()) { - jj_scanpos = xsp; - if (jj_3_689()) return true; - } + while (true) { + xsp = jj_scanpos; + if (jj_3_1()) { jj_scanpos = xsp; break; } } + while (true) { + xsp = jj_scanpos; + if (jj_3_2()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_1234() { - if (jj_scan_token(SQL_TSI_MONTH)) return true; - return false; - } - - final private boolean jj_3_1233() { - if (jj_scan_token(SQL_TSI_HOUR)) return true; - return false; - } - - final private boolean jj_3_1232() { - if (jj_scan_token(SQL_TINYINT)) return true; + final private boolean jj_3_326() { + if (jj_scan_token(GROUP)) return true; return false; } - final private boolean jj_3_1231() { - if (jj_scan_token(SQL_SMALLINT)) return true; + final private boolean jj_3_708() { + if (jj_3R_288()) return true; return false; } - final private boolean jj_3_1230() { - if (jj_scan_token(SQL_NUMERIC)) return true; + final private boolean jj_3_1258() { + if (jj_scan_token(SQL_TSI_WEEK)) return true; return false; } - final private boolean jj_3_1229() { - if (jj_scan_token(SQL_LONGVARNCHAR)) return true; + final private boolean jj_3_1257() { + if (jj_scan_token(SQL_TSI_MONTH)) return true; return false; } - final private boolean jj_3_1228() { - if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; + final private boolean jj_3_325() { + if (jj_scan_token(NO)) return true; + if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_1227() { - if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; + final private boolean jj_3_707() { + if (jj_3R_287()) return true; return false; } - final private boolean jj_3R_234() { - if (jj_3R_396()) return true; + final private boolean jj_3_1256() { + if (jj_scan_token(SQL_TSI_HOUR)) return true; return false; } - final private boolean jj_3_1226() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; + final private boolean jj_3_1255() { + if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_1225() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + final private boolean jj_3_324() { + if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1224() { - if (jj_scan_token(SQL_INTERVAL_DAY)) return true; + final private boolean jj_3_706() { + if (jj_3R_286()) return true; return false; } - final private boolean jj_3_1223() { - if (jj_scan_token(SQL_DOUBLE)) return true; + final private boolean jj_3_1254() { + if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_1222() { - if (jj_scan_token(SQL_CLOB)) return true; + final private boolean jj_3_3() { + if (jj_3R_69()) return true; return false; } - final private boolean jj_3_685() { - if (jj_3R_277()) return true; + final private boolean jj_3_1253() { + if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_1221() { - if (jj_scan_token(SQL_BLOB)) return true; + final private boolean jj_3_705() { + if (jj_3R_285()) return true; return false; } - final private boolean jj_3_1220() { - if (jj_scan_token(SQL_BIGINT)) return true; + final private boolean jj_3_1252() { + if (jj_scan_token(SQL_LONGVARNCHAR)) return true; return false; } - final private boolean jj_3_1219() { - if (jj_scan_token(SOURCE)) return true; + final private boolean jj_3_1251() { + if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } - final private boolean jj_3_1218() { - if (jj_scan_token(SETS)) return true; + final private boolean jj_3_1250() { + if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3_1217() { - if (jj_scan_token(SERVER)) return true; + final private boolean jj_3R_383() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_3()) { + jj_scanpos = xsp; + if (jj_3_4()) return true; + } return false; } - final private boolean jj_3_1216() { - if (jj_scan_token(SEPARATOR)) return true; + final private boolean jj_3_1249() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_1215() { - if (jj_scan_token(SECTION)) return true; + final private boolean jj_3_328() { + if (jj_scan_token(EXCLUDE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_324()) { + jj_scanpos = xsp; + if (jj_3_325()) { + jj_scanpos = xsp; + if (jj_3_326()) { + jj_scanpos = xsp; + if (jj_3_327()) return true; + } + } + } return false; } - final private boolean jj_3R_120() { - if (jj_3R_360()) return true; + final private boolean jj_3R_282() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_685()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_705()) { + jj_scanpos = xsp; + if (jj_3_706()) { + jj_scanpos = xsp; + if (jj_3_707()) { + jj_scanpos = xsp; + if (jj_3_708()) { + jj_scanpos = xsp; + if (jj_3_709()) return true; + } + } + } } return false; } - final private boolean jj_3_1214() { + final private boolean jj_3_1248() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + return false; + } + + final private boolean jj_3_1247() { + if (jj_scan_token(SQL_INTERVAL_DAY)) return true; + return false; + } + + final private boolean jj_3_1246() { + if (jj_scan_token(SQL_DOUBLE)) return true; + return false; + } + + final private boolean jj_3_1245() { + if (jj_scan_token(SQL_CLOB)) return true; + return false; + } + + final private boolean jj_3_1244() { + if (jj_scan_token(SQL_BLOB)) return true; + return false; + } + + final private boolean jj_3_1243() { + if (jj_scan_token(SQL_BIGINT)) return true; + return false; + } + + final private boolean jj_3_1242() { + if (jj_scan_token(SOURCE)) return true; + return false; + } + + final private boolean jj_3_1241() { + if (jj_scan_token(SETS)) return true; + return false; + } + + final private boolean jj_3_1240() { + if (jj_scan_token(SERVER)) return true; + return false; + } + + final private boolean jj_3_1239() { + if (jj_scan_token(SEPARATOR)) return true; + return false; + } + + final private boolean jj_3_1238() { + if (jj_scan_token(SECTION)) return true; + return false; + } + + final private boolean jj_3_1237() { if (jj_scan_token(SCOPE_NAME)) return true; return false; } - final private boolean jj_3_1213() { - if (jj_scan_token(SCHEMA)) return true; + final private boolean jj_3_320() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_302() { - if (jj_3R_78()) return true; + final private boolean jj_3_704() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_1212() { + final private boolean jj_3_1236() { + if (jj_scan_token(SCHEMA)) return true; + return false; + } + + final private boolean jj_3_1235() { if (jj_scan_token(ROW_COUNT)) return true; return false; } - final private boolean jj_3_1211() { + final private boolean jj_3_1234() { if (jj_scan_token(ROUTINE_CATALOG)) return true; return false; } - final private boolean jj_3_1210() { + final private boolean jj_3_703() { + if (jj_3R_284()) return true; + return false; + } + + final private boolean jj_3_1233() { if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3_1209() { + final private boolean jj_3_319() { + if (jj_scan_token(PRECEDING)) return true; + return false; + } + + final private boolean jj_3_1232() { if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_301() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_702() { + if (jj_3R_283()) return true; return false; } - final private boolean jj_3_1208() { + final private boolean jj_3_1231() { if (jj_scan_token(RESTRICT)) return true; return false; } - final private boolean jj_3_1207() { + final private boolean jj_3_1230() { if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_1206() { + final private boolean jj_3_1229() { if (jj_scan_token(READ)) return true; return false; } - final private boolean jj_3_1205() { + final private boolean jj_3_701() { + if (jj_3R_282()) return true; + return false; + } + + final private boolean jj_3_1228() { if (jj_scan_token(PUBLIC)) return true; return false; } - final private boolean jj_3_1204() { + final private boolean jj_3_1227() { if (jj_scan_token(PRESERVE)) return true; return false; } - final private boolean jj_3_1203() { + final private boolean jj_3_323() { + if (jj_3R_82()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_319()) { + jj_scanpos = xsp; + if (jj_3_320()) return true; + } + return false; + } + + final private boolean jj_3_1226() { if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3_300() { - if (jj_scan_token(CUBE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_318() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_1202() { + final private boolean jj_3_1225() { if (jj_scan_token(PATH)) return true; return false; } - final private boolean jj_3_1201() { - if (jj_scan_token(PASSING)) return true; + final private boolean jj_3R_364() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_701()) { + jj_scanpos = xsp; + if (jj_3_702()) { + jj_scanpos = xsp; + if (jj_3_703()) { + jj_scanpos = xsp; + if (jj_3_704()) return true; + } + } + } return false; } - final private boolean jj_3_1200() { - if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; + final private boolean jj_3_1224() { + if (jj_scan_token(PASSING)) return true; return false; } - final private boolean jj_3_1199() { - if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; + final private boolean jj_3_1223() { + if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; return false; } - final private boolean jj_3_1198() { - if (jj_scan_token(PAD)) return true; + final private boolean jj_3_1222() { + if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; return false; } - final private boolean jj_3_1197() { - if (jj_scan_token(OTHERS)) return true; + final private boolean jj_3_317() { + if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_299() { - if (jj_scan_token(ROLLUP)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1221() { + if (jj_scan_token(PAD)) return true; return false; } - final private boolean jj_3_684() { - if (jj_scan_token(MINUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1220() { + if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_1196() { + final private boolean jj_3_1219() { if (jj_scan_token(OPTIONS)) return true; return false; } - final private boolean jj_3_1195() { + final private boolean jj_3_1218() { if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_1194() { + final private boolean jj_3_1217() { if (jj_scan_token(NULLABLE)) return true; return false; } - final private boolean jj_3_1193() { + final private boolean jj_3_1216() { if (jj_scan_token(NANOSECOND)) return true; return false; } - final private boolean jj_3_1192() { + final private boolean jj_3_1215() { if (jj_scan_token(MUMPS)) return true; return false; } - final private boolean jj_3R_185() { + final private boolean jj_3_322() { + if (jj_scan_token(UNBOUNDED)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_298()) { - jj_scanpos = xsp; - if (jj_3_299()) { - jj_scanpos = xsp; - if (jj_3_300()) { - jj_scanpos = xsp; - if (jj_3_301()) { + if (jj_3_317()) { jj_scanpos = xsp; - if (jj_3_302()) return true; - } - } - } + if (jj_3_318()) return true; } return false; } - final private boolean jj_3_1191() { + final private boolean jj_3_1214() { if (jj_scan_token(MINVALUE)) return true; return false; } - final private boolean jj_3_298() { - if (jj_scan_token(GROUPING)) return true; - if (jj_scan_token(SETS)) return true; - return false; - } - - final private boolean jj_3_1190() { + final private boolean jj_3_1213() { if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3_682() { - if (jj_scan_token(PLUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1212() { + if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1189() { - if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; + final private boolean jj_3_700() { + if (jj_3R_281()) return true; return false; } - final private boolean jj_3_1188() { + final private boolean jj_3_1211() { if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_681() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3R_188() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_321()) { + jj_scanpos = xsp; + if (jj_3_322()) { + jj_scanpos = xsp; + if (jj_3_323()) return true; + } + } return false; } - final private boolean jj_3_1187() { + final private boolean jj_3_1210() { if (jj_scan_token(LOCATOR)) return true; return false; } - final private boolean jj_3_1186() { - if (jj_scan_token(LENGTH)) return true; + final private boolean jj_3_321() { + if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1185() { - if (jj_scan_token(KEY_TYPE)) return true; + final private boolean jj_3_1209() { + if (jj_scan_token(LENGTH)) return true; return false; } - final private boolean jj_3_1184() { - if (jj_scan_token(K)) return true; + final private boolean jj_3_1208() { + if (jj_scan_token(KEY_TYPE)) return true; return false; } - final private boolean jj_3R_287() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_683()) { - jj_scanpos = xsp; - if (jj_3_684()) return true; - } + final private boolean jj_3_1207() { + if (jj_scan_token(K)) return true; return false; } - final private boolean jj_3_1183() { + final private boolean jj_3_1206() { if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_683() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_681()) { - jj_scanpos = xsp; - if (jj_3_682()) return true; - } - return false; - } - - final private boolean jj_3_1182() { + final private boolean jj_3_1205() { if (jj_scan_token(INVOKER)) return true; return false; } - final private boolean jj_3_297() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_185()) return true; + final private boolean jj_3R_121() { + if (jj_3R_364()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_700()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1181() { + final private boolean jj_3_1204() { if (jj_scan_token(INPUT)) return true; return false; } - final private boolean jj_3_1180() { + final private boolean jj_3_1203() { if (jj_scan_token(INCLUDING)) return true; return false; } - final private boolean jj_3_1179() { + final private boolean jj_3_1202() { if (jj_scan_token(IMMEDIATELY)) return true; return false; } - final private boolean jj_3_1178() { + final private boolean jj_3_1201() { if (jj_scan_token(IGNORE)) return true; return false; } - final private boolean jj_3_1177() { + final private boolean jj_3_1200() { if (jj_scan_token(HIERARCHY)) return true; return false; } - final private boolean jj_3_1176() { + final private boolean jj_3_1199() { if (jj_scan_token(GOTO)) return true; return false; } - final private boolean jj_3_1175() { + final private boolean jj_3_1198() { if (jj_scan_token(GENERATED)) return true; return false; } - final private boolean jj_3_1174() { + final private boolean jj_3_1197() { if (jj_scan_token(FRAC_SECOND)) return true; return false; } - final private boolean jj_3_1173() { + final private boolean jj_3_1196() { if (jj_scan_token(FORMAT)) return true; return false; } - final private boolean jj_3_1172() { + final private boolean jj_3_316() { + if (jj_scan_token(DISALLOW)) return true; + if (jj_scan_token(PARTIAL)) return true; + return false; + } + + final private boolean jj_3_1195() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_1171() { + final private boolean jj_3_1194() { if (jj_scan_token(EXCEPTION)) return true; return false; } - final private boolean jj_3_1170() { + final private boolean jj_3_1193() { if (jj_scan_token(ENCODING)) return true; return false; } - final private boolean jj_3_1169() { + final private boolean jj_3_1192() { if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3_1168() { - if (jj_scan_token(DOMAIN)) return true; + final private boolean jj_3_315() { + if (jj_scan_token(ALLOW)) return true; + if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3R_260() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1191() { + if (jj_scan_token(DOMAIN)) return true; return false; } - final private boolean jj_3_1167() { + final private boolean jj_3_1190() { if (jj_scan_token(DESCRIPTOR)) return true; return false; } - final private boolean jj_3_1166() { + final private boolean jj_3_1189() { if (jj_scan_token(DERIVED)) return true; return false; } - final private boolean jj_3_1165() { + final private boolean jj_3_1188() { if (jj_scan_token(DEFINER)) return true; return false; } - final private boolean jj_3_296() { - if (jj_scan_token(ALL)) return true; - return false; - } - - final private boolean jj_3_1164() { + final private boolean jj_3_1187() { if (jj_scan_token(DEFERRABLE)) return true; return false; } - final private boolean jj_3_295() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_699() { + if (jj_scan_token(MINUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1163() { + final private boolean jj_3_1186() { if (jj_scan_token(DAYS)) return true; return false; } - final private boolean jj_3_1162() { + final private boolean jj_3_1185() { if (jj_scan_token(DATETIME_TRUNC)) return true; return false; } - final private boolean jj_3_1161() { + final private boolean jj_3_1184() { if (jj_scan_token(DATETIME_DIFF)) return true; return false; } - final private boolean jj_3_1160() { + final private boolean jj_3_313() { + if (jj_3R_188()) return true; + return false; + } + + final private boolean jj_3_1183() { if (jj_scan_token(DATABASE)) return true; return false; } - final private boolean jj_3_1159() { + final private boolean jj_3_1182() { if (jj_scan_token(CONTINUE)) return true; return false; } - final private boolean jj_3_1158() { + final private boolean jj_3_1181() { if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; return false; } - final private boolean jj_3R_146() { - if (jj_scan_token(GROUP)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_312() { + if (jj_scan_token(BETWEEN)) return true; + if (jj_3R_188()) return true; return false; } - final private boolean jj_3_1157() { + final private boolean jj_3_1180() { if (jj_scan_token(CONSTRAINT_CATALOG)) return true; return false; } - final private boolean jj_3_1156() { + final private boolean jj_3_697() { + if (jj_scan_token(PLUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + return false; + } + + final private boolean jj_3_1179() { if (jj_scan_token(CONDITION_NUMBER)) return true; return false; } - final private boolean jj_3_1155() { + final private boolean jj_3_1178() { if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_1154() { - if (jj_scan_token(COLLATION_SCHEMA)) return true; + final private boolean jj_3_311() { + if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3R_231() { - if (jj_scan_token(NEW)) return true; - if (jj_3R_358()) return true; + final private boolean jj_3_696() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1153() { + final private boolean jj_3_1177() { + if (jj_scan_token(COLLATION_SCHEMA)) return true; + return false; + } + + final private boolean jj_3_1176() { if (jj_scan_token(COLLATION)) return true; return false; } - final private boolean jj_3_1152() { + final private boolean jj_3_310() { + if (jj_scan_token(ROWS)) return true; + return false; + } + + final private boolean jj_3_1175() { if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; return false; } - final private boolean jj_3_1151() { + final private boolean jj_3_1174() { if (jj_scan_token(CHARACTERS)) return true; return false; } - final private boolean jj_3_1150() { + final private boolean jj_3R_291() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_698()) { + jj_scanpos = xsp; + if (jj_3_699()) return true; + } + return false; + } + + final private boolean jj_3_1173() { if (jj_scan_token(CENTURY)) return true; return false; } - final private boolean jj_3_1149() { + final private boolean jj_3_698() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_696()) { + jj_scanpos = xsp; + if (jj_3_697()) return true; + } + return false; + } + + final private boolean jj_3_1172() { if (jj_scan_token(CASCADE)) return true; return false; } - final private boolean jj_3_1148() { + final private boolean jj_3_1171() { if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_1147() { + final private boolean jj_3_314() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_310()) { + jj_scanpos = xsp; + if (jj_3_311()) return true; + } + xsp = jj_scanpos; + if (jj_3_312()) { + jj_scanpos = xsp; + if (jj_3_313()) return true; + } + return false; + } + + final private boolean jj_3_1170() { if (jj_scan_token(ATTRIBUTE)) return true; return false; } - final private boolean jj_3_1146() { + final private boolean jj_3_1169() { if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1145() { + final private boolean jj_3_1168() { if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3R_145() { - if (jj_scan_token(WHERE)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1167() { + if (jj_scan_token(ADMIN)) return true; return false; } - final private boolean jj_3_1144() { - if (jj_scan_token(ADMIN)) return true; + final private boolean jj_3_309() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_1143() { + final private boolean jj_3_1166() { if (jj_scan_token(ACTION)) return true; return false; } - final private boolean jj_3_1142() { + final private boolean jj_3_1165() { if (jj_scan_token(A)) return true; return false; } - final private boolean jj_3R_291() { - if (jj_3R_400()) return true; + final private boolean jj_3_308() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3R_341() { + final private boolean jj_3R_345() { Token xsp; xsp = jj_scanpos; - if (jj_3_1142()) { + if (jj_3_1165()) { jj_scanpos = xsp; - if (jj_3_1143()) { + if (jj_3_1166()) { jj_scanpos = xsp; - if (jj_3_1144()) { + if (jj_3_1167()) { jj_scanpos = xsp; - if (jj_3_1145()) { + if (jj_3_1168()) { jj_scanpos = xsp; - if (jj_3_1146()) { + if (jj_3_1169()) { jj_scanpos = xsp; - if (jj_3_1147()) { + if (jj_3_1170()) { jj_scanpos = xsp; - if (jj_3_1148()) { + if (jj_3_1171()) { jj_scanpos = xsp; - if (jj_3_1149()) { + if (jj_3_1172()) { jj_scanpos = xsp; - if (jj_3_1150()) { + if (jj_3_1173()) { jj_scanpos = xsp; - if (jj_3_1151()) { + if (jj_3_1174()) { jj_scanpos = xsp; - if (jj_3_1152()) { + if (jj_3_1175()) { jj_scanpos = xsp; - if (jj_3_1153()) { + if (jj_3_1176()) { jj_scanpos = xsp; - if (jj_3_1154()) { + if (jj_3_1177()) { jj_scanpos = xsp; - if (jj_3_1155()) { + if (jj_3_1178()) { jj_scanpos = xsp; - if (jj_3_1156()) { + if (jj_3_1179()) { jj_scanpos = xsp; - if (jj_3_1157()) { + if (jj_3_1180()) { jj_scanpos = xsp; - if (jj_3_1158()) { + if (jj_3_1181()) { jj_scanpos = xsp; - if (jj_3_1159()) { + if (jj_3_1182()) { jj_scanpos = xsp; - if (jj_3_1160()) { + if (jj_3_1183()) { jj_scanpos = xsp; - if (jj_3_1161()) { + if (jj_3_1184()) { jj_scanpos = xsp; - if (jj_3_1162()) { - jj_scanpos = xsp; - if (jj_3_1163()) { - jj_scanpos = xsp; - if (jj_3_1164()) { - jj_scanpos = xsp; - if (jj_3_1165()) { - jj_scanpos = xsp; - if (jj_3_1166()) { - jj_scanpos = xsp; - if (jj_3_1167()) { - jj_scanpos = xsp; - if (jj_3_1168()) { - jj_scanpos = xsp; - if (jj_3_1169()) { - jj_scanpos = xsp; - if (jj_3_1170()) { - jj_scanpos = xsp; - if (jj_3_1171()) { - jj_scanpos = xsp; - if (jj_3_1172()) { - jj_scanpos = xsp; - if (jj_3_1173()) { - jj_scanpos = xsp; - if (jj_3_1174()) { - jj_scanpos = xsp; - if (jj_3_1175()) { - jj_scanpos = xsp; - if (jj_3_1176()) { - jj_scanpos = xsp; - if (jj_3_1177()) { - jj_scanpos = xsp; - if (jj_3_1178()) { - jj_scanpos = xsp; - if (jj_3_1179()) { - jj_scanpos = xsp; - if (jj_3_1180()) { - jj_scanpos = xsp; - if (jj_3_1181()) { - jj_scanpos = xsp; - if (jj_3_1182()) { - jj_scanpos = xsp; - if (jj_3_1183()) { - jj_scanpos = xsp; - if (jj_3_1184()) { - jj_scanpos = xsp; - if (jj_3_1185()) { + if (jj_3_1185()) { jj_scanpos = xsp; if (jj_3_1186()) { jj_scanpos = xsp; @@ -39150,7 +39112,53 @@ final private boolean jj_3R_341() { jj_scanpos = xsp; if (jj_3_1362()) { jj_scanpos = xsp; - if (jj_3_1363()) return true; + if (jj_3_1363()) { + jj_scanpos = xsp; + if (jj_3_1364()) { + jj_scanpos = xsp; + if (jj_3_1365()) { + jj_scanpos = xsp; + if (jj_3_1366()) { + jj_scanpos = xsp; + if (jj_3_1367()) { + jj_scanpos = xsp; + if (jj_3_1368()) { + jj_scanpos = xsp; + if (jj_3_1369()) { + jj_scanpos = xsp; + if (jj_3_1370()) { + jj_scanpos = xsp; + if (jj_3_1371()) { + jj_scanpos = xsp; + if (jj_3_1372()) { + jj_scanpos = xsp; + if (jj_3_1373()) { + jj_scanpos = xsp; + if (jj_3_1374()) { + jj_scanpos = xsp; + if (jj_3_1375()) { + jj_scanpos = xsp; + if (jj_3_1376()) { + jj_scanpos = xsp; + if (jj_3_1377()) { + jj_scanpos = xsp; + if (jj_3_1378()) { + jj_scanpos = xsp; + if (jj_3_1379()) { + jj_scanpos = xsp; + if (jj_3_1380()) { + jj_scanpos = xsp; + if (jj_3_1381()) { + jj_scanpos = xsp; + if (jj_3_1382()) { + jj_scanpos = xsp; + if (jj_3_1383()) { + jj_scanpos = xsp; + if (jj_3_1384()) { + jj_scanpos = xsp; + if (jj_3_1385()) { + jj_scanpos = xsp; + if (jj_3_1386()) return true; } } } @@ -39375,679 +39383,1354 @@ final private boolean jj_3R_341() { return false; } - final private boolean jj_3R_159() { + final private boolean jj_3R_417() { + return false; + } + + final private boolean jj_3R_264() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + return false; + } + + final private boolean jj_3_307() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1164() { + if (jj_3R_347()) return true; + return false; + } + + final private boolean jj_3R_335() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_369()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_307()) { + jj_scanpos = xsp; + if (jj_3R_417()) return true; + } return false; } - final private boolean jj_3_1141() { - if (jj_3R_343()) return true; + final private boolean jj_3_1163() { + if (jj_3R_346()) return true; return false; } - final private boolean jj_3_1140() { - if (jj_3R_342()) return true; + final private boolean jj_3_1162() { + if (jj_3R_345()) return true; return false; } - final private boolean jj_3R_357() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + final private boolean jj_3R_277() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1162()) { + jj_scanpos = xsp; + if (jj_3_1163()) { + jj_scanpos = xsp; + if (jj_3_1164()) return true; + } + } return false; } - final private boolean jj_3_1139() { - if (jj_3R_341()) return true; + final private boolean jj_3R_235() { + if (jj_scan_token(NEW)) return true; + if (jj_3R_362()) return true; return false; } - final private boolean jj_3_680() { + final private boolean jj_3R_187() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_160() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_373()) return true; + return false; + } + + final private boolean jj_3_306() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_276()) return true; + if (jj_3R_187()) return true; return false; } - final private boolean jj_3R_369() { - if (jj_3R_276()) return true; + final private boolean jj_3_695() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_280()) return true; return false; } - final private boolean jj_3R_273() { + final private boolean jj_3R_149() { + if (jj_scan_token(WINDOW)) return true; + if (jj_3R_187()) return true; + return false; + } + + final private boolean jj_3R_373() { + if (jj_3R_280()) return true; + return false; + } + + final private boolean jj_3R_148() { + if (jj_scan_token(HAVING)) return true; + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_694() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_279()) return true; + return false; + } + + final private boolean jj_3_305() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3R_171() { + if (jj_3R_279()) return true; Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_694()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3R_408() { + if (jj_3R_79()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_305()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3R_238() { + if (jj_3R_408()) return true; + return false; + } + + final private boolean jj_3_693() { + if (jj_scan_token(DOT)) return true; + if (jj_scan_token(STAR)) return true; + return false; + } + + final private boolean jj_3_692() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_278()) return true; + return false; + } + + final private boolean jj_3_304() { + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3R_153() { + if (jj_3R_278()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_692()) { jj_scanpos = xsp; break; } + } xsp = jj_scanpos; - if (jj_3_1139()) { + if (jj_3_693()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_303() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; + return false; + } + + final private boolean jj_3_302() { + if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_301() { + if (jj_scan_token(ROLLUP)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_691() { + if (jj_3R_125()) return true; + return false; + } + + final private boolean jj_3R_135() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_690()) { jj_scanpos = xsp; - if (jj_3_1140()) { + if (jj_3_691()) return true; + } + return false; + } + + final private boolean jj_3_690() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_186() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_300()) { + jj_scanpos = xsp; + if (jj_3_301()) { + jj_scanpos = xsp; + if (jj_3_302()) { jj_scanpos = xsp; - if (jj_3_1141()) return true; + if (jj_3_303()) { + jj_scanpos = xsp; + if (jj_3_304()) return true; + } + } } } return false; } - final private boolean jj_3R_184() { + final private boolean jj_3_300() { + if (jj_scan_token(GROUPING)) return true; + if (jj_scan_token(SETS)) return true; return false; } - final private boolean jj_3_294() { - if (jj_3R_81()) return true; + final private boolean jj_3_299() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_186()) return true; return false; } - final private boolean jj_3R_346() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + final private boolean jj_3R_125() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_365()) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_291() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_298() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_297() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_689() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_147() { + if (jj_scan_token(GROUP)) return true; + if (jj_scan_token(BY)) return true; + return false; + } + + final private boolean jj_3R_365() { + if (jj_3R_85()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_689()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3R_146() { + if (jj_scan_token(WHERE)) return true; + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3R_374() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_85() { + if (jj_3R_278()) return true; + return false; + } + + final private boolean jj_3R_185() { + return false; + } + + final private boolean jj_3_296() { + if (jj_3R_82()) return true; return false; } final private boolean jj_3_293() { + if (jj_scan_token(ROW)) return true; + return false; + } + + final private boolean jj_3R_295() { + if (jj_3R_412()) return true; + return false; + } + + final private boolean jj_3_295() { Token xsp; xsp = jj_scanpos; - if (jj_3_291()) { + if (jj_3_293()) { jj_scanpos = xsp; + if (jj_3R_185()) return true; + } if (jj_3R_184()) return true; + return false; + } + + final private boolean jj_3R_339() { + if (jj_3R_278()) return true; + return false; + } + + final private boolean jj_3_294() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(ROW)) return true; + if (jj_3R_184()) return true; + return false; + } + + final private boolean jj_3R_361() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + return false; + } + + final private boolean jj_3R_163() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_294()) { + jj_scanpos = xsp; + if (jj_3_295()) { + jj_scanpos = xsp; + if (jj_3_296()) return true; + } } - if (jj_3R_183()) return true; return false; } - final private boolean jj_3_679() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_275()) return true; + final private boolean jj_3R_350() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} return false; } - final private boolean jj_3R_411() { + final private boolean jj_3R_423() { + return false; + } + + final private boolean jj_3R_279() { + if (jj_3R_278()) return true; + return false; + } + + final private boolean jj_3R_183() { + if (jj_3R_163()) return true; return false; } final private boolean jj_3_292() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(ROW)) return true; + if (jj_scan_token(COMMA)) return true; if (jj_3R_183()) return true; return false; } - final private boolean jj_3R_170() { - if (jj_3R_275()) return true; + final private boolean jj_3R_176() { + if (jj_3R_384()) return true; + return false; + } + + final private boolean jj_3_291() { + if (jj_scan_token(VALUE)) return true; + return false; + } + + final private boolean jj_3_290() { + if (jj_scan_token(VALUES)) return true; + return false; + } + + final private boolean jj_3_688() { + if (jj_3R_277()) return true; + return false; + } + + final private boolean jj_3R_77() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_679()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_290()) { + jj_scanpos = xsp; + if (jj_3_291()) return true; } + if (jj_3R_183()) return true; return false; } - final private boolean jj_3R_162() { + final private boolean jj_3_680() { + if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_687() { + if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_680()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3R_78() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_153()) return true; + return false; + } + + final private boolean jj_3_686() { + if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3_685() { + if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3_684() { + if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3_683() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3_682() { + if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3_289() { + if (jj_scan_token(SPECIFIC)) return true; + return false; + } + + final private boolean jj_3_681() { + if (jj_scan_token(IDENTIFIER)) return true; + return false; + } + + final private boolean jj_3R_278() { Token xsp; xsp = jj_scanpos; - if (jj_3_292()) { + if (jj_3_681()) { jj_scanpos = xsp; - if (jj_3_293()) { + if (jj_3_682()) { + jj_scanpos = xsp; + if (jj_3_683()) { + jj_scanpos = xsp; + if (jj_3_684()) { + jj_scanpos = xsp; + if (jj_3_685()) { + jj_scanpos = xsp; + if (jj_3_686()) { + jj_scanpos = xsp; + if (jj_3_687()) { jj_scanpos = xsp; - if (jj_3_294()) return true; + if (jj_3_688()) return true; + } + } + } + } + } } } return false; } final private boolean jj_3R_175() { - if (jj_3R_375()) return true; + if (jj_scan_token(TABLE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_182() { - if (jj_3R_162()) return true; + final private boolean jj_3_287() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; + return false; + } + + final private boolean jj_3R_223() { + if (jj_scan_token(HOOK)) return true; + return false; + } + + final private boolean jj_3_288() { + if (jj_3R_155()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_287()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3_679() { + if (jj_scan_token(SATURDAY)) return true; + return false; + } + + final private boolean jj_3R_170() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_288()) jj_scanpos = xsp; + if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_678() { - if (jj_scan_token(DOT)) return true; - if (jj_scan_token(STAR)) return true; + if (jj_scan_token(FRIDAY)) return true; return false; } final private boolean jj_3_677() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_274()) return true; + if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_290() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_182()) return true; + final private boolean jj_3_676() { + if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3R_152() { - if (jj_3R_274()) return true; + final private boolean jj_3_675() { + if (jj_scan_token(TUESDAY)) return true; + return false; + } + + final private boolean jj_3_674() { + if (jj_scan_token(MONDAY)) return true; + return false; + } + + final private boolean jj_3R_275() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_677()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_673()) { + jj_scanpos = xsp; + if (jj_3_674()) { + jj_scanpos = xsp; + if (jj_3_675()) { + jj_scanpos = xsp; + if (jj_3_676()) { + jj_scanpos = xsp; + if (jj_3_677()) { + jj_scanpos = xsp; + if (jj_3_678()) { + jj_scanpos = xsp; + if (jj_3_679()) return true; } + } + } + } + } + } + return false; + } + + final private boolean jj_3_673() { + if (jj_scan_token(SUNDAY)) return true; + return false; + } + + final private boolean jj_3_672() { + if (jj_scan_token(MILLENNIUM)) return true; + return false; + } + + final private boolean jj_3_671() { + if (jj_scan_token(CENTURY)) return true; + return false; + } + + final private boolean jj_3_670() { + if (jj_scan_token(DECADE)) return true; + return false; + } + + final private boolean jj_3_669() { + if (jj_scan_token(EPOCH)) return true; + return false; + } + + final private boolean jj_3R_276() { + return false; + } + + final private boolean jj_3_668() { + if (jj_scan_token(YEAR)) return true; + return false; + } + + final private boolean jj_3_667() { + if (jj_scan_token(QUARTER)) return true; + return false; + } + + final private boolean jj_3_666() { + if (jj_scan_token(MONTH)) return true; + return false; + } + + final private boolean jj_3_651() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_275()) return true; + return false; + } + + final private boolean jj_3_286() { + if (jj_3R_121()) return true; + if (jj_3R_182()) return true; + return false; + } + + final private boolean jj_3R_280() { + if (jj_3R_153()) return true; + return false; + } + + final private boolean jj_3_665() { + if (jj_scan_token(WEEK)) return true; + Token xsp; xsp = jj_scanpos; - if (jj_3_678()) jj_scanpos = xsp; + if (jj_3_651()) { + jj_scanpos = xsp; + if (jj_3R_276()) return true; + } return false; } - final private boolean jj_3_289() { - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_664() { + if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_288() { - if (jj_scan_token(VALUES)) return true; + final private boolean jj_3_663() { + if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3R_76() { + final private boolean jj_3_662() { + if (jj_scan_token(DOY)) return true; + return false; + } + + final private boolean jj_3_661() { + if (jj_scan_token(DOW)) return true; + return false; + } + + final private boolean jj_3_660() { + if (jj_scan_token(DAYOFYEAR)) return true; + return false; + } + + final private boolean jj_3_659() { + if (jj_scan_token(DAYOFWEEK)) return true; + return false; + } + + final private boolean jj_3_658() { + if (jj_scan_token(DAY)) return true; + return false; + } + + final private boolean jj_3_657() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_656() { + if (jj_scan_token(MINUTE)) return true; + return false; + } + + final private boolean jj_3_655() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3_654() { + if (jj_scan_token(MILLISECOND)) return true; + return false; + } + + final private boolean jj_3_653() { + if (jj_scan_token(MICROSECOND)) return true; + return false; + } + + final private boolean jj_3R_274() { Token xsp; xsp = jj_scanpos; - if (jj_3_288()) { + if (jj_3_652()) { jj_scanpos = xsp; - if (jj_3_289()) return true; + if (jj_3_653()) { + jj_scanpos = xsp; + if (jj_3_654()) { + jj_scanpos = xsp; + if (jj_3_655()) { + jj_scanpos = xsp; + if (jj_3_656()) { + jj_scanpos = xsp; + if (jj_3_657()) { + jj_scanpos = xsp; + if (jj_3_658()) { + jj_scanpos = xsp; + if (jj_3_659()) { + jj_scanpos = xsp; + if (jj_3_660()) { + jj_scanpos = xsp; + if (jj_3_661()) { + jj_scanpos = xsp; + if (jj_3_662()) { + jj_scanpos = xsp; + if (jj_3_663()) { + jj_scanpos = xsp; + if (jj_3_664()) { + jj_scanpos = xsp; + if (jj_3_665()) { + jj_scanpos = xsp; + if (jj_3_666()) { + jj_scanpos = xsp; + if (jj_3_667()) { + jj_scanpos = xsp; + if (jj_3_668()) { + jj_scanpos = xsp; + if (jj_3_669()) { + jj_scanpos = xsp; + if (jj_3_670()) { + jj_scanpos = xsp; + if (jj_3_671()) { + jj_scanpos = xsp; + if (jj_3_672()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } } - if (jj_3R_182()) return true; return false; } - final private boolean jj_3_676() { - if (jj_3R_124()) return true; + final private boolean jj_3_652() { + if (jj_scan_token(NANOSECOND)) return true; return false; } - final private boolean jj_3R_134() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_675()) { - jj_scanpos = xsp; - if (jj_3_676()) return true; - } + final private boolean jj_3R_181() { + if (jj_3R_153()) return true; + if (jj_3R_121()) return true; + if (jj_3R_182()) return true; return false; } - final private boolean jj_3_675() { - if (jj_3R_84()) return true; + final private boolean jj_3_285() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_181()) return true; return false; } - final private boolean jj_3R_77() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_650() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_124() { + final private boolean jj_3R_372() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_361()) return true; + if (jj_3R_181()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_285()) { jj_scanpos = xsp; break; } + } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_674() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3R_361() { - if (jj_3R_84()) return true; + final private boolean jj_3R_336() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_674()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_649()) { + jj_scanpos = xsp; + if (jj_3_650()) return true; } return false; } - final private boolean jj_3_287() { - if (jj_scan_token(SPECIFIC)) return true; + final private boolean jj_3_649() { + if (jj_3R_274()) return true; return false; } - final private boolean jj_3R_174() { - if (jj_scan_token(TABLE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_284() { + if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3R_370() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3R_159() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_284()) jj_scanpos = xsp; + if (jj_3R_372()) return true; return false; } - final private boolean jj_3_285() { + final private boolean jj_3_645() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3R_84() { - if (jj_3R_274()) return true; + final private boolean jj_3_281() { + if (jj_scan_token(REPEATABLE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_286() { - if (jj_3R_154()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_285()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_646() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3R_169() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_280() { + if (jj_scan_token(SYSTEM)) return true; + return false; + } + + final private boolean jj_3_648() { + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_286()) jj_scanpos = xsp; - if (jj_scan_token(RPAREN)) return true; + if (jj_3_646()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_335() { - if (jj_3R_274()) return true; + final private boolean jj_3_279() { + if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_284() { - if (jj_3R_120()) return true; - if (jj_3R_181()) return true; + final private boolean jj_3_644() { + if (jj_3R_261()) return true; return false; } - final private boolean jj_3R_276() { - if (jj_3R_152()) return true; + final private boolean jj_3_643() { + if (jj_3R_260()) return true; return false; } - final private boolean jj_3R_275() { - if (jj_3R_274()) return true; + final private boolean jj_3_642() { + if (jj_3R_269()) return true; return false; } - final private boolean jj_3R_180() { - if (jj_3R_152()) return true; - if (jj_3R_120()) return true; - if (jj_3R_181()) return true; + final private boolean jj_3_641() { + if (jj_3R_268()) return true; return false; } - final private boolean jj_3_673() { - if (jj_3R_273()) return true; + final private boolean jj_3_640() { + if (jj_3R_259()) return true; return false; } final private boolean jj_3_283() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_180()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_279()) { + jj_scanpos = xsp; + if (jj_3_280()) return true; + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_665() { - if (jj_scan_token(UESCAPE)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_639() { + if (jj_3R_267()) return true; return false; } - final private boolean jj_3R_368() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_180()) return true; + final private boolean jj_3_638() { + if (jj_3R_265()) return true; + return false; + } + + final private boolean jj_3_647() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_283()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_638()) { + jj_scanpos = xsp; + if (jj_3_639()) { + jj_scanpos = xsp; + if (jj_3_640()) { + jj_scanpos = xsp; + if (jj_3_641()) { + jj_scanpos = xsp; + if (jj_3_642()) { + jj_scanpos = xsp; + if (jj_3_643()) { + jj_scanpos = xsp; + if (jj_3_644()) return true; } - if (jj_scan_token(RPAREN)) return true; + } + } + } + } + } + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_672() { - if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3R_258() { Token xsp; xsp = jj_scanpos; - if (jj_3_665()) jj_scanpos = xsp; + if (jj_3_647()) { + jj_scanpos = xsp; + if (jj_3_648()) return true; + } return false; } final private boolean jj_3_282() { - if (jj_scan_token(EXTEND)) return true; + if (jj_scan_token(SUBSTITUTE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_158() { + final private boolean jj_3R_180() { + if (jj_scan_token(TABLESAMPLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_282()) jj_scanpos = xsp; - if (jj_3R_368()) return true; + if (jj_3_282()) { + jj_scanpos = xsp; + if (jj_3_283()) return true; + } return false; } - final private boolean jj_3_671() { - if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3R_273() { return false; } - final private boolean jj_3_670() { - if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_628() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_669() { - if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_629() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_668() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_278() { + if (jj_3R_180()) return true; return false; } - final private boolean jj_3_279() { - if (jj_scan_token(REPEATABLE)) return true; + final private boolean jj_3_626() { if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_667() { - if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; + final private boolean jj_3R_272() { return false; } - final private boolean jj_3_278() { - if (jj_scan_token(SYSTEM)) return true; + final private boolean jj_3_637() { + if (jj_3R_262()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_629()) { + jj_scanpos = xsp; + if (jj_3R_273()) return true; + } return false; } - final private boolean jj_3_277() { - if (jj_scan_token(BERNOULLI)) return true; + final private boolean jj_3_627() { + if (jj_scan_token(TO)) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3_666() { - if (jj_scan_token(IDENTIFIER)) return true; + final private boolean jj_3_622() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_281() { + final private boolean jj_3_624() { + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_277()) { - jj_scanpos = xsp; - if (jj_3_278()) return true; - } - if (jj_scan_token(LPAREN)) return true; + if (jj_3_622()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_274() { + final private boolean jj_3R_271() { + return false; + } + + final private boolean jj_3_623() { + if (jj_3R_261()) return true; + return false; + } + + final private boolean jj_3_636() { + if (jj_3R_261()) return true; + if (jj_3R_263()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_666()) { - jj_scanpos = xsp; - if (jj_3_667()) { - jj_scanpos = xsp; - if (jj_3_668()) { - jj_scanpos = xsp; - if (jj_3_669()) { - jj_scanpos = xsp; - if (jj_3_670()) { - jj_scanpos = xsp; - if (jj_3_671()) { - jj_scanpos = xsp; - if (jj_3_672()) { + if (jj_3_627()) { jj_scanpos = xsp; - if (jj_3_673()) return true; - } - } - } - } - } - } + if (jj_3R_272()) return true; } return false; } - final private boolean jj_3_280() { - if (jj_scan_token(SUBSTITUTE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_179() { return false; } - final private boolean jj_3R_179() { - if (jj_scan_token(TABLESAMPLE)) return true; + final private boolean jj_3_625() { + if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_280()) { + if (jj_3_623()) { jj_scanpos = xsp; - if (jj_3_281()) return true; + if (jj_3_624()) return true; } return false; } - final private boolean jj_3R_219() { - if (jj_scan_token(HOOK)) return true; + final private boolean jj_3_276() { + if (jj_3R_125()) return true; return false; } - final private boolean jj_3_276() { - if (jj_3R_179()) return true; + final private boolean jj_3_620() { + if (jj_3R_262()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_664() { - if (jj_scan_token(SATURDAY)) return true; + final private boolean jj_3R_270() { return false; } - final private boolean jj_3_663() { - if (jj_scan_token(FRIDAY)) return true; + final private boolean jj_3_275() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_662() { - if (jj_scan_token(THURSDAY)) return true; + final private boolean jj_3_619() { + if (jj_3R_261()) return true; return false; } - final private boolean jj_3_661() { - if (jj_scan_token(WEDNESDAY)) return true; + final private boolean jj_3_635() { + if (jj_3R_260()) return true; + if (jj_3R_263()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_625()) { + jj_scanpos = xsp; + if (jj_3R_271()) return true; + } return false; } - final private boolean jj_3_660() { - if (jj_scan_token(TUESDAY)) return true; + final private boolean jj_3_277() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_275()) jj_scanpos = xsp; + if (jj_3R_85()) return true; + xsp = jj_scanpos; + if (jj_3_276()) { + jj_scanpos = xsp; + if (jj_3R_179()) return true; + } return false; } - final private boolean jj_3_659() { - if (jj_scan_token(MONDAY)) return true; + final private boolean jj_3_618() { + if (jj_3R_260()) return true; return false; } - final private boolean jj_3R_271() { + final private boolean jj_3_274() { + if (jj_3R_178()) return true; + return false; + } + + final private boolean jj_3_621() { + if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_658()) { - jj_scanpos = xsp; - if (jj_3_659()) { - jj_scanpos = xsp; - if (jj_3_660()) { - jj_scanpos = xsp; - if (jj_3_661()) { - jj_scanpos = xsp; - if (jj_3_662()) { + if (jj_3_618()) { jj_scanpos = xsp; - if (jj_3_663()) { + if (jj_3_619()) { jj_scanpos = xsp; - if (jj_3_664()) return true; - } - } - } - } + if (jj_3_620()) return true; } } return false; } - final private boolean jj_3_658() { - if (jj_scan_token(SUNDAY)) return true; + final private boolean jj_3R_381() { return false; } - final private boolean jj_3R_178() { + final private boolean jj_3_273() { + if (jj_3R_177()) return true; return false; } - final private boolean jj_3_657() { - if (jj_scan_token(MILLENNIUM)) return true; + final private boolean jj_3_272() { + if (jj_3R_176()) return true; return false; } - final private boolean jj_3_274() { - if (jj_3R_124()) return true; + final private boolean jj_3_634() { + if (jj_3R_269()) return true; + if (jj_3R_263()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_621()) { + jj_scanpos = xsp; + if (jj_3R_270()) return true; + } return false; } - final private boolean jj_3_656() { - if (jj_scan_token(CENTURY)) return true; + final private boolean jj_3_267() { + if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_655() { - if (jj_scan_token(DECADE)) return true; + final private boolean jj_3_271() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_267()) jj_scanpos = xsp; + if (jj_3R_175()) return true; return false; } - final private boolean jj_3_654() { - if (jj_scan_token(EPOCH)) return true; + final private boolean jj_3_633() { + if (jj_3R_268()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3R_272() { + final private boolean jj_3_632() { + if (jj_3R_259()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_653() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_266() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(ORDINALITY)) return true; return false; } - final private boolean jj_3_273() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3R_266() { return false; } - final private boolean jj_3_652() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3_617() { + if (jj_scan_token(TO)) return true; + if (jj_3R_259()) return true; return false; } - final private boolean jj_3_651() { - if (jj_scan_token(MONTH)) return true; + final private boolean jj_3_631() { + if (jj_3R_267()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_275() { + final private boolean jj_3_265() { + if (jj_scan_token(LATERAL)) return true; + return false; + } + + final private boolean jj_3_630() { + if (jj_3R_265()) return true; + if (jj_3R_263()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_273()) jj_scanpos = xsp; - if (jj_3R_84()) return true; - xsp = jj_scanpos; - if (jj_3_274()) { + if (jj_3_617()) { jj_scanpos = xsp; - if (jj_3R_178()) return true; + if (jj_3R_266()) return true; } return false; } - final private boolean jj_3R_372() { - return false; - } - - final private boolean jj_3_636() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_271()) return true; - return false; - } - - final private boolean jj_3_272() { - if (jj_3R_177()) return true; + final private boolean jj_3_270() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_265()) jj_scanpos = xsp; + if (jj_scan_token(UNNEST)) return true; + if (jj_3R_174()) return true; return false; } - final private boolean jj_3_271() { - if (jj_3R_176()) return true; + final private boolean jj_3_264() { + if (jj_3R_169()) return true; return false; } - final private boolean jj_3_650() { - if (jj_scan_token(WEEK)) return true; + final private boolean jj_3R_219() { Token xsp; xsp = jj_scanpos; + if (jj_3_630()) { + jj_scanpos = xsp; + if (jj_3_631()) { + jj_scanpos = xsp; + if (jj_3_632()) { + jj_scanpos = xsp; + if (jj_3_633()) { + jj_scanpos = xsp; + if (jj_3_634()) { + jj_scanpos = xsp; + if (jj_3_635()) { + jj_scanpos = xsp; if (jj_3_636()) { jj_scanpos = xsp; - if (jj_3R_272()) return true; + if (jj_3_637()) return true; + } + } + } + } + } + } } return false; } - final private boolean jj_3_270() { - if (jj_3R_175()) return true; + final private boolean jj_3_263() { + if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_649() { - if (jj_scan_token(ISOYEAR)) return true; + final private boolean jj_3_261() { + if (jj_3R_169()) return true; return false; } - final private boolean jj_3_648() { - if (jj_scan_token(ISODOW)) return true; + final private boolean jj_3_269() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_263()) jj_scanpos = xsp; + if (jj_3R_173()) return true; return false; } - final private boolean jj_3_265() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_260() { + if (jj_3R_168()) return true; return false; } - final private boolean jj_3_647() { - if (jj_scan_token(DOY)) return true; + final private boolean jj_3_259() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_646() { - if (jj_scan_token(DOW)) return true; + final private boolean jj_3_258() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3_269() { + final private boolean jj_3R_172() { Token xsp; xsp = jj_scanpos; - if (jj_3_265()) jj_scanpos = xsp; - if (jj_3R_174()) return true; + if (jj_3_258()) { + jj_scanpos = xsp; + if (jj_3R_381()) return true; + } + xsp = jj_scanpos; + if (jj_3_259()) jj_scanpos = xsp; + if (jj_3R_382()) return true; + xsp = jj_scanpos; + if (jj_3_260()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_261()) jj_scanpos = xsp; return false; } - final private boolean jj_3_645() { - if (jj_scan_token(DAYOFYEAR)) return true; + final private boolean jj_3_262() { + if (jj_3R_170()) return true; return false; } - final private boolean jj_3_644() { - if (jj_scan_token(DAYOFWEEK)) return true; + final private boolean jj_3_268() { + if (jj_3R_171()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_262()) { + jj_scanpos = xsp; + if (jj_3R_172()) return true; + } return false; } - final private boolean jj_3_643() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_616() { + if (jj_scan_token(SECONDS)) return true; return false; } @@ -40060,7 +40743,7 @@ final private boolean jj_3_643() { public boolean lookingAhead = false; private boolean jj_semLA; private int jj_gen; - final private int[] jj_la1 = new int[10]; + final private int[] jj_la1 = new int[11]; static private int[] jj_la1_0; static private int[] jj_la1_1; static private int[] jj_la1_2; @@ -40116,84 +40799,84 @@ final private boolean jj_3_643() { jj_la1_25(); } private static void jj_la1_0() { - jj_la1_0 = new int[] {0x0,0x0,0x4000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_0 = new int[] {0x0,0x0,0x4000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_1() { - jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_2() { - jj_la1_2 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_2 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_3() { - jj_la1_3 = new int[] {0x0,0x0,0x100000,0x0,0x0,0x0,0x0,0x0,0x0,0x800,}; + jj_la1_3 = new int[] {0x0,0x0,0x100000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x800,}; } private static void jj_la1_4() { - jj_la1_4 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1600,}; + jj_la1_4 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1600,}; } private static void jj_la1_5() { - jj_la1_5 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_5 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_6() { - jj_la1_6 = new int[] {0x0,0x0,0x0,0x0,0x2000,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_6 = new int[] {0x0,0x0,0x0,0x0,0x0,0x2000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_7() { - jj_la1_7 = new int[] {0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_7 = new int[] {0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_8() { - jj_la1_8 = new int[] {0x0,0x0,0x40000800,0x0,0x0,0x0,0x0,0x0,0x8000,0x0,}; + jj_la1_8 = new int[] {0x0,0x0,0x40000800,0x0,0x0,0x0,0x0,0x0,0x0,0x8000,0x0,}; } private static void jj_la1_9() { - jj_la1_9 = new int[] {0x0,0x0,0x200000,0x0,0x0,0x0,0x0,0x0,0x200000,0x0,}; + jj_la1_9 = new int[] {0x0,0x0,0x200000,0x0,0x0,0x0,0x0,0x0,0x0,0x200000,0x0,}; } private static void jj_la1_10() { - jj_la1_10 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_10 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_11() { - jj_la1_11 = new int[] {0x0,0x0,0x100,0x0,0x40000,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_11 = new int[] {0x0,0x0,0x100,0x0,0x0,0x40000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_12() { - jj_la1_12 = new int[] {0x0,0x0,0x10000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_12 = new int[] {0x0,0x0,0x10000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_13() { - jj_la1_13 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x300,0x0,0x0,}; + jj_la1_13 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x300,0x0,0x0,}; } private static void jj_la1_14() { - jj_la1_14 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_14 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_15() { - jj_la1_15 = new int[] {0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x40,0x0,}; + jj_la1_15 = new int[] {0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,}; } private static void jj_la1_16() { - jj_la1_16 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_16 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_17() { - jj_la1_17 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_17 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_18() { - jj_la1_18 = new int[] {0x2000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_18 = new int[] {0x2000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_19() { - jj_la1_19 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ac00000,}; + jj_la1_19 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ac00000,}; } private static void jj_la1_20() { - jj_la1_20 = new int[] {0x0,0x0,0x0,0x0,0x80000000,0x0,0x0,0x0,0x100000,0x0,}; + jj_la1_20 = new int[] {0x0,0x0,0x0,0x0,0x0,0x80000000,0x0,0x0,0x0,0x100000,0x0,}; } private static void jj_la1_21() { - jj_la1_21 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_21 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_22() { - jj_la1_22 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_22 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_23() { - jj_la1_23 = new int[] {0x0,0x400000,0x0,0x0,0x0,0x400000,0x400000,0x0,0x0,0x0,}; + jj_la1_23 = new int[] {0x0,0x800000,0x0,0x800000,0x0,0x0,0x800000,0x800000,0x0,0x0,0x0,}; } private static void jj_la1_24() { - jj_la1_24 = new int[] {0x0,0x0,0x400,0x904010,0x300000,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_24 = new int[] {0x0,0x0,0x800,0x0,0x1208020,0x600000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_25() { - jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } - final private JJCalls[] jj_2_rtns = new JJCalls[1805]; + final private JJCalls[] jj_2_rtns = new JJCalls[1829]; private boolean jj_rescan = false; private int jj_gc = 0; @@ -40206,7 +40889,7 @@ public IgniteSqlParserImpl(java.io.InputStream stream, String encoding) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40219,7 +40902,7 @@ public void ReInit(java.io.InputStream stream, String encoding) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40229,7 +40912,7 @@ public IgniteSqlParserImpl(java.io.Reader stream) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40239,7 +40922,7 @@ public void ReInit(java.io.Reader stream) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40248,7 +40931,7 @@ public IgniteSqlParserImpl(IgniteSqlParserImplTokenManager tm) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40257,7 +40940,7 @@ public void ReInit(IgniteSqlParserImplTokenManager tm) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 10; i++) jj_la1[i] = -1; + for (int i = 0; i < 11; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -40368,15 +41051,15 @@ private void jj_add_error_token(int kind, int pos) { public ParseException generateParseException() { jj_expentries.removeAllElements(); - boolean[] la1tokens = new boolean[827]; - for (int i = 0; i < 827; i++) { + boolean[] la1tokens = new boolean[830]; + for (int i = 0; i < 830; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } - for (int i = 0; i < 10; i++) { + for (int i = 0; i < 11; i++) { if (jj_la1[i] == jj_gen) { for (int j = 0; j < 32; j++) { if ((jj_la1_0[i] & (1<", + "", "\"/*\"", "", "", "", - "", + "", "", "", "", diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java index c40a22919dfc5..6b58d3d52d45d 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java @@ -67,7 +67,10 @@ import org.apache.calcite.sql.SqlRowTypeNameSpec; import org.apache.calcite.sql.SqlSampleSpec; import org.apache.calcite.sql.SqlSelect; +import org.apache.calcite.sql.SqlByRewriter; import org.apache.calcite.sql.SqlSelectKeyword; +import org.apache.calcite.sql.SqlStarExclude; +import org.apache.calcite.sql.SqlStarReplace; import org.apache.calcite.sql.SqlSetOption; import org.apache.calcite.sql.SqlSnapshot; import org.apache.calcite.sql.SqlTableRef; @@ -144,205 +147,205 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) - { - jjmatchedKind = 821; - return 16; - } - if ((active12 & 0x10L) != 0L) + if ((active12 & 0x20L) != 0L) return 94; - if ((active12 & 0x20000000L) != 0L) + if ((active12 & 0x40000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active12 & 0x480002000000L) != 0L) + return 92; + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x400000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 95; } - if ((active12 & 0x90001000000L) != 0L) - return 92; - if ((active11 & 0x1000L) != 0L) + if ((active11 & 0x2000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 1; } - if ((active12 & 0x40000000L) != 0L) + if ((active12 & 0x80000000L) != 0L) return 96; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ef27efffL) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x20000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; + return 16; + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x635001b00000L) != 0L || (active12 & 0x1000000000L) != 0L) + return 97; + if ((active12 & 0x20000400L) != 0L) + return 98; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfff8000001ffffffL) != 0L || (active11 & 0x9cabde4fdfffL) != 0L) + { + jjmatchedKind = 824; return 97; } - if ((active10 & 0x3fffffe000000L) != 0L) + if ((active10 & 0x7fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 97; - if ((active12 & 0x10000200L) != 0L) - return 98; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0xc00000L) != 0L) return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active12 & 0x480000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x820540220000L) != 0L) + return 97; + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x7dfabfddffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 1; } return 97; } - if ((active12 & 0x90000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) - return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x500000002000L) != 0L) + return 97; + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0xaffffffddfffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 2; } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) - return 97; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180100e3c7L) != 0L) - return 97; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fefe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0xbffb41fffef1fffeL) != 0L || (active11 & 0xffcffdfc1870L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 3; } return 97; } + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0x4004be00010e0000L) != 0L || (active11 & 0x300201c78fL) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430022204809L) != 0L) - return 97; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7ddde05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0xbfc03cbf9ef5effeL) != 0L || (active11 & 0x79cfbbbc0b68L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 4; } return 97; } + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x3b414060001000L) != 0L || (active11 & 0x860044409012L) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x1000a880800000L) != 0L || (active11 & 0x200140L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0xbfe03c171e75effeL) != 0L || (active11 & 0x79cfbfdc0a28L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 5; } return 97; } - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x3e4000070241e000L) != 0L || (active11 & 0x318200080a00L) != 0L) return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x81a03c101c340ffeL) != 0L || (active11 & 0x484dbff40028L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 6; } return 97; } - return -1; - case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x444020004L) != 0L) - return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229bf80010L) != 0L) + return -1; + case 7: + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0xa1003c001c05cffaL) != 0L || (active11 & 0x484537f00020L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 7; } return 97; } + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0xa0001000300004L) != 0L || (active11 & 0x888040008L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208be80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x20003c001805c87aL) != 0L || (active11 & 0x484117d00020L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 8; } return 97; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x8100000004000780L) != 0L || (active11 & 0x420200000L) != 0L) return 97; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200081680010L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x2000000000040100L) != 0L || (active11 & 0x84015000000L) != 0L) + return 97; + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x3c001801cc7aL) != 0L || (active11 & 0x400102d00020L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 9; } return 97; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) - return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x81400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x102800000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x3c001001c402L) != 0L || (active11 & 0x400000500020L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 10; } return 97; } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x3c0010014472L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 11; } return 97; } - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x100020L) != 0L) return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x3c0000014472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 12; return 97; } @@ -352,9 +355,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 97; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x3c0000004472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 13; return 97; } @@ -362,19 +365,19 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 14; return 97; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 15; } return 97; @@ -383,11 +386,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 16; } return 97; @@ -398,9 +401,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 17; return 97; } @@ -408,20 +411,20 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 18; } return 97; } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 19; return 97; } @@ -431,27 +434,27 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 20; return 97; } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 21; return 97; } - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + if ((active2 & 0x2000L) != 0L || (active10 & 0x180000000020L) != 0L) return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 22; return 97; } @@ -459,39 +462,39 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 23: - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x200000000040L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x40000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 23; return 97; } return -1; case 24: - if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) + if ((active6 & 0x20000000L) != 0L || (active10 & 0x40000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 24; return 97; } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 25; return 97; } - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x400000L) != 0L) return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 26; return 97; } @@ -499,9 +502,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 27; return 97; } @@ -509,17 +512,17 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 28; return 97; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 29; return 97; } @@ -527,17 +530,17 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 30; return 97; } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 31; return 97; } @@ -545,9 +548,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 32; return 97; } @@ -580,74 +583,76 @@ private final int jjMoveStringLiteralDfa0_1() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 34: - return jjStartNfaWithStates_1(0, 798, 96); + return jjStartNfaWithStates_1(0, 799, 96); case 36: - return jjStartNfaWithStates_1(0, 801, 97); + return jjStartNfaWithStates_1(0, 804, 97); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 794); + case 38: + return jjStopAtPos(0, 802); case 39: - return jjStartNfaWithStates_1(0, 797, 63); + return jjStartNfaWithStates_1(0, 798, 63); case 40: - return jjStopAtPos(0, 766); - case 41: return jjStopAtPos(0, 767); + case 41: + return jjStopAtPos(0, 768); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 789); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 779); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 790; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 778; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x480000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 777); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000a0000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); - case 62: jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + case 62: + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 783); case 91: - return jjStopAtPos(0, 774); - case 93: return jjStopAtPos(0, 775); + case 93: + return jjStopAtPos(0, 776); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 801); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000300000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_1(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa000c00000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14001800000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -660,67 +665,67 @@ private final int jjMoveStringLiteralDfa0_1() return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140020000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x400000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x880000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x40000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x100000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x8a000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x800000040000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff8000000000000L, 0x4000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x18401fffL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x6000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); case 123: - return jjStartNfaWithStates_1(0, 772, 94); + return jjStartNfaWithStates_1(0, 773, 94); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 800; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 774); case 126: return jjStopAtPos(0, 2); default : @@ -737,55 +742,59 @@ private final int jjMoveStringLiteralDfa1_1(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x400000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 814; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x80000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x100000000000L) != 0L) + return jjStopAtPos(1, 812); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x2000000000L) != 0L) + return jjStopAtPos(1, 805); + break; + case 60: + if ((active12 & 0x800000000L) != 0L) + return jjStopAtPos(1, 803); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) + if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); - else if ((active12 & 0x80000L) != 0L) - return jjStopAtPos(1, 787); + else if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 62: - if ((active12 & 0x40000L) != 0L) - return jjStopAtPos(1, 786); - else if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(1, 790); - else if ((active12 & 0x8000000L) != 0L) - return jjStopAtPos(1, 795); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); + else if ((active12 & 0x800000L) != 0L) + return jjStopAtPos(1, 791); + else if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 65: case 97: - return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x200443c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0xff8000000000000L, active11, 0x400887880000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_1(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x2000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_1(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xb000000002000000L, active11, 0x10800004c003L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -793,18 +802,18 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedKind = 383; jjmatchedPos = 1; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(1, 720, 97); - return jjMoveStringLiteralDfa2_1(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(1, 721, 97); + return jjMoveStringLiteralDfa2_1(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); case 71: case 103: return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0x1cL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x4000000000000000L, active11, 0x10000003e0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -813,7 +822,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_1(active0, 0x80000001f000L, active1, 0xf000L, active2, 0xc00000000000000L, active3, 0x8000400006000000L, active4, 0L, active5, 0L, active6, 0x1c00000000002L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x1000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x2000L, active12, 0L); case 78: case 110: if ((active4 & 0x10L) != 0L) @@ -828,7 +837,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ffc000000L, active11, 0x200160000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -846,10 +855,10 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x814600010400L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0xe000000000L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xfffffffe00000000L, active9, 0x7fffffL, active10, 0L, active11, 0L, active12, 0L); @@ -860,7 +869,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xc200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x18401800L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -873,7 +882,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f0000000000L, active11, 0x20000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -881,10 +890,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x3800000000000L, active11, 0x80000200000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x4000000c00000L, active11, 0x40000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_1(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -897,8 +906,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(1, 51, 97); return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; default : break; @@ -917,14 +926,14 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(2, 811); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_1(2, 8, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x14100c006400L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x10000000ffcL, active11, 0x28201800c800L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -937,7 +946,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x10c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x21880000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -958,14 +967,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_1(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_1(2, 406, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x8000002020000000L, active11, 0x40000020L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_1(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_1(2, 388, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0x40003e0000401000L, active11, 0x4000000001fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -973,14 +982,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x3800000000000L, active11, 0x100000100000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_1(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_1(2, 301, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -988,7 +997,7 @@ else if ((active4 & 0x200000000000L) != 0L) case 105: if ((active6 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(2, 432, 97); - return jjMoveStringLiteralDfa3_1(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x44000c007e000L, active11, 0x401000L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1007,14 +1016,14 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedKind = 545; jjmatchedPos = 2; } - else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(2, 716, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa82000000L, active12, 0L); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(2, 717, 97); + return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x38000000000000L, active11, 0x1504000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_1(2, 616, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x10000040000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -1022,10 +1031,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x4000010040L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_1(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x200000L, active12, 0L); case 80: case 112: if ((active3 & 0x4000L) != 0L) @@ -1037,7 +1046,7 @@ else if ((active3 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(2, 250, 97); else if ((active5 & 0x8L) != 0L) return jjStartNfaWithStates_1(2, 323, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x4201000002L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1053,7 +1062,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x3fc0000000000000L, active11, 0x8080000400L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -1061,7 +1070,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x9002000000L, active11, 0x800000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -1087,7 +1096,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x800002000380L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -1113,7 +1122,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -1130,7 +1139,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x20000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1153,15 +1162,15 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, case 45: return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000000L, active11, 0L); - case 51: return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); + case 51: + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0L); case 56: - if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(3, 686, 97); + if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(3, 687, 97); break; case 95: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0xc0000000200002L, active11, 0x400000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -1171,14 +1180,14 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_1(3, 285, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400041000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x2400001000L, active11, 0x800082000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_1(3, 47, 97); else if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_1(3, 78, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000800000L, active11, 0L); case 67: case 99: if ((active2 & 0x4000000000L) != 0L) @@ -1191,7 +1200,7 @@ else if ((active3 & 0x800L) != 0L) jjmatchedKind = 203; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x100000002000000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x200000002000000L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) @@ -1206,9 +1215,9 @@ else if ((active7 & 0x20L) != 0L) jjmatchedKind = 453; jjmatchedPos = 3; } - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 689, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); + else if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 690, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x40L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) @@ -1253,9 +1262,9 @@ else if ((active10 & 0x80000L) != 0L) return jjStartNfaWithStates_1(3, 659, 97); else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_1(3, 664, 97); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(3, 719, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(3, 720, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0xc820000000L, active11, 0x40000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -1265,7 +1274,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x1000001e000L, active11, 0x200000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -1274,29 +1283,29 @@ else if ((active2 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_1(3, 185, 97); else if ((active6 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(3, 420, 97); - else if ((active11 & 0x40L) != 0L) + else if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 710; + jjmatchedKind = 711; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1800300L); case 73: case 105: - return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x400001200000004L, active11, 0x100100000L); case 75: case 107: if ((active7 & 0x10L) != 0L) return jjStartNfaWithStates_1(3, 452, 97); else if ((active8 & 0x80L) != 0L) return jjStartNfaWithStates_1(3, 519, 97); - else if ((active10 & 0x8000000000000000L) != 0L) + else if ((active11 & 0x1L) != 0L) { - jjmatchedKind = 703; + jjmatchedKind = 704; jjmatchedPos = 3; } - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_1(3, 713, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_1(3, 714, 97); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80002L); case 76: case 108: if ((active0 & 0x20000000000000L) != 0L) @@ -1318,9 +1327,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_1(3, 455, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(3, 739, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(3, 740, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x200000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -1330,7 +1339,7 @@ else if ((active10 & 0x20000L) != 0L) jjmatchedKind = 657; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x100000L); + return jjMoveStringLiteralDfa4_1(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x200000L); case 78: case 110: if ((active4 & 0x40000000L) != 0L) @@ -1346,28 +1355,28 @@ else if ((active6 & 0x800000000000L) != 0L) return jjStartNfaWithStates_1(3, 431, 97); else if ((active9 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(3, 626, 97); - else if ((active11 & 0x2L) != 0L) + else if ((active11 & 0x4L) != 0L) { - jjmatchedKind = 705; + jjmatchedKind = 706; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(3, 740, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(3, 741, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x8000400100100ff8L, active11, 0x20000000008L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_1(3, 279, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x400000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_1(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(3, 537, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x800c020400L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x10018040800L); case 81: case 113: return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -1393,17 +1402,17 @@ else if ((active6 & 0x40000L) != 0L) jjmatchedKind = 402; jjmatchedPos = 3; } - else if ((active10 & 0x10000000000L) != 0L) + else if ((active10 & 0x20000000000L) != 0L) { - jjmatchedKind = 680; + jjmatchedKind = 681; jjmatchedPos = 3; } - else if ((active11 & 0x2000L) != 0L) + else if ((active11 & 0x4000L) != 0L) { - jjmatchedKind = 717; + jjmatchedKind = 718; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x3c0000000000L, active11, 0x140020008010L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -1414,7 +1423,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_1(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_1(3, 628, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x3000000000400000L, active11, 0x800000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -1434,27 +1443,27 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_1(3, 598, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x84000401020L); case 85: case 117: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x38000000000000L, active11, 0x4000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(3, 442, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x8000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) return jjStartNfaWithStates_1(3, 533, 97); - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 701, 97); + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 702, 97); return jjMoveStringLiteralDfa4_1(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) return jjStartNfaWithStates_1(3, 389, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x800000000000000L, active11, 0L); default : break; } @@ -1472,18 +1481,18 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 688, 97); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 689, 97); break; case 54: - if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(4, 687, 97); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 688, 97); break; case 95: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0xd000000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x3c0000040000L, active11, 0x1a000000L); case 65: case 97: - return jjMoveStringLiteralDfa5_1(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x400000002000000L, active11, 0L); case 66: case 98: if ((active5 & 0x40000000000L) != 0L) @@ -1491,9 +1500,9 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(4, 744, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(4, 745, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x400000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -1540,21 +1549,21 @@ else if ((active9 & 0x400000000000L) != 0L) jjmatchedKind = 622; jjmatchedPos = 4; } - else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(4, 679, 97); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(4, 680, 97); + else if ((active10 & 0x8000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 691; jjmatchedPos = 4; } - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_1(4, 707, 97); - else if ((active11 & 0x800L) != 0L) + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_1(4, 708, 97); + else if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 715; + jjmatchedKind = 716; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x80002e00004L); + return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x8030000000000000L, active11, 0x100005c00008L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -1562,9 +1571,9 @@ else if ((active11 & 0x800L) != 0L) return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(4, 685, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + if ((active10 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(4, 686, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100001e000L, active11, 0x400000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -1583,10 +1592,10 @@ else if ((active5 & 0x80000000L) != 0L) jjmatchedKind = 351; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000000L, active11, 0x20L); case 73: case 105: - return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x3900000000000000L, active11, 0x8c200200100L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -1607,9 +1616,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(4, 750, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(4, 751, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x80040000L); case 77: case 109: return jjMoveStringLiteralDfa5_1(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -1626,10 +1635,10 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_1(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(4, 670, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x100100000L); case 79: case 111: - return jjMoveStringLiteralDfa5_1(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); + return jjMoveStringLiteralDfa5_1(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x240L); case 80: case 112: if ((active3 & 0x8000000000000L) != 0L) @@ -1637,7 +1646,7 @@ else if ((active10 & 0x40000000L) != 0L) jjmatchedKind = 243; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x40000000000000L, active11, 0x800L); case 82: case 114: if ((active0 & 0x800L) != 0L) @@ -1667,9 +1676,9 @@ else if ((active6 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_1(4, 444, 97); else if ((active10 & 0x20000000L) != 0L) return jjStartNfaWithStates_1(4, 669, 97); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(4, 677, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); + else if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(4, 678, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x8000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) @@ -1686,11 +1695,11 @@ else if ((active7 & 0x40L) != 0L) return jjStartNfaWithStates_1(4, 454, 97); else if ((active8 & 0x100000L) != 0L) return jjStartNfaWithStates_1(4, 532, 97); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_1(4, 704, 97); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 718, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); + else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_1(4, 705, 97); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(4, 719, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x80000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) @@ -1723,10 +1732,10 @@ else if ((active9 & 0x800000L) != 0L) return jjStartNfaWithStates_1(4, 599, 97); else if ((active10 & 0x1000L) != 0L) return jjStartNfaWithStates_1(4, 652, 97); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x2000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x10000080000L); case 86: case 118: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -1734,11 +1743,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_1(4, 14, 97); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x800000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 733, 97); + if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(4, 734, 97); return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -1753,9 +1762,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_1(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_1(4, 198, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(4, 745, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(4, 746, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200020000000L); case 90: case 122: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -1776,7 +1785,7 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x20000000000000L, active11, 0x5c00020L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -1784,7 +1793,7 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, jjmatchedKind = 507; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x140000000740078L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_1(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x280000000740078L, active11, 0x40000L); case 66: case 98: return jjMoveStringLiteralDfa6_1(active0, 0xc00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -1799,7 +1808,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(5, 602, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x8000200000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -1815,7 +1824,7 @@ else if ((active8 & 0x8L) != 0L) jjmatchedKind = 515; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x1e0010000000L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x3c0010000000L, active11, 0L); case 69: case 101: if ((active0 & 0x4000000000L) != 0L) @@ -1856,9 +1865,9 @@ else if ((active10 & 0x800000L) != 0L) return jjStartNfaWithStates_1(5, 663, 97); else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_1(5, 671, 97); - else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(5, 676, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + else if ((active10 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(5, 677, 97); + return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x100000800L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -1868,20 +1877,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_1(5, 247, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x400000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_1(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_1(5, 514, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_1(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + return jjMoveStringLiteralDfa6_1(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x100000L); case 75: case 107: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -1890,7 +1899,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_1(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_1(5, 513, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x80000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -1924,17 +1933,17 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedKind = 478; jjmatchedPos = 5; } - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_1(5, 711, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + else if ((active11 & 0x100L) != 0L) + return jjStartNfaWithStates_1(5, 712, 97); + return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0xd00001004000000L, active11, 0x4200000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x3040000200000000L, active11, 0x800000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(5, 490, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x20080000L); case 81: case 113: return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -1958,7 +1967,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x2000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -1975,9 +1984,9 @@ else if ((active5 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_1(5, 382, 97); else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_1(5, 398, 97); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 691, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 692, 97); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x8000000000000000L, active11, 0x180000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -2014,21 +2023,21 @@ else if ((active9 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(5, 611, 97); else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(5, 675, 97); - else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(5, 678, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(5, 679, 97); + return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x10000000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_1(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa6_1(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x200L); case 86: case 118: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x8000004L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x10000008L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(5, 282, 97); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_1(5, 709, 97); + else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_1(5, 710, 97); return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -2046,7 +2055,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -2068,13 +2077,13 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x100000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200008000000L); + return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x100000000000e00L, active11, 0x400010000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20L); case 67: case 99: if ((active2 & 0x40000000000000L) != 0L) @@ -2097,7 +2106,7 @@ else if ((active5 & 0x20L) != 0L) return jjStartNfaWithStates_1(6, 325, 97); else if ((active10 & 0x400000000L) != 0L) return jjStartNfaWithStates_1(6, 674, 97); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x8000000004000000L, active11, 0L); case 69: case 101: if ((active0 & 0x100000000000000L) != 0L) @@ -2135,13 +2144,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(6, 665, 97); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(6, 742, 97); else if ((active11 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(6, 743, 97); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(6, 748, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x45000004L); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(6, 744, 97); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(6, 749, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x3c1000000000L, active11, 0x8a000008L); case 70: case 102: return jjMoveStringLiteralDfa7_1(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2164,21 +2173,21 @@ else if ((active6 & 0x400000000000L) != 0L) return jjStartNfaWithStates_1(6, 430, 97); else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(6, 499, 97); - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 698, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 736, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 699, 97); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(6, 737, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x800000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(6, 50, 97); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 747, 97); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(6, 748, 97); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x400200000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -2204,7 +2213,7 @@ else if ((active6 & 0x40000000L) != 0L) return jjMoveStringLiteralDfa7_1(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_1(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x80000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80000000000L) != 0L) @@ -2230,19 +2239,19 @@ else if ((active8 & 0x10000L) != 0L) } else if ((active10 & 0x100000000L) != 0L) return jjStartNfaWithStates_1(6, 672, 97); - else if ((active10 & 0x800000000000000L) != 0L) + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 699; + jjmatchedKind = 700; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x2000000000000004L, active11, 0x1000000L); case 79: case 111: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x20000000000180L, active11, 0L); case 80: case 112: - if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 693, 97); + if ((active10 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 694, 97); return jjMoveStringLiteralDfa7_1(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: @@ -2268,11 +2277,11 @@ else if ((active10 & 0x2000L) != 0L) jjmatchedKind = 653; jjmatchedPos = 6; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 696, 97); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_1(6, 714, 97); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 697, 97); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_1(6, 715, 97); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x800000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -2285,9 +2294,9 @@ else if ((active7 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(6, 484, 97); else if ((active8 & 0x10L) != 0L) return jjStartNfaWithStates_1(6, 516, 97); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 722, 97); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(6, 723, 97); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x400000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) @@ -2328,14 +2337,14 @@ else if ((active9 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(6, 639, 97); else if ((active10 & 0x200000000L) != 0L) return jjStartNfaWithStates_1(6, 673, 97); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 697, 97); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_1(6, 712, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400120a0000L); + else if ((active10 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 698, 97); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_1(6, 713, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x80024140000L); case 85: case 117: - return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x4000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -2377,7 +2386,7 @@ private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_1(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x8000000000000000L, active11, 0x1000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -2401,8 +2410,10 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(7, 156, 97); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 738, 97); + else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(7, 676, 97); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(7, 739, 97); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -2452,14 +2463,14 @@ else if ((active9 & 0x80L) != 0L) } else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_1(7, 660, 97); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(7, 721, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(7, 722, 97); + return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x20000000L); case 70: case 102: - if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 692, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); + if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 693, 97); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) @@ -2470,7 +2481,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_1(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 642, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x2000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -2478,7 +2489,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x2000000000000000L, active11, 0x80000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2497,9 +2508,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_1(7, 581, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(7, 734, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x8000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(7, 735, 97); + return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x10000000L); case 77: case 109: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -2512,22 +2523,22 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x400400000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 694, 97); + if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 695, 97); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(7, 554, 97); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_1(7, 706, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_1(7, 707, 97); + return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x100000000040180L, active11, 0x800000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -2549,7 +2560,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 615, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x100000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -2562,10 +2573,10 @@ else if ((active8 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(7, 538, 97); else if ((active10 & 0x200000L) != 0L) return jjStartNfaWithStates_1(7, 661, 97); - return jjMoveStringLiteralDfa8_1(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_1(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x200000L); case 85: case 117: - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x20L); case 86: case 118: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); @@ -2595,9 +2606,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_1(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(7, 627, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 730, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(7, 731, 97); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x4500000L); case 90: case 122: return jjMoveStringLiteralDfa8_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -2618,7 +2629,7 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x80000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x100000L); case 65: case 97: return jjMoveStringLiteralDfa9_1(active0, 0x11000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0x300020000L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0xa000L, active9, 0x10000000L, active10, 0x40000L, active11, 0L); @@ -2631,7 +2642,7 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 618, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x80000000020L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -2640,8 +2651,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_1(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(8, 666, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 732, 97); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(8, 733, 97); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -2709,9 +2720,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(8, 737, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(8, 738, 97); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x400000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -2719,7 +2730,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 42, 97); - return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x81000000L); + return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x3c0010000878L, active11, 0x102000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -2735,7 +2746,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x1000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -2758,10 +2769,10 @@ else if ((active6 & 0x80000000L) != 0L) return jjStartNfaWithStates_1(8, 415, 97); else if ((active6 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_1(8, 439, 97); - return jjMoveStringLiteralDfa9_1(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); + return jjMoveStringLiteralDfa9_1(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x2000000000008000L, active11, 0x400000L); case 79: case 111: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x800000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -2771,7 +2782,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x4000000L); case 81: case 113: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -2823,7 +2834,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2008000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x4010000000L); case 86: case 118: return jjMoveStringLiteralDfa9_1(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -2847,12 +2858,12 @@ else if ((active7 & 0x2000L) != 0L) return jjStartNfaWithStates_1(8, 461, 97); else if ((active9 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_1(8, 625, 97); - else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 695, 97); - else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 702, 97); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(8, 724, 97); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 696, 97); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 703, 97); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(8, 725, 97); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -2886,7 +2897,7 @@ else if ((active2 & 0x400L) != 0L) return jjStartNfaWithStates_1(9, 138, 97); else if ((active9 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_1(9, 631, 97); - return jjMoveStringLiteralDfa10_1(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa10_1(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) @@ -2920,13 +2931,13 @@ else if ((active9 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(9, 612, 97); else if ((active9 & 0x800000000000L) != 0L) return jjStartNfaWithStates_1(9, 623, 97); - else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(9, 727, 97); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(9, 729, 97); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 731, 97); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(9, 728, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(9, 730, 97); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(9, 732, 97); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x400000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -2935,8 +2946,8 @@ else if ((active8 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(9, 548, 97); else if ((active9 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(9, 606, 97); - else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 700, 97); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 701, 97); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -2948,7 +2959,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 107: if ((active2 & 0x400000000L) != 0L) return jjStartNfaWithStates_1(9, 162, 97); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80010L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100020L); case 76: case 108: return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x1000000000000L, active10, 0L, active11, 0L); @@ -2964,10 +2975,10 @@ else if ((active10 & 0x1000000000000000L) != 0L) jjmatchedKind = 98; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x3c0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x2000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -2998,10 +3009,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_1(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_1(9, 648, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(9, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(9, 746, 97); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(9, 742, 97); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(9, 747, 97); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -3021,7 +3032,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x800000L); case 86: case 118: return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3048,7 +3059,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); default : break; } @@ -3085,7 +3096,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_1(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_1(10, 667, 97); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x400000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -3106,9 +3117,9 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_1(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(10, 624, 97); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(10, 735, 97); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(10, 736, 97); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x3c0000000000L, active11, 0x100020L); case 70: case 102: return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3123,7 +3134,7 @@ else if ((active11 & 0x80000000L) != 0L) return jjStartNfaWithStates_1(10, 67, 97); else if ((active6 & 0x400000000L) != 0L) return jjStartNfaWithStates_1(10, 418, 97); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 73: case 105: return jjMoveStringLiteralDfa11_1(active0, 0x21000000000L, active1, 0x800000002000L, active2, 0x1000L, active3, 0x2L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000000L, active10, 0L, active11, 0L); @@ -3150,8 +3161,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_1(10, 651, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 728, 97); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(10, 729, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -3160,8 +3171,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(10, 604, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(10, 726, 97); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(10, 727, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -3237,7 +3248,7 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -3253,7 +3264,7 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, case 100: if ((active9 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_1(11, 633, 97); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) @@ -3338,7 +3349,7 @@ else if ((active9 & 0x1000L) != 0L) return jjStartNfaWithStates_1(11, 588, 97); else if ((active9 & 0x80000L) != 0L) return jjStartNfaWithStates_1(11, 595, 97); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x400000L); case 83: case 115: return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x70L, active11, 0L); @@ -3350,16 +3361,16 @@ else if ((active5 & 0x40000L) != 0L) return jjStartNfaWithStates_1(11, 338, 97); else if ((active9 & 0x40L) != 0L) return jjStartNfaWithStates_1(11, 582, 97); - else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_1(11, 708, 97); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_1(11, 709, 97); return jjMoveStringLiteralDfa12_1(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x100000000L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(11, 723, 97); + if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(11, 724, 97); break; default : break; @@ -3378,7 +3389,7 @@ private final int jjMoveStringLiteralDfa12_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_1(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x1e0000000070L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x3c0000000070L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x6800000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3434,12 +3445,12 @@ else if ((active3 & 0x2L) != 0L) return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_1(12, 584, 97); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -3485,7 +3496,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_1(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_1(13, 656, 97); - return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3538,7 +3549,7 @@ else if ((active9 & 0x4000L) != 0L) case 110: if ((active4 & 0x4L) != 0L) return jjStartNfaWithStates_1(13, 258, 97); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x400000L); case 79: case 111: return jjMoveStringLiteralDfa14_1(active0, 0x20000000000L, active1, 0x100000000000000L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); @@ -3559,7 +3570,7 @@ else if ((active9 & 0x4000L) != 0L) case 116: if ((active7 & 0x8000L) != 0L) return jjStartNfaWithStates_1(13, 463, 97); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x3c0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) @@ -3626,7 +3637,7 @@ else if ((active10 & 0x4000L) != 0L) break; case 73: case 105: - return jjMoveStringLiteralDfa15_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa15_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3653,7 +3664,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_1(14, 592, 97); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -3678,7 +3689,7 @@ else if ((active10 & 0x400L) != 0L) break; case 89: case 121: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); default : break; } @@ -3745,7 +3756,7 @@ else if ((active2 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x100000000L) != 0L) @@ -3755,7 +3766,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3769,7 +3780,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); default : break; } @@ -3792,12 +3803,12 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, case 97: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(16, 103, 97); - return jjMoveStringLiteralDfa17_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa17_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) return jjStartNfaWithStates_1(16, 482, 97); - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) @@ -3808,7 +3819,7 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -3872,7 +3883,7 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3908,7 +3919,7 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 86: case 118: return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -3935,7 +3946,7 @@ private final int jjMoveStringLiteralDfa18_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x60000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc0000000000L, active11, 0L); case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) @@ -3960,7 +3971,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 76: case 108: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3969,7 +3980,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3978,7 +3989,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x4000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 84: case 116: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0x80000000L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x20L, active11, 0L); @@ -4004,10 +4015,10 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, case 97: if ((active1 & 0x100L) != 0L) return jjStartNfaWithStates_1(19, 72, 97); - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x140000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x200000000000L, active11, 0L); case 68: case 100: return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4021,7 +4032,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x80000000000L, active11, 0x400000400000L); case 82: case 114: return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4065,7 +4076,7 @@ private final int jjMoveStringLiteralDfa20_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0x20000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x80000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000000L) != 0L) @@ -4082,13 +4093,13 @@ else if ((active2 & 0x100000000000000L) != 0L) case 104: if ((active7 & 0x200000000L) != 0L) return jjStartNfaWithStates_1(20, 481, 97); - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x200000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x100000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 79: case 111: return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4097,7 +4108,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x40000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -4120,10 +4131,10 @@ private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 65: case 97: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000040L, active11, 0L); case 67: case 99: return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4136,11 +4147,11 @@ private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, case 101: if ((active2 & 0x2000L) != 0L) return jjStartNfaWithStates_1(21, 141, 97); - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(21, 682, 97); else if ((active10 & 0x80000000000L) != 0L) return jjStartNfaWithStates_1(21, 683, 97); - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); + else if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(21, 684, 97); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x200000000000L, active11, 0L); case 70: case 102: return jjMoveStringLiteralDfa22_1(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4199,10 +4210,10 @@ private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x100000000000L, active11, 0x200000L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x200000000000L, active11, 0x400000L); case 78: case 110: return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); @@ -4214,7 +4225,7 @@ private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -4241,8 +4252,8 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(23, 684, 97); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(23, 685, 97); break; case 67: case 99: @@ -4266,7 +4277,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x40000000000L, active11, 0x400000400000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -4301,7 +4312,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, break; case 68: case 100: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000000L, active10, 0L, active11, 0L); @@ -4310,8 +4321,8 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(24, 681, 97); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(24, 682, 97); break; case 73: case 105: @@ -4333,7 +4344,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); default : break; } @@ -4364,8 +4375,8 @@ private final int jjMoveStringLiteralDfa25_1(long old1, long active1, long old2, case 101: if ((active8 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(25, 563, 97); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(25, 725, 97); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(25, 726, 97); break; case 71: case 103: @@ -4387,7 +4398,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -4408,7 +4419,7 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -4456,7 +4467,7 @@ private final int jjMoveStringLiteralDfa27_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4483,7 +4494,7 @@ private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4508,7 +4519,7 @@ private final int jjMoveStringLiteralDfa29_1(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_1(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -4533,7 +4544,7 @@ private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x400000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -4559,7 +4570,7 @@ private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_1(31, 129, 97); - return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x400000000000L); default : break; } @@ -4578,7 +4589,7 @@ private final int jjMoveStringLiteralDfa32_1(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_1(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_1(active11, 0x400000000000L); default : break; } @@ -4597,8 +4608,8 @@ private final int jjMoveStringLiteralDfa33_1(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(33, 749, 97); + if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(33, 750, 97); break; default : break; @@ -4692,8 +4703,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 829) + kind = 829; } else if (curChar == 34) jjCheckNAddTwoStates(30, 32); @@ -4701,14 +4712,14 @@ else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -4721,8 +4732,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -4735,8 +4746,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -4751,8 +4762,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -4775,8 +4786,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -4785,8 +4796,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -4801,8 +4812,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -4823,8 +4834,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 759) + kind = 759; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -4834,8 +4845,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -4860,8 +4871,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 758) + kind = 758; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -4885,8 +4896,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 760) + kind = 760; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -4904,30 +4915,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 762) + kind = 762; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 815) + kind = 815; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 815) + kind = 815; break; case 27: if (curChar == 13) @@ -4954,21 +4965,21 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 34 && kind > 817) - kind = 817; + if (curChar == 34 && kind > 820) + kind = 820; break; case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -4986,8 +4997,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -4997,26 +5008,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 829) + kind = 829; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAdd(44); break; case 45: @@ -5030,8 +5041,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 753) + kind = 753; jjCheckNAdd(48); break; case 49: @@ -5045,22 +5056,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAddStates(35, 37); break; case 54: @@ -5078,8 +5089,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); break; case 58: @@ -5099,12 +5110,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 759) + kind = 759; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 766) + kind = 766; break; case 67: case 69: @@ -5120,8 +5131,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 761) + kind = 761; break; case 72: if (curChar == 38) @@ -5144,8 +5155,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 826) + kind = 826; break; case 79: if (curChar == 32) @@ -5172,14 +5183,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 813) + kind = 813; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; default : break; @@ -5200,8 +5211,8 @@ else if (curChar == 123) jjAddStates(48, 55); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -5222,8 +5233,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -5234,8 +5245,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -5246,8 +5257,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -5262,8 +5273,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -5274,8 +5285,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -5286,13 +5297,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 769) + kind = 769; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 770) + kind = 770; } break; case 63: @@ -5343,22 +5354,22 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -5368,15 +5379,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -5401,32 +5412,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 769) + kind = 769; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 770) + kind = 770; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 771) + kind = 771; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 772) + kind = 772; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 813) + kind = 813; break; default : break; } @@ -5446,8 +5457,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5456,8 +5467,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5468,8 +5479,8 @@ else if ((0x1000000010L & l) != 0L) case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5480,8 +5491,8 @@ else if ((0x1000000010L & l) != 0L) case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5497,8 +5508,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5509,8 +5520,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5545,22 +5556,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -5570,15 +5581,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -5594,8 +5605,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 813) + kind = 813; break; default : break; } @@ -5619,205 +5630,205 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) - { - jjmatchedKind = 821; - return 16; - } - if ((active12 & 0x10L) != 0L) + if ((active12 & 0x20L) != 0L) return 94; - if ((active12 & 0x20000000L) != 0L) + if ((active12 & 0x40000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active12 & 0x480002000000L) != 0L) + return 92; + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x400000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 95; } - if ((active12 & 0x90001000000L) != 0L) - return 92; - if ((active11 & 0x1000L) != 0L) + if ((active11 & 0x2000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 1; } - if ((active12 & 0x40L) != 0L) + if ((active12 & 0x80L) != 0L) return 96; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ef27efffL) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x20000000L) != 0L) + { + jjmatchedKind = 824; + return 16; + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x635001b00000L) != 0L || (active12 & 0x1000000000L) != 0L) + return 97; + if ((active12 & 0x20000400L) != 0L) + return 98; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfff8000001ffffffL) != 0L || (active11 & 0x9cabde4fdfffL) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 97; } - if ((active10 & 0x3fffffe000000L) != 0L) + if ((active10 & 0x7fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 97; - if ((active12 & 0x10000200L) != 0L) - return 98; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0xc00000L) != 0L) return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active12 & 0x480000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x820540220000L) != 0L) + return 97; + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x7dfabfddffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 1; } return 97; } - if ((active12 & 0x90000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) - return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x500000002000L) != 0L) + return 97; + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0xaffffffddfffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 2; } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) - return 97; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180100e3c7L) != 0L) - return 97; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fefe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0xbffb41fffef1fffeL) != 0L || (active11 & 0xffcffdfc1870L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 3; } return 97; } + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0x4004be00010e0000L) != 0L || (active11 & 0x300201c78fL) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430022204809L) != 0L) - return 97; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7ddde05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0xbfc03cbf9ef5effeL) != 0L || (active11 & 0x79cfbbbc0b68L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 4; } return 97; } + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x3b414060001000L) != 0L || (active11 & 0x860044409012L) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x1000a880800000L) != 0L || (active11 & 0x200140L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0xbfe03c171e75effeL) != 0L || (active11 & 0x79cfbfdc0a28L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 5; } return 97; } - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x3e4000070241e000L) != 0L || (active11 & 0x318200080a00L) != 0L) return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x81a03c101c340ffeL) != 0L || (active11 & 0x484dbff40028L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 6; } return 97; } - return -1; - case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x444020004L) != 0L) - return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229bf80010L) != 0L) + return -1; + case 7: + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0xa1003c001c05cffaL) != 0L || (active11 & 0x484537f00020L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 7; } return 97; } + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0xa0001000300004L) != 0L || (active11 & 0x888040008L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208be80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x20003c001805c87aL) != 0L || (active11 & 0x484117d00020L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 8; } return 97; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x8100000004000780L) != 0L || (active11 & 0x420200000L) != 0L) return 97; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200081680010L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x2000000000040100L) != 0L || (active11 & 0x84015000000L) != 0L) + return 97; + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x3c001801cc7aL) != 0L || (active11 & 0x400102d00020L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 9; } return 97; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) - return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x81400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x102800000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x3c001001c402L) != 0L || (active11 & 0x400000500020L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 10; } return 97; } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x3c0010014472L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 11; } return 97; } - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x100020L) != 0L) return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x3c0000014472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 12; return 97; } @@ -5827,9 +5838,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 97; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x3c0000004472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 13; return 97; } @@ -5837,19 +5848,19 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 14; return 97; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 15; } return 97; @@ -5858,11 +5869,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 16; } return 97; @@ -5873,9 +5884,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 17; return 97; } @@ -5883,20 +5894,20 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 18; } return 97; } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 19; return 97; } @@ -5906,27 +5917,27 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 20; return 97; } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 21; return 97; } - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + if ((active2 & 0x2000L) != 0L || (active10 & 0x180000000020L) != 0L) return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 22; return 97; } @@ -5934,39 +5945,39 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 23: - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x200000000040L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x40000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 23; return 97; } return -1; case 24: - if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) + if ((active6 & 0x20000000L) != 0L || (active10 & 0x40000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 24; return 97; } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 25; return 97; } - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x400000L) != 0L) return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 26; return 97; } @@ -5974,9 +5985,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 27; return 97; } @@ -5984,17 +5995,17 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 28; return 97; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 29; return 97; } @@ -6002,17 +6013,17 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 30; return 97; } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 31; return 97; } @@ -6020,9 +6031,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 32; return 97; } @@ -6049,74 +6060,76 @@ private final int jjMoveStringLiteralDfa0_0() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 34: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 799); case 36: - return jjStartNfaWithStates_0(0, 801, 97); + return jjStartNfaWithStates_0(0, 804, 97); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 794); + case 38: + return jjStopAtPos(0, 802); case 39: - return jjStartNfaWithStates_0(0, 797, 63); + return jjStartNfaWithStates_0(0, 798, 63); case 40: - return jjStopAtPos(0, 766); - case 41: return jjStopAtPos(0, 767); + case 41: + return jjStopAtPos(0, 768); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 789); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 779); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 790; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 778; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x480000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 777); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000a0000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); - case 62: jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + case 62: + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 783); case 91: - return jjStartNfaWithStates_0(0, 774, 96); + return jjStartNfaWithStates_0(0, 775, 96); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 776); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 801); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000300000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_0(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa000c00000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14001800000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -6129,67 +6142,67 @@ private final int jjMoveStringLiteralDfa0_0() return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140020000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x400000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x880000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x40000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x100000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x8a000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x800000040000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff8000000000000L, 0x4000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x18401fffL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x6000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); case 123: - return jjStartNfaWithStates_0(0, 772, 94); + return jjStartNfaWithStates_0(0, 773, 94); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 800; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 774); case 126: return jjStopAtPos(0, 2); default : @@ -6206,55 +6219,59 @@ private final int jjMoveStringLiteralDfa1_0(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x400000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 814; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x80000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x100000000000L) != 0L) + return jjStopAtPos(1, 812); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x2000000000L) != 0L) + return jjStopAtPos(1, 805); + break; + case 60: + if ((active12 & 0x800000000L) != 0L) + return jjStopAtPos(1, 803); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) + if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); - else if ((active12 & 0x80000L) != 0L) - return jjStopAtPos(1, 787); + else if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 62: - if ((active12 & 0x40000L) != 0L) - return jjStopAtPos(1, 786); - else if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(1, 790); - else if ((active12 & 0x8000000L) != 0L) - return jjStopAtPos(1, 795); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); + else if ((active12 & 0x800000L) != 0L) + return jjStopAtPos(1, 791); + else if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 65: case 97: - return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x200443c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0xff8000000000000L, active11, 0x400887880000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_0(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x2000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_0(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xb000000002000000L, active11, 0x10800004c003L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -6262,18 +6279,18 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedKind = 383; jjmatchedPos = 1; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(1, 720, 97); - return jjMoveStringLiteralDfa2_0(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(1, 721, 97); + return jjMoveStringLiteralDfa2_0(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); case 71: case 103: return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0x1cL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x4000000000000000L, active11, 0x10000003e0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6282,7 +6299,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_0(active0, 0x80000001f000L, active1, 0xf000L, active2, 0xc00000000000000L, active3, 0x8000400006000000L, active4, 0L, active5, 0L, active6, 0x1c00000000002L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x1000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x2000L, active12, 0L); case 78: case 110: if ((active4 & 0x10L) != 0L) @@ -6297,7 +6314,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ffc000000L, active11, 0x200160000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -6315,10 +6332,10 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x814600010400L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0xe000000000L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xfffffffe00000000L, active9, 0x7fffffL, active10, 0L, active11, 0L, active12, 0L); @@ -6329,7 +6346,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xc200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x18401800L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -6342,7 +6359,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f0000000000L, active11, 0x20000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -6350,10 +6367,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x3800000000000L, active11, 0x80000200000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x4000000c00000L, active11, 0x40000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_0(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6366,8 +6383,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(1, 51, 97); return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; default : break; @@ -6386,14 +6403,14 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(2, 811); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_0(2, 8, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x14100c006400L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x10000000ffcL, active11, 0x28201800c800L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -6406,7 +6423,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x10c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x21880000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -6427,14 +6444,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_0(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_0(2, 406, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x8000002020000000L, active11, 0x40000020L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_0(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_0(2, 388, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0x40003e0000401000L, active11, 0x4000000001fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -6442,14 +6459,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x3800000000000L, active11, 0x100000100000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_0(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_0(2, 301, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6457,7 +6474,7 @@ else if ((active4 & 0x200000000000L) != 0L) case 105: if ((active6 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(2, 432, 97); - return jjMoveStringLiteralDfa3_0(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x44000c007e000L, active11, 0x401000L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6476,14 +6493,14 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedKind = 545; jjmatchedPos = 2; } - else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(2, 716, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa82000000L, active12, 0L); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(2, 717, 97); + return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x38000000000000L, active11, 0x1504000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_0(2, 616, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x10000040000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -6491,10 +6508,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x4000010040L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_0(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x200000L, active12, 0L); case 80: case 112: if ((active3 & 0x4000L) != 0L) @@ -6506,7 +6523,7 @@ else if ((active3 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(2, 250, 97); else if ((active5 & 0x8L) != 0L) return jjStartNfaWithStates_0(2, 323, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x4201000002L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6522,7 +6539,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x3fc0000000000000L, active11, 0x8080000400L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -6530,7 +6547,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x9002000000L, active11, 0x800000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -6556,7 +6573,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x800002000380L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -6582,7 +6599,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -6599,7 +6616,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x20000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6622,15 +6639,15 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, case 45: return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000000L, active11, 0L); - case 51: return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); + case 51: + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0L); case 56: - if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(3, 686, 97); + if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(3, 687, 97); break; case 95: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0xc0000000200002L, active11, 0x400000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -6640,14 +6657,14 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_0(3, 285, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400041000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x2400001000L, active11, 0x800082000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_0(3, 47, 97); else if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_0(3, 78, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000800000L, active11, 0L); case 67: case 99: if ((active2 & 0x4000000000L) != 0L) @@ -6660,7 +6677,7 @@ else if ((active3 & 0x800L) != 0L) jjmatchedKind = 203; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x100000002000000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x200000002000000L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) @@ -6675,9 +6692,9 @@ else if ((active7 & 0x20L) != 0L) jjmatchedKind = 453; jjmatchedPos = 3; } - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 689, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); + else if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 690, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x40L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) @@ -6722,9 +6739,9 @@ else if ((active10 & 0x80000L) != 0L) return jjStartNfaWithStates_0(3, 659, 97); else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_0(3, 664, 97); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(3, 719, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(3, 720, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0xc820000000L, active11, 0x40000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -6734,7 +6751,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x1000001e000L, active11, 0x200000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -6743,29 +6760,29 @@ else if ((active2 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_0(3, 185, 97); else if ((active6 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(3, 420, 97); - else if ((active11 & 0x40L) != 0L) + else if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 710; + jjmatchedKind = 711; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1800300L); case 73: case 105: - return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x400001200000004L, active11, 0x100100000L); case 75: case 107: if ((active7 & 0x10L) != 0L) return jjStartNfaWithStates_0(3, 452, 97); else if ((active8 & 0x80L) != 0L) return jjStartNfaWithStates_0(3, 519, 97); - else if ((active10 & 0x8000000000000000L) != 0L) + else if ((active11 & 0x1L) != 0L) { - jjmatchedKind = 703; + jjmatchedKind = 704; jjmatchedPos = 3; } - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_0(3, 713, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_0(3, 714, 97); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80002L); case 76: case 108: if ((active0 & 0x20000000000000L) != 0L) @@ -6787,9 +6804,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_0(3, 455, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(3, 739, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(3, 740, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x200000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -6799,7 +6816,7 @@ else if ((active10 & 0x20000L) != 0L) jjmatchedKind = 657; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x100000L); + return jjMoveStringLiteralDfa4_0(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x200000L); case 78: case 110: if ((active4 & 0x40000000L) != 0L) @@ -6815,28 +6832,28 @@ else if ((active6 & 0x800000000000L) != 0L) return jjStartNfaWithStates_0(3, 431, 97); else if ((active9 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(3, 626, 97); - else if ((active11 & 0x2L) != 0L) + else if ((active11 & 0x4L) != 0L) { - jjmatchedKind = 705; + jjmatchedKind = 706; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(3, 740, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(3, 741, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x8000400100100ff8L, active11, 0x20000000008L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_0(3, 279, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x400000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_0(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(3, 537, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x800c020400L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x10018040800L); case 81: case 113: return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -6862,17 +6879,17 @@ else if ((active6 & 0x40000L) != 0L) jjmatchedKind = 402; jjmatchedPos = 3; } - else if ((active10 & 0x10000000000L) != 0L) + else if ((active10 & 0x20000000000L) != 0L) { - jjmatchedKind = 680; + jjmatchedKind = 681; jjmatchedPos = 3; } - else if ((active11 & 0x2000L) != 0L) + else if ((active11 & 0x4000L) != 0L) { - jjmatchedKind = 717; + jjmatchedKind = 718; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x3c0000000000L, active11, 0x140020008010L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -6883,7 +6900,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_0(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_0(3, 628, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x3000000000400000L, active11, 0x800000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -6903,27 +6920,27 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_0(3, 598, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x84000401020L); case 85: case 117: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x38000000000000L, active11, 0x4000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(3, 442, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x8000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) return jjStartNfaWithStates_0(3, 533, 97); - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 701, 97); + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 702, 97); return jjMoveStringLiteralDfa4_0(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) return jjStartNfaWithStates_0(3, 389, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x800000000000000L, active11, 0L); default : break; } @@ -6941,18 +6958,18 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 688, 97); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 689, 97); break; case 54: - if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(4, 687, 97); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 688, 97); break; case 95: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0xd000000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x3c0000040000L, active11, 0x1a000000L); case 65: case 97: - return jjMoveStringLiteralDfa5_0(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x400000002000000L, active11, 0L); case 66: case 98: if ((active5 & 0x40000000000L) != 0L) @@ -6960,9 +6977,9 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(4, 744, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(4, 745, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x400000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -7009,21 +7026,21 @@ else if ((active9 & 0x400000000000L) != 0L) jjmatchedKind = 622; jjmatchedPos = 4; } - else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(4, 679, 97); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(4, 680, 97); + else if ((active10 & 0x8000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 691; jjmatchedPos = 4; } - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_0(4, 707, 97); - else if ((active11 & 0x800L) != 0L) + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_0(4, 708, 97); + else if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 715; + jjmatchedKind = 716; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x80002e00004L); + return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x8030000000000000L, active11, 0x100005c00008L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -7031,9 +7048,9 @@ else if ((active11 & 0x800L) != 0L) return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(4, 685, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + if ((active10 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(4, 686, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100001e000L, active11, 0x400000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -7052,10 +7069,10 @@ else if ((active5 & 0x80000000L) != 0L) jjmatchedKind = 351; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000000L, active11, 0x20L); case 73: case 105: - return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x3900000000000000L, active11, 0x8c200200100L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -7076,9 +7093,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(4, 750, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(4, 751, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x80040000L); case 77: case 109: return jjMoveStringLiteralDfa5_0(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -7095,10 +7112,10 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_0(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(4, 670, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x100100000L); case 79: case 111: - return jjMoveStringLiteralDfa5_0(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); + return jjMoveStringLiteralDfa5_0(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x240L); case 80: case 112: if ((active3 & 0x8000000000000L) != 0L) @@ -7106,7 +7123,7 @@ else if ((active10 & 0x40000000L) != 0L) jjmatchedKind = 243; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x40000000000000L, active11, 0x800L); case 82: case 114: if ((active0 & 0x800L) != 0L) @@ -7136,9 +7153,9 @@ else if ((active6 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_0(4, 444, 97); else if ((active10 & 0x20000000L) != 0L) return jjStartNfaWithStates_0(4, 669, 97); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(4, 677, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); + else if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(4, 678, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x8000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) @@ -7155,11 +7172,11 @@ else if ((active7 & 0x40L) != 0L) return jjStartNfaWithStates_0(4, 454, 97); else if ((active8 & 0x100000L) != 0L) return jjStartNfaWithStates_0(4, 532, 97); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_0(4, 704, 97); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 718, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); + else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_0(4, 705, 97); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(4, 719, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x80000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) @@ -7192,10 +7209,10 @@ else if ((active9 & 0x800000L) != 0L) return jjStartNfaWithStates_0(4, 599, 97); else if ((active10 & 0x1000L) != 0L) return jjStartNfaWithStates_0(4, 652, 97); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x2000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x10000080000L); case 86: case 118: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -7203,11 +7220,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_0(4, 14, 97); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x800000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 733, 97); + if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(4, 734, 97); return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -7222,9 +7239,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_0(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_0(4, 198, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(4, 745, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(4, 746, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200020000000L); case 90: case 122: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -7245,7 +7262,7 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x20000000000000L, active11, 0x5c00020L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -7253,7 +7270,7 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, jjmatchedKind = 507; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x140000000740078L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_0(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x280000000740078L, active11, 0x40000L); case 66: case 98: return jjMoveStringLiteralDfa6_0(active0, 0xc00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7268,7 +7285,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(5, 602, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x8000200000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -7284,7 +7301,7 @@ else if ((active8 & 0x8L) != 0L) jjmatchedKind = 515; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x1e0010000000L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x3c0010000000L, active11, 0L); case 69: case 101: if ((active0 & 0x4000000000L) != 0L) @@ -7325,9 +7342,9 @@ else if ((active10 & 0x800000L) != 0L) return jjStartNfaWithStates_0(5, 663, 97); else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_0(5, 671, 97); - else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(5, 676, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + else if ((active10 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(5, 677, 97); + return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x100000800L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -7337,20 +7354,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_0(5, 247, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x400000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_0(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_0(5, 514, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_0(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + return jjMoveStringLiteralDfa6_0(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x100000L); case 75: case 107: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -7359,7 +7376,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_0(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_0(5, 513, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x80000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -7393,17 +7410,17 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedKind = 478; jjmatchedPos = 5; } - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_0(5, 711, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + else if ((active11 & 0x100L) != 0L) + return jjStartNfaWithStates_0(5, 712, 97); + return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0xd00001004000000L, active11, 0x4200000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x3040000200000000L, active11, 0x800000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(5, 490, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x20080000L); case 81: case 113: return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7427,7 +7444,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x2000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -7444,9 +7461,9 @@ else if ((active5 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_0(5, 382, 97); else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_0(5, 398, 97); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 691, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 692, 97); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x8000000000000000L, active11, 0x180000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -7483,21 +7500,21 @@ else if ((active9 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(5, 611, 97); else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(5, 675, 97); - else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(5, 678, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(5, 679, 97); + return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x10000000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_0(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa6_0(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x200L); case 86: case 118: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x8000004L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x10000008L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(5, 282, 97); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_0(5, 709, 97); + else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_0(5, 710, 97); return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -7515,7 +7532,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -7537,13 +7554,13 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x100000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200008000000L); + return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x100000000000e00L, active11, 0x400010000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20L); case 67: case 99: if ((active2 & 0x40000000000000L) != 0L) @@ -7566,7 +7583,7 @@ else if ((active5 & 0x20L) != 0L) return jjStartNfaWithStates_0(6, 325, 97); else if ((active10 & 0x400000000L) != 0L) return jjStartNfaWithStates_0(6, 674, 97); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x8000000004000000L, active11, 0L); case 69: case 101: if ((active0 & 0x100000000000000L) != 0L) @@ -7604,13 +7621,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(6, 665, 97); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(6, 742, 97); else if ((active11 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(6, 743, 97); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(6, 748, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x45000004L); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(6, 744, 97); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(6, 749, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x3c1000000000L, active11, 0x8a000008L); case 70: case 102: return jjMoveStringLiteralDfa7_0(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7633,21 +7650,21 @@ else if ((active6 & 0x400000000000L) != 0L) return jjStartNfaWithStates_0(6, 430, 97); else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(6, 499, 97); - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 698, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 736, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 699, 97); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(6, 737, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x800000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(6, 50, 97); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 747, 97); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(6, 748, 97); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x400200000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -7673,7 +7690,7 @@ else if ((active6 & 0x40000000L) != 0L) return jjMoveStringLiteralDfa7_0(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_0(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x80000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80000000000L) != 0L) @@ -7699,19 +7716,19 @@ else if ((active8 & 0x10000L) != 0L) } else if ((active10 & 0x100000000L) != 0L) return jjStartNfaWithStates_0(6, 672, 97); - else if ((active10 & 0x800000000000000L) != 0L) + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 699; + jjmatchedKind = 700; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x2000000000000004L, active11, 0x1000000L); case 79: case 111: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x20000000000180L, active11, 0L); case 80: case 112: - if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 693, 97); + if ((active10 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 694, 97); return jjMoveStringLiteralDfa7_0(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: @@ -7737,11 +7754,11 @@ else if ((active10 & 0x2000L) != 0L) jjmatchedKind = 653; jjmatchedPos = 6; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 696, 97); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_0(6, 714, 97); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 697, 97); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_0(6, 715, 97); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x800000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -7754,9 +7771,9 @@ else if ((active7 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(6, 484, 97); else if ((active8 & 0x10L) != 0L) return jjStartNfaWithStates_0(6, 516, 97); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 722, 97); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(6, 723, 97); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x400000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) @@ -7797,14 +7814,14 @@ else if ((active9 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(6, 639, 97); else if ((active10 & 0x200000000L) != 0L) return jjStartNfaWithStates_0(6, 673, 97); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 697, 97); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_0(6, 712, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400120a0000L); + else if ((active10 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 698, 97); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_0(6, 713, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x80024140000L); case 85: case 117: - return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x4000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -7846,7 +7863,7 @@ private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_0(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x8000000000000000L, active11, 0x1000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -7870,8 +7887,10 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(7, 156, 97); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 738, 97); + else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(7, 676, 97); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(7, 739, 97); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -7921,14 +7940,14 @@ else if ((active9 & 0x80L) != 0L) } else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_0(7, 660, 97); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(7, 721, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(7, 722, 97); + return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x20000000L); case 70: case 102: - if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 692, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); + if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 693, 97); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) @@ -7939,7 +7958,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_0(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 642, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x2000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -7947,7 +7966,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x2000000000000000L, active11, 0x80000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7966,9 +7985,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_0(7, 581, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(7, 734, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x8000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(7, 735, 97); + return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x10000000L); case 77: case 109: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -7981,22 +8000,22 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x400400000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 694, 97); + if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 695, 97); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(7, 554, 97); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_0(7, 706, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_0(7, 707, 97); + return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x100000000040180L, active11, 0x800000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -8018,7 +8037,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 615, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x100000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -8031,10 +8050,10 @@ else if ((active8 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(7, 538, 97); else if ((active10 & 0x200000L) != 0L) return jjStartNfaWithStates_0(7, 661, 97); - return jjMoveStringLiteralDfa8_0(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_0(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x200000L); case 85: case 117: - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x20L); case 86: case 118: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); @@ -8064,9 +8083,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_0(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(7, 627, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 730, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(7, 731, 97); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x4500000L); case 90: case 122: return jjMoveStringLiteralDfa8_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -8087,7 +8106,7 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x80000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x100000L); case 65: case 97: return jjMoveStringLiteralDfa9_0(active0, 0x11000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0x300020000L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0xa000L, active9, 0x10000000L, active10, 0x40000L, active11, 0L); @@ -8100,7 +8119,7 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 618, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x80000000020L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -8109,8 +8128,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_0(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(8, 666, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 732, 97); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(8, 733, 97); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -8178,9 +8197,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(8, 737, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(8, 738, 97); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x400000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -8188,7 +8207,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 42, 97); - return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x81000000L); + return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x3c0010000878L, active11, 0x102000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -8204,7 +8223,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x1000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -8227,10 +8246,10 @@ else if ((active6 & 0x80000000L) != 0L) return jjStartNfaWithStates_0(8, 415, 97); else if ((active6 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_0(8, 439, 97); - return jjMoveStringLiteralDfa9_0(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); + return jjMoveStringLiteralDfa9_0(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x2000000000008000L, active11, 0x400000L); case 79: case 111: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x800000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -8240,7 +8259,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x4000000L); case 81: case 113: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -8292,7 +8311,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2008000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x4010000000L); case 86: case 118: return jjMoveStringLiteralDfa9_0(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -8316,12 +8335,12 @@ else if ((active7 & 0x2000L) != 0L) return jjStartNfaWithStates_0(8, 461, 97); else if ((active9 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_0(8, 625, 97); - else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 695, 97); - else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 702, 97); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(8, 724, 97); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 696, 97); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 703, 97); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(8, 725, 97); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -8355,7 +8374,7 @@ else if ((active2 & 0x400L) != 0L) return jjStartNfaWithStates_0(9, 138, 97); else if ((active9 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_0(9, 631, 97); - return jjMoveStringLiteralDfa10_0(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa10_0(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) @@ -8389,13 +8408,13 @@ else if ((active9 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(9, 612, 97); else if ((active9 & 0x800000000000L) != 0L) return jjStartNfaWithStates_0(9, 623, 97); - else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(9, 727, 97); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(9, 729, 97); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 731, 97); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(9, 728, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(9, 730, 97); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(9, 732, 97); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x400000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -8404,8 +8423,8 @@ else if ((active8 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(9, 548, 97); else if ((active9 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(9, 606, 97); - else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 700, 97); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 701, 97); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -8417,7 +8436,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 107: if ((active2 & 0x400000000L) != 0L) return jjStartNfaWithStates_0(9, 162, 97); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80010L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100020L); case 76: case 108: return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x1000000000000L, active10, 0L, active11, 0L); @@ -8433,10 +8452,10 @@ else if ((active10 & 0x1000000000000000L) != 0L) jjmatchedKind = 98; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x3c0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x2000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -8467,10 +8486,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_0(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_0(9, 648, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(9, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(9, 746, 97); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(9, 742, 97); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(9, 747, 97); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -8490,7 +8509,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x800000L); case 86: case 118: return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -8517,7 +8536,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); default : break; } @@ -8554,7 +8573,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_0(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_0(10, 667, 97); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x400000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -8575,9 +8594,9 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_0(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(10, 624, 97); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(10, 735, 97); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(10, 736, 97); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x3c0000000000L, active11, 0x100020L); case 70: case 102: return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -8592,7 +8611,7 @@ else if ((active11 & 0x80000000L) != 0L) return jjStartNfaWithStates_0(10, 67, 97); else if ((active6 & 0x400000000L) != 0L) return jjStartNfaWithStates_0(10, 418, 97); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 73: case 105: return jjMoveStringLiteralDfa11_0(active0, 0x21000000000L, active1, 0x800000002000L, active2, 0x1000L, active3, 0x2L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000000L, active10, 0L, active11, 0L); @@ -8619,8 +8638,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_0(10, 651, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 728, 97); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(10, 729, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -8629,8 +8648,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(10, 604, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(10, 726, 97); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(10, 727, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -8706,7 +8725,7 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -8722,7 +8741,7 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, case 100: if ((active9 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_0(11, 633, 97); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) @@ -8807,7 +8826,7 @@ else if ((active9 & 0x1000L) != 0L) return jjStartNfaWithStates_0(11, 588, 97); else if ((active9 & 0x80000L) != 0L) return jjStartNfaWithStates_0(11, 595, 97); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x400000L); case 83: case 115: return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x70L, active11, 0L); @@ -8819,16 +8838,16 @@ else if ((active5 & 0x40000L) != 0L) return jjStartNfaWithStates_0(11, 338, 97); else if ((active9 & 0x40L) != 0L) return jjStartNfaWithStates_0(11, 582, 97); - else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_0(11, 708, 97); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_0(11, 709, 97); return jjMoveStringLiteralDfa12_0(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x100000000L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(11, 723, 97); + if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(11, 724, 97); break; default : break; @@ -8847,7 +8866,7 @@ private final int jjMoveStringLiteralDfa12_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_0(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x1e0000000070L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x3c0000000070L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x6800000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -8903,12 +8922,12 @@ else if ((active3 & 0x2L) != 0L) return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_0(12, 584, 97); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -8954,7 +8973,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_0(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_0(13, 656, 97); - return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9007,7 +9026,7 @@ else if ((active9 & 0x4000L) != 0L) case 110: if ((active4 & 0x4L) != 0L) return jjStartNfaWithStates_0(13, 258, 97); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x400000L); case 79: case 111: return jjMoveStringLiteralDfa14_0(active0, 0x20000000000L, active1, 0x100000000000000L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); @@ -9028,7 +9047,7 @@ else if ((active9 & 0x4000L) != 0L) case 116: if ((active7 & 0x8000L) != 0L) return jjStartNfaWithStates_0(13, 463, 97); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x3c0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) @@ -9095,7 +9114,7 @@ else if ((active10 & 0x4000L) != 0L) break; case 73: case 105: - return jjMoveStringLiteralDfa15_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa15_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9122,7 +9141,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_0(14, 592, 97); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -9147,7 +9166,7 @@ else if ((active10 & 0x400L) != 0L) break; case 89: case 121: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); default : break; } @@ -9214,7 +9233,7 @@ else if ((active2 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x100000000L) != 0L) @@ -9224,7 +9243,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -9238,7 +9257,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); default : break; } @@ -9261,12 +9280,12 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, case 97: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(16, 103, 97); - return jjMoveStringLiteralDfa17_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa17_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) return jjStartNfaWithStates_0(16, 482, 97); - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) @@ -9277,7 +9296,7 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -9341,7 +9360,7 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9377,7 +9396,7 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 86: case 118: return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -9404,7 +9423,7 @@ private final int jjMoveStringLiteralDfa18_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x60000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc0000000000L, active11, 0L); case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) @@ -9429,7 +9448,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 76: case 108: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9438,7 +9457,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -9447,7 +9466,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x4000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 84: case 116: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0x80000000L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x20L, active11, 0L); @@ -9473,10 +9492,10 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, case 97: if ((active1 & 0x100L) != 0L) return jjStartNfaWithStates_0(19, 72, 97); - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x140000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x200000000000L, active11, 0L); case 68: case 100: return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9490,7 +9509,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x80000000000L, active11, 0x400000400000L); case 82: case 114: return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9534,7 +9553,7 @@ private final int jjMoveStringLiteralDfa20_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0x20000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x80000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000000L) != 0L) @@ -9551,13 +9570,13 @@ else if ((active2 & 0x100000000000000L) != 0L) case 104: if ((active7 & 0x200000000L) != 0L) return jjStartNfaWithStates_0(20, 481, 97); - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x200000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x100000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 79: case 111: return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9566,7 +9585,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x40000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -9589,10 +9608,10 @@ private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 65: case 97: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000040L, active11, 0L); case 67: case 99: return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9605,11 +9624,11 @@ private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, case 101: if ((active2 & 0x2000L) != 0L) return jjStartNfaWithStates_0(21, 141, 97); - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(21, 682, 97); else if ((active10 & 0x80000000000L) != 0L) return jjStartNfaWithStates_0(21, 683, 97); - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); + else if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(21, 684, 97); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x200000000000L, active11, 0L); case 70: case 102: return jjMoveStringLiteralDfa22_0(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9668,10 +9687,10 @@ private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x100000000000L, active11, 0x200000L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x200000000000L, active11, 0x400000L); case 78: case 110: return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); @@ -9683,7 +9702,7 @@ private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -9710,8 +9729,8 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(23, 684, 97); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(23, 685, 97); break; case 67: case 99: @@ -9735,7 +9754,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x40000000000L, active11, 0x400000400000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -9770,7 +9789,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, break; case 68: case 100: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000000L, active10, 0L, active11, 0L); @@ -9779,8 +9798,8 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(24, 681, 97); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(24, 682, 97); break; case 73: case 105: @@ -9802,7 +9821,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); default : break; } @@ -9833,8 +9852,8 @@ private final int jjMoveStringLiteralDfa25_0(long old1, long active1, long old2, case 101: if ((active8 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(25, 563, 97); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(25, 725, 97); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(25, 726, 97); break; case 71: case 103: @@ -9856,7 +9875,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -9877,7 +9896,7 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -9925,7 +9944,7 @@ private final int jjMoveStringLiteralDfa27_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9952,7 +9971,7 @@ private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9977,7 +9996,7 @@ private final int jjMoveStringLiteralDfa29_0(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_0(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -10002,7 +10021,7 @@ private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x400000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -10028,7 +10047,7 @@ private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_0(31, 129, 97); - return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x400000000000L); default : break; } @@ -10047,7 +10066,7 @@ private final int jjMoveStringLiteralDfa32_0(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_0(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_0(active11, 0x400000000000L); default : break; } @@ -10066,8 +10085,8 @@ private final int jjMoveStringLiteralDfa33_0(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(33, 749, 97); + if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(33, 750, 97); break; default : break; @@ -10104,21 +10123,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 829) + kind = 829; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10131,8 +10150,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -10145,8 +10164,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -10161,8 +10180,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -10184,8 +10203,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -10194,8 +10213,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -10210,8 +10229,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -10232,8 +10251,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 759) + kind = 759; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -10243,8 +10262,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -10269,8 +10288,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 758) + kind = 758; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -10294,8 +10313,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 760) + kind = 760; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -10313,30 +10332,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 762) + kind = 762; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 815) + kind = 815; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 815) + kind = 815; break; case 27: if (curChar == 13) @@ -10349,15 +10368,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -10375,8 +10394,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -10386,26 +10405,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 829) + kind = 829; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAdd(44); break; case 45: @@ -10419,8 +10438,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 753) + kind = 753; jjCheckNAdd(48); break; case 49: @@ -10434,22 +10453,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAddStates(35, 37); break; case 54: @@ -10467,8 +10486,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); break; case 58: @@ -10488,12 +10507,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 759) + kind = 759; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 766) + kind = 766; break; case 67: case 69: @@ -10509,8 +10528,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 761) + kind = 761; break; case 72: if (curChar == 38) @@ -10533,8 +10552,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 826) + kind = 826; break; case 79: if (curChar == 32) @@ -10561,14 +10580,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 813) + kind = 813; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; default : break; @@ -10591,8 +10610,8 @@ else if (curChar == 91) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -10613,8 +10632,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10625,8 +10644,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10637,8 +10656,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10655,8 +10674,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10667,8 +10686,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -10679,13 +10698,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 769) + kind = 769; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 770) + kind = 770; } break; case 63: @@ -10736,8 +10755,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 29: @@ -10757,21 +10776,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 93 && kind > 816) - kind = 816; + if (curChar == 93 && kind > 819) + kind = 819; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -10781,15 +10800,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -10814,32 +10833,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 769) + kind = 769; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 770) + kind = 770; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 771) + kind = 771; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 772) + kind = 772; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 813) + kind = 813; break; default : break; } @@ -10859,8 +10878,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10869,8 +10888,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10881,8 +10900,8 @@ else if ((0x1000000010L & l) != 0L) case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10893,8 +10912,8 @@ else if ((0x1000000010L & l) != 0L) case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10910,8 +10929,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10922,8 +10941,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10958,22 +10977,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -10983,15 +11002,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -11007,8 +11026,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 813) + kind = 813; break; default : break; } @@ -11052,7 +11071,7 @@ private final int jjMoveNfa_6(int startState, int curPos) { case 0: if (curChar == 47) - kind = 814; + kind = 817; break; case 1: if (curChar == 42) @@ -11106,203 +11125,203 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) - { - jjmatchedKind = 821; - return 16; - } - if ((active12 & 0x10L) != 0L) + if ((active12 & 0x20L) != 0L) return 94; - if ((active12 & 0x20000000L) != 0L) + if ((active12 & 0x40000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active12 & 0x480002000000L) != 0L) + return 92; + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x400000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 95; } - if ((active12 & 0x90001000000L) != 0L) - return 92; - if ((active11 & 0x1000L) != 0L) + if ((active11 & 0x2000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 1; } - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ef27efffL) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x20000000L) != 0L) + { + jjmatchedKind = 824; + return 16; + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x635001b00000L) != 0L || (active12 & 0x1000000000L) != 0L) + return 96; + if ((active12 & 0x20000400L) != 0L) + return 97; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfff8000001ffffffL) != 0L || (active11 & 0x9cabde4fdfffL) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 96; } - if ((active10 & 0x3fffffe000000L) != 0L) + if ((active10 & 0x7fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 96; - if ((active12 & 0x10000200L) != 0L) - return 97; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0xc00000L) != 0L) return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active12 & 0x480000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x820540220000L) != 0L) + return 96; + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x7dfabfddffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 1; } return 96; } - if ((active12 & 0x90000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) - return 96; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x500000002000L) != 0L) + return 96; + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0xaffffffddfffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 2; } return 96; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) - return 96; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180100e3c7L) != 0L) - return 96; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fefe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0xbffb41fffef1fffeL) != 0L || (active11 & 0xffcffdfc1870L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 3; } return 96; } + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0x4004be00010e0000L) != 0L || (active11 & 0x300201c78fL) != 0L) + return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430022204809L) != 0L) - return 96; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7ddde05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0xbfc03cbf9ef5effeL) != 0L || (active11 & 0x79cfbbbc0b68L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 4; } return 96; } + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x3b414060001000L) != 0L || (active11 & 0x860044409012L) != 0L) + return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x1000a880800000L) != 0L || (active11 & 0x200140L) != 0L) + return 96; + if ((active2 & 0x8000000000000000L) != 0L) + return 98; + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0xbfe03c171e75effeL) != 0L || (active11 & 0x79cfbfdc0a28L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 5; } return 96; } - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 96; - if ((active2 & 0x8000000000000000L) != 0L) - return 98; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x3e4000070241e000L) != 0L || (active11 & 0x318200080a00L) != 0L) return 96; - if ((active2 & 0x8000000000000000L) != 0L) - return 98; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x81a03c101c340ffeL) != 0L || (active11 & 0x484dbff40028L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 6; } return 96; } - return -1; - case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x444020004L) != 0L) - return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229bf80010L) != 0L) + return -1; + case 7: + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0xa1003c001c05cffaL) != 0L || (active11 & 0x484537f00020L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 7; } return 96; } + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0xa0001000300004L) != 0L || (active11 & 0x888040008L) != 0L) + return 96; + if ((active2 & 0x8000000000000000L) != 0L) + return 98; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208be80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x20003c001805c87aL) != 0L || (active11 & 0x484117d00020L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 8; } return 96; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x8100000004000780L) != 0L || (active11 & 0x420200000L) != 0L) return 96; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200081680010L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x2000000000040100L) != 0L || (active11 & 0x84015000000L) != 0L) + return 96; + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x3c001801cc7aL) != 0L || (active11 & 0x400102d00020L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 9; } return 96; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) - return 96; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x81400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x102800000L) != 0L) return 96; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x3c001001c402L) != 0L || (active11 & 0x400000500020L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 10; } return 96; } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x3c0010014472L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 11; } return 96; } - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x100020L) != 0L) return 96; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x3c0000014472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 12; return 96; } @@ -11312,9 +11331,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 96; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x3c0000004472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 13; return 96; } @@ -11322,19 +11341,19 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 96; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 14; return 96; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 15; } return 96; @@ -11343,11 +11362,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 16; } return 96; @@ -11358,9 +11377,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 17; return 96; } @@ -11368,20 +11387,20 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 18; } return 96; } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 19; return 96; } @@ -11391,27 +11410,27 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 20; return 96; } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 21; return 96; } - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + if ((active2 & 0x2000L) != 0L || (active10 & 0x180000000020L) != 0L) return 96; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 22; return 96; } @@ -11419,39 +11438,39 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 23: - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x200000000040L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x40000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 23; return 96; } return -1; case 24: - if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) + if ((active6 & 0x20000000L) != 0L || (active10 & 0x40000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 24; return 96; } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 25; return 96; } - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x400000L) != 0L) return 96; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 26; return 96; } @@ -11459,9 +11478,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 27; return 96; } @@ -11469,17 +11488,17 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 28; return 96; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 29; return 96; } @@ -11487,17 +11506,17 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 96; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 30; return 96; } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 31; return 96; } @@ -11505,9 +11524,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 32; return 96; } @@ -11534,74 +11553,76 @@ private final int jjMoveStringLiteralDfa0_2() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 34: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 799); case 36: - return jjStartNfaWithStates_2(0, 801, 96); + return jjStartNfaWithStates_2(0, 804, 96); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 794); + case 38: + return jjStopAtPos(0, 802); case 39: - return jjStartNfaWithStates_2(0, 797, 63); + return jjStartNfaWithStates_2(0, 798, 63); case 40: - return jjStopAtPos(0, 766); - case 41: return jjStopAtPos(0, 767); + case 41: + return jjStopAtPos(0, 768); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 789); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 779); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 790; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 778; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x480000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 777); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000a0000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); - case 62: jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + case 62: + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 783); case 91: - return jjStopAtPos(0, 774); - case 93: return jjStopAtPos(0, 775); + case 93: + return jjStopAtPos(0, 776); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 801); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000300000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_2(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa000c00000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14001800000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -11614,67 +11635,67 @@ private final int jjMoveStringLiteralDfa0_2() return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140020000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x400000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x880000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x40000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x100000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x8a000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x800000040000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff8000000000000L, 0x4000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x18401fffL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x6000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); case 123: - return jjStartNfaWithStates_2(0, 772, 94); + return jjStartNfaWithStates_2(0, 773, 94); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 800; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 774); case 126: return jjStopAtPos(0, 2); default : @@ -11691,55 +11712,59 @@ private final int jjMoveStringLiteralDfa1_2(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x400000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 814; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x80000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x100000000000L) != 0L) + return jjStopAtPos(1, 812); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x2000000000L) != 0L) + return jjStopAtPos(1, 805); + break; + case 60: + if ((active12 & 0x800000000L) != 0L) + return jjStopAtPos(1, 803); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) + if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); - else if ((active12 & 0x80000L) != 0L) - return jjStopAtPos(1, 787); + else if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 62: - if ((active12 & 0x40000L) != 0L) - return jjStopAtPos(1, 786); - else if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(1, 790); - else if ((active12 & 0x8000000L) != 0L) - return jjStopAtPos(1, 795); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); + else if ((active12 & 0x800000L) != 0L) + return jjStopAtPos(1, 791); + else if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 65: case 97: - return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x200443c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0xff8000000000000L, active11, 0x400887880000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_2(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x2000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_2(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xb000000002000000L, active11, 0x10800004c003L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -11747,18 +11772,18 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedKind = 383; jjmatchedPos = 1; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(1, 720, 96); - return jjMoveStringLiteralDfa2_2(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(1, 721, 96); + return jjMoveStringLiteralDfa2_2(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); case 71: case 103: return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0x1cL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x4000000000000000L, active11, 0x10000003e0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11767,7 +11792,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_2(active0, 0x80000001f000L, active1, 0xf000L, active2, 0xc00000000000000L, active3, 0x8000400006000000L, active4, 0L, active5, 0L, active6, 0x1c00000000002L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x1000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x2000L, active12, 0L); case 78: case 110: if ((active4 & 0x10L) != 0L) @@ -11782,7 +11807,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ffc000000L, active11, 0x200160000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -11800,10 +11825,10 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x814600010400L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0xe000000000L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x8L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xfffffffe00000000L, active9, 0x7fffffL, active10, 0L, active11, 0L, active12, 0L); @@ -11814,7 +11839,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xc200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x18401800L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -11827,7 +11852,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f0000000000L, active11, 0x20000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -11835,10 +11860,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x3800000000000L, active11, 0x80000200000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x4000000c00000L, active11, 0x40000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_2(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11851,8 +11876,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(1, 51, 96); return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; default : break; @@ -11871,14 +11896,14 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(2, 811); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_2(2, 8, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x14100c006400L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x10000000ffcL, active11, 0x28201800c800L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -11891,7 +11916,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x10c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x21880000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -11912,14 +11937,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_2(2, 385, 96); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_2(2, 406, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x8000002020000000L, active11, 0x40000020L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_2(2, 20, 96); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_2(2, 388, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0x40003e0000401000L, active11, 0x4000000001fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -11927,14 +11952,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x3800000000000L, active11, 0x100000100000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_2(2, 37, 96); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_2(2, 301, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11942,7 +11967,7 @@ else if ((active4 & 0x200000000000L) != 0L) case 105: if ((active6 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(2, 432, 96); - return jjMoveStringLiteralDfa3_2(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x44000c007e000L, active11, 0x401000L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11961,14 +11986,14 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedKind = 545; jjmatchedPos = 2; } - else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(2, 716, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa82000000L, active12, 0L); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(2, 717, 96); + return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x38000000000000L, active11, 0x1504000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_2(2, 616, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x10000040000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -11976,10 +12001,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x4000010040L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_2(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x200000L, active12, 0L); case 80: case 112: if ((active3 & 0x4000L) != 0L) @@ -11991,7 +12016,7 @@ else if ((active3 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(2, 250, 96); else if ((active5 & 0x8L) != 0L) return jjStartNfaWithStates_2(2, 323, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x4201000002L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -12007,7 +12032,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x3fc0000000000000L, active11, 0x8080000400L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -12015,7 +12040,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x9002000000L, active11, 0x800000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -12041,7 +12066,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x800002000380L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -12067,7 +12092,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -12084,7 +12109,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x20000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -12107,15 +12132,15 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, case 45: return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000000L, active11, 0L); - case 51: return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); + case 51: + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0L); case 56: - if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(3, 686, 96); + if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(3, 687, 96); break; case 95: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0xc0000000200002L, active11, 0x400000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -12125,14 +12150,14 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_2(3, 285, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400041000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x2400001000L, active11, 0x800082000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_2(3, 47, 96); else if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_2(3, 78, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000800000L, active11, 0L); case 67: case 99: if ((active2 & 0x4000000000L) != 0L) @@ -12145,7 +12170,7 @@ else if ((active3 & 0x800L) != 0L) jjmatchedKind = 203; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x100000002000000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x200000002000000L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) @@ -12160,9 +12185,9 @@ else if ((active7 & 0x20L) != 0L) jjmatchedKind = 453; jjmatchedPos = 3; } - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 689, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); + else if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 690, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x40L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) @@ -12207,9 +12232,9 @@ else if ((active10 & 0x80000L) != 0L) return jjStartNfaWithStates_2(3, 659, 96); else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_2(3, 664, 96); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(3, 719, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(3, 720, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0xc820000000L, active11, 0x40000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -12219,7 +12244,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x1000001e000L, active11, 0x200000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -12228,29 +12253,29 @@ else if ((active2 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_2(3, 185, 96); else if ((active6 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(3, 420, 96); - else if ((active11 & 0x40L) != 0L) + else if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 710; + jjmatchedKind = 711; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1800300L); case 73: case 105: - return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x400001200000004L, active11, 0x100100000L); case 75: case 107: if ((active7 & 0x10L) != 0L) return jjStartNfaWithStates_2(3, 452, 96); else if ((active8 & 0x80L) != 0L) return jjStartNfaWithStates_2(3, 519, 96); - else if ((active10 & 0x8000000000000000L) != 0L) + else if ((active11 & 0x1L) != 0L) { - jjmatchedKind = 703; + jjmatchedKind = 704; jjmatchedPos = 3; } - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_2(3, 713, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_2(3, 714, 96); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80002L); case 76: case 108: if ((active0 & 0x20000000000000L) != 0L) @@ -12272,9 +12297,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_2(3, 455, 96); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(3, 739, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(3, 740, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x200000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -12284,7 +12309,7 @@ else if ((active10 & 0x20000L) != 0L) jjmatchedKind = 657; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x100000L); + return jjMoveStringLiteralDfa4_2(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x200000L); case 78: case 110: if ((active4 & 0x40000000L) != 0L) @@ -12300,28 +12325,28 @@ else if ((active6 & 0x800000000000L) != 0L) return jjStartNfaWithStates_2(3, 431, 96); else if ((active9 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(3, 626, 96); - else if ((active11 & 0x2L) != 0L) + else if ((active11 & 0x4L) != 0L) { - jjmatchedKind = 705; + jjmatchedKind = 706; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(3, 740, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(3, 741, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x8000400100100ff8L, active11, 0x20000000008L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(3, 240, 96); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_2(3, 279, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x400000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_2(3, 181, 96); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(3, 537, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x800c020400L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x10018040800L); case 81: case 113: return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -12347,17 +12372,17 @@ else if ((active6 & 0x40000L) != 0L) jjmatchedKind = 402; jjmatchedPos = 3; } - else if ((active10 & 0x10000000000L) != 0L) + else if ((active10 & 0x20000000000L) != 0L) { - jjmatchedKind = 680; + jjmatchedKind = 681; jjmatchedPos = 3; } - else if ((active11 & 0x2000L) != 0L) + else if ((active11 & 0x4000L) != 0L) { - jjmatchedKind = 717; + jjmatchedKind = 718; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x3c0000000000L, active11, 0x140020008010L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -12368,7 +12393,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_2(3, 531, 96); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_2(3, 628, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x3000000000400000L, active11, 0x800000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -12388,27 +12413,27 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(3, 419, 96); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_2(3, 598, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x84000401020L); case 85: case 117: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x38000000000000L, active11, 0x4000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(3, 442, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x8000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) return jjStartNfaWithStates_2(3, 533, 96); - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 701, 96); + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 702, 96); return jjMoveStringLiteralDfa4_2(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) return jjStartNfaWithStates_2(3, 389, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x800000000000000L, active11, 0L); default : break; } @@ -12426,18 +12451,18 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 688, 96); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 689, 96); break; case 54: - if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(4, 687, 96); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 688, 96); break; case 95: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0xd000000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x3c0000040000L, active11, 0x1a000000L); case 65: case 97: - return jjMoveStringLiteralDfa5_2(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x400000002000000L, active11, 0L); case 66: case 98: if ((active5 & 0x40000000000L) != 0L) @@ -12445,9 +12470,9 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(4, 744, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(4, 745, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x400000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -12494,21 +12519,21 @@ else if ((active9 & 0x400000000000L) != 0L) jjmatchedKind = 622; jjmatchedPos = 4; } - else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(4, 679, 96); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(4, 680, 96); + else if ((active10 & 0x8000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 691; jjmatchedPos = 4; } - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_2(4, 707, 96); - else if ((active11 & 0x800L) != 0L) + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_2(4, 708, 96); + else if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 715; + jjmatchedKind = 716; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x80002e00004L); + return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x8030000000000000L, active11, 0x100005c00008L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -12516,9 +12541,9 @@ else if ((active11 & 0x800L) != 0L) return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(4, 685, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + if ((active10 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(4, 686, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100001e000L, active11, 0x400000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -12537,10 +12562,10 @@ else if ((active5 & 0x80000000L) != 0L) jjmatchedKind = 351; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000000L, active11, 0x20L); case 73: case 105: - return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x3900000000000000L, active11, 0x8c200200100L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -12561,9 +12586,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(4, 750, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(4, 751, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x80040000L); case 77: case 109: return jjMoveStringLiteralDfa5_2(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -12580,10 +12605,10 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_2(4, 65, 96); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(4, 670, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x100100000L); case 79: case 111: - return jjMoveStringLiteralDfa5_2(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); + return jjMoveStringLiteralDfa5_2(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x240L); case 80: case 112: if ((active3 & 0x8000000000000L) != 0L) @@ -12591,7 +12616,7 @@ else if ((active10 & 0x40000000L) != 0L) jjmatchedKind = 243; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x40000000000000L, active11, 0x800L); case 82: case 114: if ((active0 & 0x800L) != 0L) @@ -12621,9 +12646,9 @@ else if ((active6 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_2(4, 444, 96); else if ((active10 & 0x20000000L) != 0L) return jjStartNfaWithStates_2(4, 669, 96); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(4, 677, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); + else if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(4, 678, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x8000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) @@ -12640,11 +12665,11 @@ else if ((active7 & 0x40L) != 0L) return jjStartNfaWithStates_2(4, 454, 96); else if ((active8 & 0x100000L) != 0L) return jjStartNfaWithStates_2(4, 532, 96); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_2(4, 704, 96); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 718, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); + else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_2(4, 705, 96); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(4, 719, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x80000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) @@ -12677,10 +12702,10 @@ else if ((active9 & 0x800000L) != 0L) return jjStartNfaWithStates_2(4, 599, 96); else if ((active10 & 0x1000L) != 0L) return jjStartNfaWithStates_2(4, 652, 96); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x2000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x10000080000L); case 86: case 118: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -12688,11 +12713,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_2(4, 14, 96); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x800000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 733, 96); + if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(4, 734, 96); return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -12707,9 +12732,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_2(4, 188, 96); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_2(4, 198, 96); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(4, 745, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(4, 746, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200020000000L); case 90: case 122: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -12730,7 +12755,7 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x20000000000000L, active11, 0x5c00020L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -12738,7 +12763,7 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, jjmatchedKind = 507; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x140000000740078L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_2(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x280000000740078L, active11, 0x40000L); case 66: case 98: return jjMoveStringLiteralDfa6_2(active0, 0xc00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -12753,7 +12778,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(5, 447, 96); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(5, 602, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x8000200000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -12769,7 +12794,7 @@ else if ((active8 & 0x8L) != 0L) jjmatchedKind = 515; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x1e0010000000L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x3c0010000000L, active11, 0L); case 69: case 101: if ((active0 & 0x4000000000L) != 0L) @@ -12810,9 +12835,9 @@ else if ((active10 & 0x800000L) != 0L) return jjStartNfaWithStates_2(5, 663, 96); else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_2(5, 671, 96); - else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(5, 676, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + else if ((active10 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(5, 677, 96); + return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x100000800L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -12822,20 +12847,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_2(5, 247, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x400000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_2(5, 310, 96); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_2(5, 514, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_2(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + return jjMoveStringLiteralDfa6_2(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x100000L); case 75: case 107: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -12844,7 +12869,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_2(5, 416, 96); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_2(5, 513, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x80000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -12878,17 +12903,17 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedKind = 478; jjmatchedPos = 5; } - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_2(5, 711, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + else if ((active11 & 0x100L) != 0L) + return jjStartNfaWithStates_2(5, 712, 96); + return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0xd00001004000000L, active11, 0x4200000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x3040000200000000L, active11, 0x800000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(5, 490, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x20080000L); case 81: case 113: return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -12912,7 +12937,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x2000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -12929,9 +12954,9 @@ else if ((active5 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_2(5, 382, 96); else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_2(5, 398, 96); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 691, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 692, 96); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x8000000000000000L, active11, 0x180000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -12968,21 +12993,21 @@ else if ((active9 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(5, 611, 96); else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(5, 675, 96); - else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(5, 678, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(5, 679, 96); + return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x10000000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_2(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa6_2(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x200L); case 86: case 118: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x8000004L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x10000008L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(5, 282, 96); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_2(5, 709, 96); + else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_2(5, 710, 96); return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -13000,7 +13025,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -13022,13 +13047,13 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(6, 464, 96); break; case 95: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x100000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200008000000L); + return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x100000000000e00L, active11, 0x400010000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20L); case 67: case 99: if ((active2 & 0x40000000000000L) != 0L) @@ -13051,7 +13076,7 @@ else if ((active5 & 0x20L) != 0L) return jjStartNfaWithStates_2(6, 325, 96); else if ((active10 & 0x400000000L) != 0L) return jjStartNfaWithStates_2(6, 674, 96); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x8000000004000000L, active11, 0L); case 69: case 101: if ((active0 & 0x100000000000000L) != 0L) @@ -13089,13 +13114,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(6, 665, 96); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(6, 742, 96); else if ((active11 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(6, 743, 96); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(6, 748, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x45000004L); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(6, 744, 96); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(6, 749, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x3c1000000000L, active11, 0x8a000008L); case 70: case 102: return jjMoveStringLiteralDfa7_2(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13118,21 +13143,21 @@ else if ((active6 & 0x400000000000L) != 0L) return jjStartNfaWithStates_2(6, 430, 96); else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(6, 499, 96); - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 698, 96); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 736, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 699, 96); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(6, 737, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x800000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(6, 50, 96); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 747, 96); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(6, 748, 96); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x400200000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -13158,7 +13183,7 @@ else if ((active6 & 0x40000000L) != 0L) return jjMoveStringLiteralDfa7_2(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_2(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x80000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80000000000L) != 0L) @@ -13184,19 +13209,19 @@ else if ((active8 & 0x10000L) != 0L) } else if ((active10 & 0x100000000L) != 0L) return jjStartNfaWithStates_2(6, 672, 96); - else if ((active10 & 0x800000000000000L) != 0L) + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 699; + jjmatchedKind = 700; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x2000000000000004L, active11, 0x1000000L); case 79: case 111: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x20000000000180L, active11, 0L); case 80: case 112: - if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 693, 96); + if ((active10 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 694, 96); return jjMoveStringLiteralDfa7_2(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: @@ -13222,11 +13247,11 @@ else if ((active10 & 0x2000L) != 0L) jjmatchedKind = 653; jjmatchedPos = 6; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 696, 96); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_2(6, 714, 96); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 697, 96); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_2(6, 715, 96); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x800000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -13239,9 +13264,9 @@ else if ((active7 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(6, 484, 96); else if ((active8 & 0x10L) != 0L) return jjStartNfaWithStates_2(6, 516, 96); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 722, 96); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(6, 723, 96); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x400000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) @@ -13282,14 +13307,14 @@ else if ((active9 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(6, 639, 96); else if ((active10 & 0x200000000L) != 0L) return jjStartNfaWithStates_2(6, 673, 96); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 697, 96); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_2(6, 712, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400120a0000L); + else if ((active10 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 698, 96); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_2(6, 713, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x80024140000L); case 85: case 117: - return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x4000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -13331,7 +13356,7 @@ private final int jjMoveStringLiteralDfa7_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_2(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x8000000000000000L, active11, 0x1000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -13355,8 +13380,10 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(7, 57, 96); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(7, 156, 96); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 738, 96); + else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(7, 676, 96); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(7, 739, 96); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -13406,14 +13433,14 @@ else if ((active9 & 0x80L) != 0L) } else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_2(7, 660, 96); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(7, 721, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(7, 722, 96); + return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x20000000L); case 70: case 102: - if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 692, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); + if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 693, 96); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) @@ -13424,7 +13451,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_2(7, 395, 96); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 642, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x2000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -13432,7 +13459,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x2000000000000000L, active11, 0x80000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13451,9 +13478,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 359, 96); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_2(7, 581, 96); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(7, 734, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x8000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(7, 735, 96); + return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x10000000L); case 77: case 109: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -13466,22 +13493,22 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x400400000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 694, 96); + if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 695, 96); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(7, 554, 96); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_2(7, 706, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_2(7, 707, 96); + return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x100000000040180L, active11, 0x800000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -13503,7 +13530,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 450, 96); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 615, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x100000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -13516,10 +13543,10 @@ else if ((active8 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(7, 538, 96); else if ((active10 & 0x200000L) != 0L) return jjStartNfaWithStates_2(7, 661, 96); - return jjMoveStringLiteralDfa8_2(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_2(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x200000L); case 85: case 117: - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x20L); case 86: case 118: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); @@ -13549,9 +13576,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_2(7, 518, 96); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(7, 627, 96); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 730, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(7, 731, 96); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x4500000L); case 90: case 122: return jjMoveStringLiteralDfa8_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -13572,7 +13599,7 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x80000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x100000L); case 65: case 97: return jjMoveStringLiteralDfa9_2(active0, 0x11000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0x300020000L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0xa000L, active9, 0x10000000L, active10, 0x40000L, active11, 0L); @@ -13585,7 +13612,7 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 618, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x80000000020L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -13594,8 +13621,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_2(8, 235, 96); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(8, 666, 96); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 732, 96); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(8, 733, 96); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -13663,9 +13690,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(8, 737, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(8, 738, 96); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x400000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -13673,7 +13700,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 42, 96); - return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x81000000L); + return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x3c0010000878L, active11, 0x102000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -13689,7 +13716,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x1000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -13712,10 +13739,10 @@ else if ((active6 & 0x80000000L) != 0L) return jjStartNfaWithStates_2(8, 415, 96); else if ((active6 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_2(8, 439, 96); - return jjMoveStringLiteralDfa9_2(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); + return jjMoveStringLiteralDfa9_2(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x2000000000008000L, active11, 0x400000L); case 79: case 111: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x800000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -13725,7 +13752,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x4000000L); case 81: case 113: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -13777,7 +13804,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2008000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x4010000000L); case 86: case 118: return jjMoveStringLiteralDfa9_2(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -13801,12 +13828,12 @@ else if ((active7 & 0x2000L) != 0L) return jjStartNfaWithStates_2(8, 461, 96); else if ((active9 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_2(8, 625, 96); - else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 695, 96); - else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 702, 96); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(8, 724, 96); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 696, 96); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 703, 96); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(8, 725, 96); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -13840,7 +13867,7 @@ else if ((active2 & 0x400L) != 0L) return jjStartNfaWithStates_2(9, 138, 96); else if ((active9 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_2(9, 631, 96); - return jjMoveStringLiteralDfa10_2(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa10_2(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) @@ -13874,13 +13901,13 @@ else if ((active9 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(9, 612, 96); else if ((active9 & 0x800000000000L) != 0L) return jjStartNfaWithStates_2(9, 623, 96); - else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(9, 727, 96); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(9, 729, 96); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 731, 96); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(9, 728, 96); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(9, 730, 96); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(9, 732, 96); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x400000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -13889,8 +13916,8 @@ else if ((active8 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(9, 548, 96); else if ((active9 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(9, 606, 96); - else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 700, 96); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 701, 96); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -13902,7 +13929,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 107: if ((active2 & 0x400000000L) != 0L) return jjStartNfaWithStates_2(9, 162, 96); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80010L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100020L); case 76: case 108: return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x1000000000000L, active10, 0L, active11, 0L); @@ -13918,10 +13945,10 @@ else if ((active10 & 0x1000000000000000L) != 0L) jjmatchedKind = 98; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x3c0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x2000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -13952,10 +13979,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_2(9, 458, 96); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_2(9, 648, 96); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(9, 741, 96); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(9, 746, 96); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(9, 742, 96); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(9, 747, 96); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -13975,7 +14002,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x800000L); case 86: case 118: return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14002,7 +14029,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); default : break; } @@ -14039,7 +14066,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_2(10, 341, 96); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_2(10, 667, 96); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x400000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -14060,9 +14087,9 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_2(10, 620, 96); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(10, 624, 96); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(10, 735, 96); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(10, 736, 96); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x3c0000000000L, active11, 0x100020L); case 70: case 102: return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14077,7 +14104,7 @@ else if ((active11 & 0x80000000L) != 0L) return jjStartNfaWithStates_2(10, 67, 96); else if ((active6 & 0x400000000L) != 0L) return jjStartNfaWithStates_2(10, 418, 96); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 73: case 105: return jjMoveStringLiteralDfa11_2(active0, 0x21000000000L, active1, 0x800000002000L, active2, 0x1000L, active3, 0x2L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000000L, active10, 0L, active11, 0L); @@ -14104,8 +14131,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_2(10, 651, 96); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 728, 96); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(10, 729, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -14114,8 +14141,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(10, 604, 96); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(10, 726, 96); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(10, 727, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -14191,7 +14218,7 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -14207,7 +14234,7 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, case 100: if ((active9 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_2(11, 633, 96); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) @@ -14292,7 +14319,7 @@ else if ((active9 & 0x1000L) != 0L) return jjStartNfaWithStates_2(11, 588, 96); else if ((active9 & 0x80000L) != 0L) return jjStartNfaWithStates_2(11, 595, 96); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x400000L); case 83: case 115: return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x70L, active11, 0L); @@ -14304,16 +14331,16 @@ else if ((active5 & 0x40000L) != 0L) return jjStartNfaWithStates_2(11, 338, 96); else if ((active9 & 0x40L) != 0L) return jjStartNfaWithStates_2(11, 582, 96); - else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_2(11, 708, 96); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_2(11, 709, 96); return jjMoveStringLiteralDfa12_2(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x100000000L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(11, 723, 96); + if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(11, 724, 96); break; default : break; @@ -14332,7 +14359,7 @@ private final int jjMoveStringLiteralDfa12_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_2(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x1e0000000070L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x3c0000000070L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x6800000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14388,12 +14415,12 @@ else if ((active3 & 0x2L) != 0L) return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_2(12, 584, 96); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -14439,7 +14466,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_2(13, 494, 96); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_2(13, 656, 96); - return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14492,7 +14519,7 @@ else if ((active9 & 0x4000L) != 0L) case 110: if ((active4 & 0x4L) != 0L) return jjStartNfaWithStates_2(13, 258, 96); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x400000L); case 79: case 111: return jjMoveStringLiteralDfa14_2(active0, 0x20000000000L, active1, 0x100000000000000L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); @@ -14513,7 +14540,7 @@ else if ((active9 & 0x4000L) != 0L) case 116: if ((active7 & 0x8000L) != 0L) return jjStartNfaWithStates_2(13, 463, 96); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x3c0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) @@ -14580,7 +14607,7 @@ else if ((active10 & 0x4000L) != 0L) break; case 73: case 105: - return jjMoveStringLiteralDfa15_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa15_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14607,7 +14634,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(14, 575, 96); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_2(14, 592, 96); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -14632,7 +14659,7 @@ else if ((active10 & 0x400L) != 0L) break; case 89: case 121: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); default : break; } @@ -14699,7 +14726,7 @@ else if ((active2 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x100000000L) != 0L) @@ -14709,7 +14736,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14723,7 +14750,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); default : break; } @@ -14746,12 +14773,12 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, case 97: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(16, 103, 96); - return jjMoveStringLiteralDfa17_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa17_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) return jjStartNfaWithStates_2(16, 482, 96); - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) @@ -14762,7 +14789,7 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -14826,7 +14853,7 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14862,7 +14889,7 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 86: case 118: return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -14889,7 +14916,7 @@ private final int jjMoveStringLiteralDfa18_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x60000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc0000000000L, active11, 0L); case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) @@ -14914,7 +14941,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 76: case 108: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14923,7 +14950,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14932,7 +14959,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x4000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 84: case 116: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0x80000000L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x20L, active11, 0L); @@ -14958,10 +14985,10 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, case 97: if ((active1 & 0x100L) != 0L) return jjStartNfaWithStates_2(19, 72, 96); - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x140000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x200000000000L, active11, 0L); case 68: case 100: return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -14975,7 +15002,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x80000000000L, active11, 0x400000400000L); case 82: case 114: return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15019,7 +15046,7 @@ private final int jjMoveStringLiteralDfa20_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0x20000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x80000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000000L) != 0L) @@ -15036,13 +15063,13 @@ else if ((active2 & 0x100000000000000L) != 0L) case 104: if ((active7 & 0x200000000L) != 0L) return jjStartNfaWithStates_2(20, 481, 96); - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x200000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x100000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 79: case 111: return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15051,7 +15078,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x40000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -15074,10 +15101,10 @@ private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 65: case 97: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000040L, active11, 0L); case 67: case 99: return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15090,11 +15117,11 @@ private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, case 101: if ((active2 & 0x2000L) != 0L) return jjStartNfaWithStates_2(21, 141, 96); - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(21, 682, 96); else if ((active10 & 0x80000000000L) != 0L) return jjStartNfaWithStates_2(21, 683, 96); - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); + else if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(21, 684, 96); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x200000000000L, active11, 0L); case 70: case 102: return jjMoveStringLiteralDfa22_2(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15153,10 +15180,10 @@ private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x100000000000L, active11, 0x200000L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x200000000000L, active11, 0x400000L); case 78: case 110: return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); @@ -15168,7 +15195,7 @@ private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -15195,8 +15222,8 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(23, 684, 96); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(23, 685, 96); break; case 67: case 99: @@ -15220,7 +15247,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x40000000000L, active11, 0x400000400000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -15255,7 +15282,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, break; case 68: case 100: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000000L, active10, 0L, active11, 0L); @@ -15264,8 +15291,8 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(24, 681, 96); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(24, 682, 96); break; case 73: case 105: @@ -15287,7 +15314,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); default : break; } @@ -15318,8 +15345,8 @@ private final int jjMoveStringLiteralDfa25_2(long old1, long active1, long old2, case 101: if ((active8 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(25, 563, 96); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(25, 725, 96); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(25, 726, 96); break; case 71: case 103: @@ -15341,7 +15368,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -15362,7 +15389,7 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -15410,7 +15437,7 @@ private final int jjMoveStringLiteralDfa27_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15437,7 +15464,7 @@ private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15462,7 +15489,7 @@ private final int jjMoveStringLiteralDfa29_2(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_2(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -15487,7 +15514,7 @@ private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x400000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -15513,7 +15540,7 @@ private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_2(31, 129, 96); - return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x400000000000L); default : break; } @@ -15532,7 +15559,7 @@ private final int jjMoveStringLiteralDfa32_2(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_2(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_2(active11, 0x400000000000L); default : break; } @@ -15551,8 +15578,8 @@ private final int jjMoveStringLiteralDfa33_2(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(33, 749, 96); + if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(33, 750, 96); break; default : break; @@ -15589,21 +15616,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 829) + kind = 829; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -15616,8 +15643,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -15630,8 +15657,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -15646,8 +15673,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -15664,8 +15691,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -15674,8 +15701,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -15690,8 +15717,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (curChar == 36) @@ -15712,8 +15739,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 759) + kind = 759; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -15723,8 +15750,8 @@ else if (curChar == 39) case 97: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -15749,8 +15776,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 758) + kind = 758; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -15774,8 +15801,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 760) + kind = 760; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -15793,30 +15820,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 762) + kind = 762; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 815) + kind = 815; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 815) + kind = 815; break; case 27: if (curChar == 13) @@ -15833,15 +15860,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -15859,8 +15886,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -15870,26 +15897,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 829) + kind = 829; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAdd(44); break; case 45: @@ -15903,8 +15930,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 753) + kind = 753; jjCheckNAdd(48); break; case 49: @@ -15918,22 +15945,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAddStates(35, 37); break; case 54: @@ -15951,8 +15978,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(57); break; case 58: @@ -15972,12 +15999,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 759) + kind = 759; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 766) + kind = 766; break; case 67: case 69: @@ -15993,8 +16020,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 761) + kind = 761; break; case 72: if (curChar == 38) @@ -16017,8 +16044,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 826) + kind = 826; break; case 79: if (curChar == 32) @@ -16045,14 +16072,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 813) + kind = 813; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(25, 27); break; default : break; @@ -16075,8 +16102,8 @@ else if (curChar == 96) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -16097,8 +16124,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -16109,8 +16136,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -16121,8 +16148,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -16133,8 +16160,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -16145,8 +16172,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } break; @@ -16157,13 +16184,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 769) + kind = 769; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 770) + kind = 770; } break; case 63: @@ -16214,8 +16241,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 29: @@ -16235,21 +16262,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 96 && kind > 818) - kind = 818; + if (curChar == 96 && kind > 821) + kind = 821; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -16259,15 +16286,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -16292,32 +16319,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 769) + kind = 769; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 770) + kind = 770; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 771) + kind = 771; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 772) + kind = 772; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 813) + kind = 813; break; default : break; } @@ -16337,8 +16364,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16347,8 +16374,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16359,8 +16386,8 @@ else if ((0x1000000010L & l) != 0L) case 96: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16371,8 +16398,8 @@ else if ((0x1000000010L & l) != 0L) case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16383,8 +16410,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16395,8 +16422,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16431,8 +16458,8 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(25, 27); break; case 30: @@ -16442,15 +16469,15 @@ else if ((0x1000000010L & l) != 0L) case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(35); break; case 36: @@ -16460,15 +16487,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -16484,8 +16511,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 813) + kind = 813; break; default : break; } @@ -16509,402 +16536,402 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, switch (pos) { case 0: - if ((active11 & 0x1000L) != 0L) + if ((active10 & 0x7fffffe000000L) != 0L) { - jjmatchedKind = 821; - return 1; + jjmatchedKind = 824; + return 31; } - if ((active12 & 0x10000200L) != 0L) - return 76; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57ff27efffL) != 0L) + if ((active11 & 0x2000L) != 0L) { - jjmatchedKind = 821; - return 77; + jjmatchedKind = 824; + return 1; } - if ((active12 & 0x20000000L) != 0L) + if ((active12 & 0x20000400L) != 0L) + return 76; + if ((active12 & 0x40000000L) != 0L) return 58; - if ((active12 & 0x10L) != 0L) - return 78; - if ((active12 & 0x90001000000L) != 0L) + if ((active12 & 0x20L) != 0L) + return 77; + if ((active12 & 0x480002000000L) != 0L) return 74; - if ((active10 & 0x3fffffe000000L) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfff8000001ffffffL) != 0L || (active11 & 0x9caffe4fdfffL) != 0L) { - jjmatchedKind = 821; - return 31; + jjmatchedKind = 824; + return 78; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 77; - if ((active12 & 0x600000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x635001b00000L) != 0L || (active12 & 0x1000000000L) != 0L) + return 78; + if ((active12 & 0xc00000L) != 0L) return 11; - if ((active12 & 0x40000000L) != 0L) + if ((active12 & 0x80000000L) != 0L) return 79; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x7dfabfddffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 1; } - return 77; + return 78; } - if ((active12 & 0x90000000000L) != 0L) + if ((active12 & 0x480000000000L) != 0L) return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) - return 77; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x820540220000L) != 0L) + return 78; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0xaffffffddfffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 2; } - return 77; + return 78; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) - return 77; + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x500000002000L) != 0L) + return 78; return -1; case 3: - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180100e3c7L) != 0L) - return 77; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fefe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0xbffb41fffef1fffeL) != 0L || (active11 & 0xffcffdfc1870L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 3; } - return 77; + return 78; } + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0x4004be00010e0000L) != 0L || (active11 & 0x300201c78fL) != 0L) + return 78; return -1; case 4: - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7ddde05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0xbfc03cbf9ef5effeL) != 0L || (active11 & 0x79cfbbbc0b68L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 4; } - return 77; + return 78; } if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430022204809L) != 0L) - return 77; + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x3b414060001000L) != 0L || (active11 & 0x860044409012L) != 0L) + return 78; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x1000a880800000L) != 0L || (active11 & 0x200140L) != 0L) + return 78; + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0xbfe03c171e75effeL) != 0L || (active11 & 0x79cfbfdc0a28L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 5; } - return 77; + return 78; } - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 77; return -1; case 6: - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) - return 77; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x81a03c101c340ffeL) != 0L || (active11 & 0x484dbff40028L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 6; } - return 77; + return 78; } - return -1; - case 7: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x444020004L) != 0L) - return 77; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229bf80010L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x3e4000070241e000L) != 0L || (active11 & 0x318200080a00L) != 0L) + return 78; + return -1; + case 7: + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0xa1003c001c05cffaL) != 0L || (active11 & 0x484537f00020L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 7; } - return 77; + return 78; } + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0xa0001000300004L) != 0L || (active11 & 0x888040008L) != 0L) + return 78; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208be80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x20003c001805c87aL) != 0L || (active11 & 0x484117d00020L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 8; } - return 77; + return 78; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) - return 77; + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x8100000004000780L) != 0L || (active11 & 0x420200000L) != 0L) + return 78; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200081680010L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x2000000000040100L) != 0L || (active11 & 0x84015000000L) != 0L) + return 78; + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x3c001801cc7aL) != 0L || (active11 & 0x400102d00020L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 9; } - return 77; + return 78; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) - return 77; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x81400000L) != 0L) - return 77; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x102800000L) != 0L) + return 78; + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x3c001001c402L) != 0L || (active11 & 0x400000500020L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 10; } - return 77; + return 78; } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x3c0010014472L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 11; } - return 77; + return 78; } - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 77; + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x100020L) != 0L) + return 78; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x3c0000014472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 12; - return 77; + return 78; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 77; + return 78; return -1; case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 77; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + return 78; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x3c0000004472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 13; - return 77; + return 78; } return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) - return 77; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + return 78; + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 14; - return 77; + return 78; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 15; } - return 77; + return 78; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 77; + return 78; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 16; } - return 77; + return 78; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 77; + return 78; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 77; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + return 78; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 17; - return 77; + return 78; } return -1; case 18: - if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) - return 77; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 18; } - return 77; + return 78; } + if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) + return 78; return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 19; - return 77; + return 78; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 77; + return 78; return -1; case 20: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 20; - return 77; + return 78; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 77; return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 21; - return 77; + return 78; } - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 77; + if ((active2 & 0x2000L) != 0L || (active10 & 0x180000000020L) != 0L) + return 78; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 22; - return 77; + return 78; } if ((active6 & 0x10000000L) != 0L) - return 77; + return 78; return -1; case 23: - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x200000000040L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x40000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 23; - return 77; + return 78; } return -1; case 24: - if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active6 & 0x20000000L) != 0L || (active10 & 0x40000000000L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 24; - return 77; + return 78; } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 25; - return 77; + return 78; } - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 77; + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x400000L) != 0L) + return 78; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 26; - return 77; + return 78; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 77; + return 78; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 27; - return 77; + return 78; } return -1; case 28: - if ((active8 & 0x200000000000000L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 28; - return 77; + return 78; } + if ((active8 & 0x200000000000000L) != 0L) + return 78; return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 29; - return 77; + return 78; } return -1; case 30: - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L) + return 78; + if ((active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 30; - return 77; + return 78; } - if ((active1 & 0x400000000000000L) != 0L) - return 77; return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 31; - return 77; + return 78; } if ((active2 & 0x2L) != 0L) - return 77; + return 78; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 824; jjmatchedPos = 32; - return 77; + return 78; } return -1; default : @@ -16928,74 +16955,76 @@ private final int jjMoveStringLiteralDfa0_3() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 34: - return jjStartNfaWithStates_3(0, 798, 79); + return jjStartNfaWithStates_3(0, 799, 79); case 36: - return jjStartNfaWithStates_3(0, 801, 77); + return jjStartNfaWithStates_3(0, 804, 78); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 794); + case 38: + return jjStopAtPos(0, 802); case 39: - return jjStartNfaWithStates_3(0, 797, 58); + return jjStartNfaWithStates_3(0, 798, 58); case 40: - return jjStopAtPos(0, 766); - case 41: return jjStopAtPos(0, 767); + case 41: + return jjStopAtPos(0, 768); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 789); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 779); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 790; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 778; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x480000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 777); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000a0000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); - case 62: jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + case 62: + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 783); case 91: - return jjStopAtPos(0, 774); - case 93: return jjStopAtPos(0, 775); + case 93: + return jjStopAtPos(0, 776); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 801); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000300000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_3(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa000c00000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14001800000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -17008,67 +17037,67 @@ private final int jjMoveStringLiteralDfa0_3() return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140020000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x400000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x880000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x40000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x100000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x8a000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x800000040000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff8000000000000L, 0x4000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x18401fffL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x6000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); case 123: - return jjStartNfaWithStates_3(0, 772, 78); + return jjStartNfaWithStates_3(0, 773, 77); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 800; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 774); default : return jjMoveNfa_3(0, 0); } @@ -17083,55 +17112,59 @@ private final int jjMoveStringLiteralDfa1_3(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x400000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 814; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x80000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x100000000000L) != 0L) + return jjStopAtPos(1, 812); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x2000000000L) != 0L) + return jjStopAtPos(1, 805); + break; + case 60: + if ((active12 & 0x800000000L) != 0L) + return jjStopAtPos(1, 803); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) + if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); - else if ((active12 & 0x80000L) != 0L) - return jjStopAtPos(1, 787); + else if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 62: - if ((active12 & 0x40000L) != 0L) - return jjStopAtPos(1, 786); - else if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(1, 790); - else if ((active12 & 0x8000000L) != 0L) - return jjStopAtPos(1, 795); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); + else if ((active12 & 0x800000L) != 0L) + return jjStopAtPos(1, 791); + else if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 65: case 97: - return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x200443c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0xff8000000000000L, active11, 0x400887880000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_3(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x2000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_3(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xb000000002000000L, active11, 0x10800004c003L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -17139,18 +17172,18 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedKind = 383; jjmatchedPos = 1; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(1, 720, 77); - return jjMoveStringLiteralDfa2_3(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(1, 721, 78); + return jjMoveStringLiteralDfa2_3(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); case 71: case 103: return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0x1cL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x4000000000000000L, active11, 0x10000003e0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17159,7 +17192,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_3(active0, 0x80000001f000L, active1, 0xf000L, active2, 0xc00000000000000L, active3, 0x8000400006000000L, active4, 0L, active5, 0L, active6, 0x1c00000000002L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x1000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x2000L, active12, 0L); case 78: case 110: if ((active4 & 0x10L) != 0L) @@ -17168,13 +17201,13 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(1, 316, 77); + return jjStartNfaWithStates_3(1, 316, 78); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ffc000000L, active11, 0x200160000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -17192,10 +17225,10 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x814600010400L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0xe000000000L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x8L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xfffffffe00000000L, active9, 0x7fffffL, active10, 0L, active11, 0L, active12, 0L); @@ -17206,7 +17239,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xc200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x18401800L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -17219,7 +17252,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f0000000000L, active11, 0x20000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -17227,10 +17260,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x3800000000000L, active11, 0x80000200000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x4000000c00000L, active11, 0x40000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_3(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17240,11 +17273,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(1, 51, 77); + return jjStartNfaWithStates_3(1, 51, 78); return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; default : break; @@ -17263,33 +17296,33 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(2, 811); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_3(2, 8, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x14100c006400L, active12, 0L); + return jjStartNfaWithStates_3(2, 8, 78); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x10000000ffcL, active11, 0x28201800c800L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(2, 27, 77); + return jjStartNfaWithStates_3(2, 27, 78); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x10c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x21880000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_3(2, 9, 77); + return jjStartNfaWithStates_3(2, 9, 78); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(2, 17, 77); + return jjStartNfaWithStates_3(2, 17, 78); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -17301,17 +17334,17 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_3(2, 385, 77); + return jjStartNfaWithStates_3(2, 385, 78); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(2, 406, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjStartNfaWithStates_3(2, 406, 78); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x8000002020000000L, active11, 0x40000020L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(2, 20, 77); + return jjStartNfaWithStates_3(2, 20, 78); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_3(2, 388, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjStartNfaWithStates_3(2, 388, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0x40003e0000401000L, active11, 0x4000000001fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -17319,22 +17352,22 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x3800000000000L, active11, 0x100000100000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(2, 37, 77); + return jjStartNfaWithStates_3(2, 37, 78); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(2, 301, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjStartNfaWithStates_3(2, 301, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 432, 77); - return jjMoveStringLiteralDfa3_3(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_3(2, 432, 78); + return jjMoveStringLiteralDfa3_3(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x44000c007e000L, active11, 0x401000L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17353,14 +17386,14 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedKind = 545; jjmatchedPos = 2; } - else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(2, 716, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa82000000L, active12, 0L); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(2, 717, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x38000000000000L, active11, 0x1504000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(2, 616, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjStartNfaWithStates_3(2, 616, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x10000040000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -17368,10 +17401,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x4000010040L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_3(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x200000L, active12, 0L); case 80: case 112: if ((active3 & 0x4000L) != 0L) @@ -17380,10 +17413,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 250, 77); + return jjStartNfaWithStates_3(2, 250, 78); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_3(2, 323, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); + return jjStartNfaWithStates_3(2, 323, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x4201000002L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17399,7 +17432,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x3fc0000000000000L, active11, 0x8080000400L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -17407,22 +17440,22 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x9002000000L, active11, 0x800000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(2, 46, 77); + return jjStartNfaWithStates_3(2, 46, 78); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 177, 77); + return jjStartNfaWithStates_3(2, 177, 78); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(2, 237, 77); + return jjStartNfaWithStates_3(2, 237, 78); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 370, 77); + return jjStartNfaWithStates_3(2, 370, 78); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -17433,7 +17466,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x800002000380L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -17443,9 +17476,9 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 179, 77); + return jjStartNfaWithStates_3(2, 179, 78); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(2, 364, 77); + return jjStartNfaWithStates_3(2, 364, 78); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; @@ -17459,24 +17492,24 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(2, 18, 77); + return jjStartNfaWithStates_3(2, 18, 78); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 180, 77); + return jjStartNfaWithStates_3(2, 180, 78); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x20000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17499,15 +17532,15 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, case 45: return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000000L, active11, 0L); - case 51: return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); + case 51: + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0L); case 56: - if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(3, 686, 77); + if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(3, 687, 78); break; case 95: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0xc0000000200002L, active11, 0x400000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -17516,15 +17549,15 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, jjmatchedPos = 3; } else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(3, 285, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400041000000L); + return jjStartNfaWithStates_3(3, 285, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x2400001000L, active11, 0x800082000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 47, 77); + return jjStartNfaWithStates_3(3, 47, 78); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(3, 78, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); + return jjStartNfaWithStates_3(3, 78, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000800000L, active11, 0L); case 67: case 99: if ((active2 & 0x4000000000L) != 0L) @@ -17537,11 +17570,11 @@ else if ((active3 & 0x800L) != 0L) jjmatchedKind = 203; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x100000002000000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x200000002000000L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 249, 77); + return jjStartNfaWithStates_3(3, 249, 78); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -17552,97 +17585,97 @@ else if ((active7 & 0x20L) != 0L) jjmatchedKind = 453; jjmatchedPos = 3; } - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 689, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); + else if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 690, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x40L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 58, 77); + return jjStartNfaWithStates_3(3, 58, 78); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 117, 77); + return jjStartNfaWithStates_3(3, 117, 78); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 187, 77); + return jjStartNfaWithStates_3(3, 187, 78); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 227, 77); + return jjStartNfaWithStates_3(3, 227, 78); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(3, 353, 77); + return jjStartNfaWithStates_3(3, 353, 78); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 367, 77); + return jjStartNfaWithStates_3(3, 367, 78); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(3, 488, 77); + return jjStartNfaWithStates_3(3, 488, 78); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(3, 536, 77); + return jjStartNfaWithStates_3(3, 536, 78); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(3, 539, 77); + return jjStartNfaWithStates_3(3, 539, 78); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 659, 77); + return jjStartNfaWithStates_3(3, 659, 78); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(3, 664, 77); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(3, 719, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjStartNfaWithStates_3(3, 664, 78); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(3, 720, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0xc820000000L, active11, 0x40000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(3, 26, 77); + return jjStartNfaWithStates_3(3, 26, 78); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_3(3, 521, 77); + return jjStartNfaWithStates_3(3, 521, 78); break; case 71: case 103: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x1000001e000L, active11, 0x200000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 49, 77); + return jjStartNfaWithStates_3(3, 49, 78); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 185, 77); + return jjStartNfaWithStates_3(3, 185, 78); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(3, 420, 77); - else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_3(3, 420, 78); + else if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 710; + jjmatchedKind = 711; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1800300L); case 73: case 105: - return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x400001200000004L, active11, 0x100100000L); case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_3(3, 452, 77); + return jjStartNfaWithStates_3(3, 452, 78); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 519, 77); - else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 519, 78); + else if ((active11 & 0x1L) != 0L) { - jjmatchedKind = 703; + jjmatchedKind = 704; jjmatchedPos = 3; } - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_3(3, 713, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_3(3, 714, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80002L); case 76: case 108: if ((active0 & 0x20000000000000L) != 0L) @@ -17656,64 +17689,64 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(3, 230, 77); + return jjStartNfaWithStates_3(3, 230, 78); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 455, 77); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 739, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + return jjStartNfaWithStates_3(3, 455, 78); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(3, 740, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x200000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(3, 229, 77); + return jjStartNfaWithStates_3(3, 229, 78); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x100000L); + return jjMoveStringLiteralDfa4_3(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x200000L); case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(3, 286, 77); + return jjStartNfaWithStates_3(3, 286, 78); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_3(3, 390, 77); + return jjStartNfaWithStates_3(3, 390, 78); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 431, 77); + return jjStartNfaWithStates_3(3, 431, 78); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 626, 77); - else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_3(3, 626, 78); + else if ((active11 & 0x4L) != 0L) { - jjmatchedKind = 705; + jjmatchedKind = 706; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(3, 740, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(3, 741, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x8000400100100ff8L, active11, 0x20000000008L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 240, 77); + return jjStartNfaWithStates_3(3, 240, 78); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(3, 279, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjStartNfaWithStates_3(3, 279, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x400000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 181, 77); + return jjStartNfaWithStates_3(3, 181, 78); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(3, 537, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x800c020400L); + return jjStartNfaWithStates_3(3, 537, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x10018040800L); case 81: case 113: return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -17739,68 +17772,68 @@ else if ((active6 & 0x40000L) != 0L) jjmatchedKind = 402; jjmatchedPos = 3; } - else if ((active10 & 0x10000000000L) != 0L) + else if ((active10 & 0x20000000000L) != 0L) { - jjmatchedKind = 680; + jjmatchedKind = 681; jjmatchedPos = 3; } - else if ((active11 & 0x2000L) != 0L) + else if ((active11 & 0x4000L) != 0L) { - jjmatchedKind = 717; + jjmatchedKind = 718; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x3c0000000000L, active11, 0x140020008010L); case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 147, 77); + return jjStartNfaWithStates_3(3, 147, 78); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 498, 77); + return jjStartNfaWithStates_3(3, 498, 78); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 531, 77); + return jjStartNfaWithStates_3(3, 531, 78); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 628, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjStartNfaWithStates_3(3, 628, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x3000000000400000L, active11, 0x800000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 59, 77); + return jjStartNfaWithStates_3(3, 59, 78); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 309, 77); + return jjStartNfaWithStates_3(3, 309, 78); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(3, 365, 77); + return jjStartNfaWithStates_3(3, 365, 78); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_3(3, 386, 77); + return jjStartNfaWithStates_3(3, 386, 78); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 419, 77); + return jjStartNfaWithStates_3(3, 419, 78); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(3, 598, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjStartNfaWithStates_3(3, 598, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x84000401020L); case 85: case 117: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x38000000000000L, active11, 0x4000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 442, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjStartNfaWithStates_3(3, 442, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x8000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(3, 533, 77); - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 701, 77); + return jjStartNfaWithStates_3(3, 533, 78); + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 702, 78); return jjMoveStringLiteralDfa4_3(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_3(3, 389, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); + return jjStartNfaWithStates_3(3, 389, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x800000000000000L, active11, 0L); default : break; } @@ -17818,107 +17851,107 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 688, 77); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 689, 78); break; case 54: - if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(4, 687, 77); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 688, 78); break; case 95: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0xd000000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x3c0000040000L, active11, 0x1a000000L); case 65: case 97: - return jjMoveStringLiteralDfa5_3(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x400000002000000L, active11, 0L); case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(4, 362, 77); + return jjStartNfaWithStates_3(4, 362, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(4, 744, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(4, 745, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x400000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(4, 224, 77); + return jjStartNfaWithStates_3(4, 224, 78); return jjMoveStringLiteralDfa5_3(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 79, 77); + return jjStartNfaWithStates_3(4, 79, 78); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_3(4, 133, 77); + return jjStartNfaWithStates_3(4, 133, 78); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(4, 211, 77); + return jjStartNfaWithStates_3(4, 211, 78); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 255, 77); + return jjStartNfaWithStates_3(4, 255, 78); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(4, 303, 77); + return jjStartNfaWithStates_3(4, 303, 78); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 335, 77); + return jjStartNfaWithStates_3(4, 335, 78); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 372, 77); + return jjStartNfaWithStates_3(4, 372, 78); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_3(4, 451, 77); + return jjStartNfaWithStates_3(4, 451, 78); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(4, 487, 77); + return jjStartNfaWithStates_3(4, 487, 78); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 506, 77); + return jjStartNfaWithStates_3(4, 506, 78); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 541, 77); + return jjStartNfaWithStates_3(4, 541, 78); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(4, 608, 77); + return jjStartNfaWithStates_3(4, 608, 78); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } - else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(4, 679, 77); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(4, 680, 78); + else if ((active10 & 0x8000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 691; jjmatchedPos = 4; } - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_3(4, 707, 77); - else if ((active11 & 0x800L) != 0L) + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_3(4, 708, 78); + else if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 715; + jjmatchedKind = 716; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x80002e00004L); + return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x8030000000000000L, active11, 0x100005c00008L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(4, 164, 77); + return jjStartNfaWithStates_3(4, 164, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(4, 685, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + if ((active10 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(4, 686, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100001e000L, active11, 0x400000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(4, 163, 77); + return jjStartNfaWithStates_3(4, 163, 78); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_3(4, 194, 77); + return jjStartNfaWithStates_3(4, 194, 78); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 212, 77); + return jjStartNfaWithStates_3(4, 212, 78); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -17929,53 +17962,53 @@ else if ((active5 & 0x80000000L) != 0L) jjmatchedKind = 351; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000000L, active11, 0x20L); case 73: case 105: - return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x3900000000000000L, active11, 0x8c200200100L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 75, 77); + return jjStartNfaWithStates_3(4, 75, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(4, 81, 77); + return jjStartNfaWithStates_3(4, 81, 78); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(4, 214, 77); + return jjStartNfaWithStates_3(4, 214, 78); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(4, 300, 77); + return jjStartNfaWithStates_3(4, 300, 78); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 311, 77); + return jjStartNfaWithStates_3(4, 311, 78); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(4, 750, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(4, 751, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x80040000L); case 77: case 109: return jjMoveStringLiteralDfa5_3(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_3(4, 10, 77); + return jjStartNfaWithStates_3(4, 10, 78); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_3(4, 65, 77); + return jjStartNfaWithStates_3(4, 65, 78); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(4, 670, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjStartNfaWithStates_3(4, 670, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x100100000L); case 79: case 111: - return jjMoveStringLiteralDfa5_3(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); + return jjMoveStringLiteralDfa5_3(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x240L); case 80: case 112: if ((active3 & 0x8000000000000L) != 0L) @@ -17983,125 +18016,125 @@ else if ((active10 & 0x40000000L) != 0L) jjmatchedKind = 243; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x40000000000000L, active11, 0x800L); case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 11, 77); + return jjStartNfaWithStates_3(4, 11, 78); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 15, 77); + return jjStartNfaWithStates_3(4, 15, 78); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_3(4, 196, 77); + return jjStartNfaWithStates_3(4, 196, 78); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(4, 218, 77); + return jjStartNfaWithStates_3(4, 218, 78); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 267, 77); + return jjStartNfaWithStates_3(4, 267, 78); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_3(4, 321, 77); + return jjStartNfaWithStates_3(4, 321, 78); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 361, 77); + return jjStartNfaWithStates_3(4, 361, 78); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(4, 400, 77); + return jjStartNfaWithStates_3(4, 400, 78); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 436, 77); + return jjStartNfaWithStates_3(4, 436, 78); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 444, 77); + return jjStartNfaWithStates_3(4, 444, 78); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 669, 77); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(4, 677, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); + return jjStartNfaWithStates_3(4, 669, 78); + else if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(4, 678, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x8000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 116, 77); + return jjStartNfaWithStates_3(4, 116, 78); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 252, 77); + return jjStartNfaWithStates_3(4, 252, 78); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(4, 355, 77); + return jjStartNfaWithStates_3(4, 355, 78); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(4, 357, 77); + return jjStartNfaWithStates_3(4, 357, 78); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 376, 77); + return jjStartNfaWithStates_3(4, 376, 78); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_3(4, 454, 77); + return jjStartNfaWithStates_3(4, 454, 78); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 532, 77); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_3(4, 704, 77); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(4, 718, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); + return jjStartNfaWithStates_3(4, 532, 78); + else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_3(4, 705, 78); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(4, 719, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x80000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 112, 77); + return jjStartNfaWithStates_3(4, 112, 78); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(4, 217, 77); + return jjStartNfaWithStates_3(4, 217, 78); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(4, 268, 77); + return jjStartNfaWithStates_3(4, 268, 78); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(4, 269, 77); + return jjStartNfaWithStates_3(4, 269, 78); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 315, 77); + return jjStartNfaWithStates_3(4, 315, 78); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(4, 429, 77); + return jjStartNfaWithStates_3(4, 429, 78); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(4, 473, 77); + return jjStartNfaWithStates_3(4, 473, 78); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(4, 486, 77); + return jjStartNfaWithStates_3(4, 486, 78); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(4, 599, 77); + return jjStartNfaWithStates_3(4, 599, 78); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(4, 652, 77); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); + return jjStartNfaWithStates_3(4, 652, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x2000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x10000080000L); case 86: case 118: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(4, 14, 77); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjStartNfaWithStates_3(4, 14, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x800000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 733, 77); + if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(4, 734, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(4, 19, 77); + return jjStartNfaWithStates_3(4, 19, 78); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 188, 77); + return jjStartNfaWithStates_3(4, 188, 78); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_3(4, 198, 77); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 745, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + return jjStartNfaWithStates_3(4, 198, 78); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(4, 746, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200020000000L); case 90: case 122: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -18122,7 +18155,7 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x20000000000000L, active11, 0x5c00020L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -18130,7 +18163,7 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, jjmatchedKind = 507; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x140000000740078L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_3(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x280000000740078L, active11, 0x40000L); case 66: case 98: return jjMoveStringLiteralDfa6_3(active0, 0xc00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18142,105 +18175,105 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 447, 77); + return jjStartNfaWithStates_3(5, 447, 78); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(5, 602, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjStartNfaWithStates_3(5, 602, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x8000200000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 54, 77); + return jjStartNfaWithStates_3(5, 54, 78); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 208, 77); + return jjStartNfaWithStates_3(5, 208, 78); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(5, 339, 77); + return jjStartNfaWithStates_3(5, 339, 78); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(5, 427, 77); + return jjStartNfaWithStates_3(5, 427, 78); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x1e0010000000L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x3c0010000000L, active11, 0L); case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(5, 38, 77); + return jjStartNfaWithStates_3(5, 38, 78); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 115, 77); + return jjStartNfaWithStates_3(5, 115, 78); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(5, 150, 77); + return jjStartNfaWithStates_3(5, 150, 78); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 160, 77); + return jjStartNfaWithStates_3(5, 160, 78); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(5, 161, 77); + return jjStartNfaWithStates_3(5, 161, 78); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 178, 77); + return jjStartNfaWithStates_3(5, 178, 78); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 197, 77); + return jjStartNfaWithStates_3(5, 197, 78); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 254, 77); + return jjStartNfaWithStates_3(5, 254, 78); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 349, 77); + return jjStartNfaWithStates_3(5, 349, 78); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(5, 485, 77); + return jjStartNfaWithStates_3(5, 485, 78); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 535, 77); + return jjStartNfaWithStates_3(5, 535, 78); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(5, 540, 77); + return jjStartNfaWithStates_3(5, 540, 78); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 663, 77); + return jjStartNfaWithStates_3(5, 663, 78); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(5, 671, 77); - else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(5, 676, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjStartNfaWithStates_3(5, 671, 78); + else if ((active10 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(5, 677, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x100000800L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 375, 77); + return jjStartNfaWithStates_3(5, 375, 78); return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 247, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjStartNfaWithStates_3(5, 247, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x400000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 310, 77); + return jjStartNfaWithStates_3(5, 310, 78); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_3(5, 514, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(5, 514, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_3(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + return jjMoveStringLiteralDfa6_3(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x100000L); case 75: case 107: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(5, 238, 77); + return jjStartNfaWithStates_3(5, 238, 78); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 416, 77); + return jjStartNfaWithStates_3(5, 416, 78); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_3(5, 513, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjStartNfaWithStates_3(5, 513, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x80000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 605, 77); + return jjStartNfaWithStates_3(5, 605, 78); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -18250,16 +18283,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_3(5, 7, 77); + return jjStartNfaWithStates_3(5, 7, 78); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 176, 77); + return jjStartNfaWithStates_3(5, 176, 78); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(5, 232, 77); + return jjStartNfaWithStates_3(5, 232, 78); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -18270,17 +18303,17 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedKind = 478; jjmatchedPos = 5; } - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_3(5, 711, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + else if ((active11 & 0x100L) != 0L) + return jjStartNfaWithStates_3(5, 712, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0xd00001004000000L, active11, 0x4200000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x3040000200000000L, active11, 0x800000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(5, 490, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjStartNfaWithStates_3(5, 490, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x20080000L); case 81: case 113: return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18292,44 +18325,44 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(5, 213, 77); + return jjStartNfaWithStates_3(5, 213, 78); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(5, 334, 77); + return jjStartNfaWithStates_3(5, 334, 78); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 377, 77); + return jjStartNfaWithStates_3(5, 377, 78); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 505, 77); + return jjStartNfaWithStates_3(5, 505, 78); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x2000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 16, 77); + return jjStartNfaWithStates_3(5, 16, 78); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_3(5, 195, 77); + return jjStartNfaWithStates_3(5, 195, 78); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(5, 205, 77); + return jjStartNfaWithStates_3(5, 205, 78); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 246, 77); + return jjStartNfaWithStates_3(5, 246, 78); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 352, 77); + return jjStartNfaWithStates_3(5, 352, 78); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 382, 77); + return jjStartNfaWithStates_3(5, 382, 78); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(5, 398, 77); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 691, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjStartNfaWithStates_3(5, 398, 78); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 692, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x8000000000000000L, active11, 0x180000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 5, 77); + return jjStartNfaWithStates_3(5, 5, 78); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(5, 44, 77); + return jjStartNfaWithStates_3(5, 44, 78); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -18341,40 +18374,40 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 221, 77); + return jjStartNfaWithStates_3(5, 221, 78); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_3(5, 259, 77); + return jjStartNfaWithStates_3(5, 259, 78); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(5, 271, 77); + return jjStartNfaWithStates_3(5, 271, 78); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 379, 77); + return jjStartNfaWithStates_3(5, 379, 78); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_3(5, 384, 77); + return jjStartNfaWithStates_3(5, 384, 78); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(5, 401, 77); + return jjStartNfaWithStates_3(5, 401, 78); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 477, 77); + return jjStartNfaWithStates_3(5, 477, 78); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_3(5, 520, 77); + return jjStartNfaWithStates_3(5, 520, 78); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(5, 611, 77); + return jjStartNfaWithStates_3(5, 611, 78); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(5, 675, 77); - else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(5, 678, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjStartNfaWithStates_3(5, 675, 78); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(5, 679, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x10000000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_3(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa6_3(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x200L); case 86: case 118: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x8000004L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x10000008L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(5, 282, 77); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 709, 77); + return jjStartNfaWithStates_3(5, 282, 78); + else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_3(5, 710, 78); return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -18382,17 +18415,17 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(5, 45, 77); + return jjStartNfaWithStates_3(5, 45, 78); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(5, 228, 77); + return jjStartNfaWithStates_3(5, 228, 78); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(5, 350, 77); + return jjStartNfaWithStates_3(5, 350, 78); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(5, 617, 77); + return jjStartNfaWithStates_3(5, 617, 78); return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -18411,16 +18444,16 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(6, 464, 77); + return jjStartNfaWithStates_3(6, 464, 78); break; case 95: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x100000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200008000000L); + return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x100000000000e00L, active11, 0x400010000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20L); case 67: case 99: if ((active2 & 0x40000000000000L) != 0L) @@ -18429,21 +18462,21 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 378, 77); + return jjStartNfaWithStates_3(6, 378, 78); return jjMoveStringLiteralDfa7_3(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 158, 77); + return jjStartNfaWithStates_3(6, 158, 78); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 165, 77); + return jjStartNfaWithStates_3(6, 165, 78); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 242, 77); + return jjStartNfaWithStates_3(6, 242, 78); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 325, 77); + return jjStartNfaWithStates_3(6, 325, 78); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(6, 674, 77); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); + return jjStartNfaWithStates_3(6, 674, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x8000000004000000L, active11, 0L); case 69: case 101: if ((active0 & 0x100000000000000L) != 0L) @@ -18452,42 +18485,42 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 82, 77); + return jjStartNfaWithStates_3(6, 82, 78); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 152, 77); + return jjStartNfaWithStates_3(6, 152, 78); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_3(6, 201, 77); + return jjStartNfaWithStates_3(6, 201, 78); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(6, 204, 77); + return jjStartNfaWithStates_3(6, 204, 78); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 261, 77); + return jjStartNfaWithStates_3(6, 261, 78); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 428, 77); + return jjStartNfaWithStates_3(6, 428, 78); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 440, 77); + return jjStartNfaWithStates_3(6, 440, 78); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 470, 77); + return jjStartNfaWithStates_3(6, 470, 78); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 472, 77); + return jjStartNfaWithStates_3(6, 472, 78); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 665, 77); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(6, 742, 77); + return jjStartNfaWithStates_3(6, 665, 78); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 743, 77); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 748, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x45000004L); + return jjStartNfaWithStates_3(6, 743, 78); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(6, 744, 78); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(6, 749, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x3c1000000000L, active11, 0x8a000008L); case 70: case 102: return jjMoveStringLiteralDfa7_3(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18499,152 +18532,152 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 63, 77); + return jjStartNfaWithStates_3(6, 63, 78); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 308, 77); + return jjStartNfaWithStates_3(6, 308, 78); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 363, 77); + return jjStartNfaWithStates_3(6, 363, 78); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(6, 417, 77); + return jjStartNfaWithStates_3(6, 417, 78); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(6, 430, 77); + return jjStartNfaWithStates_3(6, 430, 78); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 499, 77); - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 698, 77); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 736, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjStartNfaWithStates_3(6, 499, 78); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 699, 78); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(6, 737, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x800000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 50, 77); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 747, 77); + return jjStartNfaWithStates_3(6, 50, 78); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(6, 748, 78); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x400200000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(6, 151, 77); + return jjStartNfaWithStates_3(6, 151, 78); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(6, 234, 77); + return jjStartNfaWithStates_3(6, 234, 78); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 306, 77); + return jjStartNfaWithStates_3(6, 306, 78); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(6, 360, 77); + return jjStartNfaWithStates_3(6, 360, 78); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 414, 77); + return jjStartNfaWithStates_3(6, 414, 78); return jjMoveStringLiteralDfa7_3(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_3(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x80000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 43, 77); + return jjStartNfaWithStates_3(6, 43, 78); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 48, 77); + return jjStartNfaWithStates_3(6, 48, 78); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(6, 207, 77); + return jjStartNfaWithStates_3(6, 207, 78); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 222, 77); + return jjStartNfaWithStates_3(6, 222, 78); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(6, 223, 77); + return jjStartNfaWithStates_3(6, 223, 78); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 421, 77); + return jjStartNfaWithStates_3(6, 421, 78); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 433, 77); + return jjStartNfaWithStates_3(6, 433, 78); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 517, 77); + return jjStartNfaWithStates_3(6, 517, 78); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 672, 77); - else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 672, 78); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 699; + jjmatchedKind = 700; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x2000000000000004L, active11, 0x1000000L); case 79: case 111: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x20000000000180L, active11, 0L); case 80: case 112: - if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 693, 77); + if ((active10 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 694, 78); return jjMoveStringLiteralDfa7_3(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(6, 159, 77); + return jjStartNfaWithStates_3(6, 159, 78); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(6, 275, 77); + return jjStartNfaWithStates_3(6, 275, 78); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 280, 77); + return jjStartNfaWithStates_3(6, 280, 78); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 283, 77); + return jjStartNfaWithStates_3(6, 283, 78); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 320, 77); + return jjStartNfaWithStates_3(6, 320, 78); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 534, 77); + return jjStartNfaWithStates_3(6, 534, 78); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 696, 77); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_3(6, 714, 77); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 697, 78); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_3(6, 715, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x800000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_3(6, 326, 77); + return jjStartNfaWithStates_3(6, 326, 78); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 345, 77); + return jjStartNfaWithStates_3(6, 345, 78); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_3(6, 392, 77); + return jjStartNfaWithStates_3(6, 392, 78); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(6, 484, 77); + return jjStartNfaWithStates_3(6, 484, 78); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_3(6, 516, 77); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 722, 77); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); + return jjStartNfaWithStates_3(6, 516, 78); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(6, 723, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x400000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(6, 87, 77); + return jjStartNfaWithStates_3(6, 87, 78); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(6, 109, 77); + return jjStartNfaWithStates_3(6, 109, 78); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -18656,32 +18689,32 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 186, 77); + return jjStartNfaWithStates_3(6, 186, 78); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 210, 77); + return jjStartNfaWithStates_3(6, 210, 78); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(6, 474, 77); + return jjStartNfaWithStates_3(6, 474, 78); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 475, 77); + return jjStartNfaWithStates_3(6, 475, 78); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 551, 77); + return jjStartNfaWithStates_3(6, 551, 78); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 639, 77); + return jjStartNfaWithStates_3(6, 639, 78); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(6, 673, 77); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 697, 77); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_3(6, 712, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400120a0000L); + return jjStartNfaWithStates_3(6, 673, 78); + else if ((active10 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 698, 78); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_3(6, 713, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x80024140000L); case 85: case 117: - return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x4000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -18691,17 +18724,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 64, 77); + return jjStartNfaWithStates_3(6, 64, 78); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 312, 77); + return jjStartNfaWithStates_3(6, 312, 78); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(6, 404, 77); + return jjStartNfaWithStates_3(6, 404, 78); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 443, 77); + return jjStartNfaWithStates_3(6, 443, 78); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 448, 77); + return jjStartNfaWithStates_3(6, 448, 78); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 662, 77); + return jjStartNfaWithStates_3(6, 662, 78); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -18723,13 +18756,13 @@ private final int jjMoveStringLiteralDfa7_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_3(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x8000000000000000L, active11, 0x1000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(7, 552, 77); + return jjStartNfaWithStates_3(7, 552, 78); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(7, 555, 77); + return jjStartNfaWithStates_3(7, 555, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -18744,136 +18777,138 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 57, 77); + return jjStartNfaWithStates_3(7, 57, 78); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 156, 77); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 738, 77); + return jjStartNfaWithStates_3(7, 156, 78); + else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(7, 676, 78); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(7, 739, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_3(7, 6, 77); + return jjStartNfaWithStates_3(7, 6, 78); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(7, 13, 77); + return jjStartNfaWithStates_3(7, 13, 78); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(7, 80, 77); + return jjStartNfaWithStates_3(7, 80, 78); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 108, 77); + return jjStartNfaWithStates_3(7, 108, 78); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_3(7, 135, 77); + return jjStartNfaWithStates_3(7, 135, 78); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 167, 77); + return jjStartNfaWithStates_3(7, 167, 78); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(7, 272, 77); + return jjStartNfaWithStates_3(7, 272, 78); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(7, 299, 77); + return jjStartNfaWithStates_3(7, 299, 78); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(7, 302, 77); + return jjStartNfaWithStates_3(7, 302, 78); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 331, 77); + return jjStartNfaWithStates_3(7, 331, 78); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 346, 77); + return jjStartNfaWithStates_3(7, 346, 78); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 374, 77); + return jjStartNfaWithStates_3(7, 374, 78); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 441, 77); + return jjStartNfaWithStates_3(7, 441, 78); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(7, 469, 77); + return jjStartNfaWithStates_3(7, 469, 78); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(7, 524, 77); + return jjStartNfaWithStates_3(7, 524, 78); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(7, 547, 77); + return jjStartNfaWithStates_3(7, 547, 78); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 556, 77); + return jjStartNfaWithStates_3(7, 556, 78); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(7, 660, 77); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 721, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjStartNfaWithStates_3(7, 660, 78); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(7, 722, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x20000000L); case 70: case 102: - if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 692, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); + if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 693, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 189, 77); + return jjStartNfaWithStates_3(7, 189, 78); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 245, 77); + return jjStartNfaWithStates_3(7, 245, 78); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 395, 77); + return jjStartNfaWithStates_3(7, 395, 78); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 642, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjStartNfaWithStates_3(7, 642, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x2000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(7, 174, 77); + return jjStartNfaWithStates_3(7, 174, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x2000000000000000L, active11, 0x80000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(7, 489, 77); + return jjStartNfaWithStates_3(7, 489, 78); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 209, 77); + return jjStartNfaWithStates_3(7, 209, 78); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(7, 278, 77); + return jjStartNfaWithStates_3(7, 278, 78); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 359, 77); + return jjStartNfaWithStates_3(7, 359, 78); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_3(7, 581, 77); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(7, 734, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x8000000L); + return jjStartNfaWithStates_3(7, 581, 78); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(7, 735, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x10000000L); case 77: case 109: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 231, 77); + return jjStartNfaWithStates_3(7, 231, 78); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x400400000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 694, 77); + if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 695, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(7, 554, 77); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 706, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjStartNfaWithStates_3(7, 554, 78); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_3(7, 707, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x100000000040180L, active11, 0x800000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -18882,68 +18917,68 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 154, 77); + return jjStartNfaWithStates_3(7, 154, 78); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(7, 333, 77); + return jjStartNfaWithStates_3(7, 333, 78); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 348, 77); + return jjStartNfaWithStates_3(7, 348, 78); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(7, 403, 77); + return jjStartNfaWithStates_3(7, 403, 78); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 437, 77); + return jjStartNfaWithStates_3(7, 437, 78); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 450, 77); + return jjStartNfaWithStates_3(7, 450, 78); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 615, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjStartNfaWithStates_3(7, 615, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x100000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(7, 175, 77); + return jjStartNfaWithStates_3(7, 175, 78); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 354, 77); + return jjStartNfaWithStates_3(7, 354, 78); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 476, 77); + return jjStartNfaWithStates_3(7, 476, 78); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 538, 77); + return jjStartNfaWithStates_3(7, 538, 78); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(7, 661, 77); - return jjMoveStringLiteralDfa8_3(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); + return jjStartNfaWithStates_3(7, 661, 78); + return jjMoveStringLiteralDfa8_3(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x200000L); case 85: case 117: - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x20L); case 86: case 118: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 172, 77); + return jjStartNfaWithStates_3(7, 172, 78); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(7, 466, 77); + return jjStartNfaWithStates_3(7, 466, 78); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 236, 77); + return jjStartNfaWithStates_3(7, 236, 78); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 253, 77); + return jjStartNfaWithStates_3(7, 253, 78); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(7, 467, 77); + return jjStartNfaWithStates_3(7, 467, 78); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(7, 468, 77); + return jjStartNfaWithStates_3(7, 468, 78); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 503, 77); + return jjStartNfaWithStates_3(7, 503, 78); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_3(7, 518, 77); + return jjStartNfaWithStates_3(7, 518, 78); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 627, 77); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 730, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + return jjStartNfaWithStates_3(7, 627, 78); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(7, 731, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x4500000L); case 90: case 122: return jjMoveStringLiteralDfa8_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -18964,30 +18999,30 @@ private final int jjMoveStringLiteralDfa8_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x80000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x100000L); case 65: case 97: return jjMoveStringLiteralDfa9_3(active0, 0x11000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0x300020000L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0xa000L, active9, 0x10000000L, active10, 0x40000L, active11, 0L); case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_3(8, 578, 77); + return jjStartNfaWithStates_3(8, 578, 78); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(8, 618, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjStartNfaWithStates_3(8, 618, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x80000000020L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(8, 93, 77); + return jjStartNfaWithStates_3(8, 93, 78); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(8, 235, 77); + return jjStartNfaWithStates_3(8, 235, 78); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(8, 666, 77); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(8, 732, 77); + return jjStartNfaWithStates_3(8, 666, 78); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(8, 733, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -18997,7 +19032,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_3(8, 192, 77); + return jjStartNfaWithStates_3(8, 192, 78); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -19014,15 +19049,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 371, 77); + return jjStartNfaWithStates_3(8, 371, 78); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 446, 77); + return jjStartNfaWithStates_3(8, 446, 78); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 456, 77); + return jjStartNfaWithStates_3(8, 456, 78); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 522, 77); + return jjStartNfaWithStates_3(8, 522, 78); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(8, 607, 77); + return jjStartNfaWithStates_3(8, 607, 78); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -19032,44 +19067,44 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_3(8, 137, 77); + return jjStartNfaWithStates_3(8, 137, 78); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 630, 77); + return jjStartNfaWithStates_3(8, 630, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(8, 22, 77); + return jjStartNfaWithStates_3(8, 22, 78); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 202, 77); + return jjStartNfaWithStates_3(8, 202, 78); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(8, 219, 77); + return jjStartNfaWithStates_3(8, 219, 78); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_3(8, 262, 77); + return jjStartNfaWithStates_3(8, 262, 78); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 438, 77); + return jjStartNfaWithStates_3(8, 438, 78); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(8, 483, 77); + return jjStartNfaWithStates_3(8, 483, 78); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(8, 737, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(8, 738, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x400000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(8, 42, 77); - return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x81000000L); + return jjStartNfaWithStates_3(8, 42, 78); + return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x3c0010000878L, active11, 0x102000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(8, 145, 77); + return jjStartNfaWithStates_3(8, 145, 78); break; case 76: case 108: @@ -19081,11 +19116,11 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x1000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(8, 29, 77); + return jjStartNfaWithStates_3(8, 29, 78); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -19097,27 +19132,27 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 200, 77); + return jjStartNfaWithStates_3(8, 200, 78); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(8, 284, 77); + return jjStartNfaWithStates_3(8, 284, 78); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(8, 415, 77); + return jjStartNfaWithStates_3(8, 415, 78); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 439, 77); - return jjMoveStringLiteralDfa9_3(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); + return jjStartNfaWithStates_3(8, 439, 78); + return jjMoveStringLiteralDfa9_3(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x2000000000008000L, active11, 0x400000L); case 79: case 111: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x800000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 113, 77); + return jjStartNfaWithStates_3(8, 113, 78); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x4000000L); case 81: case 113: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -19129,18 +19164,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(8, 146, 77); + return jjStartNfaWithStates_3(8, 146, 78); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 264, 77); + return jjStartNfaWithStates_3(8, 264, 78); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_3(8, 523, 77); + return jjStartNfaWithStates_3(8, 523, 78); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_3(8, 577, 77); + return jjStartNfaWithStates_3(8, 577, 78); return jjMoveStringLiteralDfa9_3(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -19148,57 +19183,57 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 118, 77); + return jjStartNfaWithStates_3(8, 118, 78); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_3(8, 263, 77); + return jjStartNfaWithStates_3(8, 263, 78); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 496, 77); + return jjStartNfaWithStates_3(8, 496, 78); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 500, 77); + return jjStartNfaWithStates_3(8, 500, 78); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 504, 77); + return jjStartNfaWithStates_3(8, 504, 78); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(8, 559, 77); + return jjStartNfaWithStates_3(8, 559, 78); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(8, 601, 77); + return jjStartNfaWithStates_3(8, 601, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2008000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x4010000000L); case 86: case 118: return jjMoveStringLiteralDfa9_3(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(8, 226, 77); + return jjStartNfaWithStates_3(8, 226, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(8, 460, 77); + return jjStartNfaWithStates_3(8, 460, 78); return jjMoveStringLiteralDfa9_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 248, 77); + return jjStartNfaWithStates_3(8, 248, 78); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 266, 77); + return jjStartNfaWithStates_3(8, 266, 78); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(8, 461, 77); + return jjStartNfaWithStates_3(8, 461, 78); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 625, 77); - else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 695, 77); - else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 702, 77); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(8, 724, 77); + return jjStartNfaWithStates_3(8, 625, 78); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 696, 78); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 703, 78); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(8, 725, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -19227,62 +19262,62 @@ private final int jjMoveStringLiteralDfa9_3(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(9, 31, 77); + return jjStartNfaWithStates_3(9, 31, 78); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 138, 77); + return jjStartNfaWithStates_3(9, 138, 78); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 631, 77); - return jjMoveStringLiteralDfa10_3(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjStartNfaWithStates_3(9, 631, 78); + return jjMoveStringLiteralDfa10_3(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 358, 77); + return jjStartNfaWithStates_3(9, 358, 78); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 369, 77); + return jjStartNfaWithStates_3(9, 369, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(9, 28, 77); + return jjStartNfaWithStates_3(9, 28, 78); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(9, 148, 77); + return jjStartNfaWithStates_3(9, 148, 78); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 155, 77); + return jjStartNfaWithStates_3(9, 155, 78); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 294, 77); + return jjStartNfaWithStates_3(9, 294, 78); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(9, 295, 77); + return jjStartNfaWithStates_3(9, 295, 78); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 305, 77); + return jjStartNfaWithStates_3(9, 305, 78); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(9, 465, 77); + return jjStartNfaWithStates_3(9, 465, 78); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(9, 471, 77); + return jjStartNfaWithStates_3(9, 471, 78); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 511, 77); + return jjStartNfaWithStates_3(9, 511, 78); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(9, 558, 77); + return jjStartNfaWithStates_3(9, 558, 78); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 612, 77); + return jjStartNfaWithStates_3(9, 612, 78); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(9, 623, 77); - else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(9, 727, 77); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(9, 729, 77); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 731, 77); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(9, 623, 78); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(9, 728, 78); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(9, 730, 78); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(9, 732, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x400000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(9, 405, 77); + return jjStartNfaWithStates_3(9, 405, 78); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 548, 77); + return jjStartNfaWithStates_3(9, 548, 78); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(9, 606, 77); - else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 700, 77); + return jjStartNfaWithStates_3(9, 606, 78); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 701, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -19293,15 +19328,15 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(9, 162, 77); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80010L); + return jjStartNfaWithStates_3(9, 162, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100020L); case 76: case 108: return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(9, 342, 77); + return jjStartNfaWithStates_3(9, 342, 78); return jjMoveStringLiteralDfa10_3(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -19310,71 +19345,71 @@ else if ((active10 & 0x1000000000000000L) != 0L) jjmatchedKind = 98; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x3c0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x2000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 114, 77); + return jjStartNfaWithStates_3(9, 114, 78); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 603, 77); + return jjStartNfaWithStates_3(9, 603, 78); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(9, 76, 77); + return jjStartNfaWithStates_3(9, 76, 78); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(9, 169, 77); + return jjStartNfaWithStates_3(9, 169, 78); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(9, 298, 77); + return jjStartNfaWithStates_3(9, 298, 78); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 497, 77); + return jjStartNfaWithStates_3(9, 497, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(9, 35, 77); + return jjStartNfaWithStates_3(9, 35, 78); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 74, 77); + return jjStartNfaWithStates_3(9, 74, 78); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 445, 77); + return jjStartNfaWithStates_3(9, 445, 78); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 458, 77); + return jjStartNfaWithStates_3(9, 458, 78); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_3(9, 648, 77); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 741, 77); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(9, 746, 77); + return jjStartNfaWithStates_3(9, 648, 78); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(9, 742, 78); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(9, 747, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(9, 30, 77); + return jjStartNfaWithStates_3(9, 30, 78); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(9, 173, 77); + return jjStartNfaWithStates_3(9, 173, 78); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(9, 462, 77); + return jjStartNfaWithStates_3(9, 462, 78); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 549, 77); + return jjStartNfaWithStates_3(9, 549, 78); return jjMoveStringLiteralDfa10_3(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x800000L); case 86: case 118: return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 314, 77); + return jjStartNfaWithStates_3(9, 314, 78); break; case 89: case 121: @@ -19384,17 +19419,17 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 293, 77); + return jjStartNfaWithStates_3(9, 293, 78); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(9, 397, 77); + return jjStartNfaWithStates_3(9, 397, 78); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 550, 77); + return jjStartNfaWithStates_3(9, 550, 78); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(9, 658, 77); + return jjStartNfaWithStates_3(9, 658, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); default : break; } @@ -19419,66 +19454,66 @@ private final int jjMoveStringLiteralDfa10_3(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_3(10, 579, 77); + return jjStartNfaWithStates_3(10, 579, 78); return jjMoveStringLiteralDfa11_3(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(10, 225, 77); + return jjStartNfaWithStates_3(10, 225, 78); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(10, 340, 77); + return jjStartNfaWithStates_3(10, 340, 78); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(10, 341, 77); + return jjStartNfaWithStates_3(10, 341, 78); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(10, 667, 77); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(10, 667, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x400000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(10, 40, 77); + return jjStartNfaWithStates_3(10, 40, 78); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(10, 89, 77); + return jjStartNfaWithStates_3(10, 89, 78); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_3(10, 132, 77); + return jjStartNfaWithStates_3(10, 132, 78); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 216, 77); + return jjStartNfaWithStates_3(10, 216, 78); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(10, 270, 77); + return jjStartNfaWithStates_3(10, 270, 78); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 508, 77); + return jjStartNfaWithStates_3(10, 508, 78); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(10, 527, 77); + return jjStartNfaWithStates_3(10, 527, 78); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(10, 620, 77); + return jjStartNfaWithStates_3(10, 620, 78); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 624, 77); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(10, 735, 77); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); + return jjStartNfaWithStates_3(10, 624, 78); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(10, 736, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x3c0000000000L, active11, 0x100020L); case 70: case 102: return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_3(10, 459, 77); + return jjStartNfaWithStates_3(10, 459, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_3(10, 67, 77); + return jjStartNfaWithStates_3(10, 67, 78); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 418, 77); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjStartNfaWithStates_3(10, 418, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 73: case 105: return jjMoveStringLiteralDfa11_3(active0, 0x21000000000L, active1, 0x800000002000L, active2, 0x1000L, active3, 0x2L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(10, 95, 77); + return jjStartNfaWithStates_3(10, 95, 78); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(10, 557, 77); + return jjStartNfaWithStates_3(10, 557, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -19486,18 +19521,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(10, 168, 77); + return jjStartNfaWithStates_3(10, 168, 78); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(10, 553, 77); + return jjStartNfaWithStates_3(10, 553, 78); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_3(10, 651, 77); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 728, 77); + return jjStartNfaWithStates_3(10, 651, 78); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(10, 729, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -19505,9 +19540,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(10, 604, 77); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(10, 726, 77); + return jjStartNfaWithStates_3(10, 604, 78); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(10, 727, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -19515,22 +19550,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(10, 105, 77); + return jjStartNfaWithStates_3(10, 105, 78); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 560, 77); + return jjStartNfaWithStates_3(10, 560, 78); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(10, 597, 77); + return jjStartNfaWithStates_3(10, 597, 78); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(10, 621, 77); + return jjStartNfaWithStates_3(10, 621, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(10, 104, 77); + return jjStartNfaWithStates_3(10, 104, 78); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(10, 171, 77); + return jjStartNfaWithStates_3(10, 171, 78); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 290, 77); + return jjStartNfaWithStates_3(10, 290, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -19540,11 +19575,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 501, 77); + return jjStartNfaWithStates_3(10, 501, 78); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_3(10, 585, 77); + return jjStartNfaWithStates_3(10, 585, 78); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 610, 77); + return jjStartNfaWithStates_3(10, 610, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -19552,7 +19587,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 125, 77); + return jjStartNfaWithStates_3(10, 125, 78); break; case 88: case 120: @@ -19560,11 +19595,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 55, 77); + return jjStartNfaWithStates_3(10, 55, 78); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_3(10, 257, 77); + return jjStartNfaWithStates_3(10, 257, 78); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_3(10, 586, 77); + return jjStartNfaWithStates_3(10, 586, 78); break; default : break; @@ -19583,11 +19618,11 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_3(11, 512, 77); + return jjStartNfaWithStates_3(11, 512, 78); return jjMoveStringLiteralDfa12_3(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -19598,31 +19633,31 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 633, 77); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjStartNfaWithStates_3(11, 633, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 61, 77); + return jjStartNfaWithStates_3(11, 61, 78); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 121, 77); + return jjStartNfaWithStates_3(11, 121, 78); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 124, 77); + return jjStartNfaWithStates_3(11, 124, 78); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(11, 273, 77); + return jjStartNfaWithStates_3(11, 273, 78); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(11, 493, 77); + return jjStartNfaWithStates_3(11, 493, 78); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(11, 525, 77); + return jjStartNfaWithStates_3(11, 525, 78); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(11, 544, 77); + return jjStartNfaWithStates_3(11, 544, 78); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(11, 655, 77); + return jjStartNfaWithStates_3(11, 655, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -19633,9 +19668,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 123, 77); + return jjStartNfaWithStates_3(11, 123, 78); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 381, 77); + return jjStartNfaWithStates_3(11, 381, 78); break; case 73: case 105: @@ -19643,14 +19678,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(11, 426, 77); + return jjStartNfaWithStates_3(11, 426, 78); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(11, 594, 77); + return jjStartNfaWithStates_3(11, 594, 78); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 502, 77); + return jjStartNfaWithStates_3(11, 502, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -19658,11 +19693,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(11, 77, 77); + return jjStartNfaWithStates_3(11, 77, 78); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(11, 277, 77); + return jjStartNfaWithStates_3(11, 277, 78); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(11, 546, 77); + return jjStartNfaWithStates_3(11, 546, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -19673,39 +19708,39 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_3(11, 130, 77); + return jjStartNfaWithStates_3(11, 130, 78); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_3(11, 328, 77); + return jjStartNfaWithStates_3(11, 328, 78); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(11, 529, 77); + return jjStartNfaWithStates_3(11, 529, 78); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_3(11, 580, 77); + return jjStartNfaWithStates_3(11, 580, 78); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(11, 588, 77); + return jjStartNfaWithStates_3(11, 588, 78); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(11, 595, 77); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); + return jjStartNfaWithStates_3(11, 595, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x400000L); case 83: case 115: return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x70L, active11, 0L); case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 244, 77); + return jjStartNfaWithStates_3(11, 244, 78); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(11, 338, 77); + return jjStartNfaWithStates_3(11, 338, 78); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_3(11, 582, 77); - else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_3(11, 708, 77); + return jjStartNfaWithStates_3(11, 582, 78); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_3(11, 709, 78); return jjMoveStringLiteralDfa12_3(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x100000000L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(11, 723, 77); + if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(11, 724, 78); break; default : break; @@ -19724,14 +19759,14 @@ private final int jjMoveStringLiteralDfa12_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_3(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x1e0000000070L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x3c0000000070L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x6800000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(12, 170, 77); + return jjStartNfaWithStates_3(12, 170, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -19739,26 +19774,26 @@ private final int jjMoveStringLiteralDfa12_3(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(12, 543, 77); + return jjStartNfaWithStates_3(12, 543, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(12, 140, 77); + return jjStartNfaWithStates_3(12, 140, 78); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 634, 77); + return jjStartNfaWithStates_3(12, 634, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(12, 111, 77); + return jjStartNfaWithStates_3(12, 111, 78); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(12, 289, 77); + return jjStartNfaWithStates_3(12, 289, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(12, 591, 77); + return jjStartNfaWithStates_3(12, 591, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -19766,7 +19801,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(12, 668, 77); + return jjStartNfaWithStates_3(12, 668, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -19774,22 +19809,22 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(12, 36, 77); + return jjStartNfaWithStates_3(12, 36, 78); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_3(12, 193, 77); + return jjStartNfaWithStates_3(12, 193, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_3(12, 584, 77); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(12, 584, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 637, 77); + return jjStartNfaWithStates_3(12, 637, 78); return jjMoveStringLiteralDfa13_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -19803,7 +19838,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(12, 596, 77); + return jjStartNfaWithStates_3(12, 596, 78); break; default : break; @@ -19826,50 +19861,50 @@ private final int jjMoveStringLiteralDfa13_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 126, 77); + return jjStartNfaWithStates_3(13, 126, 78); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(13, 494, 77); + return jjStartNfaWithStates_3(13, 494, 78); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(13, 656, 77); - return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(13, 656, 78); + return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(13, 143, 77); + return jjStartNfaWithStates_3(13, 143, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(13, 593, 77); + return jjStartNfaWithStates_3(13, 593, 78); return jjMoveStringLiteralDfa14_3(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(13, 85, 77); + return jjStartNfaWithStates_3(13, 85, 78); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(13, 408, 77); + return jjStartNfaWithStates_3(13, 408, 78); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(13, 409, 77); + return jjStartNfaWithStates_3(13, 409, 78); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(13, 590, 77); + return jjStartNfaWithStates_3(13, 590, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 635, 77); + return jjStartNfaWithStates_3(13, 635, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(13, 292, 77); + return jjStartNfaWithStates_3(13, 292, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(13, 336, 77); + return jjStartNfaWithStates_3(13, 336, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -19883,15 +19918,15 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_3(13, 258, 77); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); + return jjStartNfaWithStates_3(13, 258, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x400000L); case 79: case 111: return jjMoveStringLiteralDfa14_3(active0, 0x20000000000L, active1, 0x100000000000000L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 319, 77); + return jjStartNfaWithStates_3(13, 319, 78); break; case 82: case 114: @@ -19899,17 +19934,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 510, 77); + return jjStartNfaWithStates_3(13, 510, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(13, 463, 77); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); + return jjStartNfaWithStates_3(13, 463, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x3c0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 435, 77); + return jjStartNfaWithStates_3(13, 435, 78); break; case 89: case 121: @@ -19941,38 +19976,38 @@ private final int jjMoveStringLiteralDfa14_3(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(14, 425, 77); + return jjStartNfaWithStates_3(14, 425, 78); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 636, 77); + return jjStartNfaWithStates_3(14, 636, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(14, 99, 77); + return jjStartNfaWithStates_3(14, 99, 78); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(14, 102, 77); + return jjStartNfaWithStates_3(14, 102, 78); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_3(14, 329, 77); + return jjStartNfaWithStates_3(14, 329, 78); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 638, 77); + return jjStartNfaWithStates_3(14, 638, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 120, 77); + return jjStartNfaWithStates_3(14, 120, 78); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(14, 492, 77); + return jjStartNfaWithStates_3(14, 492, 78); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(14, 654, 77); + return jjStartNfaWithStates_3(14, 654, 78); return jjMoveStringLiteralDfa15_3(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(14, 480, 77); + return jjStartNfaWithStates_3(14, 480, 78); break; case 73: case 105: - return jjMoveStringLiteralDfa15_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa15_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -19982,11 +20017,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(14, 41, 77); + return jjStartNfaWithStates_3(14, 41, 78); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_3(14, 327, 77); + return jjStartNfaWithStates_3(14, 327, 78); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(14, 609, 77); + return jjStartNfaWithStates_3(14, 609, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -19994,23 +20029,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(14, 107, 77); + return jjStartNfaWithStates_3(14, 107, 78); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 575, 77); + return jjStartNfaWithStates_3(14, 575, 78); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(14, 592, 77); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(14, 592, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) - return jjStartNfaWithStates_3(14, 73, 77); + return jjStartNfaWithStates_3(14, 73, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(14, 424, 77); + return jjStartNfaWithStates_3(14, 424, 78); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_3(14, 641, 77); + return jjStartNfaWithStates_3(14, 641, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -20018,13 +20053,13 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(14, 614, 77); + return jjStartNfaWithStates_3(14, 614, 78); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_3(14, 650, 77); + return jjStartNfaWithStates_3(14, 650, 78); break; case 89: case 121: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); default : break; } @@ -20046,7 +20081,7 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(15, 86, 77); + return jjStartNfaWithStates_3(15, 86, 78); return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -20060,12 +20095,12 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(15, 23, 77); + return jjStartNfaWithStates_3(15, 23, 78); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_3(15, 69, 77); + return jjStartNfaWithStates_3(15, 69, 78); break; case 76: case 108: @@ -20091,17 +20126,17 @@ else if ((active2 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(15, 96, 77); + return jjStartNfaWithStates_3(15, 96, 78); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_3(15, 576, 77); + return jjStartNfaWithStates_3(15, 576, 78); return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -20115,7 +20150,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); default : break; } @@ -20137,24 +20172,24 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(16, 103, 77); - return jjMoveStringLiteralDfa17_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjStartNfaWithStates_3(16, 103, 78); + return jjMoveStringLiteralDfa17_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(16, 482, 77); - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjStartNfaWithStates_3(16, 482, 78); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(16, 84, 77); + return jjStartNfaWithStates_3(16, 84, 78); break; case 72: case 104: return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -20170,7 +20205,7 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_3(16, 128, 77); + return jjStartNfaWithStates_3(16, 128, 78); break; case 82: case 114: @@ -20194,12 +20229,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 380, 77); + return jjStartNfaWithStates_3(16, 380, 78); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 574, 77); + return jjStartNfaWithStates_3(16, 574, 78); break; default : break; @@ -20218,7 +20253,7 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -20228,17 +20263,17 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_3(17, 71, 77); + return jjStartNfaWithStates_3(17, 71, 78); return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(17, 101, 77); + return jjStartNfaWithStates_3(17, 101, 78); return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(17, 570, 77); + return jjStartNfaWithStates_3(17, 570, 78); break; case 73: case 105: @@ -20254,7 +20289,7 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 86: case 118: return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -20281,15 +20316,15 @@ private final int jjMoveStringLiteralDfa18_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x60000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc0000000000L, active11, 0L); case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(18, 571, 77); + return jjStartNfaWithStates_3(18, 571, 78); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_3(18, 587, 77); + return jjStartNfaWithStates_3(18, 587, 78); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(18, 589, 77); + return jjStartNfaWithStates_3(18, 589, 78); return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -20299,14 +20334,14 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_3(18, 644, 77); + return jjStartNfaWithStates_3(18, 644, 78); return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 76: case 108: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -20315,7 +20350,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -20324,7 +20359,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x4000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 84: case 116: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0x80000000L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x20L, active11, 0L); @@ -20349,25 +20384,25 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_3(19, 72, 77); - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); + return jjStartNfaWithStates_3(19, 72, 78); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x140000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x200000000000L, active11, 0L); case 68: case 100: return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(19, 337, 77); + return jjStartNfaWithStates_3(19, 337, 78); break; case 78: case 110: return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x80000000000L, active11, 0x400000400000L); case 82: case 114: return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20380,7 +20415,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(19, 479, 77); + return jjStartNfaWithStates_3(19, 479, 78); break; default : break; @@ -20411,30 +20446,30 @@ private final int jjMoveStringLiteralDfa20_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0x20000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x80000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(20, 91, 77); + return jjStartNfaWithStates_3(20, 91, 78); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(20, 184, 77); + return jjStartNfaWithStates_3(20, 184, 78); return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_3(20, 70, 77); + return jjStartNfaWithStates_3(20, 70, 78); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(20, 481, 77); - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); + return jjStartNfaWithStates_3(20, 481, 78); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x200000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x100000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 79: case 111: return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20443,11 +20478,11 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x40000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(20, 24, 77); + return jjStartNfaWithStates_3(20, 24, 78); break; default : break; @@ -20466,27 +20501,27 @@ private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 65: case 97: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000040L, active11, 0L); case 67: case 99: return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_3(21, 645, 77); + return jjStartNfaWithStates_3(21, 645, 78); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(21, 141, 77); - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(21, 682, 77); + return jjStartNfaWithStates_3(21, 141, 78); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(21, 683, 77); - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); + return jjStartNfaWithStates_3(21, 683, 78); + else if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(21, 684, 78); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x200000000000L, active11, 0L); case 70: case 102: return jjMoveStringLiteralDfa22_3(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20538,17 +20573,17 @@ private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(22, 412, 77); + return jjStartNfaWithStates_3(22, 412, 78); return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x100000000000L, active11, 0x200000L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x200000000000L, active11, 0x400000L); case 78: case 110: return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); @@ -20560,7 +20595,7 @@ private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -20587,8 +20622,8 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(23, 684, 77); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(23, 685, 78); break; case 67: case 99: @@ -20599,7 +20634,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_3(23, 646, 77); + return jjStartNfaWithStates_3(23, 646, 78); break; case 76: case 108: @@ -20612,11 +20647,11 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x40000000000L, active11, 0x400000400000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(23, 562, 77); + return jjStartNfaWithStates_3(23, 562, 78); return jjMoveStringLiteralDfa24_3(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -20643,11 +20678,11 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(24, 413, 77); + return jjStartNfaWithStates_3(24, 413, 78); break; case 68: case 100: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000000L, active10, 0L, active11, 0L); @@ -20656,8 +20691,8 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(24, 681, 77); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(24, 682, 78); break; case 73: case 105: @@ -20679,7 +20714,7 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); default : break; } @@ -20704,36 +20739,36 @@ private final int jjMoveStringLiteralDfa25_3(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 564, 77); + return jjStartNfaWithStates_3(25, 564, 78); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 563, 77); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(25, 725, 77); + return jjStartNfaWithStates_3(25, 563, 78); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(25, 726, 78); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(25, 411, 77); + return jjStartNfaWithStates_3(25, 411, 78); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 573, 77); + return jjStartNfaWithStates_3(25, 573, 78); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(25, 410, 77); + return jjStartNfaWithStates_3(25, 410, 78); return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -20754,16 +20789,16 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(26, 567, 77); + return jjStartNfaWithStates_3(26, 567, 78); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(26, 566, 77); + return jjStartNfaWithStates_3(26, 566, 78); break; case 71: case 103: @@ -20771,7 +20806,7 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(26, 142, 77); + return jjStartNfaWithStates_3(26, 142, 78); break; case 79: case 111: @@ -20802,7 +20837,7 @@ private final int jjMoveStringLiteralDfa27_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20825,11 +20860,11 @@ private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(28, 569, 77); + return jjStartNfaWithStates_3(28, 569, 78); break; case 69: case 101: - return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20854,7 +20889,7 @@ private final int jjMoveStringLiteralDfa29_3(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_3(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -20879,11 +20914,11 @@ private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x400000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(30, 122, 77); + return jjStartNfaWithStates_3(30, 122, 78); return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -20904,8 +20939,8 @@ private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_3(31, 129, 77); - return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x200000000000L); + return jjStartNfaWithStates_3(31, 129, 78); + return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x400000000000L); default : break; } @@ -20924,7 +20959,7 @@ private final int jjMoveStringLiteralDfa32_3(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_3(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_3(active11, 0x400000000000L); default : break; } @@ -20943,8 +20978,8 @@ private final int jjMoveStringLiteralDfa33_3(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(33, 749, 77); + if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(33, 750, 78); break; default : break; @@ -20975,8 +21010,8 @@ private final int jjMoveNfa_3(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 763) - kind = 763; + if (kind > 764) + kind = 764; } break; case 58: @@ -20984,8 +21019,8 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 764) - kind = 764; + if (kind > 765) + kind = 765; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; @@ -20993,8 +21028,8 @@ else if (curChar == 39) case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) @@ -21009,30 +21044,28 @@ else if (curChar == 39) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (curChar == 36) jjCheckNAdd(27); break; - case 31: + case 78: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); - else if (curChar == 38) - jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (curChar == 36) jjCheckNAdd(27); break; - case 78: + case 77: if (curChar == 32) jjCheckNAddTwoStates(68, 69); if (curChar == 32) @@ -21042,15 +21075,17 @@ else if (curChar == 38) if (curChar == 32) jjCheckNAddTwoStates(61, 62); break; - case 77: + case 31: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); + else if (curChar == 38) + jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (curChar == 36) @@ -21065,8 +21100,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -21083,8 +21118,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 829) + kind = 829; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -21092,14 +21127,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } break; @@ -21116,8 +21151,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 758) + kind = 758; break; case 6: if (curChar == 34) @@ -21131,30 +21166,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 763) - kind = 763; + if (curChar == 34 && kind > 764) + kind = 764; break; case 11: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 815) + kind = 815; break; case 14: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 815) + kind = 815; break; case 15: if (curChar == 13) @@ -21171,15 +21206,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 23: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 24: @@ -21197,8 +21232,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -21208,8 +21243,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAdd(29); break; case 32: @@ -21229,25 +21264,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 826) + kind = 826; break; case 37: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 829) + kind = 829; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAdd(39); break; case 40: @@ -21261,8 +21296,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 753) + kind = 753; jjCheckNAdd(43); break; case 44: @@ -21276,22 +21311,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAddStates(93, 95); break; case 49: @@ -21309,8 +21344,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 53: @@ -21325,13 +21360,13 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 764) - kind = 764; - break; - case 59: if (curChar == 39 && kind > 765) kind = 765; break; + case 59: + if (curChar == 39 && kind > 766) + kind = 766; + break; case 61: if (curChar == 32) jjCheckNAddTwoStates(61, 62); @@ -21357,14 +21392,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 813) + kind = 813; break; case 75: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; default : break; @@ -21399,48 +21434,48 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } break; - case 31: + case 78: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } break; - case 78: + case 77: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 769) + kind = 769; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 770) + kind = 770; } break; - case 77: + case 31: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } break; @@ -21458,8 +21493,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -21482,8 +21517,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(71, 73); break; case 17: @@ -21502,21 +21537,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 819) - kind = 819; + if (curChar == 96 && kind > 822) + kind = 822; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 24: @@ -21526,15 +21561,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -21564,32 +21599,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 769) + kind = 769; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 770) + kind = 770; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 771) + kind = 771; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 772) + kind = 772; break; case 73: - if (kind > 810) - kind = 810; + if (kind > 813) + kind = 813; break; default : break; } @@ -21621,8 +21656,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21630,11 +21665,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 31: + case 78: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21642,11 +21677,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 77: + case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21662,8 +21697,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21676,8 +21711,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(71, 73); break; case 18: @@ -21688,15 +21723,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 824) + kind = 824; jjCheckNAdd(23); break; case 24: @@ -21706,15 +21741,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -21727,8 +21762,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 813) + kind = 813; break; default : break; } @@ -21772,7 +21807,7 @@ private final int jjMoveNfa_5(int startState, int curPos) { case 0: if (curChar == 47) - kind = 813; + kind = 816; break; case 1: if (curChar == 42) @@ -21826,136 +21861,136 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, switch (pos) { case 0: - if ((active10 & 0x3fffffe000000L) != 0L) - { - jjmatchedKind = 820; - return 31; - } - if ((active12 & 0x10000200L) != 0L) + if ((active12 & 0x20000400L) != 0L) return 76; - if ((active11 & 0x1000L) != 0L) + if ((active12 & 0x40000000L) != 0L) + return 58; + if ((active12 & 0x20L) != 0L) + return 77; + if ((active11 & 0x2000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; return 1; } - if ((active12 & 0x20000000L) != 0L) - return 58; - if ((active12 & 0x10L) != 0L) - return 77; - if ((active12 & 0x90001000000L) != 0L) - return 74; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57ff27efffL) != 0L) + if ((active10 & 0x7fffffe000000L) != 0L) { - jjmatchedKind = 820; - return 78; + jjmatchedKind = 823; + return 31; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active12 & 0x480002000000L) != 0L) + return 74; + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x635001b00000L) != 0L || (active12 & 0x1000000000L) != 0L) return 78; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0xc00000L) != 0L) return 11; - if ((active12 & 0x40000000L) != 0L) + if ((active12 & 0x80000000L) != 0L) return 79; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfff8000001ffffffL) != 0L || (active11 & 0x9caffe4fdfffL) != 0L) + { + jjmatchedKind = 823; + return 78; + } return -1; case 1: - if ((active12 & 0x90000000000L) != 0L) - return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) - return 78; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x7dfabfddffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 1; } return 78; } + if ((active12 & 0x480000000000L) != 0L) + return 72; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x820540220000L) != 0L) + return 78; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0xaffffffddfffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 2; } return 78; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x500000002000L) != 0L) return 78; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fefe0c38L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 78; + return 80; } - if ((active2 & 0x8000000000000000L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0x4004be00010e0000L) != 0L || (active11 & 0x300201c78fL) != 0L) + return 78; + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0xbffb41fffef1fffeL) != 0L || (active11 & 0xffcffdfc1870L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 80; - } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180100e3c7L) != 0L) return 78; + } return -1; case 4: if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 4; } return 80; } - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430022204809L) != 0L) - return 78; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7ddde05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0xbfc03cbf9ef5effeL) != 0L || (active11 & 0x79cfbbbc0b68L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 4; } return 78; } + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x3b414060001000L) != 0L || (active11 & 0x860044409012L) != 0L) + return 78; return -1; case 5: if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 5; } return 80; } - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 78; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0xbfe03c171e75effeL) != 0L || (active11 & 0x79cfbfdc0a28L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 5; } return 78; } + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x1000a880800000L) != 0L || (active11 & 0x200140L) != 0L) + return 78; return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x81a03c101c340ffeL) != 0L || (active11 & 0x484dbff40028L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 6; } return 78; @@ -21964,85 +21999,85 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, { if (jjmatchedPos != 6) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 6; } return 80; } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x3e4000070241e000L) != 0L || (active11 & 0x318200080a00L) != 0L) return 78; return -1; case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229bf80010L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0xa0001000300004L) != 0L || (active11 & 0x888040008L) != 0L) + return 78; + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0xa1003c001c05cffaL) != 0L || (active11 & 0x484537f00020L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 7; } return 78; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x444020004L) != 0L) - return 78; - if ((active2 & 0x8000000000000000L) != 0L) - return 80; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208be80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x20003c001805c87aL) != 0L || (active11 & 0x484117d00020L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 8; } return 78; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x8100000004000780L) != 0L || (active11 & 0x420200000L) != 0L) return 78; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) - return 78; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200081680010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x3c001801cc7aL) != 0L || (active11 & 0x400102d00020L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 9; } return 78; } + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x2000000000040100L) != 0L || (active11 & 0x84015000000L) != 0L) + return 78; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x81400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x102800000L) != 0L) return 78; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x3c001001c402L) != 0L || (active11 & 0x400000500020L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 10; } return 78; } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x3c0010014472L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 11; } return 78; } - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x100020L) != 0L) return 78; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x3c0000014472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 12; return 78; } @@ -22050,31 +22085,31 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) + return 78; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x3c0000004472L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 13; return 78; } - if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 78; return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 78; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 14; return 78; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 15; } return 78; @@ -22083,11 +22118,11 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 16; } return 78; @@ -22098,9 +22133,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x3c0000000070L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 17; return 78; } @@ -22108,20 +22143,20 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 18; } return 78; } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 19; return 78; } @@ -22129,29 +22164,29 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 20: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x3c0000000060L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 20; return 78; } + if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) + return 78; return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 21; return 78; } - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + if ((active2 & 0x2000L) != 0L || (active10 & 0x180000000020L) != 0L) return 78; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x240000000040L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 22; return 78; } @@ -22159,39 +22194,39 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x200000000040L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x40000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 23; return 78; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 78; return -1; case 24: - if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x400000400000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 24; return 78; } + if ((active6 & 0x20000000L) != 0L || (active10 & 0x40000000000L) != 0L) + return 78; return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 25; return 78; } - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x400000L) != 0L) return 78; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 26; return 78; } @@ -22199,45 +22234,45 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 27; return 78; } return -1; case 28: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active8 & 0x200000000000000L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 28; return 78; } - if ((active8 & 0x200000000000000L) != 0L) - return 78; return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 29; return 78; } return -1; case 30: - if ((active1 & 0x400000000000000L) != 0L) - return 78; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 30; return 78; } + if ((active1 & 0x400000000000000L) != 0L) + return 78; return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 31; return 78; } @@ -22245,9 +22280,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x400000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 823; jjmatchedPos = 32; return 78; } @@ -22273,74 +22308,76 @@ private final int jjMoveStringLiteralDfa0_4() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 34: - return jjStartNfaWithStates_4(0, 798, 79); + return jjStartNfaWithStates_4(0, 799, 79); case 36: - return jjStartNfaWithStates_4(0, 801, 78); + return jjStartNfaWithStates_4(0, 804, 78); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 794); + case 38: + return jjStopAtPos(0, 802); case 39: - return jjStartNfaWithStates_4(0, 797, 58); + return jjStartNfaWithStates_4(0, 798, 58); case 40: - return jjStopAtPos(0, 766); - case 41: return jjStopAtPos(0, 767); + case 41: + return jjStopAtPos(0, 768); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 789); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 779); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 790; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 778; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x480000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 777); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000a0000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); - case 62: jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + case 62: + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 783); case 91: - return jjStopAtPos(0, 774); - case 93: return jjStopAtPos(0, 775); + case 93: + return jjStopAtPos(0, 776); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 801); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000300000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_4(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa000c00000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14001800000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -22353,67 +22390,67 @@ private final int jjMoveStringLiteralDfa0_4() return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140020000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x400000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x880000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x40000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x100000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x8a000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x800000040000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff8000000000000L, 0x4000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x18401fffL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x6000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); case 123: - return jjStartNfaWithStates_4(0, 772, 77); + return jjStartNfaWithStates_4(0, 773, 77); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 800; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 774); default : return jjMoveNfa_4(0, 0); } @@ -22428,55 +22465,59 @@ private final int jjMoveStringLiteralDfa1_4(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x400000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 814; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x80000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x100000000000L) != 0L) + return jjStopAtPos(1, 812); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x2000000000L) != 0L) + return jjStopAtPos(1, 805); + break; + case 60: + if ((active12 & 0x800000000L) != 0L) + return jjStopAtPos(1, 803); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) + if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); - else if ((active12 & 0x80000L) != 0L) - return jjStopAtPos(1, 787); + else if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 62: - if ((active12 & 0x40000L) != 0L) - return jjStopAtPos(1, 786); - else if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(1, 790); - else if ((active12 & 0x8000000L) != 0L) - return jjStopAtPos(1, 795); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); + else if ((active12 & 0x800000L) != 0L) + return jjStopAtPos(1, 791); + else if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 65: case 97: - return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x200443c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0xff8000000000000L, active11, 0x400887880000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_4(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x2000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_4(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xb000000002000000L, active11, 0x10800004c003L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -22484,18 +22525,18 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedKind = 383; jjmatchedPos = 1; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(1, 720, 78); - return jjMoveStringLiteralDfa2_4(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(1, 721, 78); + return jjMoveStringLiteralDfa2_4(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); case 71: case 103: return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0x1cL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x4000000000000000L, active11, 0x10000003e0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22504,7 +22545,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_4(active0, 0x80000001f000L, active1, 0xf000L, active2, 0xc00000000000000L, active3, 0x8000400006000000L, active4, 0L, active5, 0L, active6, 0x1c00000000002L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x1000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0xfL, active5, 0L, active6, 0x4L, active7, 0L, active8, 0x4000000L, active9, 0L, active10, 0L, active11, 0x2000L, active12, 0L); case 78: case 110: if ((active4 & 0x10L) != 0L) @@ -22519,7 +22560,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ffc000000L, active11, 0x200160000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -22537,10 +22578,10 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x814600010400L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0xe000000000L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x8L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xfffffffe00000000L, active9, 0x7fffffL, active10, 0L, active11, 0L, active12, 0L); @@ -22551,7 +22592,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xc200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x18401800L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -22564,7 +22605,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f0000000000L, active11, 0x20000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -22572,10 +22613,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x3800000000000L, active11, 0x80000200000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x4000000c00000L, active11, 0x40000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_4(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22588,8 +22629,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(1, 51, 78); return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; default : break; @@ -22608,14 +22649,14 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(2, 811); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_4(2, 8, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x14100c006400L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x10000000ffcL, active11, 0x28201800c800L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -22628,7 +22669,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x10c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x21880000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -22649,14 +22690,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_4(2, 385, 78); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_4(2, 406, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x8000002020000000L, active11, 0x40000020L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_4(2, 20, 78); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_4(2, 388, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0x40003e0000401000L, active11, 0x4000000001fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -22664,14 +22705,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x3800000000000L, active11, 0x100000100000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_4(2, 37, 78); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(2, 301, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22679,7 +22720,7 @@ else if ((active4 & 0x200000000000L) != 0L) case 105: if ((active6 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(2, 432, 78); - return jjMoveStringLiteralDfa3_4(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x44000c007e000L, active11, 0x401000L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22698,14 +22739,14 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedKind = 545; jjmatchedPos = 2; } - else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(2, 716, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa82000000L, active12, 0L); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(2, 717, 78); + return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x38000000000000L, active11, 0x1504000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_4(2, 616, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x10000040000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -22713,10 +22754,10 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x4000010040L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_4(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x200000L, active12, 0L); case 80: case 112: if ((active3 & 0x4000L) != 0L) @@ -22728,7 +22769,7 @@ else if ((active3 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(2, 250, 78); else if ((active5 & 0x8L) != 0L) return jjStartNfaWithStates_4(2, 323, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x4201000002L, active11, 0L, active12, 0L); case 81: case 113: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22744,7 +22785,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x3fc0000000000000L, active11, 0x8080000400L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -22752,7 +22793,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x9002000000L, active11, 0x800000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -22778,7 +22819,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x800002000380L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -22804,7 +22845,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -22821,7 +22862,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x20000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22844,15 +22885,15 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, case 45: return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000000L, active11, 0L); - case 51: return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); + case 51: + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0L); case 56: - if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(3, 686, 78); + if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(3, 687, 78); break; case 95: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0xc0000000200002L, active11, 0x400000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -22862,14 +22903,14 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_4(3, 285, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400041000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x2400001000L, active11, 0x800082000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_4(3, 47, 78); else if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_4(3, 78, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000800000L, active11, 0L); case 67: case 99: if ((active2 & 0x4000000000L) != 0L) @@ -22882,7 +22923,7 @@ else if ((active3 & 0x800L) != 0L) jjmatchedKind = 203; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x100000002000000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0x300000000000000L, active1, 0x800L, active2, 0x238000000000L, active3, 0x8200101004L, active4, 0L, active5, 0x3f0L, active6, 0x40e0478100000000L, active7, 0L, active8, 0x1e0000000L, active9, 0x8200000000L, active10, 0x200000002000000L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) @@ -22897,9 +22938,9 @@ else if ((active7 & 0x20L) != 0L) jjmatchedKind = 453; jjmatchedPos = 3; } - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 689, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); + else if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 690, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x40L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) @@ -22944,9 +22985,9 @@ else if ((active10 & 0x80000L) != 0L) return jjStartNfaWithStates_4(3, 659, 78); else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_4(3, 664, 78); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(3, 719, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(3, 720, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0xc820000000L, active11, 0x40000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -22956,7 +22997,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x1000001e000L, active11, 0x200000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -22965,29 +23006,29 @@ else if ((active2 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_4(3, 185, 78); else if ((active6 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(3, 420, 78); - else if ((active11 & 0x40L) != 0L) + else if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 710; + jjmatchedKind = 711; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1800300L); case 73: case 105: - return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x400001200000004L, active11, 0x100100000L); case 75: case 107: if ((active7 & 0x10L) != 0L) return jjStartNfaWithStates_4(3, 452, 78); else if ((active8 & 0x80L) != 0L) return jjStartNfaWithStates_4(3, 519, 78); - else if ((active10 & 0x8000000000000000L) != 0L) + else if ((active11 & 0x1L) != 0L) { - jjmatchedKind = 703; + jjmatchedKind = 704; jjmatchedPos = 3; } - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_4(3, 713, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_4(3, 714, 78); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80002L); case 76: case 108: if ((active0 & 0x20000000000000L) != 0L) @@ -23009,9 +23050,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_4(3, 455, 78); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(3, 739, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(3, 740, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x200000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -23021,7 +23062,7 @@ else if ((active10 & 0x20000L) != 0L) jjmatchedKind = 657; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x100000L); + return jjMoveStringLiteralDfa4_4(active0, 0x280000000L, active1, 0x3c000000L, active2, 0x400000000000000L, active3, 0x100420000000L, active4, 0L, active5, 0x3000000000000L, active6, 0x800100000000000L, active7, 0L, active8, 0L, active9, 0x40400000000L, active10, 0x40000L, active11, 0x200000L); case 78: case 110: if ((active4 & 0x40000000L) != 0L) @@ -23037,28 +23078,28 @@ else if ((active6 & 0x800000000000L) != 0L) return jjStartNfaWithStates_4(3, 431, 78); else if ((active9 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(3, 626, 78); - else if ((active11 & 0x2L) != 0L) + else if ((active11 & 0x4L) != 0L) { - jjmatchedKind = 705; + jjmatchedKind = 706; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(3, 740, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(3, 741, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x8000400100100ff8L, active11, 0x20000000008L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(3, 240, 78); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_4(3, 279, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x400000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_4(3, 181, 78); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(3, 537, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x800c020400L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x10018040800L); case 81: case 113: return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -23084,17 +23125,17 @@ else if ((active6 & 0x40000L) != 0L) jjmatchedKind = 402; jjmatchedPos = 3; } - else if ((active10 & 0x10000000000L) != 0L) + else if ((active10 & 0x20000000000L) != 0L) { - jjmatchedKind = 680; + jjmatchedKind = 681; jjmatchedPos = 3; } - else if ((active11 & 0x2000L) != 0L) + else if ((active11 & 0x4000L) != 0L) { - jjmatchedKind = 717; + jjmatchedKind = 718; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x3c0000000000L, active11, 0x140020008010L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -23105,7 +23146,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_4(3, 531, 78); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_4(3, 628, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x3000000000400000L, active11, 0x800000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -23125,27 +23166,27 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(3, 419, 78); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_4(3, 598, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x84000401020L); case 85: case 117: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x38000000000000L, active11, 0x4000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(3, 442, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x8000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) return jjStartNfaWithStates_4(3, 533, 78); - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 701, 78); + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 702, 78); return jjMoveStringLiteralDfa4_4(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) return jjStartNfaWithStates_4(3, 389, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x800000000000000L, active11, 0L); default : break; } @@ -23163,18 +23204,18 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 688, 78); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 689, 78); break; case 54: - if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(4, 687, 78); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 688, 78); break; case 95: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0xd000000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x3c0000040000L, active11, 0x1a000000L); case 65: case 97: - return jjMoveStringLiteralDfa5_4(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x400000002000000L, active11, 0L); case 66: case 98: if ((active5 & 0x40000000000L) != 0L) @@ -23182,9 +23223,9 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(4, 744, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(4, 745, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x400000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -23231,21 +23272,21 @@ else if ((active9 & 0x400000000000L) != 0L) jjmatchedKind = 622; jjmatchedPos = 4; } - else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(4, 679, 78); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(4, 680, 78); + else if ((active10 & 0x8000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 691; jjmatchedPos = 4; } - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_4(4, 707, 78); - else if ((active11 & 0x800L) != 0L) + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_4(4, 708, 78); + else if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 715; + jjmatchedKind = 716; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x80002e00004L); + return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x8030000000000000L, active11, 0x100005c00008L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -23253,9 +23294,9 @@ else if ((active11 & 0x800L) != 0L) return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(4, 685, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + if ((active10 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(4, 686, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100001e000L, active11, 0x400000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -23274,10 +23315,10 @@ else if ((active5 & 0x80000000L) != 0L) jjmatchedKind = 351; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000000L, active11, 0x20L); case 73: case 105: - return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x3900000000000000L, active11, 0x8c200200100L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -23298,9 +23339,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(4, 750, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(4, 751, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x80040000L); case 77: case 109: return jjMoveStringLiteralDfa5_4(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -23317,10 +23358,10 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_4(4, 65, 78); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(4, 670, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x100100000L); case 79: case 111: - return jjMoveStringLiteralDfa5_4(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); + return jjMoveStringLiteralDfa5_4(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x240L); case 80: case 112: if ((active3 & 0x8000000000000L) != 0L) @@ -23328,7 +23369,7 @@ else if ((active10 & 0x40000000L) != 0L) jjmatchedKind = 243; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x700000000001a2L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000000L, active8, 0L, active9, 0L, active10, 0x40000000000000L, active11, 0x800L); case 82: case 114: if ((active0 & 0x800L) != 0L) @@ -23358,9 +23399,9 @@ else if ((active6 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_4(4, 444, 78); else if ((active10 & 0x20000000L) != 0L) return jjStartNfaWithStates_4(4, 669, 78); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(4, 677, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); + else if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(4, 678, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x8000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) @@ -23377,11 +23418,11 @@ else if ((active7 & 0x40L) != 0L) return jjStartNfaWithStates_4(4, 454, 78); else if ((active8 & 0x100000L) != 0L) return jjStartNfaWithStates_4(4, 532, 78); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_4(4, 704, 78); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(4, 718, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); + else if ((active11 & 0x2L) != 0L) + return jjStartNfaWithStates_4(4, 705, 78); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(4, 719, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x80000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) @@ -23414,10 +23455,10 @@ else if ((active9 & 0x800000L) != 0L) return jjStartNfaWithStates_4(4, 599, 78); else if ((active10 & 0x1000L) != 0L) return jjStartNfaWithStates_4(4, 652, 78); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x2000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x10000080000L); case 86: case 118: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -23425,11 +23466,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_4(4, 14, 78); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x800000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 733, 78); + if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(4, 734, 78); return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -23444,9 +23485,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_4(4, 188, 78); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_4(4, 198, 78); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(4, 745, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(4, 746, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200020000000L); case 90: case 122: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -23467,7 +23508,7 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x20000000000000L, active11, 0x5c00020L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -23475,7 +23516,7 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, jjmatchedKind = 507; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x140000000740078L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_4(active0, 0x1000000002000L, active1, 0L, active2, 0x800080L, active3, 0xc0080000002L, active4, 0x4400308000700L, active5, 0x8010000000000L, active6, 0x40183000L, active7, 0x1000020000003000L, active8, 0x100800400800L, active9, 0x200300000L, active10, 0x280000000740078L, active11, 0x40000L); case 66: case 98: return jjMoveStringLiteralDfa6_4(active0, 0xc00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23490,7 +23531,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(5, 447, 78); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(5, 602, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x8000200000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -23506,7 +23547,7 @@ else if ((active8 & 0x8L) != 0L) jjmatchedKind = 515; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x1e0010000000L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0x300000000000000L, active1, 0x40000000000000L, active2, 0x200L, active3, 0x600L, active4, 0x60L, active5, 0L, active6, 0x4060000000000000L, active7, 0x80000000000000L, active8, 0x10L, active9, 0x48000000000000L, active10, 0x3c0010000000L, active11, 0L); case 69: case 101: if ((active0 & 0x4000000000L) != 0L) @@ -23547,9 +23588,9 @@ else if ((active10 & 0x800000L) != 0L) return jjStartNfaWithStates_4(5, 663, 78); else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(5, 671, 78); - else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(5, 676, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + else if ((active10 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(5, 677, 78); + return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x100000800L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -23559,20 +23600,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_4(5, 247, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x400000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_4(5, 310, 78); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_4(5, 514, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_4(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + return jjMoveStringLiteralDfa6_4(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x100000L); case 75: case 107: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -23581,7 +23622,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_4(5, 416, 78); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_4(5, 513, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x80000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -23615,17 +23656,17 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedKind = 478; jjmatchedPos = 5; } - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_4(5, 711, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + else if ((active11 & 0x100L) != 0L) + return jjStartNfaWithStates_4(5, 712, 78); + return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0xd00001004000000L, active11, 0x4200000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x3040000200000000L, active11, 0x800000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(5, 490, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x20080000L); case 81: case 113: return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23649,7 +23690,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x2000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -23666,9 +23707,9 @@ else if ((active5 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_4(5, 382, 78); else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_4(5, 398, 78); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 691, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 692, 78); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x8000000000000000L, active11, 0x180000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -23705,21 +23746,21 @@ else if ((active9 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(5, 611, 78); else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(5, 675, 78); - else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(5, 678, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(5, 679, 78); + return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x10000000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_4(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa6_4(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x200L); case 86: case 118: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x8000004L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x10000008L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(5, 282, 78); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_4(5, 709, 78); + else if ((active11 & 0x40L) != 0L) + return jjStartNfaWithStates_4(5, 710, 78); return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -23737,7 +23778,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -23759,13 +23800,13 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(6, 464, 78); break; case 95: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x100000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200008000000L); + return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x100000000000e00L, active11, 0x400010000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20L); case 67: case 99: if ((active2 & 0x40000000000000L) != 0L) @@ -23788,7 +23829,7 @@ else if ((active5 & 0x20L) != 0L) return jjStartNfaWithStates_4(6, 325, 78); else if ((active10 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(6, 674, 78); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x8000000004000000L, active11, 0L); case 69: case 101: if ((active0 & 0x100000000000000L) != 0L) @@ -23826,13 +23867,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(6, 665, 78); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(6, 742, 78); else if ((active11 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(6, 743, 78); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(6, 748, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x45000004L); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(6, 744, 78); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(6, 749, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x3c1000000000L, active11, 0x8a000008L); case 70: case 102: return jjMoveStringLiteralDfa7_4(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23855,21 +23896,21 @@ else if ((active6 & 0x400000000000L) != 0L) return jjStartNfaWithStates_4(6, 430, 78); else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(6, 499, 78); - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 698, 78); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 736, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 699, 78); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(6, 737, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x800000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(6, 50, 78); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 747, 78); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(6, 748, 78); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x400200000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -23895,7 +23936,7 @@ else if ((active6 & 0x40000000L) != 0L) return jjMoveStringLiteralDfa7_4(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_4(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0x41000000L, active1, 0L, active2, 0xf800L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x188L, active10, 0x80000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80000000000L) != 0L) @@ -23921,19 +23962,19 @@ else if ((active8 & 0x10000L) != 0L) } else if ((active10 & 0x100000000L) != 0L) return jjStartNfaWithStates_4(6, 672, 78); - else if ((active10 & 0x800000000000000L) != 0L) + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 699; + jjmatchedKind = 700; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x2000000000000004L, active11, 0x1000000L); case 79: case 111: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x20000000000180L, active11, 0L); case 80: case 112: - if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 693, 78); + if ((active10 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 694, 78); return jjMoveStringLiteralDfa7_4(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: @@ -23959,11 +24000,11 @@ else if ((active10 & 0x2000L) != 0L) jjmatchedKind = 653; jjmatchedPos = 6; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 696, 78); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_4(6, 714, 78); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 697, 78); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_4(6, 715, 78); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x800000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -23976,9 +24017,9 @@ else if ((active7 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(6, 484, 78); else if ((active8 & 0x10L) != 0L) return jjStartNfaWithStates_4(6, 516, 78); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 722, 78); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(6, 723, 78); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x400000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) @@ -24019,14 +24060,14 @@ else if ((active9 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(6, 639, 78); else if ((active10 & 0x200000000L) != 0L) return jjStartNfaWithStates_4(6, 673, 78); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 697, 78); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_4(6, 712, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400120a0000L); + else if ((active10 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 698, 78); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_4(6, 713, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x80024140000L); case 85: case 117: - return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x4000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -24068,7 +24109,7 @@ private final int jjMoveStringLiteralDfa7_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_4(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x8000000000000000L, active11, 0x1000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -24092,8 +24133,10 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(7, 57, 78); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(7, 156, 78); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 738, 78); + else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(7, 676, 78); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(7, 739, 78); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -24143,14 +24186,14 @@ else if ((active9 & 0x80L) != 0L) } else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_4(7, 660, 78); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(7, 721, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(7, 722, 78); + return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x20000000L); case 70: case 102: - if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 692, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); + if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 693, 78); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) @@ -24161,7 +24204,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_4(7, 395, 78); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 642, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x2000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -24169,7 +24212,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x2000000000000000L, active11, 0x80000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -24188,9 +24231,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 359, 78); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_4(7, 581, 78); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(7, 734, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x8000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(7, 735, 78); + return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x10000000L); case 77: case 109: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -24203,22 +24246,22 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x400400000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 694, 78); + if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 695, 78); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(7, 554, 78); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_4(7, 706, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_4(7, 707, 78); + return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x100000000040180L, active11, 0x800000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -24240,7 +24283,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 450, 78); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 615, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x100000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -24253,10 +24296,10 @@ else if ((active8 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(7, 538, 78); else if ((active10 & 0x200000L) != 0L) return jjStartNfaWithStates_4(7, 661, 78); - return jjMoveStringLiteralDfa8_4(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_4(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x200000L); case 85: case 117: - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x400L, active3, 0L, active4, 0L, active5, 0x8000000000100L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x80201000000000L, active10, 0L, active11, 0x20L); case 86: case 118: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); @@ -24286,9 +24329,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_4(7, 518, 78); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(7, 627, 78); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 730, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(7, 731, 78); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x4500000L); case 90: case 122: return jjMoveStringLiteralDfa8_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -24309,7 +24352,7 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x80000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x80000000000L, active2, 0xf000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x780000000L, active8, 0x80000000L, active9, 0x6000000200000000L, active10, 0L, active11, 0x100000L); case 65: case 97: return jjMoveStringLiteralDfa9_4(active0, 0x11000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0x300020000L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0xa000L, active9, 0x10000000L, active10, 0x40000L, active11, 0L); @@ -24322,7 +24365,7 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 618, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x80000000020L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -24331,8 +24374,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_4(8, 235, 78); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(8, 666, 78); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(8, 732, 78); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(8, 733, 78); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -24400,9 +24443,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(8, 737, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(8, 738, 78); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x400000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -24410,7 +24453,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 42, 78); - return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x81000000L); + return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x3c0010000878L, active11, 0x102000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -24426,7 +24469,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x1000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -24449,10 +24492,10 @@ else if ((active6 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(8, 415, 78); else if ((active6 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_4(8, 439, 78); - return jjMoveStringLiteralDfa9_4(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); + return jjMoveStringLiteralDfa9_4(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x2000000000008000L, active11, 0x400000L); case 79: case 111: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x800000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -24462,7 +24505,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x4000000L); case 81: case 113: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -24514,7 +24557,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2008000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x4010000000L); case 86: case 118: return jjMoveStringLiteralDfa9_4(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -24538,12 +24581,12 @@ else if ((active7 & 0x2000L) != 0L) return jjStartNfaWithStates_4(8, 461, 78); else if ((active9 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_4(8, 625, 78); - else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 695, 78); - else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 702, 78); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(8, 724, 78); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 696, 78); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 703, 78); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(8, 725, 78); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -24577,7 +24620,7 @@ else if ((active2 & 0x400L) != 0L) return jjStartNfaWithStates_4(9, 138, 78); else if ((active9 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_4(9, 631, 78); - return jjMoveStringLiteralDfa10_4(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa10_4(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) @@ -24611,13 +24654,13 @@ else if ((active9 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(9, 612, 78); else if ((active9 & 0x800000000000L) != 0L) return jjStartNfaWithStates_4(9, 623, 78); - else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(9, 727, 78); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(9, 729, 78); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(9, 731, 78); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(9, 728, 78); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(9, 730, 78); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(9, 732, 78); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x400000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -24626,8 +24669,8 @@ else if ((active8 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(9, 548, 78); else if ((active9 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(9, 606, 78); - else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 700, 78); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 701, 78); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -24639,7 +24682,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 107: if ((active2 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(9, 162, 78); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80010L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100020L); case 76: case 108: return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x1000000000000L, active10, 0L, active11, 0L); @@ -24655,10 +24698,10 @@ else if ((active10 & 0x1000000000000000L) != 0L) jjmatchedKind = 98; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x3c0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x2000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -24689,10 +24732,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_4(9, 458, 78); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_4(9, 648, 78); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(9, 741, 78); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(9, 746, 78); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(9, 742, 78); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(9, 747, 78); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -24712,7 +24755,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x800000L); case 86: case 118: return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -24739,7 +24782,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); default : break; } @@ -24776,7 +24819,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_4(10, 341, 78); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_4(10, 667, 78); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x400000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -24797,9 +24840,9 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_4(10, 620, 78); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(10, 624, 78); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(10, 735, 78); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(10, 736, 78); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x3c0000000000L, active11, 0x100020L); case 70: case 102: return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -24814,7 +24857,7 @@ else if ((active11 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(10, 67, 78); else if ((active6 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(10, 418, 78); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x400000L); case 73: case 105: return jjMoveStringLiteralDfa11_4(active0, 0x21000000000L, active1, 0x800000002000L, active2, 0x1000L, active3, 0x2L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000000L, active10, 0L, active11, 0L); @@ -24841,8 +24884,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_4(10, 651, 78); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 728, 78); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(10, 729, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -24851,8 +24894,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(10, 604, 78); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(10, 726, 78); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(10, 727, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -24928,7 +24971,7 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -24944,7 +24987,7 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, case 100: if ((active9 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_4(11, 633, 78); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) @@ -25029,7 +25072,7 @@ else if ((active9 & 0x1000L) != 0L) return jjStartNfaWithStates_4(11, 588, 78); else if ((active9 & 0x80000L) != 0L) return jjStartNfaWithStates_4(11, 595, 78); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x400000L); case 83: case 115: return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x70L, active11, 0L); @@ -25041,16 +25084,16 @@ else if ((active5 & 0x40000L) != 0L) return jjStartNfaWithStates_4(11, 338, 78); else if ((active9 & 0x40L) != 0L) return jjStartNfaWithStates_4(11, 582, 78); - else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_4(11, 708, 78); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_4(11, 709, 78); return jjMoveStringLiteralDfa12_4(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x100000000L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(11, 723, 78); + if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(11, 724, 78); break; default : break; @@ -25069,7 +25112,7 @@ private final int jjMoveStringLiteralDfa12_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_4(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x1e0000000070L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0x800L, active10, 0x3c0000000070L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x6800000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25125,12 +25168,12 @@ else if ((active3 & 0x2L) != 0L) return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_4(12, 584, 78); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -25176,7 +25219,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_4(13, 494, 78); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_4(13, 656, 78); - return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25229,7 +25272,7 @@ else if ((active9 & 0x4000L) != 0L) case 110: if ((active4 & 0x4L) != 0L) return jjStartNfaWithStates_4(13, 258, 78); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x400000L); case 79: case 111: return jjMoveStringLiteralDfa14_4(active0, 0x20000000000L, active1, 0x100000000000000L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); @@ -25250,7 +25293,7 @@ else if ((active9 & 0x4000L) != 0L) case 116: if ((active7 & 0x8000L) != 0L) return jjStartNfaWithStates_4(13, 463, 78); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x3c0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) @@ -25317,7 +25360,7 @@ else if ((active10 & 0x4000L) != 0L) break; case 73: case 105: - return jjMoveStringLiteralDfa15_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa15_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0x300000000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25344,7 +25387,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(14, 575, 78); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_4(14, 592, 78); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -25369,7 +25412,7 @@ else if ((active10 & 0x400L) != 0L) break; case 89: case 121: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); default : break; } @@ -25436,7 +25479,7 @@ else if ((active2 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x100000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x100000000L) != 0L) @@ -25446,7 +25489,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -25460,7 +25503,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); default : break; } @@ -25483,12 +25526,12 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, case 97: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(16, 103, 78); - return jjMoveStringLiteralDfa17_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa17_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(16, 482, 78); - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) @@ -25499,7 +25542,7 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x400000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -25563,7 +25606,7 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0x6002L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x3c0000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25599,7 +25642,7 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 86: case 118: return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -25626,7 +25669,7 @@ private final int jjMoveStringLiteralDfa18_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x60000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc0000000000L, active11, 0L); case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) @@ -25651,7 +25694,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000400000L); case 76: case 108: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25660,7 +25703,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -25669,7 +25712,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x4000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 84: case 116: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0x80000000L, active8, 0x20c0000000000000L, active9, 0L, active10, 0x20L, active11, 0L); @@ -25695,10 +25738,10 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, case 97: if ((active1 & 0x100L) != 0L) return jjStartNfaWithStates_4(19, 72, 78); - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x140000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x8000000L, active7, 0L, active8, 0L, active10, 0x200000000000L, active11, 0L); case 68: case 100: return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x8000000L, active2, 0x100000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25712,7 +25755,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x80000000000L, active11, 0x400000400000L); case 82: case 114: return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25756,7 +25799,7 @@ private final int jjMoveStringLiteralDfa20_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0x20000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x80000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000000L) != 0L) @@ -25773,13 +25816,13 @@ else if ((active2 & 0x100000000000000L) != 0L) case 104: if ((active7 & 0x200000000L) != 0L) return jjStartNfaWithStates_4(20, 481, 78); - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x200000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x100000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 79: case 111: return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25788,7 +25831,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active10, 0x40000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -25811,10 +25854,10 @@ private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000400000L); case 65: case 97: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000040L, active11, 0L); case 67: case 99: return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25827,11 +25870,11 @@ private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, case 101: if ((active2 & 0x2000L) != 0L) return jjStartNfaWithStates_4(21, 141, 78); - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(21, 682, 78); else if ((active10 & 0x80000000000L) != 0L) return jjStartNfaWithStates_4(21, 683, 78); - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); + else if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(21, 684, 78); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x200000000000L, active11, 0L); case 70: case 102: return jjMoveStringLiteralDfa22_4(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25890,10 +25933,10 @@ private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x4000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x40000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x100000000000L, active11, 0x200000L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x200000000000L, active11, 0x400000L); case 78: case 110: return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); @@ -25905,7 +25948,7 @@ private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -25932,8 +25975,8 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(23, 684, 78); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(23, 685, 78); break; case 67: case 99: @@ -25957,7 +26000,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x40000000000L, active11, 0x400000400000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -25992,7 +26035,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, break; case 68: case 100: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000L); case 69: case 101: return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000000L, active10, 0L, active11, 0L); @@ -26001,8 +26044,8 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(24, 681, 78); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(24, 682, 78); break; case 73: case 105: @@ -26024,7 +26067,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x400000000000L); default : break; } @@ -26055,8 +26098,8 @@ private final int jjMoveStringLiteralDfa25_4(long old1, long active1, long old2, case 101: if ((active8 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(25, 563, 78); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(25, 725, 78); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(25, 726, 78); break; case 71: case 103: @@ -26078,7 +26121,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x400000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -26099,7 +26142,7 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -26147,7 +26190,7 @@ private final int jjMoveStringLiteralDfa27_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26174,7 +26217,7 @@ private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x400000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26199,7 +26242,7 @@ private final int jjMoveStringLiteralDfa29_4(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x400000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_4(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -26224,7 +26267,7 @@ private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x400000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -26250,7 +26293,7 @@ private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_4(31, 129, 78); - return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x400000000000L); default : break; } @@ -26269,7 +26312,7 @@ private final int jjMoveStringLiteralDfa32_4(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_4(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_4(active11, 0x400000000000L); default : break; } @@ -26288,8 +26331,8 @@ private final int jjMoveStringLiteralDfa33_4(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(33, 749, 78); + if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(33, 750, 78); break; default : break; @@ -26320,8 +26363,8 @@ private final int jjMoveNfa_4(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 763) - kind = 763; + if (kind > 764) + kind = 764; } break; case 58: @@ -26329,8 +26372,8 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 764) - kind = 764; + if (kind > 765) + kind = 765; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; @@ -26342,8 +26385,8 @@ else if (curChar == 39) jjCheckNAddStates(16, 18); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26354,8 +26397,8 @@ else if (curChar == 39) case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) @@ -26366,8 +26409,8 @@ else if (curChar == 39) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26375,16 +26418,6 @@ else if (curChar == 39) if (curChar == 36) jjCheckNAdd(27); break; - case 77: - if (curChar == 32) - jjCheckNAddTwoStates(68, 69); - if (curChar == 32) - jjCheckNAddTwoStates(65, 66); - if (curChar == 32) - jjCheckNAddTwoStates(63, 64); - if (curChar == 32) - jjCheckNAddTwoStates(61, 62); - break; case 31: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -26392,8 +26425,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26401,11 +26434,21 @@ else if (curChar == 38) if (curChar == 36) jjCheckNAdd(27); break; + case 77: + if (curChar == 32) + jjCheckNAddTwoStates(68, 69); + if (curChar == 32) + jjCheckNAddTwoStates(65, 66); + if (curChar == 32) + jjCheckNAddTwoStates(63, 64); + if (curChar == 32) + jjCheckNAddTwoStates(61, 62); + break; case 74: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -26416,8 +26459,8 @@ else if (curChar == 42) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (curChar == 36) @@ -26434,8 +26477,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 829) + kind = 829; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -26443,14 +26486,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -26467,8 +26510,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 758) + kind = 758; break; case 6: if (curChar == 34) @@ -26482,30 +26525,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 763) - kind = 763; + if (curChar == 34 && kind > 764) + kind = 764; break; case 11: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 815) + kind = 815; break; case 14: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 815) + kind = 815; break; case 15: if (curChar == 13) @@ -26522,15 +26565,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if ((0x3ff201000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -26548,8 +26591,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -26559,8 +26602,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjCheckNAdd(29); break; case 32: @@ -26580,25 +26623,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 826) + kind = 826; break; case 37: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 829) + kind = 829; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 752) + kind = 752; jjCheckNAdd(39); break; case 40: @@ -26612,8 +26655,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 753) + kind = 753; jjCheckNAdd(43); break; case 44: @@ -26627,22 +26670,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAddStates(93, 95); break; case 49: @@ -26660,8 +26703,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 754) + kind = 754; jjCheckNAdd(52); break; case 53: @@ -26676,13 +26719,13 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 764) - kind = 764; - break; - case 59: if (curChar == 39 && kind > 765) kind = 765; break; + case 59: + if (curChar == 39 && kind > 766) + kind = 766; + break; case 61: if (curChar == 32) jjCheckNAddTwoStates(61, 62); @@ -26708,14 +26751,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 813) + kind = 813; break; case 75: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjCheckNAddStates(71, 73); break; default : break; @@ -26750,8 +26793,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -26762,8 +26805,20 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; + jjCheckNAdd(23); + } + break; + case 31: + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddTwoStates(25, 26); + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x7fffffe87fffffeL & l) != 0L) + { + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -26773,26 +26828,14 @@ else if (curChar == 92) else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) - { - if (kind > 768) - kind = 768; - } - if ((0x10000000100000L & l) != 0L) { if (kind > 769) kind = 769; } - break; - case 31: - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x7fffffe87fffffeL & l) != 0L) + if ((0x10000000100000L & l) != 0L) { - if (kind > 820) - kind = 820; - jjCheckNAdd(23); + if (kind > 770) + kind = 770; } break; case 80: @@ -26800,8 +26843,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -26814,8 +26857,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -26838,8 +26881,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(71, 73); break; case 17: @@ -26858,21 +26901,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 819) - kind = 819; + if (curChar == 96 && kind > 822) + kind = 822; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -26886,15 +26929,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -26924,32 +26967,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 769) + kind = 769; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 770) + kind = 770; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 771) + kind = 771; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 772) + kind = 772; break; case 73: - if (kind > 810) - kind = 810; + if (kind > 813) + kind = 813; break; default : break; } @@ -26981,8 +27024,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26993,8 +27036,8 @@ else if ((0x100000001000000L & l) != 0L) case 78: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27005,8 +27048,8 @@ else if ((0x100000001000000L & l) != 0L) case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27017,8 +27060,8 @@ else if ((0x100000001000000L & l) != 0L) case 80: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27027,8 +27070,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27041,8 +27084,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 815) + kind = 815; jjAddStates(71, 73); break; case 18: @@ -27053,15 +27096,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -27075,15 +27118,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 825) + kind = 825; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -27096,8 +27139,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 813) + kind = 813; break; default : break; } @@ -27214,13 +27257,13 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, -null, null, null, null, null, null, null, null, null, null, null, "\50", "\51", null, -null, null, null, "\173", "\175", "\133", "\135", "\73", "\56", "\54", "\75", "\76", -"\74", "\77", "\72", "\74\75", "\76\75", "\74\76", "\41\75", "\53", "\55", "\55\76", -"\52", "\57", "\45", "\174\174", "\75\76", "\56\56", "\47", "\42", "\174", "\136", -"\44", "\72\72", null, null, null, null, null, "\57\52\53", "\52\57", null, null, -null, null, null, null, null, null, null, null, null, null, null, null, null, null, -null, }; +null, null, null, null, null, null, null, null, null, null, null, null, "\50", +"\51", null, null, null, null, "\173", "\175", "\133", "\135", "\73", "\56", "\54", +"\75", "\76", "\74", "\77", "\72", "\74\75", "\76\75", "\74\76", "\41\75", "\53", +"\55", "\55\76", "\52", "\57", "\45", "\174\174", "\75\76", "\56\56", "\47", "\42", +"\174", "\136", "\46", "\74\74", "\44", "\72\72", null, null, null, null, null, +"\57\52\53", "\52\57", null, null, null, null, null, null, null, null, null, null, null, +null, null, null, null, null, null, }; public static final String[] lexStateNames = { "DEFAULT", "DQID", @@ -27263,32 +27306,32 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, }; static final long[] jjtoToken = { 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, - 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfbe3ffffffffffffL, - 0x4ff0307ffffffffL, + 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xf7c7ffffffffffffL, + 0x27f8183fffffffffL, }; static final long[] jjtoSkip = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x70f800000000L, + 0x387c000000000L, }; static final long[] jjtoSpecial = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x600000000000L, + 0x3000000000000L, }; static final long[] jjtoMore = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x8c0000000000L, + 0x4600000000000L, }; protected SimpleCharStream input_stream; private final int[] jjrounds = new int[94]; @@ -27435,18 +27478,18 @@ public Token getNextToken() jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_5(); - if (jjmatchedPos == 0 && jjmatchedKind > 815) + if (jjmatchedPos == 0 && jjmatchedKind > 818) { - jjmatchedKind = 815; + jjmatchedKind = 818; } break; case 6: jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_6(); - if (jjmatchedPos == 0 && jjmatchedKind > 815) + if (jjmatchedPos == 0 && jjmatchedKind > 818) { - jjmatchedKind = 815; + jjmatchedKind = 818; } break; } @@ -27522,13 +27565,13 @@ void SkipLexicalActions(Token matchedToken) { switch(jjmatchedKind) { - case 813 : + case 816 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); popState(); break; - case 814 : + case 817 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); @@ -27543,14 +27586,14 @@ void MoreLexicalActions() jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch(jjmatchedKind) { - case 810 : + case 813 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; pushState(); break; - case 811 : + case 814 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); @@ -27619,19 +27662,19 @@ void TokenLexicalActions(Token matchedToken) image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 676 : + case 677 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 691 : + case 692 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 820 : + case 823 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/ParseException.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/ParseException.java index f681bffe45265..3945667463adf 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/ParseException.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/ParseException.java @@ -1,4 +1,5 @@ -/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */ +/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 5.0 */ +/* JavaCCOptions:KEEP_LINE_COL=null */ package org.apache.ignite.internal.processors.query.calcite.sql.generated; /** @@ -12,25 +13,25 @@ */ public class ParseException extends Exception { + /** + * The version identifier for this Serializable class. + * Increment only if the serialized form of the + * class changes. + */ + private static final long serialVersionUID = 1L; + /** * This constructor is used by the method "generateParseException" * in the generated parser. Calling this constructor generates * a new object of this type with the fields "currentToken", - * "expectedTokenSequences", and "tokenImage" set. The boolean - * flag "specialConstructor" is also set to true to indicate that - * this constructor was used to create this object. - * This constructor calls its super class with the empty string - * to force the "toString" method of parent class "Throwable" to - * print the error message in the form: - * ParseException: + * "expectedTokenSequences", and "tokenImage" set. */ public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String[] tokenImageVal ) { - super(""); - specialConstructor = true; + super(initialise(currentTokenVal, expectedTokenSequencesVal, tokenImageVal)); currentToken = currentTokenVal; expectedTokenSequences = expectedTokenSequencesVal; tokenImage = tokenImageVal; @@ -48,20 +49,13 @@ public ParseException(Token currentTokenVal, public ParseException() { super(); - specialConstructor = false; } + /** Constructor with message. */ public ParseException(String message) { super(message); - specialConstructor = false; } - /** - * This variable determines which constructor was used to create - * this object and thereby affects the semantics of the - * "getMessage" method (see below). - */ - protected boolean specialConstructor; /** * This is the last token that has been consumed successfully. If @@ -85,19 +79,16 @@ public ParseException(String message) { public String[] tokenImage; /** - * This method has the standard behavior when this object has been - * created using the standard constructors. Otherwise, it uses - * "currentToken" and "expectedTokenSequences" to generate a parse + * It uses "currentToken" and "expectedTokenSequences" to generate a parse * error message and returns it. If this object has been created * due to a parse error, and you do not catch it (it gets thrown - * from the parser), then this method is called during the printing - * of the final stack trace, and hence the correct error message + * from the parser) the correct error message * gets displayed. */ - public String getMessage() { - if (!specialConstructor) { - return super.getMessage(); - } + private static String initialise(Token currentToken, + int[][] expectedTokenSequences, + String[] tokenImage) { + String eol = System.getProperty("line.separator", "\n"); StringBuffer expected = new StringBuffer(); int maxSize = 0; for (int i = 0; i < expectedTokenSequences.length; i++) { @@ -105,7 +96,7 @@ public String getMessage() { maxSize = expectedTokenSequences[i].length; } for (int j = 0; j < expectedTokenSequences[i].length; j++) { - expected.append(tokenImage[expectedTokenSequences[i][j]]).append(" "); + expected.append(tokenImage[expectedTokenSequences[i][j]]).append(' '); } if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) { expected.append("..."); @@ -120,8 +111,11 @@ public String getMessage() { retval += tokenImage[0]; break; } + retval += " " + tokenImage[tok.kind]; + retval += " \""; retval += add_escapes(tok.image); - tok = tok.next; + retval += " \""; + tok = tok.next; } retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn; retval += "." + eol; @@ -138,13 +132,13 @@ public String getMessage() { * The end of line string for this machine. */ protected String eol = System.getProperty("line.separator", "\n"); - + /** * Used to convert raw characters to their escaped version * when these raw version cannot be used as part of an ASCII * string literal. */ - protected String add_escapes(String str) { + static String add_escapes(String str) { StringBuffer retval = new StringBuffer(); char ch; for (int i = 0; i < str.length(); i++) { @@ -190,3 +184,4 @@ protected String add_escapes(String str) { } } +/* JavaCC - OriginalChecksum=93a5494f66aec9ac468759454ec1d80c (do not edit this line) */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/SimpleCharStream.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/SimpleCharStream.java index 91ec3d3c6427f..99af9cca6b7dc 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/SimpleCharStream.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/SimpleCharStream.java @@ -1,4 +1,5 @@ -/* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 4.0 */ +/* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 5.0 */ +/* JavaCCOptions:STATIC=false,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ package org.apache.ignite.internal.processors.query.calcite.sql.generated; /** @@ -8,10 +9,12 @@ public class SimpleCharStream { +/** Whether parser is static. */ public static final boolean staticFlag = false; int bufsize; int available; int tokenBegin; +/** Position in buffer. */ public int bufpos = -1; protected int bufline[]; protected int bufcolumn[]; @@ -35,210 +38,218 @@ public class SimpleCharStream protected void ExpandBuff(boolean wrapAround) { - char[] newbuffer = new char[bufsize + 2048]; - int newbufline[] = new int[bufsize + 2048]; - int newbufcolumn[] = new int[bufsize + 2048]; + char[] newbuffer = new char[bufsize + 2048]; + int newbufline[] = new int[bufsize + 2048]; + int newbufcolumn[] = new int[bufsize + 2048]; - try - { - if (wrapAround) - { - System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); - System.arraycopy(buffer, 0, newbuffer, - bufsize - tokenBegin, bufpos); - buffer = newbuffer; - - System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); - System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); - bufline = newbufline; - - System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); - System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos); - bufcolumn = newbufcolumn; - - maxNextCharInd = (bufpos += (bufsize - tokenBegin)); - } - else - { - System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); - buffer = newbuffer; - - System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); - bufline = newbufline; - - System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); - bufcolumn = newbufcolumn; - - maxNextCharInd = (bufpos -= tokenBegin); - } - } - catch (Throwable t) - { - throw new Error(t.getMessage()); - } + try + { + if (wrapAround) + { + System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); + System.arraycopy(buffer, 0, newbuffer, bufsize - tokenBegin, bufpos); + buffer = newbuffer; + + System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); + System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); + bufline = newbufline; + + System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); + System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos); + bufcolumn = newbufcolumn; + + maxNextCharInd = (bufpos += (bufsize - tokenBegin)); + } + else + { + System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); + buffer = newbuffer; + + System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); + bufline = newbufline; + + System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); + bufcolumn = newbufcolumn; + + maxNextCharInd = (bufpos -= tokenBegin); + } + } + catch (Throwable t) + { + throw new Error(t.getMessage()); + } - bufsize += 2048; - available = bufsize; - tokenBegin = 0; + bufsize += 2048; + available = bufsize; + tokenBegin = 0; } protected void FillBuff() throws java.io.IOException { - if (maxNextCharInd == available) - { - if (available == bufsize) + if (maxNextCharInd == available) + { + if (available == bufsize) + { + if (tokenBegin > 2048) { - if (tokenBegin > 2048) - { - bufpos = maxNextCharInd = 0; - available = tokenBegin; - } - else if (tokenBegin < 0) - bufpos = maxNextCharInd = 0; - else - ExpandBuff(false); + bufpos = maxNextCharInd = 0; + available = tokenBegin; } - else if (available > tokenBegin) - available = bufsize; - else if ((tokenBegin - available) < 2048) - ExpandBuff(true); + else if (tokenBegin < 0) + bufpos = maxNextCharInd = 0; else - available = tokenBegin; - } + ExpandBuff(false); + } + else if (available > tokenBegin) + available = bufsize; + else if ((tokenBegin - available) < 2048) + ExpandBuff(true); + else + available = tokenBegin; + } - int i; - try { - if ((i = inputStream.read(buffer, maxNextCharInd, - available - maxNextCharInd)) == -1) - { - inputStream.close(); - throw new java.io.IOException(); - } - else - maxNextCharInd += i; - return; - } - catch(java.io.IOException e) { - --bufpos; - backup(0); - if (tokenBegin == -1) - tokenBegin = bufpos; - throw e; - } + int i; + try { + if ((i = inputStream.read(buffer, maxNextCharInd, available - maxNextCharInd)) == -1) + { + inputStream.close(); + throw new java.io.IOException(); + } + else + maxNextCharInd += i; + return; + } + catch(java.io.IOException e) { + --bufpos; + backup(0); + if (tokenBegin == -1) + tokenBegin = bufpos; + throw e; + } } +/** Start. */ public char BeginToken() throws java.io.IOException { - tokenBegin = -1; - char c = readChar(); - tokenBegin = bufpos; + tokenBegin = -1; + char c = readChar(); + tokenBegin = bufpos; - return c; + return c; } protected void UpdateLineColumn(char c) { - column++; + column++; - if (prevCharIsLF) - { - prevCharIsLF = false; + if (prevCharIsLF) + { + prevCharIsLF = false; + line += (column = 1); + } + else if (prevCharIsCR) + { + prevCharIsCR = false; + if (c == '\n') + { + prevCharIsLF = true; + } + else line += (column = 1); - } - else if (prevCharIsCR) - { - prevCharIsCR = false; - if (c == '\n') - { - prevCharIsLF = true; - } - else - line += (column = 1); - } - - switch (c) - { - case '\r' : - prevCharIsCR = true; - break; - case '\n' : - prevCharIsLF = true; - break; - case '\t' : - column--; - column += (tabSize - (column % tabSize)); - break; - default : - break; - } - - bufline[bufpos] = line; - bufcolumn[bufpos] = column; + } + + switch (c) + { + case '\r' : + prevCharIsCR = true; + break; + case '\n' : + prevCharIsLF = true; + break; + case '\t' : + column--; + column += (tabSize - (column % tabSize)); + break; + default : + break; + } + + bufline[bufpos] = line; + bufcolumn[bufpos] = column; } +/** Read a character. */ public char readChar() throws java.io.IOException { - if (inBuf > 0) - { - --inBuf; + if (inBuf > 0) + { + --inBuf; - if (++bufpos == bufsize) - bufpos = 0; + if (++bufpos == bufsize) + bufpos = 0; - return buffer[bufpos]; - } + return buffer[bufpos]; + } - if (++bufpos >= maxNextCharInd) - FillBuff(); + if (++bufpos >= maxNextCharInd) + FillBuff(); - char c = buffer[bufpos]; + char c = buffer[bufpos]; - UpdateLineColumn(c); - return (c); + UpdateLineColumn(c); + return c; } + @Deprecated /** - * @deprecated + * @deprecated * @see #getEndColumn */ public int getColumn() { - return bufcolumn[bufpos]; + return bufcolumn[bufpos]; } + @Deprecated /** - * @deprecated + * @deprecated * @see #getEndLine */ public int getLine() { - return bufline[bufpos]; + return bufline[bufpos]; } + /** Get token end column number. */ public int getEndColumn() { - return bufcolumn[bufpos]; + return bufcolumn[bufpos]; } + /** Get token end line number. */ public int getEndLine() { return bufline[bufpos]; } + /** Get token beginning column number. */ public int getBeginColumn() { - return bufcolumn[tokenBegin]; + return bufcolumn[tokenBegin]; } + /** Get token beginning line number. */ public int getBeginLine() { - return bufline[tokenBegin]; + return bufline[tokenBegin]; } +/** Backup a number of characters. */ public void backup(int amount) { inBuf += amount; if ((bufpos -= amount) < 0) - bufpos += bufsize; + bufpos += bufsize; } + /** Constructor. */ public SimpleCharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize) { @@ -252,16 +263,20 @@ public SimpleCharStream(java.io.Reader dstream, int startline, bufcolumn = new int[buffersize]; } + /** Constructor. */ public SimpleCharStream(java.io.Reader dstream, int startline, int startcolumn) { - this(dstream, startline, startcolumn, 4096); + this(dstream, startline, startcolumn, 4096); } + /** Constructor. */ public SimpleCharStream(java.io.Reader dstream) { - this(dstream, 1, 1, 4096); + this(dstream, 1, 1, 4096); } + + /** Reinitialise. */ public void ReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize) { @@ -281,111 +296,128 @@ public void ReInit(java.io.Reader dstream, int startline, bufpos = -1; } + /** Reinitialise. */ public void ReInit(java.io.Reader dstream, int startline, int startcolumn) { - ReInit(dstream, startline, startcolumn, 4096); + ReInit(dstream, startline, startcolumn, 4096); } + /** Reinitialise. */ public void ReInit(java.io.Reader dstream) { - ReInit(dstream, 1, 1, 4096); + ReInit(dstream, 1, 1, 4096); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws java.io.UnsupportedEncodingException { - this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize); + this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize) { - this(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize); + this(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline, int startcolumn) throws java.io.UnsupportedEncodingException { - this(dstream, encoding, startline, startcolumn, 4096); + this(dstream, encoding, startline, startcolumn, 4096); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream, int startline, int startcolumn) { - this(dstream, startline, startcolumn, 4096); + this(dstream, startline, startcolumn, 4096); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingException { - this(dstream, encoding, 1, 1, 4096); + this(dstream, encoding, 1, 1, 4096); } + /** Constructor. */ public SimpleCharStream(java.io.InputStream dstream) { - this(dstream, 1, 1, 4096); + this(dstream, 1, 1, 4096); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws java.io.UnsupportedEncodingException { - ReInit(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize); + ReInit(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize) { - ReInit(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize); + ReInit(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingException { - ReInit(dstream, encoding, 1, 1, 4096); + ReInit(dstream, encoding, 1, 1, 4096); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream) { - ReInit(dstream, 1, 1, 4096); + ReInit(dstream, 1, 1, 4096); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream, String encoding, int startline, int startcolumn) throws java.io.UnsupportedEncodingException { - ReInit(dstream, encoding, startline, startcolumn, 4096); + ReInit(dstream, encoding, startline, startcolumn, 4096); } + /** Reinitialise. */ public void ReInit(java.io.InputStream dstream, int startline, int startcolumn) { - ReInit(dstream, startline, startcolumn, 4096); + ReInit(dstream, startline, startcolumn, 4096); } + /** Get token literal value. */ public String GetImage() { - if (bufpos >= tokenBegin) - return new String(buffer, tokenBegin, bufpos - tokenBegin + 1); - else - return new String(buffer, tokenBegin, bufsize - tokenBegin) + - new String(buffer, 0, bufpos + 1); + if (bufpos >= tokenBegin) + return new String(buffer, tokenBegin, bufpos - tokenBegin + 1); + else + return new String(buffer, tokenBegin, bufsize - tokenBegin) + + new String(buffer, 0, bufpos + 1); } + /** Get the suffix. */ public char[] GetSuffix(int len) { - char[] ret = new char[len]; + char[] ret = new char[len]; - if ((bufpos + 1) >= len) - System.arraycopy(buffer, bufpos - len + 1, ret, 0, len); - else - { - System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0, - len - bufpos - 1); - System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1); - } + if ((bufpos + 1) >= len) + System.arraycopy(buffer, bufpos - len + 1, ret, 0, len); + else + { + System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0, + len - bufpos - 1); + System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1); + } - return ret; + return ret; } + /** Reset buffer when finished. */ public void Done() { - buffer = null; - bufline = null; - bufcolumn = null; + buffer = null; + bufline = null; + bufcolumn = null; } /** @@ -393,47 +425,47 @@ public void Done() */ public void adjustBeginLineColumn(int newLine, int newCol) { - int start = tokenBegin; - int len; - - if (bufpos >= tokenBegin) - { - len = bufpos - tokenBegin + inBuf + 1; - } - else - { - len = bufsize - tokenBegin + bufpos + 1 + inBuf; - } - - int i = 0, j = 0, k = 0; - int nextColDiff = 0, columnDiff = 0; - - while (i < len && - bufline[j = start % bufsize] == bufline[k = ++start % bufsize]) - { - bufline[j] = newLine; - nextColDiff = columnDiff + bufcolumn[k] - bufcolumn[j]; - bufcolumn[j] = newCol + columnDiff; - columnDiff = nextColDiff; - i++; - } - - if (i < len) - { - bufline[j] = newLine++; - bufcolumn[j] = newCol + columnDiff; - - while (i++ < len) - { - if (bufline[j = start % bufsize] != bufline[++start % bufsize]) - bufline[j] = newLine++; - else - bufline[j] = newLine; - } - } + int start = tokenBegin; + int len; + + if (bufpos >= tokenBegin) + { + len = bufpos - tokenBegin + inBuf + 1; + } + else + { + len = bufsize - tokenBegin + bufpos + 1 + inBuf; + } + + int i = 0, j = 0, k = 0; + int nextColDiff = 0, columnDiff = 0; + + while (i < len && bufline[j = start % bufsize] == bufline[k = ++start % bufsize]) + { + bufline[j] = newLine; + nextColDiff = columnDiff + bufcolumn[k] - bufcolumn[j]; + bufcolumn[j] = newCol + columnDiff; + columnDiff = nextColDiff; + i++; + } + + if (i < len) + { + bufline[j] = newLine++; + bufcolumn[j] = newCol + columnDiff; + + while (i++ < len) + { + if (bufline[j = start % bufsize] != bufline[++start % bufsize]) + bufline[j] = newLine++; + else + bufline[j] = newLine; + } + } - line = bufline[j]; - column = bufcolumn[j]; + line = bufline[j]; + column = bufcolumn[j]; } } +/* JavaCC - OriginalChecksum=03a78f94841b395dc9164684aab2ea1a (do not edit this line) */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/Token.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/Token.java index c541462a0a11e..122c6b3660e12 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/Token.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/Token.java @@ -1,11 +1,19 @@ -/* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */ +/* Generated By:JavaCC: Do not edit this line. Token.java Version 5.0 */ +/* JavaCCOptions:TOKEN_EXTENDS=,KEEP_LINE_COL=null,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ package org.apache.ignite.internal.processors.query.calcite.sql.generated; /** * Describes the input token stream. */ -public class Token { +public class Token implements java.io.Serializable { + + /** + * The version identifier for this Serializable class. + * Increment only if the serialized form of the + * class changes. + */ + private static final long serialVersionUID = 1L; /** * An integer that describes the kind of this token. This numbering @@ -14,12 +22,14 @@ public class Token { */ public int kind; - /** - * beginLine and beginColumn describe the position of the first character - * of this token; endLine and endColumn describe the position of the - * last character of this token. - */ - public int beginLine, beginColumn, endLine, endColumn; + /** The line number of the first character of this Token. */ + public int beginLine; + /** The column number of the first character of this Token. */ + public int beginColumn; + /** The line number of the last character of this Token. */ + public int endLine; + /** The column number of the last character of this Token. */ + public int endColumn; /** * The string image of the token. @@ -50,12 +60,46 @@ public class Token { */ public Token specialToken; + /** + * An optional attribute value of the Token. + * Tokens which are not used as syntactic sugar will often contain + * meaningful values that will be used later on by the compiler or + * interpreter. This attribute value is often different from the image. + * Any subclass of Token that actually wants to return a non-null value can + * override this method as appropriate. + */ + public Object getValue() { + return null; + } + + /** + * No-argument constructor + */ + public Token() {} + + /** + * Constructs a new token for the specified Image. + */ + public Token(int kind) + { + this(kind, null); + } + + /** + * Constructs a new token for the specified Image and Kind. + */ + public Token(int kind, String image) + { + this.kind = kind; + this.image = image; + } + /** * Returns the image. */ public String toString() { - return image; + return image; } /** @@ -63,19 +107,25 @@ public String toString() * can create and return subclass objects based on the value of ofKind. * Simply add the cases to the switch for all those special cases. * For example, if you have a subclass of Token called IDToken that - * you want to create if ofKind is ID, simlpy add something like : + * you want to create if ofKind is ID, simply add something like : * - * case MyParserConstants.ID : return new IDToken(); + * case MyParserConstants.ID : return new IDToken(ofKind, image); * * to the following switch statement. Then you can cast matchedToken - * variable to the appropriate type and use it in your lexical actions. + * variable to the appropriate type and use sit in your lexical actions. */ - public static final Token newToken(int ofKind) + public static Token newToken(int ofKind, String image) + { + switch(ofKind) + { + default : return new Token(ofKind, image); + } + } + + public static Token newToken(int ofKind) { - switch(ofKind) - { - default : return new Token(); - } + return newToken(ofKind, null); } } +/* JavaCC - OriginalChecksum=b1d06cea3c141751bbf19cb898f9de74 (do not edit this line) */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/TokenMgrError.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/TokenMgrError.java index e8862d5495877..eb18e1e43e212 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/TokenMgrError.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/TokenMgrError.java @@ -1,133 +1,147 @@ -/* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 3.0 */ +/* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 5.0 */ +/* JavaCCOptions: */ package org.apache.ignite.internal.processors.query.calcite.sql.generated; +/** Token Manager Error. */ public class TokenMgrError extends Error { - /* - * Ordinals for various reasons why an Error of this type can be thrown. - */ - /** - * Lexical error occured. - */ - static final int LEXICAL_ERROR = 0; + /** + * The version identifier for this Serializable class. + * Increment only if the serialized form of the + * class changes. + */ + private static final long serialVersionUID = 1L; - /** - * An attempt wass made to create a second instance of a static token manager. - */ - static final int STATIC_LEXER_ERROR = 1; + /* + * Ordinals for various reasons why an Error of this type can be thrown. + */ - /** - * Tried to change to an invalid lexical state. - */ - static final int INVALID_LEXICAL_STATE = 2; + /** + * Lexical error occurred. + */ + static final int LEXICAL_ERROR = 0; - /** - * Detected (and bailed out of) an infinite loop in the token manager. - */ - static final int LOOP_DETECTED = 3; + /** + * An attempt was made to create a second instance of a static token manager. + */ + static final int STATIC_LEXER_ERROR = 1; - /** - * Indicates the reason why the exception is thrown. It will have - * one of the above 4 values. - */ - int errorCode; + /** + * Tried to change to an invalid lexical state. + */ + static final int INVALID_LEXICAL_STATE = 2; - /** - * Replaces unprintable characters by their espaced (or unicode escaped) - * equivalents in the given string - */ - protected static final String addEscapes(String str) { - StringBuffer retval = new StringBuffer(); - char ch; - for (int i = 0; i < str.length(); i++) { - switch (str.charAt(i)) - { - case 0 : - continue; - case '\b': - retval.append("\\b"); - continue; - case '\t': - retval.append("\\t"); - continue; - case '\n': - retval.append("\\n"); - continue; - case '\f': - retval.append("\\f"); - continue; - case '\r': - retval.append("\\r"); - continue; - case '\"': - retval.append("\\\""); - continue; - case '\'': - retval.append("\\\'"); - continue; - case '\\': - retval.append("\\\\"); - continue; - default: - if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) { - String s = "0000" + Integer.toString(ch, 16); - retval.append("\\u" + s.substring(s.length() - 4, s.length())); - } else { - retval.append(ch); - } - continue; - } + /** + * Detected (and bailed out of) an infinite loop in the token manager. + */ + static final int LOOP_DETECTED = 3; + + /** + * Indicates the reason why the exception is thrown. It will have + * one of the above 4 values. + */ + int errorCode; + + /** + * Replaces unprintable characters by their escaped (or unicode escaped) + * equivalents in the given string + */ + protected static final String addEscapes(String str) { + StringBuffer retval = new StringBuffer(); + char ch; + for (int i = 0; i < str.length(); i++) { + switch (str.charAt(i)) + { + case 0 : + continue; + case '\b': + retval.append("\\b"); + continue; + case '\t': + retval.append("\\t"); + continue; + case '\n': + retval.append("\\n"); + continue; + case '\f': + retval.append("\\f"); + continue; + case '\r': + retval.append("\\r"); + continue; + case '\"': + retval.append("\\\""); + continue; + case '\'': + retval.append("\\\'"); + continue; + case '\\': + retval.append("\\\\"); + continue; + default: + if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) { + String s = "0000" + Integer.toString(ch, 16); + retval.append("\\u" + s.substring(s.length() - 4, s.length())); + } else { + retval.append(ch); + } + continue; } - return retval.toString(); - } + } + return retval.toString(); + } - /** - * Returns a detailed message for the Error when it is thrown by the - * token manager to indicate a lexical error. - * Parameters : - * EOFSeen : indicates if EOF caused the lexicl error - * curLexState : lexical state in which this error occured - * errorLine : line number when the error occured - * errorColumn : column number when the error occured - * errorAfter : prefix that was seen before this error occured - * curchar : the offending character - * Note: You can customize the lexical error message by modifying this method. - */ - protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { - return("Lexical error at line " + - errorLine + ", column " + - errorColumn + ". Encountered: " + - (EOFSeen ? " " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") + - "after : \"" + addEscapes(errorAfter) + "\""); - } + /** + * Returns a detailed message for the Error when it is thrown by the + * token manager to indicate a lexical error. + * Parameters : + * EOFSeen : indicates if EOF caused the lexical error + * curLexState : lexical state in which this error occurred + * errorLine : line number when the error occurred + * errorColumn : column number when the error occurred + * errorAfter : prefix that was seen before this error occurred + * curchar : the offending character + * Note: You can customize the lexical error message by modifying this method. + */ + protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { + return("Lexical error at line " + + errorLine + ", column " + + errorColumn + ". Encountered: " + + (EOFSeen ? " " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") + + "after : \"" + addEscapes(errorAfter) + "\""); + } - /** - * You can also modify the body of this method to customize your error messages. - * For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not - * of end-users concern, so you can return something like : - * - * "Internal Error : Please file a bug report .... " - * - * from this method for such cases in the release version of your parser. - */ - public String getMessage() { - return super.getMessage(); - } + /** + * You can also modify the body of this method to customize your error messages. + * For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not + * of end-users concern, so you can return something like : + * + * "Internal Error : Please file a bug report .... " + * + * from this method for such cases in the release version of your parser. + */ + public String getMessage() { + return super.getMessage(); + } - /* - * Constructors of various flavors follow. - */ + /* + * Constructors of various flavors follow. + */ - public TokenMgrError() { - } + /** No arg constructor. */ + public TokenMgrError() { + } - public TokenMgrError(String message, int reason) { - super(message); - errorCode = reason; - } + /** Constructor with message and reason. */ + public TokenMgrError(String message, int reason) { + super(message); + errorCode = reason; + } - public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { - this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason); - } + /** Full Constructor. */ + public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { + this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason); + } } +/* JavaCC - OriginalChecksum=3a07dcffb6d9deef48a9f20ea779e1bf (do not edit this line) */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/type/IgniteTypeSystem.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/type/IgniteTypeSystem.java index 47c53c8c3bcfe..a0500966cf6ec 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/type/IgniteTypeSystem.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/type/IgniteTypeSystem.java @@ -34,13 +34,23 @@ public class IgniteTypeSystem extends RelDataTypeSystemImpl implements Serializa public static final RelDataTypeSystem INSTANCE = new IgniteTypeSystem(); /** {@inheritDoc} */ - @Override public int getMaxNumericScale() { - return Short.MAX_VALUE; + @Override public int getMaxScale(SqlTypeName typeName) { + switch (typeName) { + case DECIMAL: + return Short.MAX_VALUE; + default: + return super.getMaxScale(typeName); + } } /** {@inheritDoc} */ - @Override public int getMaxNumericPrecision() { - return Short.MAX_VALUE; + @Override public int getMaxPrecision(SqlTypeName typeName) { + switch (typeName) { + case DECIMAL: + return Short.MAX_VALUE; + default: + return super.getMaxPrecision(typeName); + } } /** {@inheritDoc} */ diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinExecutionTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinExecutionTest.java index 56d650f254c43..d1a1e81c4d4ae 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinExecutionTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashJoinExecutionTest.java @@ -22,13 +22,11 @@ import java.util.function.BiPredicate; import java.util.stream.IntStream; import java.util.stream.Stream; -import com.google.common.collect.ImmutableList; +import org.apache.calcite.rel.core.JoinInfo; import org.apache.calcite.rel.core.JoinRelType; import org.apache.calcite.rel.type.RelDataType; -import org.apache.calcite.util.ImmutableBitSet; import org.apache.calcite.util.ImmutableIntList; import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; import org.apache.ignite.internal.processors.query.calcite.type.IgniteTypeFactory; import org.apache.ignite.internal.processors.query.calcite.util.TypeUtils; import org.apache.ignite.internal.util.typedef.F; @@ -683,8 +681,7 @@ private static HashJoinNode createJoinNode( ? leftType : TypeUtils.combinedRowType(tf, leftType, rightType); - IgniteJoinInfo joinInfo = new IgniteJoinInfo(ImmutableIntList.of(2), ImmutableIntList.of(0), - ImmutableBitSet.of(), ImmutableList.of()); + JoinInfo joinInfo = JoinInfo.of(ImmutableIntList.of(2), ImmutableIntList.of(0)); return HashJoinNode.create(ctx, outType, leftType, rightType, joinType, joinInfo, postCondition); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/JoinBuffersExecutionTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/JoinBuffersExecutionTest.java index 397fb702f4462..4ff685131cea0 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/JoinBuffersExecutionTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/JoinBuffersExecutionTest.java @@ -25,13 +25,11 @@ import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.Consumer; import java.util.stream.IntStream; -import com.google.common.collect.ImmutableList; +import org.apache.calcite.rel.core.JoinInfo; import org.apache.calcite.rel.core.JoinRelType; import org.apache.calcite.rel.type.RelDataType; -import org.apache.calcite.util.ImmutableBitSet; import org.apache.calcite.util.ImmutableIntList; import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext; -import org.apache.ignite.internal.processors.query.calcite.rel.IgniteJoinInfo; import org.apache.ignite.internal.processors.query.calcite.util.TypeUtils; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.testframework.GridTestUtils; @@ -79,8 +77,7 @@ public void testNLJoinBuffers() throws Exception { /** */ @Test public void testHashJoinBuffers() throws Exception { - IgniteJoinInfo joinInfo = new IgniteJoinInfo(ImmutableIntList.of(0), ImmutableIntList.of(0), - ImmutableBitSet.of(), ImmutableList.of()); + JoinInfo joinInfo = JoinInfo.of(ImmutableIntList.of(0), ImmutableIntList.of(0)); JoinFactory joinFactory = (ctx, outType, leftType, rightType, joinType) -> HashJoinNode.create(ctx, outType, leftType, rightType, joinType, joinInfo, null); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AggregatesIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AggregatesIntegrationTest.java index ce9b477b3a731..7b0b9685e47e5 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AggregatesIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AggregatesIntegrationTest.java @@ -191,6 +191,14 @@ public void testCountIndexedField() { .returns(1L, null) .check(); + assertQuery("select count(salary) as salary from person group by salary") + .returns(0L) + .returns(1L) + .returns(1L) + .returns(1L) + .returns(1L) + .check(); + for (int i = 0; i < 100; i++) { sql("INSERT INTO tbl VALUES (null, null, ?)", i % 2 == 0 ? i : null); sql("INSERT INTO tbl VALUES (?, ?, ?)", i, i, i % 2 == 0 ? null : i); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/FunctionsTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/FunctionsTest.java index 90101ce48f5a1..2e52c5a34797a 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/FunctionsTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/FunctionsTest.java @@ -161,12 +161,13 @@ private Iterable> bitwiseParams() { res.add(F.asList("AND", 1, "TINYINT", 1, "INT", 1)); res.add(F.asList("AND", 1, "TINYINT", 1, "SMALLINT", (short)1)); res.add(F.asList("AND", 0, "TINYINT", 0, "TINYINT", (byte)0)); - res.add(F.asList("AND", 1, "TINYINT", 1, "SMALLINT", (short)1)); + res.add(F.asList("AND", 1, "SMALLINT", 1, "TINYINT", (short)1)); res.add(F.asList("AND", 15, null, 7, null, 7)); res.add(F.asList("AND", -1, null, 1, null, 1)); res.add(F.asList("AND", (short)32767, null, 65535, null, 32767)); res.add(F.asList("AND", null, null, 1, null, null)); res.add(F.asList("AND", 1, "SMALLINT", null, null, null)); + res.add(F.asList("AND", 1, null, null, null, null)); // BITOR res.add(F.asList("OR", 1, null, 1.0, null, orErr)); res.add(F.asList("OR", 1.0, null, 1, null, orErr)); @@ -179,7 +180,7 @@ private Iterable> bitwiseParams() { res.add(F.asList("OR", 1, "TINYINT", 1, "INT", 1)); res.add(F.asList("OR", 1, "TINYINT", 1, "SMALLINT", (short)1)); res.add(F.asList("OR", 0, "TINYINT", 0, "TINYINT", (byte)0)); - res.add(F.asList("OR", 1, "TINYINT", 1, "SMALLINT", (short)1)); + res.add(F.asList("OR", 1, "SMALLINT", 1, "TINYINT", (short)1)); res.add(F.asList("OR", 8, null, 7, null, 15)); res.add(F.asList("OR", -1, null, 1, null, -1)); res.add(F.asList("OR", (short)32767, null, 65535, null, 65535)); @@ -198,7 +199,7 @@ private Iterable> bitwiseParams() { res.add(F.asList("XOR", 1, "TINYINT", 1, "INT", 0)); res.add(F.asList("XOR", 1, "TINYINT", 1, "SMALLINT", (short)0)); res.add(F.asList("XOR", 0, "TINYINT", 0, "TINYINT", (byte)0)); - res.add(F.asList("XOR", 1, "TINYINT", 1, "SMALLINT", (short)0)); + res.add(F.asList("XOR", 1, "SMALLINT", 1, "TINYINT", (short)0)); res.add(F.asList("XOR", 8, null, 7, null, 15)); res.add(F.asList("XOR", -1, null, 1, null, -2)); res.add(F.asList("XOR", (short)32767, null, 65535, null, 32768)); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java index dc8788adfea5c..af26b4bc6187f 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java @@ -150,11 +150,11 @@ public void testIntervalToIntervalCast() { */ @Test public void testDml() { - executeSql("CREATE TABLE test(ym INTERVAL YEAR, dt INTERVAL DAYS)"); - executeSql("INSERT INTO test(ym, dt) VALUES (INTERVAL 1 MONTH, INTERVAL 2 DAYS)"); - executeSql("INSERT INTO test(ym, dt) VALUES (INTERVAL 3 YEARS, INTERVAL 4 HOURS)"); - executeSql("INSERT INTO test(ym, dt) VALUES (INTERVAL '4-5' YEARS TO MONTHS, INTERVAL '6:7' HOURS TO MINUTES)"); - executeSql("INSERT INTO test(ym, dt) VALUES (NULL, NULL)"); + sql("CREATE TABLE test(ym INTERVAL YEAR, dt INTERVAL DAYS)"); + sql("INSERT INTO test(ym, dt) VALUES (INTERVAL 1 MONTH, INTERVAL 2 DAYS)"); + sql("INSERT INTO test(ym, dt) VALUES (INTERVAL 3 YEARS, INTERVAL 4 HOURS)"); + sql("INSERT INTO test(ym, dt) VALUES (INTERVAL '4-5' YEARS TO MONTHS, INTERVAL '6:7' HOURS TO MINUTES)"); + sql("INSERT INTO test(ym, dt) VALUES (NULL, NULL)"); assertThrows("INSERT INTO test(ym, dt) VALUES (INTERVAL 1 DAYS, INTERVAL 1 HOURS)", IgniteSQLException.class, "Cannot assign"); assertThrows("INSERT INTO test(ym, dt) VALUES (INTERVAL 1 YEARS, INTERVAL 1 MONTHS)", @@ -170,13 +170,12 @@ public void testDml() { assertThrows("SELECT * FROM test WHERE ym = INTERVAL 6 DAYS", IgniteSQLException.class, "Cannot apply"); assertThrows("SELECT * FROM test WHERE dt = INTERVAL 6 YEARS", IgniteSQLException.class, "Cannot apply"); - executeSql("UPDATE test SET dt = INTERVAL 3 DAYS WHERE ym = INTERVAL 1 MONTH"); - executeSql("UPDATE test SET ym = INTERVAL 5 YEARS WHERE dt = INTERVAL 4 HOURS"); - executeSql("UPDATE test SET ym = INTERVAL '6-7' YEARS TO MONTHS, dt = INTERVAL '8 9' DAYS TO HOURS " + + sql("UPDATE test SET dt = INTERVAL 3 DAYS WHERE ym = INTERVAL 1 MONTH"); + sql("UPDATE test SET ym = INTERVAL 5 YEARS WHERE dt = INTERVAL 4 HOURS"); + sql("UPDATE test SET ym = INTERVAL '6-7' YEARS TO MONTHS, dt = INTERVAL '8 9' DAYS TO HOURS " + "WHERE ym = INTERVAL '4-5' YEARS TO MONTHS AND dt = INTERVAL '6:7' HOURS TO MINUTES"); - assertThrows("UPDATE test SET dt = INTERVAL 5 YEARS WHERE ym = INTERVAL 1 MONTH", IgniteSQLException.class, - "Cannot assign"); + assertThrowsSqlException("UPDATE test SET dt = INTERVAL 5 YEARS WHERE ym = INTERVAL 1 MONTH", null); assertThrows("UPDATE test SET ym = INTERVAL 8 YEARS WHERE dt = INTERVAL 1 MONTH", IgniteSQLException.class, "Cannot apply"); @@ -191,16 +190,16 @@ public void testDml() { assertThrows("DELETE FROM test WHERE ym = INTERVAL 6 DAYS", IgniteSQLException.class, "Cannot apply"); assertThrows("DELETE FROM test WHERE dt = INTERVAL 6 YEARS", IgniteSQLException.class, "Cannot apply"); - executeSql("DELETE FROM test WHERE ym = INTERVAL 1 MONTH"); - executeSql("DELETE FROM test WHERE dt = INTERVAL 4 HOURS"); - executeSql("DELETE FROM test WHERE ym = INTERVAL '6-7' YEARS TO MONTHS AND dt = INTERVAL '8 9' DAYS TO HOURS"); - executeSql("DELETE FROM test WHERE ym IS NULL AND dt IS NULL"); + sql("DELETE FROM test WHERE ym = INTERVAL 1 MONTH"); + sql("DELETE FROM test WHERE dt = INTERVAL 4 HOURS"); + sql("DELETE FROM test WHERE ym = INTERVAL '6-7' YEARS TO MONTHS AND dt = INTERVAL '8 9' DAYS TO HOURS"); + sql("DELETE FROM test WHERE ym IS NULL AND dt IS NULL"); - assertEquals(0, executeSql("SELECT * FROM test").size()); + assertEquals(0, sql("SELECT * FROM test").size()); - executeSql("ALTER TABLE test ADD (ym2 INTERVAL MONTH, dt2 INTERVAL HOURS)"); + sql("ALTER TABLE test ADD (ym2 INTERVAL MONTH, dt2 INTERVAL HOURS)"); - executeSql("INSERT INTO test(ym, ym2, dt, dt2) VALUES (INTERVAL 1 YEAR, INTERVAL 2 YEARS, " + + sql("INSERT INTO test(ym, ym2, dt, dt2) VALUES (INTERVAL 1 YEAR, INTERVAL 2 YEARS, " + "INTERVAL 1 SECOND, INTERVAL 2 MINUTES)"); assertQuery("SELECT ym, ym2, dt, dt2 FROM test") diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 7164c0d8eb15a..a4ace5c795e5f 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -562,7 +562,7 @@ public void testInlineSizeMultiKeyWrapParam() { @Test public void createTableUseReservedWord() { assertThrows("create table table (id int primary key, val varchar)", IgniteSQLException.class, - "Failed to parse query. Encountered \"table table\""); + "Failed to parse query. Encountered \" \"TABLE\" \"table \" \"TABLE\" \"table \"\""); sql("create table \"table\" (id int primary key, val varchar)"); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/CorrelatedSubqueryPlannerTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/CorrelatedSubqueryPlannerTest.java index 97e6a4debbb70..202bdef4aa0cf 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/CorrelatedSubqueryPlannerTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/CorrelatedSubqueryPlannerTest.java @@ -253,12 +253,10 @@ public void testCorrelatesCollisionsMixed() throws Exception { List correlates = findNodes(rel, byClass(LogicalCorrelate.class)); - assertEquals(4, correlates.size()); + assertEquals(2, correlates.size()); // There are collisions by correlation id. assertEquals(correlates.get(0).getCorrelationId(), correlates.get(1).getCorrelationId()); - assertEquals(correlates.get(0).getCorrelationId(), correlates.get(2).getCorrelationId()); - assertEquals(correlates.get(0).getCorrelationId(), correlates.get(3).getCorrelationId()); rel = planner.replaceCorrelatesCollisions(rel); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/HashIndexSpoolPlannerTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/HashIndexSpoolPlannerTest.java index d83844f183bb2..44b05e243358b 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/HashIndexSpoolPlannerTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/HashIndexSpoolPlannerTest.java @@ -22,6 +22,7 @@ import org.apache.calcite.rel.type.RelDataTypeFactory; import org.apache.calcite.rex.RexFieldAccess; import org.apache.calcite.rex.RexNode; +import org.apache.calcite.sql.type.SqlTypeName; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteHashIndexSpool; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteRel; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteTableScan; @@ -234,7 +235,7 @@ public void testSourceWithoutCollation() throws Exception { */ @Test public void testCorrelatedFilterSplit() throws Exception { - TestTable tbl = createTable("TBL", IgniteDistributions.random(), "ID", Integer.class); + TestTable tbl = createTable("TBL", IgniteDistributions.random(), "ID", SqlTypeName.INTEGER); IgniteSchema publicSchema = createSchema(tbl); String sql = "SELECT (SELECT id FROM tbl AS t2 WHERE t2.id < 50 AND t2.id = t1.id) FROM tbl AS t1"; diff --git a/modules/calcite/src/test/sql/aggregate/group/test_group_by.test b/modules/calcite/src/test/sql/aggregate/group/test_group_by.test index 56ffeccd35525..c6b9948aa03cd 100644 --- a/modules/calcite/src/test/sql/aggregate/group/test_group_by.test +++ b/modules/calcite/src/test/sql/aggregate/group/test_group_by.test @@ -137,7 +137,8 @@ SELECT 1 AS i, SUM(t.i) FROM integers t GROUP BY t.i ORDER BY 2; query IR SELECT 1 AS i, SUM(i) FROM integers GROUP BY i ORDER BY 2; ---- -1 8.000000 +1 2.000000 +1 6.000000 # refer to the same alias twice query IR