/* Generated By:JavaCC: Do not edit this line. ParserTokenManager.java */
package com.micronova.util.cc.html;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Attr;
import org.w3c.dom.Comment;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Text;

public class ParserTokenManager implements ParserConstants
{
    boolean isInScript = false;
    boolean isInStyle = false;

    void switchEndTag()
    {
        if (isInScript)
        {
            isInScript = false;
            SwitchTo(InScript);
        }
        else if (isInStyle)
        {
            isInStyle = false;
            SwitchTo(InStyle);
        }
        else
        {
            SwitchTo(DEFAULT);
        }
    }

    void replaceImage(char c)
    {
        image.setLength(image.length() - lengthOfMatch); image.append(c);
    }
  public  java.io.PrintStream debugStream = System.out;
  public  void setDebugStream(java.io.PrintStream ds) { debugStream = ds; }
private final int jjStopStringLiteralDfa_3(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_3(int pos, long active0)
{
   return jjMoveNfa_3(jjStopStringLiteralDfa_3(pos, active0), pos + 1);
}
private final int jjStopAtPos(int pos, int kind)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   return pos + 1;
}
private final int jjStartNfaWithStates_3(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_3(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_3()
{
   switch(curChar)
   {
      case 45:
         return jjMoveStringLiteralDfa1_3(0x80000L);
      default :
         return jjMoveNfa_3(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_3(long active0)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_3(0, active0);
      return 1;
   }
   switch(curChar)
   {
      case 45:
         return jjMoveStringLiteralDfa2_3(active0, 0x80000L);
      default :
         break;
   }
   return jjStartNfa_3(0, active0);
}
private final int jjMoveStringLiteralDfa2_3(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_3(0, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_3(1, active0);
      return 2;
   }
   switch(curChar)
   {
      case 62:
         if ((active0 & 0x80000L) != 0L)
            return jjStopAtPos(2, 19);
         break;
      default :
         break;
   }
   return jjStartNfa_3(1, active0);
}
private final void jjCheckNAdd(int state)
{
   if (jjrounds[state] != jjround)
   {
      jjstateSet[jjnewStateCnt++] = state;
      jjrounds[state] = jjround;
   }
}
private final void jjAddStates(int start, int end)
{
   do {
      jjstateSet[jjnewStateCnt++] = jjnextStates[start];
   } while (start++ != end);
}
private final void jjCheckNAddTwoStates(int state1, int state2)
{
   jjCheckNAdd(state1);
   jjCheckNAdd(state2);
}
private final void jjCheckNAddStates(int start, int end)
{
   do {
      jjCheckNAdd(jjnextStates[start]);
   } while (start++ != end);
}
private final void jjCheckNAddStates(int start)
{
   jjCheckNAdd(jjnextStates[start]);
   jjCheckNAdd(jjnextStates[start + 1]);
}
private final int jjMoveNfa_3(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 1;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 0)
                     kind = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 1 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_4(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_4(int pos, long active0)
{
   return jjMoveNfa_4(jjStopStringLiteralDfa_4(pos, active0), pos + 1);
}
private final int jjStartNfaWithStates_4(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_4(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_4()
{
   switch(curChar)
   {
      case 60:
         return jjMoveStringLiteralDfa1_4(0x20000L);
      default :
         return jjMoveNfa_4(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_4(long active0)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(0, active0);
      return 1;
   }
   switch(curChar)
   {
      case 47:
         return jjMoveStringLiteralDfa2_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(0, active0);
}
private final int jjMoveStringLiteralDfa2_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(0, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(1, active0);
      return 2;
   }
   switch(curChar)
   {
      case 83:
      case 115:
         return jjMoveStringLiteralDfa3_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(1, active0);
}
private final int jjMoveStringLiteralDfa3_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(1, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(2, active0);
      return 3;
   }
   switch(curChar)
   {
      case 84:
      case 116:
         return jjMoveStringLiteralDfa4_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(2, active0);
}
private final int jjMoveStringLiteralDfa4_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(2, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(3, active0);
      return 4;
   }
   switch(curChar)
   {
      case 89:
      case 121:
         return jjMoveStringLiteralDfa5_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(3, active0);
}
private final int jjMoveStringLiteralDfa5_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(3, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(4, active0);
      return 5;
   }
   switch(curChar)
   {
      case 76:
      case 108:
         return jjMoveStringLiteralDfa6_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(4, active0);
}
private final int jjMoveStringLiteralDfa6_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(4, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(5, active0);
      return 6;
   }
   switch(curChar)
   {
      case 69:
      case 101:
         return jjMoveStringLiteralDfa7_4(active0, 0x20000L);
      default :
         break;
   }
   return jjStartNfa_4(5, active0);
}
private final int jjMoveStringLiteralDfa7_4(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_4(5, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_4(6, active0);
      return 7;
   }
   switch(curChar)
   {
      case 62:
         if ((active0 & 0x20000L) != 0L)
            return jjStopAtPos(7, 17);
         break;
      default :
         break;
   }
   return jjStartNfa_4(6, active0);
}
private final int jjMoveNfa_4(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 1;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 0)
                     kind = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 1 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_5(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_5(int pos, long active0)
{
   return jjMoveNfa_5(jjStopStringLiteralDfa_5(pos, active0), pos + 1);
}
private final int jjStartNfaWithStates_5(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_5(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_5()
{
   switch(curChar)
   {
      case 60:
         return jjMoveStringLiteralDfa1_5(0x8000L);
      default :
         return jjMoveNfa_5(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_5(long active0)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(0, active0);
      return 1;
   }
   switch(curChar)
   {
      case 47:
         return jjMoveStringLiteralDfa2_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(0, active0);
}
private final int jjMoveStringLiteralDfa2_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(0, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(1, active0);
      return 2;
   }
   switch(curChar)
   {
      case 83:
      case 115:
         return jjMoveStringLiteralDfa3_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(1, active0);
}
private final int jjMoveStringLiteralDfa3_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(1, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(2, active0);
      return 3;
   }
   switch(curChar)
   {
      case 67:
      case 99:
         return jjMoveStringLiteralDfa4_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(2, active0);
}
private final int jjMoveStringLiteralDfa4_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(2, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(3, active0);
      return 4;
   }
   switch(curChar)
   {
      case 82:
      case 114:
         return jjMoveStringLiteralDfa5_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(3, active0);
}
private final int jjMoveStringLiteralDfa5_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(3, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(4, active0);
      return 5;
   }
   switch(curChar)
   {
      case 73:
      case 105:
         return jjMoveStringLiteralDfa6_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(4, active0);
}
private final int jjMoveStringLiteralDfa6_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(4, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(5, active0);
      return 6;
   }
   switch(curChar)
   {
      case 80:
      case 112:
         return jjMoveStringLiteralDfa7_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(5, active0);
}
private final int jjMoveStringLiteralDfa7_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(5, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(6, active0);
      return 7;
   }
   switch(curChar)
   {
      case 84:
      case 116:
         return jjMoveStringLiteralDfa8_5(active0, 0x8000L);
      default :
         break;
   }
   return jjStartNfa_5(6, active0);
}
private final int jjMoveStringLiteralDfa8_5(long old0, long active0)
{
   if (((active0 &= old0)) == 0L)
      return jjStartNfa_5(6, old0); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_5(7, active0);
      return 8;
   }
   switch(curChar)
   {
      case 62:
         if ((active0 & 0x8000L) != 0L)
            return jjStopAtPos(8, 15);
         break;
      default :
         break;
   }
   return jjStartNfa_5(7, active0);
}
private final int jjMoveNfa_5(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 1;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 0)
                     kind = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 1 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_8(int pos, long active0, long active1, long active2, long active3, long active4)
{
   switch (pos)
   {
      case 0:
         if ((active0 & 0xffffffff00000000L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffffffffffffffffL) != 0L || (active4 & 0xfffffffL) != 0L)
            return 1;
         return -1;
      default :
         return -1;
   }
}
private final int jjStartNfa_8(int pos, long active0, long active1, long active2, long active3, long active4)
{
   return jjMoveNfa_8(jjStopStringLiteralDfa_8(pos, active0, active1, active2, active3, active4), pos + 1);
}
private final int jjStartNfaWithStates_8(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_8(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_8()
{
   switch(curChar)
   {
      case 38:
         return jjMoveStringLiteralDfa1_8(0xffffffff00000000L, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfffffffL);
      case 60:
         jjmatchedKind = 3;
         return jjMoveStringLiteralDfa1_8(0x3f0L, 0x0L, 0x0L, 0x0L, 0x0L);
      default :
         return jjMoveNfa_8(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_8(long active0, long active1, long active2, long active3, long active4)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(0, active0, active1, active2, active3, active4);
      return 1;
   }
   switch(curChar)
   {
      case 33:
         if ((active0 & 0x100L) != 0L)
         {
            jjmatchedKind = 8;
            jjmatchedPos = 1;
         }
         return jjMoveStringLiteralDfa2_8(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L);
      case 47:
         if ((active0 & 0x10L) != 0L)
            return jjStopAtPos(1, 4);
         break;
      case 63:
         if ((active0 & 0x200L) != 0L)
            return jjStopAtPos(1, 9);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa2_8(active0, 0xff00000000L, active1, 0x1fff8000000L, active2, 0L, active3, 0L, active4, 0L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa2_8(active0, 0x10000000000L, active1, 0x1e0000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa2_8(active0, 0x60000000000L, active1, 0x1ffe00000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa2_8(active0, 0x180000000000L, active1, 0xfe00000000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa2_8(active0, 0xfe00000000000L, active1, 0L, active2, 0x1fffL, active3, 0L, active4, 0L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0L, active2, 0x7e000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa2_8(active0, 0x10000000000000L, active1, 0L, active2, 0x380000L, active3, 0L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0L, active2, 0x3c00000L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa2_8(active0, 0x3e0000000000000L, active1, 0L, active2, 0x1ffc000000L, active3, 0L, active4, 0L);
      case 75:
      case 107:
         return jjMoveStringLiteralDfa2_8(active0, 0x400000000000000L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa2_8(active0, 0x800000000000000L, active1, 0L, active2, 0x1fffc000000000L, active3, 0L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa2_8(active0, 0x1000000000000000L, active1, 0L, active2, 0x7e0000000000000L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa2_8(active0, 0x6000000000000000L, active1, 0L, active2, 0xf800000000000000L, active3, 0x1fL, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa2_8(active0, 0x8000000000000000L, active1, 0xffL, active2, 0L, active3, 0xfffe0L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0xf00L, active2, 0L, active3, 0x1fff00000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0xfffc00000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa2_8(active0, 0x60L, active1, 0x6000L, active2, 0L, active3, 0xffff000000000000L, active4, 0x3L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x38000L, active2, 0L, active3, 0L, active4, 0x7fcL);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x7c0000L, active2, 0L, active3, 0L, active4, 0xff800L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x800000L, active2, 0L, active3, 0L, active4, 0x200000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0L, active4, 0x1c00000L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa2_8(active0, 0L, active1, 0x4000000L, active2, 0L, active3, 0L, active4, 0xe000000L);
      default :
         break;
   }
   return jjStartNfa_8(0, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa2_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(0, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(1, active0, active1, active2, active3, active4);
      return 2;
   }
   switch(curChar)
   {
      case 45:
         return jjMoveStringLiteralDfa3_8(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L);
      case 65:
      case 97:
         return jjMoveStringLiteralDfa3_8(active0, 0xc30480200000000L, active1, 0xe00200009050001L, active2, 0x82007e004c80001L, active3, 0x7c00300020L, active4, 0x403804L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x1000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa3_8(active0, 0x40820400000020L, active1, 0x400030082002L, active2, 0x80008000002L, active3, 0x2008000000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0x20000000000L, active2, 0x2040100000000000L, active3, 0x4010000000000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa3_8(active0, 0x8000110100000000L, active1, 0x3001840044000000L, active2, 0x4000200013100000L, active3, 0x8060000c00080L, active4, 0x2900000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa3_8(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000004L, active3, 0x100L, active4, 0x8000L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa3_8(active0, 0x40000000000L, active1, 0x2000000029100L, active2, 0L, active3, 0x10100001000000L, active4, 0xf8L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0xc004000000804200L, active2, 0x8380000000000000L, active3, 0xe0000006000000L, active4, 0x200300L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa3_8(active0, 0x1000000000L, active1, 0x8000300000000L, active2, 0L, active3, 0x200008000200L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0x400000018L, active2, 0x40000018L, active3, 0xc00L, active4, 0x10000L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0x1800000000L, active2, 0x180002020L, active3, 0L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa3_8(active0, 0x100000000000000L, active1, 0x30000000000000L, active2, 0x1800200004000L, active3, 0x10000003L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa3_8(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x40L, active3, 0x100000000001000L, active4, 0x60000L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0x400000080L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa3_8(active0, 0x2000000000L, active1, 0x40082000000400L, active2, 0x2000000078000L, active3, 0xe000e000L, active4, 0x400L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0x4000000820L, active2, 0xc000800000000L, active3, 0xc00100010004L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa3_8(active0, 0x2004204000000040L, active1, 0x8000000040L, active2, 0x10000000200300L, active3, 0x60008L, active4, 0L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa3_8(active0, 0x5208008000000000L, active1, 0x180110002400080L, active2, 0x400001000000c00L, active3, 0xfe00000200080010L, active4, 0x1080001L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc000000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa3_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L);
      default :
         break;
   }
   return jjStartNfa_8(1, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa3_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(1, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(2, active0, active1, active2, active3, active4);
      return 3;
   }
   switch(curChar)
   {
      case 45:
         if ((active0 & 0x80L) != 0L)
            return jjStopAtPos(3, 7);
         break;
      case 59:
         if ((active0 & 0x1000000000000000L) != 0L)
         {
            jjmatchedKind = 60;
            jjmatchedPos = 3;
         }
         else if ((active0 & 0x4000000000000000L) != 0L)
         {
            jjmatchedKind = 62;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x200L) != 0L)
         {
            jjmatchedKind = 73;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x800000L) != 0L)
         {
            jjmatchedKind = 87;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x100000L) != 0L)
            return jjStopAtPos(3, 148);
         else if ((active2 & 0x200000L) != 0L)
            return jjStopAtPos(3, 149);
         else if ((active2 & 0x200000000000L) != 0L)
            return jjStopAtPos(3, 173);
         else if ((active2 & 0x10000000000000L) != 0L)
            return jjStopAtPos(3, 180);
         else if ((active2 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 186;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(3, 190);
         else if ((active2 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(3, 191);
         else if ((active3 & 0x10L) != 0L)
         {
            jjmatchedKind = 196;
            jjmatchedPos = 3;
         }
         else if ((active3 & 0x2000L) != 0L)
            return jjStopAtPos(3, 205);
         else if ((active3 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 217;
            jjmatchedPos = 3;
         }
         else if ((active4 & 0x200000L) != 0L)
         {
            jjmatchedKind = 277;
            jjmatchedPos = 3;
         }
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa4_8(active0, 0x4000000000000L, active1, 0x4040000000002000L, active2, 0x2044000041078100L, active3, 0x102420000000000L, active4, 0x400L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x600000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa4_8(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0xa0000004000001L, active3, 0x8000000000020L, active4, 0x401000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x800800000000L, active2, 0x100000000000000L, active3, 0x80000c000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa4_8(active0, 0x20000000000L, active1, 0x400100020008L, active2, 0x80000000000L, active3, 0x8000000400L, active4, 0x38L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa4_8(active0, 0x80000000000L, active1, 0x1400001000004000L, active2, 0L, active3, 0x60040000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa4_8(active0, 0x200000000000L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa4_8(active0, 0x2040846400000000L, active1, 0x200a010080d52L, active2, 0x808001002L, active3, 0x121060a48L, active4, 0x104040L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa4_8(active0, 0x8000100100000000L, active1, 0x2000100040000020L, active2, 0x400002000000L, active3, 0x80000011080L, active4, 0x10102L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa4_8(active0, 0xa18008000000000L, active1, 0x10002400080L, active2, 0x2009000080400L, active3, 0x880200000080000L, active4, 0x1080200L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x11000000000000L, active2, 0x200010000000000L, active3, 0x1000000000L, active4, 0x8800000L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x9000L, active2, 0x2000L, active3, 0x41002c0000000L, active4, 0x80L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa4_8(active0, 0x400001000000000L, active1, 0xa0200600000000L, active2, 0x2000000008L, active3, 0xf000000000000000L, active4, 0x1L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x20000000000L, active2, 0x8120000000000L, active3, 0x1812000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa4_8(active0, 0x81000800000020L, active1, 0xb04000080100004L, active2, 0x44020c04804L, active3, 0x4400f00100L, active4, 0xa800L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa4_8(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x1000000000000070L, active3, 0L, active4, 0x60000L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa4_8(active0, 0x100010000000000L, active1, 0x40004000000L, active2, 0x300000000L, active3, 0x3L, active4, 0x2000000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x8000020010000L, active2, 0x400000080L, active3, 0x18000004L, active4, 0x4L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0x8000080000000000L, active2, 0L, active3, 0x4000000L, active4, 0L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0x800000000000L, active3, 0L, active4, 0L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0x10000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa4_8(active0, 0x40L, active1, 0x4000000000L, active2, 0L, active3, 0x10000000000000L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa4_8(active0, 0L, active1, 0L, active2, 0x1000000000000L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_8(2, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa4_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(2, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(3, active0, active1, active2, active3, active4);
      return 4;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L);
      case 50:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L);
      case 59:
         if ((active0 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 42;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x200000000000L) != 0L)
         {
            jjmatchedKind = 45;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x4000000000000L) != 0L)
         {
            jjmatchedKind = 50;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x100L) != 0L)
         {
            jjmatchedKind = 72;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x800L) != 0L)
         {
            jjmatchedKind = 75;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x1000L) != 0L)
         {
            jjmatchedKind = 76;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x10000L) != 0L)
         {
            jjmatchedKind = 80;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x400000000L) != 0L)
            return jjStopAtPos(4, 98);
         else if ((active1 & 0x800000000L) != 0L)
            return jjStopAtPos(4, 99);
         else if ((active1 & 0x1000000000L) != 0L)
            return jjStopAtPos(4, 100);
         else if ((active1 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 109);
         else if ((active1 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 113;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 119);
         else if ((active1 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 124);
         else if ((active2 & 0x100L) != 0L)
         {
            jjmatchedKind = 136;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x200L) != 0L)
         {
            jjmatchedKind = 137;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x100000000L) != 0L)
            return jjStopAtPos(4, 160);
         else if ((active2 & 0x1000000000000L) != 0L)
            return jjStopAtPos(4, 176);
         else if ((active2 & 0x2000000000000L) != 0L)
            return jjStopAtPos(4, 177);
         else if ((active3 & 0x1L) != 0L)
            return jjStopAtPos(4, 192);
         else if ((active3 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 216;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 218);
         else if ((active3 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 224;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x40000000000L) != 0L)
            return jjStopAtPos(4, 234);
         else if ((active3 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 236;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 237);
         else if ((active3 & 0x10000000000000L) != 0L)
            return jjStopAtPos(4, 244);
         else if ((active3 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 247);
         else if ((active3 & 0x200000000000000L) != 0L)
            return jjStopAtPos(4, 249);
         else if ((active3 & 0x800000000000000L) != 0L)
            return jjStopAtPos(4, 251);
         else if ((active3 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 252);
         else if ((active4 & 0x4L) != 0L)
         {
            jjmatchedKind = 258;
            jjmatchedPos = 4;
         }
         else if ((active4 & 0x10000L) != 0L)
            return jjStopAtPos(4, 272);
         else if ((active4 & 0x800000L) != 0L)
            return jjStopAtPos(4, 279);
         else if ((active4 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 282);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa5_8(active0, 0x181010800000000L, active1, 0x40084100024L, active2, 0x800220004004L, active3, 0x110100L, active4, 0x2008000L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa5_8(active0, 0x800000000000000L, active1, 0x8080000000000L, active2, 0x8000000000L, active3, 0x4L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0x4000000000010L, active2, 0x10038000L, active3, 0x800L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa5_8(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x100000000000000L, active3, 0x100000040000000L, active4, 0x500L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0x400000000000000L, active4, 0x100201L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0x100000000L, active2, 0x2000L, active3, 0x4000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa5_8(active0, 0x80000000000L, active1, 0x410000000000008L, active2, 0x10040000000L, active3, 0x1000000400L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa5_8(active0, 0x1000000000L, active1, 0x200000000L, active2, 0L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa5_8(active0, 0x8002000100000020L, active1, 0x8000800040200000L, active2, 0x800800000c0L, active3, 0x8800000082L, active4, 0x60002L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa5_8(active0, 0x220800c000000040L, active1, 0x1180024000c0L, active2, 0x800001002000400L, active3, 0x200000a0008L, active4, 0x1080000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa5_8(active0, 0x10000000000000L, active1, 0x4000004000004400L, active2, 0x80000L, active3, 0x60000020448000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa5_8(active0, 0x2000000000L, active1, 0x2000000000L, active2, 0x800000000L, active3, 0x10000200L, active4, 0x40L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0x400000000800L, active3, 0x80000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa5_8(active0, 0x400000000000000L, active1, 0L, active2, 0x1000002000000030L, active3, 0x80800000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa5_8(active0, 0x40800400000000L, active1, 0xb4000001008a002L, active2, 0xa0044009c00002L, active3, 0x2004400000040L, active4, 0x6888L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0L, active2, 0x2040000000041000L, active3, 0x8000000L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa5_8(active0, 0x100000000000L, active1, 0x2001000020020000L, active2, 0x8L, active3, 0xc000200200000L, active4, 0x30L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa5_8(active0, 0x20400200000000L, active1, 0x20009040001L, active2, 0x208120004000001L, active3, 0x1812000001020L, active4, 0x401000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa5_8(active0, 0L, active1, 0x20000000000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_8(3, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa5_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(3, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(4, active0, active1, active2, active3, active4);
      return 5;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0x18000L, active3, 0L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0L);
      case 59:
         if ((active0 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 39;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 40;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x8000000000000L) != 0L)
         {
            jjmatchedKind = 51;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x100000000000000L) != 0L)
         {
            jjmatchedKind = 56;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 57;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x80L) != 0L)
         {
            jjmatchedKind = 71;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x400000L) != 0L)
         {
            jjmatchedKind = 86;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 89;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 90;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 104;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 106;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x100000000000L) != 0L)
            return jjStopAtPos(5, 108);
         else if ((active1 & 0x1000000000000L) != 0L)
            return jjStopAtPos(5, 112);
         else if ((active1 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 114);
         else if ((active1 & 0x10000000000000L) != 0L)
            return jjStopAtPos(5, 116);
         else if ((active1 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 117);
         else if ((active1 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 121;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 123;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10L) != 0L)
            return jjStopAtPos(5, 132);
         else if ((active2 & 0x20L) != 0L)
            return jjStopAtPos(5, 133);
         else if ((active2 & 0x400L) != 0L)
         {
            jjmatchedKind = 138;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800L) != 0L)
            return jjStopAtPos(5, 139);
         else if ((active2 & 0x2000L) != 0L)
            return jjStopAtPos(5, 141);
         else if ((active2 & 0x400000L) != 0L)
         {
            jjmatchedKind = 150;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000L) != 0L)
         {
            jjmatchedKind = 151;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 161;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000000L) != 0L)
            return jjStopAtPos(5, 163);
         else if ((active2 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 164;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 166;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10000000000L) != 0L)
            return jjStopAtPos(5, 168);
         else if ((active2 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 170;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 181);
         else if ((active2 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(5, 188);
         else if ((active3 & 0x4L) != 0L)
            return jjStopAtPos(5, 194);
         else if ((active3 & 0x4000L) != 0L)
            return jjStopAtPos(5, 206);
         else if ((active3 & 0x8000L) != 0L)
            return jjStopAtPos(5, 207);
         else if ((active3 & 0x80000L) != 0L)
         {
            jjmatchedKind = 211;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x100000L) != 0L)
            return jjStopAtPos(5, 212);
         else if ((active3 & 0x200000L) != 0L)
            return jjStopAtPos(5, 213);
         else if ((active3 & 0x800000L) != 0L)
            return jjStopAtPos(5, 215);
         else if ((active3 & 0x40000000L) != 0L)
            return jjStopAtPos(5, 222);
         else if ((active3 & 0x80000000L) != 0L)
            return jjStopAtPos(5, 223);
         else if ((active3 & 0x200000000L) != 0L)
            return jjStopAtPos(5, 225);
         else if ((active3 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 226;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x1000000000L) != 0L)
            return jjStopAtPos(5, 228);
         else if ((active3 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 230;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x20000000000L) != 0L)
            return jjStopAtPos(5, 233);
         else if ((active3 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 242);
         else if ((active3 & 0x8000000000000L) != 0L)
            return jjStopAtPos(5, 243);
         else if ((active3 & 0x400000000000000L) != 0L)
            return jjStopAtPos(5, 250);
         else if ((active3 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(5, 253);
         else if ((active3 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(5, 254);
         else if ((active3 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(5, 255);
         else if ((active4 & 0x1L) != 0L)
            return jjStopAtPos(5, 256);
         else if ((active4 & 0x800L) != 0L)
         {
            jjmatchedKind = 267;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000L) != 0L)
         {
            jjmatchedKind = 269;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x80000L) != 0L)
         {
            jjmatchedKind = 275;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 280;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 281;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x8000000L) != 0L)
            return jjStopAtPos(5, 283);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa6_8(active0, 0x410101000000000L, active1, 0x2000080200024008L, active2, 0x800002000080000L, active3, 0x60000000000400L, active4, 0x30L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa6_8(active0, 0x40800400000000L, active1, 0x10080002L, active2, 0x8000002L, active3, 0x800000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa6_8(active0, 0x2800004000000000L, active1, 0x8000008000000040L, active2, 0x8000000000L, active3, 0x10020008L, active4, 0L);
      case 69:
      case 101:
         if ((active0 & 0x40L) != 0L)
            return jjStopAtPos(5, 6);
         return jjMoveStringLiteralDfa6_8(active0, 0x80000000000L, active1, 0x500000020000400L, active2, 0x40000000L, active3, 0x100000020040200L, active4, 0x508L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa6_8(active0, 0x8000002100000000L, active1, 0x2040000000L, active2, 0L, active3, 0x80L, active4, 0x2L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0x2040000000000000L, active3, 0L, active4, 0x20000L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa6_8(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x2000000L, active3, 0x400000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa6_8(active0, 0x2000000000000L, active1, 0x800000200000L, active2, 0x80010044040L, active3, 0x8000000000L, active4, 0x40000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0x8000L, active2, 0x80000000L, active3, 0x2L, active4, 0x80L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0x20000002000L, active2, 0x188520000000000L, active3, 0x3892000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa6_8(active0, 0x20L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0x40000000000010L, active2, 0L, active3, 0x800L, active4, 0x100000L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0x4008000100000020L, active2, 0x200800400000000L, active3, 0x11000L, active4, 0x240L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa6_8(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0x5001001L, active3, 0x20L, active4, 0x401000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa6_8(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000084L, active3, 0x100L, active4, 0x8000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa6_8(active0, 0L, active1, 0L, active2, 0x8L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_8(4, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa6_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(4, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(5, active0, active1, active2, active3, active4);
      return 6;
   }
   switch(curChar)
   {
      case 50:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L);
      case 52:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0x30000L, active3, 0L, active4, 0x8L);
      case 59:
         if ((active0 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 32;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 34;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 36;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 37;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 44;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x800000000000L) != 0L)
         {
            jjmatchedKind = 47;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x10000000000000L) != 0L)
         {
            jjmatchedKind = 52;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x40000000000000L) != 0L)
         {
            jjmatchedKind = 54;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 58;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x8000000000000000L) != 0L)
         {
            jjmatchedKind = 63;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2L) != 0L)
         {
            jjmatchedKind = 65;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8L) != 0L)
         {
            jjmatchedKind = 67;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x400L) != 0L)
         {
            jjmatchedKind = 74;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000L) != 0L)
         {
            jjmatchedKind = 78;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8000L) != 0L)
         {
            jjmatchedKind = 79;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000L) != 0L)
         {
            jjmatchedKind = 81;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x80000L) != 0L)
         {
            jjmatchedKind = 83;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x10000000L) != 0L)
         {
            jjmatchedKind = 92;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000000L) != 0L)
            return jjStopAtPos(6, 93);
         else if ((active1 & 0x40000000L) != 0L)
         {
            jjmatchedKind = 94;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 97;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 101;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000L) != 0L)
            return jjStopAtPos(6, 102);
         else if ((active1 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 105);
         else if ((active1 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 111);
         else if ((active1 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 115);
         else if ((active1 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 118);
         else if ((active1 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 125;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(6, 126);
         else if ((active2 & 0x2L) != 0L)
         {
            jjmatchedKind = 129;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8L) != 0L)
            return jjStopAtPos(6, 131);
         else if ((active2 & 0x80L) != 0L)
            return jjStopAtPos(6, 135);
         else if ((active2 & 0x1000L) != 0L)
            return jjStopAtPos(6, 140);
         else if ((active2 & 0x40000L) != 0L)
            return jjStopAtPos(6, 146);
         else if ((active2 & 0x80000L) != 0L)
         {
            jjmatchedKind = 147;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 155;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 156);
         else if ((active2 & 0x40000000L) != 0L)
            return jjStopAtPos(6, 158);
         else if ((active2 & 0x80000000L) != 0L)
            return jjStopAtPos(6, 159);
         else if ((active2 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 165;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 169);
         else if ((active2 & 0x80000000000L) != 0L)
            return jjStopAtPos(6, 171);
         else if ((active2 & 0x100000000000L) != 0L)
            return jjStopAtPos(6, 172);
         else if ((active2 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 179);
         else if ((active2 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 182);
         else if ((active2 & 0x80000000000000L) != 0L)
            return jjStopAtPos(6, 183);
         else if ((active2 & 0x200000000000000L) != 0L)
            return jjStopAtPos(6, 185);
         else if ((active2 & 0x800000000000000L) != 0L)
            return jjStopAtPos(6, 187);
         else if ((active2 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(6, 189);
         else if ((active3 & 0x2L) != 0L)
            return jjStopAtPos(6, 193);
         else if ((active3 & 0x40L) != 0L)
         {
            jjmatchedKind = 198;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x80L) != 0L)
         {
            jjmatchedKind = 199;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x200L) != 0L)
            return jjStopAtPos(6, 201);
         else if ((active3 & 0x400L) != 0L)
         {
            jjmatchedKind = 202;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x1000L) != 0L)
            return jjStopAtPos(6, 204);
         else if ((active3 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 220);
         else if ((active3 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 221;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x800000000L) != 0L)
            return jjStopAtPos(6, 227);
         else if ((active3 & 0x2000000000L) != 0L)
            return jjStopAtPos(6, 229);
         else if ((active3 & 0x8000000000L) != 0L)
            return jjStopAtPos(6, 231);
         else if ((active3 & 0x10000000000L) != 0L)
            return jjStopAtPos(6, 232);
         else if ((active3 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 239);
         else if ((active3 & 0x1000000000000L) != 0L)
            return jjStopAtPos(6, 240);
         else if ((active3 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 245;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x2L) != 0L)
            return jjStopAtPos(6, 257);
         else if ((active4 & 0x10L) != 0L)
         {
            jjmatchedKind = 260;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x80L) != 0L)
         {
            jjmatchedKind = 263;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x100L) != 0L)
            return jjStopAtPos(6, 264);
         else if ((active4 & 0x200L) != 0L)
            return jjStopAtPos(6, 265);
         else if ((active4 & 0x400L) != 0L)
            return jjStopAtPos(6, 266);
         else if ((active4 & 0x4000L) != 0L)
         {
            jjmatchedKind = 270;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x20000L) != 0L)
            return jjStopAtPos(6, 273);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa7_8(active0, 0x800000000000000L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa7_8(active0, 0x20a1404a00000000L, active1, 0x8000008089140045L, active2, 0x24000005L, active3, 0x20128L, active4, 0x409000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0x20L, active2, 0L, active3, 0x10000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa7_8(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x4000L, active3, 0x400000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0x100000000002000L, active2, 0L, active3, 0x2000008000000L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa7_8(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x4000000000040L, active3, 0x400000000800L, active4, 0x40000L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0x2000000L, active3, 0L, active4, 0x100040L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa7_8(active0, 0x80000000000L, active1, 0x400080000000000L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0x1000000L, active3, 0x100000000040000L, active4, 0x20L);
      case 84:
      case 116:
         if ((active0 & 0x20L) != 0L)
            return jjStopAtPos(6, 5);
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0L, active2, 0x100800400000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa7_8(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_8(5, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa7_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(5, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(6, active0, active1, active2, active3, active4);
      return 7;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 33;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000L) != 0L)
         {
            jjmatchedKind = 35;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 38;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000L) != 0L)
         {
            jjmatchedKind = 41;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000L) != 0L)
         {
            jjmatchedKind = 43;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 46;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x1000000000000L) != 0L)
         {
            jjmatchedKind = 48;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 53;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000000L) != 0L)
         {
            jjmatchedKind = 55;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 59;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 61;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1L) != 0L)
         {
            jjmatchedKind = 64;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x4L) != 0L)
         {
            jjmatchedKind = 66;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x20L) != 0L)
         {
            jjmatchedKind = 69;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40L) != 0L)
         {
            jjmatchedKind = 70;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x2000L) != 0L)
         {
            jjmatchedKind = 77;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40000L) != 0L)
         {
            jjmatchedKind = 82;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000L) != 0L)
         {
            jjmatchedKind = 84;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 88;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 91;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000L) != 0L)
         {
            jjmatchedKind = 95;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 103;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 107);
         else if ((active1 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 110;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 120);
         else if ((active1 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 122;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(7, 127);
         else if ((active2 & 0x1L) != 0L)
         {
            jjmatchedKind = 128;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4L) != 0L)
         {
            jjmatchedKind = 130;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4000L) != 0L)
            return jjStopAtPos(7, 142);
         else if ((active2 & 0x8000L) != 0L)
            return jjStopAtPos(7, 143);
         else if ((active2 & 0x10000L) != 0L)
            return jjStopAtPos(7, 144);
         else if ((active2 & 0x20000L) != 0L)
            return jjStopAtPos(7, 145);
         else if ((active2 & 0x1000000L) != 0L)
            return jjStopAtPos(7, 152);
         else if ((active2 & 0x2000000L) != 0L)
            return jjStopAtPos(7, 153);
         else if ((active2 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 154;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 157;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000L) != 0L)
            return jjStopAtPos(7, 162);
         else if ((active2 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 167;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 174);
         else if ((active2 & 0x800000000000L) != 0L)
            return jjStopAtPos(7, 175);
         else if ((active2 & 0x4000000000000L) != 0L)
            return jjStopAtPos(7, 178);
         else if ((active2 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 184);
         else if ((active3 & 0x8L) != 0L)
         {
            jjmatchedKind = 195;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20L) != 0L)
         {
            jjmatchedKind = 197;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x100L) != 0L)
         {
            jjmatchedKind = 200;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x10000L) != 0L)
         {
            jjmatchedKind = 208;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20000L) != 0L)
         {
            jjmatchedKind = 209;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000L) != 0L)
            return jjStopAtPos(7, 210);
         else if ((active3 & 0x400000L) != 0L)
            return jjStopAtPos(7, 214);
         else if ((active3 & 0x8000000L) != 0L)
            return jjStopAtPos(7, 219);
         else if ((active3 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 235);
         else if ((active3 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 238);
         else if ((active3 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 241;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000000000000L) != 0L)
            return jjStopAtPos(7, 246);
         else if ((active3 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 248);
         else if ((active4 & 0x8L) != 0L)
            return jjStopAtPos(7, 259);
         else if ((active4 & 0x40L) != 0L)
            return jjStopAtPos(7, 262);
         else if ((active4 & 0x1000L) != 0L)
         {
            jjmatchedKind = 268;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x8000L) != 0L)
         {
            jjmatchedKind = 271;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x100000L) != 0L)
            return jjStopAtPos(7, 276);
         else if ((active4 & 0x400000L) != 0L)
         {
            jjmatchedKind = 278;
            jjmatchedPos = 7;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa8_8(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa8_8(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x40L, active3, 0x800L, active4, 0x40000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa8_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_8(6, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa8_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(6, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(7, active0, active1, active2, active3, active4);
      return 8;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 49;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x10L) != 0L)
         {
            jjmatchedKind = 68;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x200000L) != 0L)
         {
            jjmatchedKind = 85;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x100000000L) != 0L)
            return jjStopAtPos(8, 96);
         else if ((active2 & 0x40L) != 0L)
         {
            jjmatchedKind = 134;
            jjmatchedPos = 8;
         }
         else if ((active3 & 0x800L) != 0L)
         {
            jjmatchedKind = 203;
            jjmatchedPos = 8;
         }
         else if ((active4 & 0x40000L) != 0L)
         {
            jjmatchedKind = 274;
            jjmatchedPos = 8;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa9_8(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_8(7, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa9_8(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_8(7, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_8(8, 0L, 0L, 0L, 0L, active4);
      return 9;
   }
   switch(curChar)
   {
      case 59:
         if ((active4 & 0x20L) != 0L)
            return jjStopAtPos(9, 261);
         break;
      default :
         break;
   }
   return jjStartNfa_8(8, 0L, 0L, 0L, 0L, active4);
}
private final int jjMoveNfa_8(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 5;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  else if (curChar == 0)
                  {
                     if (kind > 1)
                        kind = 1;
                  }
                  break;
               case 1:
                  if (curChar == 35)
                     jjCheckNAdd(2);
                  break;
               case 2:
                  if ((0x3ff000000000000L & l) != 0L)
                     jjCheckNAddTwoStates(2, 3);
                  break;
               case 3:
                  if (curChar == 59)
                     kind = 284;
                  break;
               case 4:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 5 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, long active2, long active3, long active4)
{
   switch (pos)
   {
      case 0:
         if ((active0 & 0xffffffff00000000L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffffffffffffffffL) != 0L || (active4 & 0xfffffffL) != 0L)
            return 1;
         return -1;
      default :
         return -1;
   }
}
private final int jjStartNfa_0(int pos, long active0, long active1, long active2, long active3, long active4)
{
   return jjMoveNfa_0(jjStopStringLiteralDfa_0(pos, active0, active1, active2, active3, active4), pos + 1);
}
private final int jjStartNfaWithStates_0(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_0(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_0()
{
   switch(curChar)
   {
      case 38:
         return jjMoveStringLiteralDfa1_0(0xffffffff00000000L, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfffffffL);
      case 39:
         return jjStopAtPos(0, 30);
      default :
         return jjMoveNfa_0(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_0(long active0, long active1, long active2, long active3, long active4)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(0, active0, active1, active2, active3, active4);
      return 1;
   }
   switch(curChar)
   {
      case 65:
      case 97:
         return jjMoveStringLiteralDfa2_0(active0, 0xff00000000L, active1, 0x1fff8000000L, active2, 0L, active3, 0L, active4, 0L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa2_0(active0, 0x10000000000L, active1, 0x1e0000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa2_0(active0, 0x60000000000L, active1, 0x1ffe00000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa2_0(active0, 0x180000000000L, active1, 0xfe00000000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa2_0(active0, 0xfe00000000000L, active1, 0L, active2, 0x1fffL, active3, 0L, active4, 0L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x7e000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa2_0(active0, 0x10000000000000L, active1, 0L, active2, 0x380000L, active3, 0L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x3c00000L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa2_0(active0, 0x3e0000000000000L, active1, 0L, active2, 0x1ffc000000L, active3, 0L, active4, 0L);
      case 75:
      case 107:
         return jjMoveStringLiteralDfa2_0(active0, 0x400000000000000L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa2_0(active0, 0x800000000000000L, active1, 0L, active2, 0x1fffc000000000L, active3, 0L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa2_0(active0, 0x1000000000000000L, active1, 0L, active2, 0x7e0000000000000L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa2_0(active0, 0x6000000000000000L, active1, 0L, active2, 0xf800000000000000L, active3, 0x1fL, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa2_0(active0, 0x8000000000000000L, active1, 0xffL, active2, 0L, active3, 0xfffe0L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0xf00L, active2, 0L, active3, 0x1fff00000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0xfffc00000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x6000L, active2, 0L, active3, 0xffff000000000000L, active4, 0x3L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x38000L, active2, 0L, active3, 0L, active4, 0x7fcL);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x7c0000L, active2, 0L, active3, 0L, active4, 0xff800L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x800000L, active2, 0L, active3, 0L, active4, 0x200000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0L, active4, 0x1c00000L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x4000000L, active2, 0L, active3, 0L, active4, 0xe000000L);
      default :
         break;
   }
   return jjStartNfa_0(0, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(0, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(1, active0, active1, active2, active3, active4);
      return 2;
   }
   switch(curChar)
   {
      case 65:
      case 97:
         return jjMoveStringLiteralDfa3_0(active0, 0xc30480200000000L, active1, 0xe00200009050001L, active2, 0x82007e004c80001L, active3, 0x7c00300020L, active4, 0x403804L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x1000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa3_0(active0, 0x40820400000000L, active1, 0x400030082002L, active2, 0x80008000002L, active3, 0x2008000000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x20000000000L, active2, 0x2040100000000000L, active3, 0x4010000000000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa3_0(active0, 0x8000110100000000L, active1, 0x3001840044000000L, active2, 0x4000200013100000L, active3, 0x8060000c00080L, active4, 0x2900000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa3_0(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000004L, active3, 0x100L, active4, 0x8000L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa3_0(active0, 0x40000000000L, active1, 0x2000000029100L, active2, 0L, active3, 0x10100001000000L, active4, 0xf8L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0xc004000000804200L, active2, 0x8380000000000000L, active3, 0xe0000006000000L, active4, 0x200300L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa3_0(active0, 0x1000000000L, active1, 0x8000300000000L, active2, 0L, active3, 0x200008000200L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x400000018L, active2, 0x40000018L, active3, 0xc00L, active4, 0x10000L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x1800000000L, active2, 0x180002020L, active3, 0L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa3_0(active0, 0x100000000000000L, active1, 0x30000000000000L, active2, 0x1800200004000L, active3, 0x10000003L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa3_0(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x40L, active3, 0x100000000001000L, active4, 0x60000L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x400000080L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa3_0(active0, 0x2000000000L, active1, 0x40082000000400L, active2, 0x2000000078000L, active3, 0xe000e000L, active4, 0x400L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x4000000820L, active2, 0xc000800000000L, active3, 0xc00100010004L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa3_0(active0, 0x2004204000000000L, active1, 0x8000000040L, active2, 0x10000000200300L, active3, 0x60008L, active4, 0L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa3_0(active0, 0x5208008000000000L, active1, 0x180110002400080L, active2, 0x400001000000c00L, active3, 0xfe00000200080010L, active4, 0x1080001L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc000000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L);
      default :
         break;
   }
   return jjStartNfa_0(1, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(1, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(2, active0, active1, active2, active3, active4);
      return 3;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x1000000000000000L) != 0L)
         {
            jjmatchedKind = 60;
            jjmatchedPos = 3;
         }
         else if ((active0 & 0x4000000000000000L) != 0L)
         {
            jjmatchedKind = 62;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x200L) != 0L)
         {
            jjmatchedKind = 73;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x800000L) != 0L)
         {
            jjmatchedKind = 87;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x100000L) != 0L)
            return jjStopAtPos(3, 148);
         else if ((active2 & 0x200000L) != 0L)
            return jjStopAtPos(3, 149);
         else if ((active2 & 0x200000000000L) != 0L)
            return jjStopAtPos(3, 173);
         else if ((active2 & 0x10000000000000L) != 0L)
            return jjStopAtPos(3, 180);
         else if ((active2 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 186;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(3, 190);
         else if ((active2 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(3, 191);
         else if ((active3 & 0x10L) != 0L)
         {
            jjmatchedKind = 196;
            jjmatchedPos = 3;
         }
         else if ((active3 & 0x2000L) != 0L)
            return jjStopAtPos(3, 205);
         else if ((active3 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 217;
            jjmatchedPos = 3;
         }
         else if ((active4 & 0x200000L) != 0L)
         {
            jjmatchedKind = 277;
            jjmatchedPos = 3;
         }
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa4_0(active0, 0x4000000000000L, active1, 0x4040000000002000L, active2, 0x2044000041078100L, active3, 0x102420000000000L, active4, 0x400L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x600000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa4_0(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0xa0000004000001L, active3, 0x8000000000020L, active4, 0x401000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x800800000000L, active2, 0x100000000000000L, active3, 0x80000c000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa4_0(active0, 0x20000000000L, active1, 0x400100020008L, active2, 0x80000000000L, active3, 0x8000000400L, active4, 0x38L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa4_0(active0, 0x80000000000L, active1, 0x1400001000004000L, active2, 0L, active3, 0x60040000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa4_0(active0, 0x200000000000L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa4_0(active0, 0x2040846400000000L, active1, 0x200a010080d52L, active2, 0x808001002L, active3, 0x121060a48L, active4, 0x104040L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa4_0(active0, 0x8000100100000000L, active1, 0x2000100040000020L, active2, 0x400002000000L, active3, 0x80000011080L, active4, 0x10102L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa4_0(active0, 0xa18008000000000L, active1, 0x10002400080L, active2, 0x2009000080400L, active3, 0x880200000080000L, active4, 0x1080200L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x11000000000000L, active2, 0x200010000000000L, active3, 0x1000000000L, active4, 0x8800000L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x9000L, active2, 0x2000L, active3, 0x41002c0000000L, active4, 0x80L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa4_0(active0, 0x400001000000000L, active1, 0xa0200600000000L, active2, 0x2000000008L, active3, 0xf000000000000000L, active4, 0x1L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x20000000000L, active2, 0x8120000000000L, active3, 0x1812000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa4_0(active0, 0x81000800000000L, active1, 0xb04000080100004L, active2, 0x44020c04804L, active3, 0x4400f00100L, active4, 0xa800L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa4_0(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x1000000000000070L, active3, 0L, active4, 0x60000L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa4_0(active0, 0x100010000000000L, active1, 0x40004000000L, active2, 0x300000000L, active3, 0x3L, active4, 0x2000000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x8000020010000L, active2, 0x400000080L, active3, 0x18000004L, active4, 0x4L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x8000080000000000L, active2, 0L, active3, 0x4000000L, active4, 0L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x800000000000L, active3, 0L, active4, 0L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x10000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0x10000000000000L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x1000000000000L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_0(2, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(2, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(3, active0, active1, active2, active3, active4);
      return 4;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L);
      case 50:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L);
      case 59:
         if ((active0 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 42;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x200000000000L) != 0L)
         {
            jjmatchedKind = 45;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x4000000000000L) != 0L)
         {
            jjmatchedKind = 50;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x100L) != 0L)
         {
            jjmatchedKind = 72;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x800L) != 0L)
         {
            jjmatchedKind = 75;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x1000L) != 0L)
         {
            jjmatchedKind = 76;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x10000L) != 0L)
         {
            jjmatchedKind = 80;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x400000000L) != 0L)
            return jjStopAtPos(4, 98);
         else if ((active1 & 0x800000000L) != 0L)
            return jjStopAtPos(4, 99);
         else if ((active1 & 0x1000000000L) != 0L)
            return jjStopAtPos(4, 100);
         else if ((active1 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 109);
         else if ((active1 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 113;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 119);
         else if ((active1 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 124);
         else if ((active2 & 0x100L) != 0L)
         {
            jjmatchedKind = 136;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x200L) != 0L)
         {
            jjmatchedKind = 137;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x100000000L) != 0L)
            return jjStopAtPos(4, 160);
         else if ((active2 & 0x1000000000000L) != 0L)
            return jjStopAtPos(4, 176);
         else if ((active2 & 0x2000000000000L) != 0L)
            return jjStopAtPos(4, 177);
         else if ((active3 & 0x1L) != 0L)
            return jjStopAtPos(4, 192);
         else if ((active3 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 216;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 218);
         else if ((active3 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 224;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x40000000000L) != 0L)
            return jjStopAtPos(4, 234);
         else if ((active3 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 236;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 237);
         else if ((active3 & 0x10000000000000L) != 0L)
            return jjStopAtPos(4, 244);
         else if ((active3 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 247);
         else if ((active3 & 0x200000000000000L) != 0L)
            return jjStopAtPos(4, 249);
         else if ((active3 & 0x800000000000000L) != 0L)
            return jjStopAtPos(4, 251);
         else if ((active3 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 252);
         else if ((active4 & 0x4L) != 0L)
         {
            jjmatchedKind = 258;
            jjmatchedPos = 4;
         }
         else if ((active4 & 0x10000L) != 0L)
            return jjStopAtPos(4, 272);
         else if ((active4 & 0x800000L) != 0L)
            return jjStopAtPos(4, 279);
         else if ((active4 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 282);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa5_0(active0, 0x181010800000000L, active1, 0x40084100024L, active2, 0x800220004004L, active3, 0x110100L, active4, 0x2008000L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa5_0(active0, 0x800000000000000L, active1, 0x8080000000000L, active2, 0x8000000000L, active3, 0x4L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x4000000000010L, active2, 0x10038000L, active3, 0x800L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa5_0(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x100000000000000L, active3, 0x100000040000000L, active4, 0x500L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0x400000000000000L, active4, 0x100201L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x100000000L, active2, 0x2000L, active3, 0x4000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa5_0(active0, 0x80000000000L, active1, 0x410000000000008L, active2, 0x10040000000L, active3, 0x1000000400L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa5_0(active0, 0x1000000000L, active1, 0x200000000L, active2, 0L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa5_0(active0, 0x8002000100000000L, active1, 0x8000800040200000L, active2, 0x800800000c0L, active3, 0x8800000082L, active4, 0x60002L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa5_0(active0, 0x220800c000000000L, active1, 0x1180024000c0L, active2, 0x800001002000400L, active3, 0x200000a0008L, active4, 0x1080000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa5_0(active0, 0x10000000000000L, active1, 0x4000004000004400L, active2, 0x80000L, active3, 0x60000020448000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa5_0(active0, 0x2000000000L, active1, 0x2000000000L, active2, 0x800000000L, active3, 0x10000200L, active4, 0x40L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x400000000800L, active3, 0x80000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa5_0(active0, 0x400000000000000L, active1, 0L, active2, 0x1000002000000030L, active3, 0x80800000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa5_0(active0, 0x40800400000000L, active1, 0xb4000001008a002L, active2, 0xa0044009c00002L, active3, 0x2004400000040L, active4, 0x6888L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x2040000000041000L, active3, 0x8000000L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa5_0(active0, 0x100000000000L, active1, 0x2001000020020000L, active2, 0x8L, active3, 0xc000200200000L, active4, 0x30L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa5_0(active0, 0x20400200000000L, active1, 0x20009040001L, active2, 0x208120004000001L, active3, 0x1812000001020L, active4, 0x401000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x20000000000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_0(3, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(3, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(4, active0, active1, active2, active3, active4);
      return 5;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x18000L, active3, 0L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0L);
      case 59:
         if ((active0 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 39;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 40;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x8000000000000L) != 0L)
         {
            jjmatchedKind = 51;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x100000000000000L) != 0L)
         {
            jjmatchedKind = 56;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 57;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x80L) != 0L)
         {
            jjmatchedKind = 71;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x400000L) != 0L)
         {
            jjmatchedKind = 86;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 89;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 90;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 104;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 106;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x100000000000L) != 0L)
            return jjStopAtPos(5, 108);
         else if ((active1 & 0x1000000000000L) != 0L)
            return jjStopAtPos(5, 112);
         else if ((active1 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 114);
         else if ((active1 & 0x10000000000000L) != 0L)
            return jjStopAtPos(5, 116);
         else if ((active1 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 117);
         else if ((active1 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 121;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 123;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10L) != 0L)
            return jjStopAtPos(5, 132);
         else if ((active2 & 0x20L) != 0L)
            return jjStopAtPos(5, 133);
         else if ((active2 & 0x400L) != 0L)
         {
            jjmatchedKind = 138;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800L) != 0L)
            return jjStopAtPos(5, 139);
         else if ((active2 & 0x2000L) != 0L)
            return jjStopAtPos(5, 141);
         else if ((active2 & 0x400000L) != 0L)
         {
            jjmatchedKind = 150;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000L) != 0L)
         {
            jjmatchedKind = 151;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 161;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000000L) != 0L)
            return jjStopAtPos(5, 163);
         else if ((active2 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 164;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 166;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10000000000L) != 0L)
            return jjStopAtPos(5, 168);
         else if ((active2 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 170;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 181);
         else if ((active2 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(5, 188);
         else if ((active3 & 0x4L) != 0L)
            return jjStopAtPos(5, 194);
         else if ((active3 & 0x4000L) != 0L)
            return jjStopAtPos(5, 206);
         else if ((active3 & 0x8000L) != 0L)
            return jjStopAtPos(5, 207);
         else if ((active3 & 0x80000L) != 0L)
         {
            jjmatchedKind = 211;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x100000L) != 0L)
            return jjStopAtPos(5, 212);
         else if ((active3 & 0x200000L) != 0L)
            return jjStopAtPos(5, 213);
         else if ((active3 & 0x800000L) != 0L)
            return jjStopAtPos(5, 215);
         else if ((active3 & 0x40000000L) != 0L)
            return jjStopAtPos(5, 222);
         else if ((active3 & 0x80000000L) != 0L)
            return jjStopAtPos(5, 223);
         else if ((active3 & 0x200000000L) != 0L)
            return jjStopAtPos(5, 225);
         else if ((active3 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 226;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x1000000000L) != 0L)
            return jjStopAtPos(5, 228);
         else if ((active3 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 230;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x20000000000L) != 0L)
            return jjStopAtPos(5, 233);
         else if ((active3 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 242);
         else if ((active3 & 0x8000000000000L) != 0L)
            return jjStopAtPos(5, 243);
         else if ((active3 & 0x400000000000000L) != 0L)
            return jjStopAtPos(5, 250);
         else if ((active3 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(5, 253);
         else if ((active3 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(5, 254);
         else if ((active3 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(5, 255);
         else if ((active4 & 0x1L) != 0L)
            return jjStopAtPos(5, 256);
         else if ((active4 & 0x800L) != 0L)
         {
            jjmatchedKind = 267;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000L) != 0L)
         {
            jjmatchedKind = 269;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x80000L) != 0L)
         {
            jjmatchedKind = 275;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 280;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 281;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x8000000L) != 0L)
            return jjStopAtPos(5, 283);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa6_0(active0, 0x410101000000000L, active1, 0x2000080200024008L, active2, 0x800002000080000L, active3, 0x60000000000400L, active4, 0x30L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa6_0(active0, 0x40800400000000L, active1, 0x10080002L, active2, 0x8000002L, active3, 0x800000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa6_0(active0, 0x2800004000000000L, active1, 0x8000008000000040L, active2, 0x8000000000L, active3, 0x10020008L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa6_0(active0, 0x80000000000L, active1, 0x500000020000400L, active2, 0x40000000L, active3, 0x100000020040200L, active4, 0x508L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa6_0(active0, 0x8000002100000000L, active1, 0x2040000000L, active2, 0L, active3, 0x80L, active4, 0x2L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x2040000000000000L, active3, 0L, active4, 0x20000L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa6_0(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x2000000L, active3, 0x400000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa6_0(active0, 0x2000000000000L, active1, 0x800000200000L, active2, 0x80010044040L, active3, 0x8000000000L, active4, 0x40000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8000L, active2, 0x80000000L, active3, 0x2L, active4, 0x80L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x20000002000L, active2, 0x188520000000000L, active3, 0x3892000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x40000000000010L, active2, 0L, active3, 0x800L, active4, 0x100000L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x4008000100000020L, active2, 0x200800400000000L, active3, 0x11000L, active4, 0x240L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa6_0(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0x5001001L, active3, 0x20L, active4, 0x401000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa6_0(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000084L, active3, 0x100L, active4, 0x8000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x8L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_0(4, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(4, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(5, active0, active1, active2, active3, active4);
      return 6;
   }
   switch(curChar)
   {
      case 50:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L);
      case 52:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x30000L, active3, 0L, active4, 0x8L);
      case 59:
         if ((active0 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 32;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 34;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 36;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 37;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 44;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x800000000000L) != 0L)
         {
            jjmatchedKind = 47;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x10000000000000L) != 0L)
         {
            jjmatchedKind = 52;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x40000000000000L) != 0L)
         {
            jjmatchedKind = 54;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 58;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x8000000000000000L) != 0L)
         {
            jjmatchedKind = 63;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2L) != 0L)
         {
            jjmatchedKind = 65;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8L) != 0L)
         {
            jjmatchedKind = 67;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x400L) != 0L)
         {
            jjmatchedKind = 74;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000L) != 0L)
         {
            jjmatchedKind = 78;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8000L) != 0L)
         {
            jjmatchedKind = 79;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000L) != 0L)
         {
            jjmatchedKind = 81;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x80000L) != 0L)
         {
            jjmatchedKind = 83;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x10000000L) != 0L)
         {
            jjmatchedKind = 92;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000000L) != 0L)
            return jjStopAtPos(6, 93);
         else if ((active1 & 0x40000000L) != 0L)
         {
            jjmatchedKind = 94;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 97;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 101;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000L) != 0L)
            return jjStopAtPos(6, 102);
         else if ((active1 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 105);
         else if ((active1 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 111);
         else if ((active1 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 115);
         else if ((active1 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 118);
         else if ((active1 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 125;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(6, 126);
         else if ((active2 & 0x2L) != 0L)
         {
            jjmatchedKind = 129;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8L) != 0L)
            return jjStopAtPos(6, 131);
         else if ((active2 & 0x80L) != 0L)
            return jjStopAtPos(6, 135);
         else if ((active2 & 0x1000L) != 0L)
            return jjStopAtPos(6, 140);
         else if ((active2 & 0x40000L) != 0L)
            return jjStopAtPos(6, 146);
         else if ((active2 & 0x80000L) != 0L)
         {
            jjmatchedKind = 147;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 155;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 156);
         else if ((active2 & 0x40000000L) != 0L)
            return jjStopAtPos(6, 158);
         else if ((active2 & 0x80000000L) != 0L)
            return jjStopAtPos(6, 159);
         else if ((active2 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 165;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 169);
         else if ((active2 & 0x80000000000L) != 0L)
            return jjStopAtPos(6, 171);
         else if ((active2 & 0x100000000000L) != 0L)
            return jjStopAtPos(6, 172);
         else if ((active2 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 179);
         else if ((active2 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 182);
         else if ((active2 & 0x80000000000000L) != 0L)
            return jjStopAtPos(6, 183);
         else if ((active2 & 0x200000000000000L) != 0L)
            return jjStopAtPos(6, 185);
         else if ((active2 & 0x800000000000000L) != 0L)
            return jjStopAtPos(6, 187);
         else if ((active2 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(6, 189);
         else if ((active3 & 0x2L) != 0L)
            return jjStopAtPos(6, 193);
         else if ((active3 & 0x40L) != 0L)
         {
            jjmatchedKind = 198;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x80L) != 0L)
         {
            jjmatchedKind = 199;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x200L) != 0L)
            return jjStopAtPos(6, 201);
         else if ((active3 & 0x400L) != 0L)
         {
            jjmatchedKind = 202;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x1000L) != 0L)
            return jjStopAtPos(6, 204);
         else if ((active3 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 220);
         else if ((active3 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 221;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x800000000L) != 0L)
            return jjStopAtPos(6, 227);
         else if ((active3 & 0x2000000000L) != 0L)
            return jjStopAtPos(6, 229);
         else if ((active3 & 0x8000000000L) != 0L)
            return jjStopAtPos(6, 231);
         else if ((active3 & 0x10000000000L) != 0L)
            return jjStopAtPos(6, 232);
         else if ((active3 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 239);
         else if ((active3 & 0x1000000000000L) != 0L)
            return jjStopAtPos(6, 240);
         else if ((active3 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 245;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x2L) != 0L)
            return jjStopAtPos(6, 257);
         else if ((active4 & 0x10L) != 0L)
         {
            jjmatchedKind = 260;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x80L) != 0L)
         {
            jjmatchedKind = 263;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x100L) != 0L)
            return jjStopAtPos(6, 264);
         else if ((active4 & 0x200L) != 0L)
            return jjStopAtPos(6, 265);
         else if ((active4 & 0x400L) != 0L)
            return jjStopAtPos(6, 266);
         else if ((active4 & 0x4000L) != 0L)
         {
            jjmatchedKind = 270;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x20000L) != 0L)
            return jjStopAtPos(6, 273);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa7_0(active0, 0x800000000000000L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa7_0(active0, 0x20a1404a00000000L, active1, 0x8000008089140045L, active2, 0x24000005L, active3, 0x20128L, active4, 0x409000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x20L, active2, 0L, active3, 0x10000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa7_0(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x4000L, active3, 0x400000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x100000000002000L, active2, 0L, active3, 0x2000008000000L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x4000000000040L, active3, 0x400000000800L, active4, 0x40000L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x2000000L, active3, 0L, active4, 0x100040L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa7_0(active0, 0x80000000000L, active1, 0x400080000000000L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x1000000L, active3, 0x100000000040000L, active4, 0x20L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x100800400000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_0(5, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(5, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(6, active0, active1, active2, active3, active4);
      return 7;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 33;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000L) != 0L)
         {
            jjmatchedKind = 35;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 38;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000L) != 0L)
         {
            jjmatchedKind = 41;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000L) != 0L)
         {
            jjmatchedKind = 43;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 46;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x1000000000000L) != 0L)
         {
            jjmatchedKind = 48;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 53;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000000L) != 0L)
         {
            jjmatchedKind = 55;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 59;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 61;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1L) != 0L)
         {
            jjmatchedKind = 64;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x4L) != 0L)
         {
            jjmatchedKind = 66;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x20L) != 0L)
         {
            jjmatchedKind = 69;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40L) != 0L)
         {
            jjmatchedKind = 70;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x2000L) != 0L)
         {
            jjmatchedKind = 77;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40000L) != 0L)
         {
            jjmatchedKind = 82;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000L) != 0L)
         {
            jjmatchedKind = 84;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 88;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 91;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000L) != 0L)
         {
            jjmatchedKind = 95;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 103;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 107);
         else if ((active1 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 110;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 120);
         else if ((active1 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 122;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(7, 127);
         else if ((active2 & 0x1L) != 0L)
         {
            jjmatchedKind = 128;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4L) != 0L)
         {
            jjmatchedKind = 130;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4000L) != 0L)
            return jjStopAtPos(7, 142);
         else if ((active2 & 0x8000L) != 0L)
            return jjStopAtPos(7, 143);
         else if ((active2 & 0x10000L) != 0L)
            return jjStopAtPos(7, 144);
         else if ((active2 & 0x20000L) != 0L)
            return jjStopAtPos(7, 145);
         else if ((active2 & 0x1000000L) != 0L)
            return jjStopAtPos(7, 152);
         else if ((active2 & 0x2000000L) != 0L)
            return jjStopAtPos(7, 153);
         else if ((active2 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 154;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 157;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000L) != 0L)
            return jjStopAtPos(7, 162);
         else if ((active2 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 167;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 174);
         else if ((active2 & 0x800000000000L) != 0L)
            return jjStopAtPos(7, 175);
         else if ((active2 & 0x4000000000000L) != 0L)
            return jjStopAtPos(7, 178);
         else if ((active2 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 184);
         else if ((active3 & 0x8L) != 0L)
         {
            jjmatchedKind = 195;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20L) != 0L)
         {
            jjmatchedKind = 197;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x100L) != 0L)
         {
            jjmatchedKind = 200;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x10000L) != 0L)
         {
            jjmatchedKind = 208;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20000L) != 0L)
         {
            jjmatchedKind = 209;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000L) != 0L)
            return jjStopAtPos(7, 210);
         else if ((active3 & 0x400000L) != 0L)
            return jjStopAtPos(7, 214);
         else if ((active3 & 0x8000000L) != 0L)
            return jjStopAtPos(7, 219);
         else if ((active3 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 235);
         else if ((active3 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 238);
         else if ((active3 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 241;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000000000000L) != 0L)
            return jjStopAtPos(7, 246);
         else if ((active3 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 248);
         else if ((active4 & 0x8L) != 0L)
            return jjStopAtPos(7, 259);
         else if ((active4 & 0x40L) != 0L)
            return jjStopAtPos(7, 262);
         else if ((active4 & 0x1000L) != 0L)
         {
            jjmatchedKind = 268;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x8000L) != 0L)
         {
            jjmatchedKind = 271;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x100000L) != 0L)
            return jjStopAtPos(7, 276);
         else if ((active4 & 0x400000L) != 0L)
         {
            jjmatchedKind = 278;
            jjmatchedPos = 7;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa8_0(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x40L, active3, 0x800L, active4, 0x40000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_0(6, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(6, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(7, active0, active1, active2, active3, active4);
      return 8;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 49;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x10L) != 0L)
         {
            jjmatchedKind = 68;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x200000L) != 0L)
         {
            jjmatchedKind = 85;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x100000000L) != 0L)
            return jjStopAtPos(8, 96);
         else if ((active2 & 0x40L) != 0L)
         {
            jjmatchedKind = 134;
            jjmatchedPos = 8;
         }
         else if ((active3 & 0x800L) != 0L)
         {
            jjmatchedKind = 203;
            jjmatchedPos = 8;
         }
         else if ((active4 & 0x40000L) != 0L)
         {
            jjmatchedKind = 274;
            jjmatchedPos = 8;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_0(7, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa9_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_0(7, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_0(8, 0L, 0L, 0L, 0L, active4);
      return 9;
   }
   switch(curChar)
   {
      case 59:
         if ((active4 & 0x20L) != 0L)
            return jjStopAtPos(9, 261);
         break;
      default :
         break;
   }
   return jjStartNfa_0(8, 0L, 0L, 0L, 0L, active4);
}
private final int jjMoveNfa_0(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 5;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  else if (curChar == 0)
                  {
                     if (kind > 1)
                        kind = 1;
                  }
                  break;
               case 1:
                  if (curChar == 35)
                     jjCheckNAdd(2);
                  break;
               case 2:
                  if ((0x3ff000000000000L & l) != 0L)
                     jjCheckNAddTwoStates(2, 3);
                  break;
               case 3:
                  if (curChar == 59)
                     kind = 284;
                  break;
               case 4:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 5 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_7(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_7(int pos, long active0)
{
   return jjMoveNfa_7(jjStopStringLiteralDfa_7(pos, active0), pos + 1);
}
private final int jjStartNfaWithStates_7(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_7(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_7()
{
   switch(curChar)
   {
      case 62:
         return jjStopAtPos(0, 11);
      default :
         return jjMoveNfa_7(0, 0);
   }
}
private final int jjMoveNfa_7(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 1;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 0)
                     kind = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 1 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_6(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_6(int pos, long active0)
{
   return jjMoveNfa_6(jjStopStringLiteralDfa_6(pos, active0), pos + 1);
}
private final int jjStartNfaWithStates_6(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_6(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_6()
{
   switch(curChar)
   {
      case 62:
         return jjStopAtPos(0, 13);
      default :
         return jjMoveNfa_6(0, 0);
   }
}
private final int jjMoveNfa_6(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 1;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 0)
                     kind = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 1 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, long active2, long active3, long active4)
{
   switch (pos)
   {
      case 0:
         if ((active0 & 0xffffffff00000000L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffffffffffffffffL) != 0L || (active4 & 0xfffffffL) != 0L)
            return 1;
         return -1;
      default :
         return -1;
   }
}
private final int jjStartNfa_1(int pos, long active0, long active1, long active2, long active3, long active4)
{
   return jjMoveNfa_1(jjStopStringLiteralDfa_1(pos, active0, active1, active2, active3, active4), pos + 1);
}
private final int jjStartNfaWithStates_1(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_1(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_1()
{
   switch(curChar)
   {
      case 34:
         return jjStopAtPos(0, 28);
      case 38:
         return jjMoveStringLiteralDfa1_1(0xffffffff00000000L, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfffffffL);
      default :
         return jjMoveNfa_1(0, 0);
   }
}
private final int jjMoveStringLiteralDfa1_1(long active0, long active1, long active2, long active3, long active4)
{
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(0, active0, active1, active2, active3, active4);
      return 1;
   }
   switch(curChar)
   {
      case 65:
      case 97:
         return jjMoveStringLiteralDfa2_1(active0, 0xff00000000L, active1, 0x1fff8000000L, active2, 0L, active3, 0L, active4, 0L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa2_1(active0, 0x10000000000L, active1, 0x1e0000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa2_1(active0, 0x60000000000L, active1, 0x1ffe00000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa2_1(active0, 0x180000000000L, active1, 0xfe00000000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa2_1(active0, 0xfe00000000000L, active1, 0L, active2, 0x1fffL, active3, 0L, active4, 0L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x7e000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa2_1(active0, 0x10000000000000L, active1, 0L, active2, 0x380000L, active3, 0L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x3c00000L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa2_1(active0, 0x3e0000000000000L, active1, 0L, active2, 0x1ffc000000L, active3, 0L, active4, 0L);
      case 75:
      case 107:
         return jjMoveStringLiteralDfa2_1(active0, 0x400000000000000L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa2_1(active0, 0x800000000000000L, active1, 0L, active2, 0x1fffc000000000L, active3, 0L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa2_1(active0, 0x1000000000000000L, active1, 0L, active2, 0x7e0000000000000L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa2_1(active0, 0x6000000000000000L, active1, 0L, active2, 0xf800000000000000L, active3, 0x1fL, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa2_1(active0, 0x8000000000000000L, active1, 0xffL, active2, 0L, active3, 0xfffe0L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xf00L, active2, 0L, active3, 0x1fff00000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0xfffc00000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x6000L, active2, 0L, active3, 0xffff000000000000L, active4, 0x3L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x38000L, active2, 0L, active3, 0L, active4, 0x7fcL);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x7c0000L, active2, 0L, active3, 0L, active4, 0xff800L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x800000L, active2, 0L, active3, 0L, active4, 0x200000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0L, active4, 0x1c00000L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x4000000L, active2, 0L, active3, 0L, active4, 0xe000000L);
      default :
         break;
   }
   return jjStartNfa_1(0, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(0, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(1, active0, active1, active2, active3, active4);
      return 2;
   }
   switch(curChar)
   {
      case 65:
      case 97:
         return jjMoveStringLiteralDfa3_1(active0, 0xc30480200000000L, active1, 0xe00200009050001L, active2, 0x82007e004c80001L, active3, 0x7c00300020L, active4, 0x403804L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x1000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa3_1(active0, 0x40820400000000L, active1, 0x400030082002L, active2, 0x80008000002L, active3, 0x2008000000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x20000000000L, active2, 0x2040100000000000L, active3, 0x4010000000000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa3_1(active0, 0x8000110100000000L, active1, 0x3001840044000000L, active2, 0x4000200013100000L, active3, 0x8060000c00080L, active4, 0x2900000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa3_1(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000004L, active3, 0x100L, active4, 0x8000L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa3_1(active0, 0x40000000000L, active1, 0x2000000029100L, active2, 0L, active3, 0x10100001000000L, active4, 0xf8L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0xc004000000804200L, active2, 0x8380000000000000L, active3, 0xe0000006000000L, active4, 0x200300L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa3_1(active0, 0x1000000000L, active1, 0x8000300000000L, active2, 0L, active3, 0x200008000200L, active4, 0L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x400000018L, active2, 0x40000018L, active3, 0xc00L, active4, 0x10000L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x1800000000L, active2, 0x180002020L, active3, 0L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa3_1(active0, 0x100000000000000L, active1, 0x30000000000000L, active2, 0x1800200004000L, active3, 0x10000003L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa3_1(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x40L, active3, 0x100000000001000L, active4, 0x60000L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x400000080L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa3_1(active0, 0x2000000000L, active1, 0x40082000000400L, active2, 0x2000000078000L, active3, 0xe000e000L, active4, 0x400L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x4000000820L, active2, 0xc000800000000L, active3, 0xc00100010004L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa3_1(active0, 0x2004204000000000L, active1, 0x8000000040L, active2, 0x10000000200300L, active3, 0x60008L, active4, 0L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa3_1(active0, 0x5208008000000000L, active1, 0x180110002400080L, active2, 0x400001000000c00L, active3, 0xfe00000200080010L, active4, 0x1080001L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc000000L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L);
      default :
         break;
   }
   return jjStartNfa_1(1, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(1, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(2, active0, active1, active2, active3, active4);
      return 3;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x1000000000000000L) != 0L)
         {
            jjmatchedKind = 60;
            jjmatchedPos = 3;
         }
         else if ((active0 & 0x4000000000000000L) != 0L)
         {
            jjmatchedKind = 62;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x200L) != 0L)
         {
            jjmatchedKind = 73;
            jjmatchedPos = 3;
         }
         else if ((active1 & 0x800000L) != 0L)
         {
            jjmatchedKind = 87;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x100000L) != 0L)
            return jjStopAtPos(3, 148);
         else if ((active2 & 0x200000L) != 0L)
            return jjStopAtPos(3, 149);
         else if ((active2 & 0x200000000000L) != 0L)
            return jjStopAtPos(3, 173);
         else if ((active2 & 0x10000000000000L) != 0L)
            return jjStopAtPos(3, 180);
         else if ((active2 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 186;
            jjmatchedPos = 3;
         }
         else if ((active2 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(3, 190);
         else if ((active2 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(3, 191);
         else if ((active3 & 0x10L) != 0L)
         {
            jjmatchedKind = 196;
            jjmatchedPos = 3;
         }
         else if ((active3 & 0x2000L) != 0L)
            return jjStopAtPos(3, 205);
         else if ((active3 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 217;
            jjmatchedPos = 3;
         }
         else if ((active4 & 0x200000L) != 0L)
         {
            jjmatchedKind = 277;
            jjmatchedPos = 3;
         }
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa4_1(active0, 0x4000000000000L, active1, 0x4040000000002000L, active2, 0x2044000041078100L, active3, 0x102420000000000L, active4, 0x400L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x600000000000000L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa4_1(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0xa0000004000001L, active3, 0x8000000000020L, active4, 0x401000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x800800000000L, active2, 0x100000000000000L, active3, 0x80000c000L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa4_1(active0, 0x20000000000L, active1, 0x400100020008L, active2, 0x80000000000L, active3, 0x8000000400L, active4, 0x38L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa4_1(active0, 0x80000000000L, active1, 0x1400001000004000L, active2, 0L, active3, 0x60040000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa4_1(active0, 0x200000000000L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa4_1(active0, 0x2040846400000000L, active1, 0x200a010080d52L, active2, 0x808001002L, active3, 0x121060a48L, active4, 0x104040L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa4_1(active0, 0x8000100100000000L, active1, 0x2000100040000020L, active2, 0x400002000000L, active3, 0x80000011080L, active4, 0x10102L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa4_1(active0, 0xa18008000000000L, active1, 0x10002400080L, active2, 0x2009000080400L, active3, 0x880200000080000L, active4, 0x1080200L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x11000000000000L, active2, 0x200010000000000L, active3, 0x1000000000L, active4, 0x8800000L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x9000L, active2, 0x2000L, active3, 0x41002c0000000L, active4, 0x80L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa4_1(active0, 0x400001000000000L, active1, 0xa0200600000000L, active2, 0x2000000008L, active3, 0xf000000000000000L, active4, 0x1L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x20000000000L, active2, 0x8120000000000L, active3, 0x1812000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa4_1(active0, 0x81000800000000L, active1, 0xb04000080100004L, active2, 0x44020c04804L, active3, 0x4400f00100L, active4, 0xa800L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa4_1(active0, 0x2000000000000L, active1, 0x200000L, active2, 0x1000000000000070L, active3, 0L, active4, 0x60000L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa4_1(active0, 0x100010000000000L, active1, 0x40004000000L, active2, 0x300000000L, active3, 0x3L, active4, 0x2000000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x8000020010000L, active2, 0x400000080L, active3, 0x18000004L, active4, 0x4L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x8000080000000000L, active2, 0L, active3, 0x4000000L, active4, 0L);
      case 87:
      case 119:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x800000000000L, active3, 0L, active4, 0L);
      case 88:
      case 120:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x10000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0x10000000000000L, active4, 0L);
      case 90:
      case 122:
         return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x1000000000000L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_1(2, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(2, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(3, active0, active1, active2, active3, active4);
      return 4;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L);
      case 50:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L);
      case 59:
         if ((active0 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 42;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x200000000000L) != 0L)
         {
            jjmatchedKind = 45;
            jjmatchedPos = 4;
         }
         else if ((active0 & 0x4000000000000L) != 0L)
         {
            jjmatchedKind = 50;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x100L) != 0L)
         {
            jjmatchedKind = 72;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x800L) != 0L)
         {
            jjmatchedKind = 75;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x1000L) != 0L)
         {
            jjmatchedKind = 76;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x10000L) != 0L)
         {
            jjmatchedKind = 80;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x400000000L) != 0L)
            return jjStopAtPos(4, 98);
         else if ((active1 & 0x800000000L) != 0L)
            return jjStopAtPos(4, 99);
         else if ((active1 & 0x1000000000L) != 0L)
            return jjStopAtPos(4, 100);
         else if ((active1 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 109);
         else if ((active1 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 113;
            jjmatchedPos = 4;
         }
         else if ((active1 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 119);
         else if ((active1 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 124);
         else if ((active2 & 0x100L) != 0L)
         {
            jjmatchedKind = 136;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x200L) != 0L)
         {
            jjmatchedKind = 137;
            jjmatchedPos = 4;
         }
         else if ((active2 & 0x100000000L) != 0L)
            return jjStopAtPos(4, 160);
         else if ((active2 & 0x1000000000000L) != 0L)
            return jjStopAtPos(4, 176);
         else if ((active2 & 0x2000000000000L) != 0L)
            return jjStopAtPos(4, 177);
         else if ((active3 & 0x1L) != 0L)
            return jjStopAtPos(4, 192);
         else if ((active3 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 216;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 218);
         else if ((active3 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 224;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x40000000000L) != 0L)
            return jjStopAtPos(4, 234);
         else if ((active3 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 236;
            jjmatchedPos = 4;
         }
         else if ((active3 & 0x200000000000L) != 0L)
            return jjStopAtPos(4, 237);
         else if ((active3 & 0x10000000000000L) != 0L)
            return jjStopAtPos(4, 244);
         else if ((active3 & 0x80000000000000L) != 0L)
            return jjStopAtPos(4, 247);
         else if ((active3 & 0x200000000000000L) != 0L)
            return jjStopAtPos(4, 249);
         else if ((active3 & 0x800000000000000L) != 0L)
            return jjStopAtPos(4, 251);
         else if ((active3 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(4, 252);
         else if ((active4 & 0x4L) != 0L)
         {
            jjmatchedKind = 258;
            jjmatchedPos = 4;
         }
         else if ((active4 & 0x10000L) != 0L)
            return jjStopAtPos(4, 272);
         else if ((active4 & 0x800000L) != 0L)
            return jjStopAtPos(4, 279);
         else if ((active4 & 0x4000000L) != 0L)
            return jjStopAtPos(4, 282);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa5_1(active0, 0x181010800000000L, active1, 0x40084100024L, active2, 0x800220004004L, active3, 0x110100L, active4, 0x2008000L);
      case 66:
      case 98:
         return jjMoveStringLiteralDfa5_1(active0, 0x800000000000000L, active1, 0x8080000000000L, active2, 0x8000000000L, active3, 0x4L, active4, 0L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x4000000000010L, active2, 0x10038000L, active3, 0x800L, active4, 0L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa5_1(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x100000000000000L, active3, 0x100000040000000L, active4, 0x500L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0x400000000000000L, active4, 0x100201L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x100000000L, active2, 0x2000L, active3, 0x4000L, active4, 0L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa5_1(active0, 0x80000000000L, active1, 0x410000000000008L, active2, 0x10040000000L, active3, 0x1000000400L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa5_1(active0, 0x1000000000L, active1, 0x200000000L, active2, 0L, active3, 0L, active4, 0L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa5_1(active0, 0x8002000100000000L, active1, 0x8000800040200000L, active2, 0x800800000c0L, active3, 0x8800000082L, active4, 0x60002L);
      case 74:
      case 106:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa5_1(active0, 0x220800c000000000L, active1, 0x1180024000c0L, active2, 0x800001002000400L, active3, 0x200000a0008L, active4, 0x1080000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa5_1(active0, 0x10000000000000L, active1, 0x4000004000004400L, active2, 0x80000L, active3, 0x60000020448000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa5_1(active0, 0x2000000000L, active1, 0x2000000000L, active2, 0x800000000L, active3, 0x10000200L, active4, 0x40L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x400000000800L, active3, 0x80000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa5_1(active0, 0x400000000000000L, active1, 0L, active2, 0x1000002000000030L, active3, 0x80800000L, active4, 0L);
      case 81:
      case 113:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa5_1(active0, 0x40800400000000L, active1, 0xb4000001008a002L, active2, 0xa0044009c00002L, active3, 0x2004400000040L, active4, 0x6888L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x2040000000041000L, active3, 0x8000000L, active4, 0L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa5_1(active0, 0x100000000000L, active1, 0x2001000020020000L, active2, 0x8L, active3, 0xc000200200000L, active4, 0x30L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa5_1(active0, 0x20400200000000L, active1, 0x20009040001L, active2, 0x208120004000001L, active3, 0x1812000001020L, active4, 0x401000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x20000000000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_1(3, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(3, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(4, active0, active1, active2, active3, active4);
      return 5;
   }
   switch(curChar)
   {
      case 49:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x18000L, active3, 0L, active4, 0L);
      case 51:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0L);
      case 59:
         if ((active0 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 39;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 40;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x8000000000000L) != 0L)
         {
            jjmatchedKind = 51;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x100000000000000L) != 0L)
         {
            jjmatchedKind = 56;
            jjmatchedPos = 5;
         }
         else if ((active0 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 57;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x80L) != 0L)
         {
            jjmatchedKind = 71;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x400000L) != 0L)
         {
            jjmatchedKind = 86;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 89;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 90;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x10000000000L) != 0L)
         {
            jjmatchedKind = 104;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 106;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x100000000000L) != 0L)
            return jjStopAtPos(5, 108);
         else if ((active1 & 0x1000000000000L) != 0L)
            return jjStopAtPos(5, 112);
         else if ((active1 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 114);
         else if ((active1 & 0x10000000000000L) != 0L)
            return jjStopAtPos(5, 116);
         else if ((active1 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 117);
         else if ((active1 & 0x200000000000000L) != 0L)
         {
            jjmatchedKind = 121;
            jjmatchedPos = 5;
         }
         else if ((active1 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 123;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10L) != 0L)
            return jjStopAtPos(5, 132);
         else if ((active2 & 0x20L) != 0L)
            return jjStopAtPos(5, 133);
         else if ((active2 & 0x400L) != 0L)
         {
            jjmatchedKind = 138;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800L) != 0L)
            return jjStopAtPos(5, 139);
         else if ((active2 & 0x2000L) != 0L)
            return jjStopAtPos(5, 141);
         else if ((active2 & 0x400000L) != 0L)
         {
            jjmatchedKind = 150;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000L) != 0L)
         {
            jjmatchedKind = 151;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 161;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x800000000L) != 0L)
            return jjStopAtPos(5, 163);
         else if ((active2 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 164;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 166;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x10000000000L) != 0L)
            return jjStopAtPos(5, 168);
         else if ((active2 & 0x40000000000L) != 0L)
         {
            jjmatchedKind = 170;
            jjmatchedPos = 5;
         }
         else if ((active2 & 0x20000000000000L) != 0L)
            return jjStopAtPos(5, 181);
         else if ((active2 & 0x1000000000000000L) != 0L)
            return jjStopAtPos(5, 188);
         else if ((active3 & 0x4L) != 0L)
            return jjStopAtPos(5, 194);
         else if ((active3 & 0x4000L) != 0L)
            return jjStopAtPos(5, 206);
         else if ((active3 & 0x8000L) != 0L)
            return jjStopAtPos(5, 207);
         else if ((active3 & 0x80000L) != 0L)
         {
            jjmatchedKind = 211;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x100000L) != 0L)
            return jjStopAtPos(5, 212);
         else if ((active3 & 0x200000L) != 0L)
            return jjStopAtPos(5, 213);
         else if ((active3 & 0x800000L) != 0L)
            return jjStopAtPos(5, 215);
         else if ((active3 & 0x40000000L) != 0L)
            return jjStopAtPos(5, 222);
         else if ((active3 & 0x80000000L) != 0L)
            return jjStopAtPos(5, 223);
         else if ((active3 & 0x200000000L) != 0L)
            return jjStopAtPos(5, 225);
         else if ((active3 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 226;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x1000000000L) != 0L)
            return jjStopAtPos(5, 228);
         else if ((active3 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 230;
            jjmatchedPos = 5;
         }
         else if ((active3 & 0x20000000000L) != 0L)
            return jjStopAtPos(5, 233);
         else if ((active3 & 0x4000000000000L) != 0L)
            return jjStopAtPos(5, 242);
         else if ((active3 & 0x8000000000000L) != 0L)
            return jjStopAtPos(5, 243);
         else if ((active3 & 0x400000000000000L) != 0L)
            return jjStopAtPos(5, 250);
         else if ((active3 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(5, 253);
         else if ((active3 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(5, 254);
         else if ((active3 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(5, 255);
         else if ((active4 & 0x1L) != 0L)
            return jjStopAtPos(5, 256);
         else if ((active4 & 0x800L) != 0L)
         {
            jjmatchedKind = 267;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000L) != 0L)
         {
            jjmatchedKind = 269;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x80000L) != 0L)
         {
            jjmatchedKind = 275;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 280;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x2000000L) != 0L)
         {
            jjmatchedKind = 281;
            jjmatchedPos = 5;
         }
         else if ((active4 & 0x8000000L) != 0L)
            return jjStopAtPos(5, 283);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa6_1(active0, 0x410101000000000L, active1, 0x2000080200024008L, active2, 0x800002000080000L, active3, 0x60000000000400L, active4, 0x30L);
      case 67:
      case 99:
         return jjMoveStringLiteralDfa6_1(active0, 0x40800400000000L, active1, 0x10080002L, active2, 0x8000002L, active3, 0x800000040L, active4, 0x4000L);
      case 68:
      case 100:
         return jjMoveStringLiteralDfa6_1(active0, 0x2800004000000000L, active1, 0x8000008000000040L, active2, 0x8000000000L, active3, 0x10020008L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa6_1(active0, 0x80000000000L, active1, 0x500000020000400L, active2, 0x40000000L, active3, 0x100000020040200L, active4, 0x508L);
      case 71:
      case 103:
         return jjMoveStringLiteralDfa6_1(active0, 0x8000002100000000L, active1, 0x2040000000L, active2, 0L, active3, 0x80L, active4, 0x2L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x2040000000000000L, active3, 0L, active4, 0x20000L);
      case 73:
      case 105:
         return jjMoveStringLiteralDfa6_1(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x2000000L, active3, 0x400000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa6_1(active0, 0x2000000000000L, active1, 0x800000200000L, active2, 0x80010044040L, active3, 0x8000000000L, active4, 0x40000L);
      case 77:
      case 109:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8000L, active2, 0x80000000L, active3, 0x2L, active4, 0x80L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x20000002000L, active2, 0x188520000000000L, active3, 0x3892000000000L, active4, 0L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x40000000000010L, active2, 0L, active3, 0x800L, active4, 0x100000L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x4008000100000020L, active2, 0x200800400000000L, active3, 0x11000L, active4, 0x240L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa6_1(active0, 0x20400200000000L, active1, 0x9040001L, active2, 0x5001001L, active3, 0x20L, active4, 0x401000L);
      case 85:
      case 117:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L);
      case 86:
      case 118:
         return jjMoveStringLiteralDfa6_1(active0, 0x81000800000000L, active1, 0x80100004L, active2, 0x20000084L, active3, 0x100L, active4, 0x8000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x8L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_1(4, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(4, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(5, active0, active1, active2, active3, active4);
      return 6;
   }
   switch(curChar)
   {
      case 50:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L);
      case 52:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x30000L, active3, 0L, active4, 0x8L);
      case 59:
         if ((active0 & 0x100000000L) != 0L)
         {
            jjmatchedKind = 32;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000L) != 0L)
         {
            jjmatchedKind = 34;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x1000000000L) != 0L)
         {
            jjmatchedKind = 36;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 37;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x100000000000L) != 0L)
         {
            jjmatchedKind = 44;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x800000000000L) != 0L)
         {
            jjmatchedKind = 47;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x10000000000000L) != 0L)
         {
            jjmatchedKind = 52;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x40000000000000L) != 0L)
         {
            jjmatchedKind = 54;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 58;
            jjmatchedPos = 6;
         }
         else if ((active0 & 0x8000000000000000L) != 0L)
         {
            jjmatchedKind = 63;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2L) != 0L)
         {
            jjmatchedKind = 65;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8L) != 0L)
         {
            jjmatchedKind = 67;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x400L) != 0L)
         {
            jjmatchedKind = 74;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000L) != 0L)
         {
            jjmatchedKind = 78;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x8000L) != 0L)
         {
            jjmatchedKind = 79;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000L) != 0L)
         {
            jjmatchedKind = 81;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x80000L) != 0L)
         {
            jjmatchedKind = 83;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x10000000L) != 0L)
         {
            jjmatchedKind = 92;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x20000000L) != 0L)
            return jjStopAtPos(6, 93);
         else if ((active1 & 0x40000000L) != 0L)
         {
            jjmatchedKind = 94;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 97;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 101;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000L) != 0L)
            return jjStopAtPos(6, 102);
         else if ((active1 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 105);
         else if ((active1 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 111);
         else if ((active1 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 115);
         else if ((active1 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 118);
         else if ((active1 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 125;
            jjmatchedPos = 6;
         }
         else if ((active1 & 0x4000000000000000L) != 0L)
            return jjStopAtPos(6, 126);
         else if ((active2 & 0x2L) != 0L)
         {
            jjmatchedKind = 129;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8L) != 0L)
            return jjStopAtPos(6, 131);
         else if ((active2 & 0x80L) != 0L)
            return jjStopAtPos(6, 135);
         else if ((active2 & 0x1000L) != 0L)
            return jjStopAtPos(6, 140);
         else if ((active2 & 0x40000L) != 0L)
            return jjStopAtPos(6, 146);
         else if ((active2 & 0x80000L) != 0L)
         {
            jjmatchedKind = 147;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 155;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 156);
         else if ((active2 & 0x40000000L) != 0L)
            return jjStopAtPos(6, 158);
         else if ((active2 & 0x80000000L) != 0L)
            return jjStopAtPos(6, 159);
         else if ((active2 & 0x2000000000L) != 0L)
         {
            jjmatchedKind = 165;
            jjmatchedPos = 6;
         }
         else if ((active2 & 0x20000000000L) != 0L)
            return jjStopAtPos(6, 169);
         else if ((active2 & 0x80000000000L) != 0L)
            return jjStopAtPos(6, 171);
         else if ((active2 & 0x100000000000L) != 0L)
            return jjStopAtPos(6, 172);
         else if ((active2 & 0x8000000000000L) != 0L)
            return jjStopAtPos(6, 179);
         else if ((active2 & 0x40000000000000L) != 0L)
            return jjStopAtPos(6, 182);
         else if ((active2 & 0x80000000000000L) != 0L)
            return jjStopAtPos(6, 183);
         else if ((active2 & 0x200000000000000L) != 0L)
            return jjStopAtPos(6, 185);
         else if ((active2 & 0x800000000000000L) != 0L)
            return jjStopAtPos(6, 187);
         else if ((active2 & 0x2000000000000000L) != 0L)
            return jjStopAtPos(6, 189);
         else if ((active3 & 0x2L) != 0L)
            return jjStopAtPos(6, 193);
         else if ((active3 & 0x40L) != 0L)
         {
            jjmatchedKind = 198;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x80L) != 0L)
         {
            jjmatchedKind = 199;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x200L) != 0L)
            return jjStopAtPos(6, 201);
         else if ((active3 & 0x400L) != 0L)
         {
            jjmatchedKind = 202;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x1000L) != 0L)
            return jjStopAtPos(6, 204);
         else if ((active3 & 0x10000000L) != 0L)
            return jjStopAtPos(6, 220);
         else if ((active3 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 221;
            jjmatchedPos = 6;
         }
         else if ((active3 & 0x800000000L) != 0L)
            return jjStopAtPos(6, 227);
         else if ((active3 & 0x2000000000L) != 0L)
            return jjStopAtPos(6, 229);
         else if ((active3 & 0x8000000000L) != 0L)
            return jjStopAtPos(6, 231);
         else if ((active3 & 0x10000000000L) != 0L)
            return jjStopAtPos(6, 232);
         else if ((active3 & 0x800000000000L) != 0L)
            return jjStopAtPos(6, 239);
         else if ((active3 & 0x1000000000000L) != 0L)
            return jjStopAtPos(6, 240);
         else if ((active3 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 245;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x2L) != 0L)
            return jjStopAtPos(6, 257);
         else if ((active4 & 0x10L) != 0L)
         {
            jjmatchedKind = 260;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x80L) != 0L)
         {
            jjmatchedKind = 263;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x100L) != 0L)
            return jjStopAtPos(6, 264);
         else if ((active4 & 0x200L) != 0L)
            return jjStopAtPos(6, 265);
         else if ((active4 & 0x400L) != 0L)
            return jjStopAtPos(6, 266);
         else if ((active4 & 0x4000L) != 0L)
         {
            jjmatchedKind = 270;
            jjmatchedPos = 6;
         }
         else if ((active4 & 0x20000L) != 0L)
            return jjStopAtPos(6, 273);
         break;
      case 65:
      case 97:
         return jjMoveStringLiteralDfa7_1(active0, 0x800000000000000L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0L);
      case 69:
      case 101:
         return jjMoveStringLiteralDfa7_1(active0, 0x20a1404a00000000L, active1, 0x8000008089140045L, active2, 0x24000005L, active3, 0x20128L, active4, 0x409000L);
      case 70:
      case 102:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000000000L, active4, 0L);
      case 72:
      case 104:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x20L, active2, 0L, active3, 0x10000L, active4, 0L);
      case 76:
      case 108:
         return jjMoveStringLiteralDfa7_1(active0, 0x20000000000L, active1, 0x400000000000L, active2, 0x4000L, active3, 0x400000L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x100000000002000L, active2, 0L, active3, 0x2000008000000L, active4, 0L);
      case 79:
      case 111:
         return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x4000000000040L, active3, 0x400000000800L, active4, 0x40000L);
      case 80:
      case 112:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x2000000L, active3, 0L, active4, 0x100040L);
      case 82:
      case 114:
         return jjMoveStringLiteralDfa7_1(active0, 0x80000000000L, active1, 0x400080000000000L, active2, 0x400000000000L, active3, 0x80000000000L, active4, 0L);
      case 83:
      case 115:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x1000000L, active3, 0x100000000040000L, active4, 0x20L);
      case 84:
      case 116:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x100800400000000L, active3, 0L, active4, 0L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      default :
         break;
   }
   return jjStartNfa_1(5, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(5, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(6, active0, active1, active2, active3, active4);
      return 7;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x200000000L) != 0L)
         {
            jjmatchedKind = 33;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000L) != 0L)
         {
            jjmatchedKind = 35;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x4000000000L) != 0L)
         {
            jjmatchedKind = 38;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000L) != 0L)
         {
            jjmatchedKind = 41;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000L) != 0L)
         {
            jjmatchedKind = 43;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 46;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x1000000000000L) != 0L)
         {
            jjmatchedKind = 48;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x20000000000000L) != 0L)
         {
            jjmatchedKind = 53;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x80000000000000L) != 0L)
         {
            jjmatchedKind = 55;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x800000000000000L) != 0L)
         {
            jjmatchedKind = 59;
            jjmatchedPos = 7;
         }
         else if ((active0 & 0x2000000000000000L) != 0L)
         {
            jjmatchedKind = 61;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1L) != 0L)
         {
            jjmatchedKind = 64;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x4L) != 0L)
         {
            jjmatchedKind = 66;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x20L) != 0L)
         {
            jjmatchedKind = 69;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40L) != 0L)
         {
            jjmatchedKind = 70;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x2000L) != 0L)
         {
            jjmatchedKind = 77;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x40000L) != 0L)
         {
            jjmatchedKind = 82;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000L) != 0L)
         {
            jjmatchedKind = 84;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x1000000L) != 0L)
         {
            jjmatchedKind = 88;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000L) != 0L)
         {
            jjmatchedKind = 91;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000L) != 0L)
         {
            jjmatchedKind = 95;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 103;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 107);
         else if ((active1 & 0x400000000000L) != 0L)
         {
            jjmatchedKind = 110;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 120);
         else if ((active1 & 0x400000000000000L) != 0L)
         {
            jjmatchedKind = 122;
            jjmatchedPos = 7;
         }
         else if ((active1 & 0x8000000000000000L) != 0L)
            return jjStopAtPos(7, 127);
         else if ((active2 & 0x1L) != 0L)
         {
            jjmatchedKind = 128;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4L) != 0L)
         {
            jjmatchedKind = 130;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x4000L) != 0L)
            return jjStopAtPos(7, 142);
         else if ((active2 & 0x8000L) != 0L)
            return jjStopAtPos(7, 143);
         else if ((active2 & 0x10000L) != 0L)
            return jjStopAtPos(7, 144);
         else if ((active2 & 0x20000L) != 0L)
            return jjStopAtPos(7, 145);
         else if ((active2 & 0x1000000L) != 0L)
            return jjStopAtPos(7, 152);
         else if ((active2 & 0x2000000L) != 0L)
            return jjStopAtPos(7, 153);
         else if ((active2 & 0x4000000L) != 0L)
         {
            jjmatchedKind = 154;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x20000000L) != 0L)
         {
            jjmatchedKind = 157;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000L) != 0L)
            return jjStopAtPos(7, 162);
         else if ((active2 & 0x8000000000L) != 0L)
         {
            jjmatchedKind = 167;
            jjmatchedPos = 7;
         }
         else if ((active2 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 174);
         else if ((active2 & 0x800000000000L) != 0L)
            return jjStopAtPos(7, 175);
         else if ((active2 & 0x4000000000000L) != 0L)
            return jjStopAtPos(7, 178);
         else if ((active2 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 184);
         else if ((active3 & 0x8L) != 0L)
         {
            jjmatchedKind = 195;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20L) != 0L)
         {
            jjmatchedKind = 197;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x100L) != 0L)
         {
            jjmatchedKind = 200;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x10000L) != 0L)
         {
            jjmatchedKind = 208;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x20000L) != 0L)
         {
            jjmatchedKind = 209;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000L) != 0L)
            return jjStopAtPos(7, 210);
         else if ((active3 & 0x400000L) != 0L)
            return jjStopAtPos(7, 214);
         else if ((active3 & 0x8000000L) != 0L)
            return jjStopAtPos(7, 219);
         else if ((active3 & 0x80000000000L) != 0L)
            return jjStopAtPos(7, 235);
         else if ((active3 & 0x400000000000L) != 0L)
            return jjStopAtPos(7, 238);
         else if ((active3 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 241;
            jjmatchedPos = 7;
         }
         else if ((active3 & 0x40000000000000L) != 0L)
            return jjStopAtPos(7, 246);
         else if ((active3 & 0x100000000000000L) != 0L)
            return jjStopAtPos(7, 248);
         else if ((active4 & 0x8L) != 0L)
            return jjStopAtPos(7, 259);
         else if ((active4 & 0x40L) != 0L)
            return jjStopAtPos(7, 262);
         else if ((active4 & 0x1000L) != 0L)
         {
            jjmatchedKind = 268;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x8000L) != 0L)
         {
            jjmatchedKind = 271;
            jjmatchedPos = 7;
         }
         else if ((active4 & 0x100000L) != 0L)
            return jjStopAtPos(7, 276);
         else if ((active4 & 0x400000L) != 0L)
         {
            jjmatchedKind = 278;
            jjmatchedPos = 7;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x100000000L, active2, 0L, active3, 0L, active4, 0L);
      case 78:
      case 110:
         return jjMoveStringLiteralDfa8_1(active0, 0x2000000000000L, active1, 0x200010L, active2, 0x40L, active3, 0x800L, active4, 0x40000L);
      case 89:
      case 121:
         return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_1(6, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(6, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(7, active0, active1, active2, active3, active4);
      return 8;
   }
   switch(curChar)
   {
      case 59:
         if ((active0 & 0x2000000000000L) != 0L)
         {
            jjmatchedKind = 49;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x10L) != 0L)
         {
            jjmatchedKind = 68;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x200000L) != 0L)
         {
            jjmatchedKind = 85;
            jjmatchedPos = 8;
         }
         else if ((active1 & 0x100000000L) != 0L)
            return jjStopAtPos(8, 96);
         else if ((active2 & 0x40L) != 0L)
         {
            jjmatchedKind = 134;
            jjmatchedPos = 8;
         }
         else if ((active3 & 0x800L) != 0L)
         {
            jjmatchedKind = 203;
            jjmatchedPos = 8;
         }
         else if ((active4 & 0x40000L) != 0L)
         {
            jjmatchedKind = 274;
            jjmatchedPos = 8;
         }
         break;
      case 77:
      case 109:
         return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L);
      default :
         break;
   }
   return jjStartNfa_1(7, active0, active1, active2, active3, active4);
}
private final int jjMoveStringLiteralDfa9_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4)
{
   if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4)) == 0L)
      return jjStartNfa_1(7, old0, old1, old2, old3, old4); 
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) {
      jjStopStringLiteralDfa_1(8, 0L, 0L, 0L, 0L, active4);
      return 9;
   }
   switch(curChar)
   {
      case 59:
         if ((active4 & 0x20L) != 0L)
            return jjStopAtPos(9, 261);
         break;
      default :
         break;
   }
   return jjStartNfa_1(8, 0L, 0L, 0L, 0L, active4);
}
private final int jjMoveNfa_1(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 5;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  else if (curChar == 0)
                  {
                     if (kind > 1)
                        kind = 1;
                  }
                  break;
               case 1:
                  if (curChar == 35)
                     jjCheckNAdd(2);
                  break;
               case 2:
                  if ((0x3ff000000000000L & l) != 0L)
                     jjCheckNAddTwoStates(2, 3);
                  break;
               case 3:
                  if (curChar == 59)
                     kind = 284;
                  break;
               case 4:
                  if (curChar == 38)
                     jjstateSet[jjnewStateCnt++] = 1;
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 5 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
private final int jjStopStringLiteralDfa_2(int pos, long active0)
{
   switch (pos)
   {
      default :
         return -1;
   }
}
private final int jjStartNfa_2(int pos, long active0)
{
   return jjMoveNfa_2(jjStopStringLiteralDfa_2(pos, active0), pos + 1);
}
private final int jjStartNfaWithStates_2(int pos, int kind, int state)
{
   jjmatchedKind = kind;
   jjmatchedPos = pos;
   try { curChar = input_stream.readChar(); }
   catch(java.io.IOException e) { return pos + 1; }
   return jjMoveNfa_2(state, pos + 1);
}
private final int jjMoveStringLiteralDfa0_2()
{
   switch(curChar)
   {
      case 34:
         return jjStopAtPos(0, 25);
      case 39:
         return jjStopAtPos(0, 26);
      case 61:
         return jjStopAtPos(0, 24);
      default :
         return jjMoveNfa_2(0, 0);
   }
}
private final int jjMoveNfa_2(int startState, int curPos)
{
   int[] nextStates;
   int startsAt = 0;
   jjnewStateCnt = 8;
   int i = 1;
   jjstateSet[0] = startState;
   int j, kind = 0x7fffffff;
   for (;;)
   {
      if (++jjround == 0x7fffffff)
         ReInitRounds();
      if (curChar < 64)
      {
         long l = 1L << curChar;
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               case 0:
                  if ((0x100002600L & l) != 0L)
                  {
                     if (kind > 21)
                        kind = 21;
                     jjCheckNAddStates(0, 4);
                  }
                  else if (curChar == 47)
                     jjstateSet[jjnewStateCnt++] = 2;
                  else if (curChar == 62)
                  {
                     if (kind > 22)
                        kind = 22;
                  }
                  else if (curChar == 0)
                  {
                     if (kind > 1)
                        kind = 1;
                  }
                  break;
               case 1:
                  if (curChar == 62 && kind > 22)
                     kind = 22;
                  break;
               case 2:
                  if (curChar == 62 && kind > 23)
                     kind = 23;
                  break;
               case 3:
                  if (curChar == 47)
                     jjstateSet[jjnewStateCnt++] = 2;
                  break;
               case 4:
                  if ((0x100002600L & l) == 0L)
                     break;
                  if (kind > 21)
                     kind = 21;
                  jjCheckNAddStates(0, 4);
                  break;
               case 5:
                  if ((0x100002600L & l) == 0L)
                     break;
                  if (kind > 21)
                     kind = 21;
                  jjCheckNAdd(5);
                  break;
               case 6:
                  if ((0x100002600L & l) != 0L)
                     jjCheckNAddTwoStates(6, 1);
                  break;
               case 7:
                  if ((0x100002600L & l) != 0L)
                     jjCheckNAddTwoStates(7, 3);
                  break;
               default : break;
            }
         } while(i != startsAt);
      }
      else if (curChar < 128)
      {
         long l = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      else
      {
         int i2 = (curChar & 0xff) >> 6;
         long l2 = 1L << (curChar & 077);
         MatchLoop: do
         {
            switch(jjstateSet[--i])
            {
               default : break;
            }
         } while(i != startsAt);
      }
      if (kind != 0x7fffffff)
      {
         jjmatchedKind = kind;
         jjmatchedPos = curPos;
         kind = 0x7fffffff;
      }
      ++curPos;
      if ((i = jjnewStateCnt) == (startsAt = 8 - (jjnewStateCnt = startsAt)))
         return curPos;
      try { curChar = input_stream.readChar(); }
      catch(java.io.IOException e) { return curPos; }
   }
}
static final int[] jjnextStates = {
   5, 6, 1, 7, 3, 
};
public static final String[] jjstrLiteralImages = {
"", null, null, "\74", "\74\57", null, null, "\74\41\55\55", "\74\41", 
"\74\77", null, "\76", null, "\76", null, null, null, null, null, "\55\55\76", null, 
null, null, null, "\75", "\42", "\47", null, "\42", null, "\47", 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, 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, 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, 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, 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, };
public static final String[] lexStateNames = {
   "InSingleQuote", 
   "InDoubleQuote", 
   "InTag", 
   "InComment", 
   "InStyle", 
   "InScript", 
   "InPI", 
   "InSGML", 
   "DEFAULT", 
};
public static final int[] jjnewLexState = {
   -1, -1, -1, 2, 2, 2, 2, 3, 7, 6, -1, 8, -1, 8, -1, 8, -1, 8, -1, 8, -1, -1, -1, -1, -1, 
   1, 0, -1, 2, -1, 2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 
};
static final long[] jjtoToken = {
   0xfffffffffffffff9L, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 
   0x1fffffffL, 
};
static final long[] jjtoSkip = {
   0x2L, 0x0L, 0x0L, 0x0L, 
   0x0L, 
};
protected SimpleCharStream input_stream;
private final int[] jjrounds = new int[8];
private final int[] jjstateSet = new int[16];
StringBuffer image;
int jjimageLen;
int lengthOfMatch;
protected char curChar;
public ParserTokenManager(SimpleCharStream stream){
   if (SimpleCharStream.staticFlag)
      throw new Error("ERROR: Cannot use a static CharStream class with a non-static lexical analyzer.");
   input_stream = stream;
}
public ParserTokenManager(SimpleCharStream stream, int lexState){
   this(stream);
   SwitchTo(lexState);
}
public void ReInit(SimpleCharStream stream)
{
   jjmatchedPos = jjnewStateCnt = 0;
   curLexState = defaultLexState;
   input_stream = stream;
   ReInitRounds();
}
private final void ReInitRounds()
{
   int i;
   jjround = 0x80000001;
   for (i = 8; i-- > 0;)
      jjrounds[i] = 0x80000000;
}
public void ReInit(SimpleCharStream stream, int lexState)
{
   ReInit(stream);
   SwitchTo(lexState);
}
public void SwitchTo(int lexState)
{
   if (lexState >= 9 || lexState < 0)
      throw new TokenMgrError("Error: Ignoring invalid lexical state : " + lexState + ". State unchanged.", TokenMgrError.INVALID_LEXICAL_STATE);
   else
      curLexState = lexState;
}

protected Token jjFillToken()
{
   Token t = Token.newToken(jjmatchedKind);
   t.kind = jjmatchedKind;
   String im = jjstrLiteralImages[jjmatchedKind];
   t.image = (im == null) ? input_stream.GetImage() : im;
   t.beginLine = input_stream.getBeginLine();
   t.beginColumn = input_stream.getBeginColumn();
   t.endLine = input_stream.getEndLine();
   t.endColumn = input_stream.getEndColumn();
   return t;
}

int curLexState = 8;
int defaultLexState = 8;
int jjnewStateCnt;
int jjround;
int jjmatchedPos;
int jjmatchedKind;

public Token getNextToken() 
{
  int kind;
  Token specialToken = null;
  Token matchedToken;
  int curPos = 0;

  EOFLoop :
  for (;;)
  {   
   try   
   {     
      curChar = input_stream.BeginToken();
   }     
   catch(java.io.IOException e)
   {        
      jjmatchedKind = 0;
      matchedToken = jjFillToken();
      return matchedToken;
   }
   image = null;
   jjimageLen = 0;

   switch(curLexState)
   {
     case 0:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_0();
       if (jjmatchedPos == 0 && jjmatchedKind > 31)
       {
          jjmatchedKind = 31;
       }
       break;
     case 1:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_1();
       if (jjmatchedPos == 0 && jjmatchedKind > 29)
       {
          jjmatchedKind = 29;
       }
       break;
     case 2:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_2();
       if (jjmatchedPos == 0 && jjmatchedKind > 27)
       {
          jjmatchedKind = 27;
       }
       break;
     case 3:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_3();
       if (jjmatchedPos == 0 && jjmatchedKind > 20)
       {
          jjmatchedKind = 20;
       }
       break;
     case 4:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_4();
       if (jjmatchedPos == 0 && jjmatchedKind > 18)
       {
          jjmatchedKind = 18;
       }
       break;
     case 5:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_5();
       if (jjmatchedPos == 0 && jjmatchedKind > 16)
       {
          jjmatchedKind = 16;
       }
       break;
     case 6:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_6();
       if (jjmatchedPos == 0 && jjmatchedKind > 14)
       {
          jjmatchedKind = 14;
       }
       break;
     case 7:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_7();
       if (jjmatchedPos == 0 && jjmatchedKind > 12)
       {
          jjmatchedKind = 12;
       }
       break;
     case 8:
       jjmatchedKind = 0x7fffffff;
       jjmatchedPos = 0;
       curPos = jjMoveStringLiteralDfa0_8();
       if (jjmatchedPos == 0 && jjmatchedKind > 10)
       {
          jjmatchedKind = 10;
       }
       break;
   }
     if (jjmatchedKind != 0x7fffffff)
     {
        if (jjmatchedPos + 1 < curPos)
           input_stream.backup(curPos - jjmatchedPos - 1);
        if ((jjtoToken[jjmatchedKind >> 6] & (1L << (jjmatchedKind & 077))) != 0L)
        {
           matchedToken = jjFillToken();
           TokenLexicalActions(matchedToken);
       if (jjnewLexState[jjmatchedKind] != -1)
         curLexState = jjnewLexState[jjmatchedKind];
           return matchedToken;
        }
        else
        {
         if (jjnewLexState[jjmatchedKind] != -1)
           curLexState = jjnewLexState[jjmatchedKind];
           continue EOFLoop;
        }
     }
     int error_line = input_stream.getEndLine();
     int error_column = input_stream.getEndColumn();
     String error_after = null;
     boolean EOFSeen = false;
     try { input_stream.readChar(); input_stream.backup(1); }
     catch (java.io.IOException e1) {
        EOFSeen = true;
        error_after = curPos <= 1 ? "" : input_stream.GetImage();
        if (curChar == '\n' || curChar == '\r') {
           error_line++;
           error_column = 0;
        }
        else
           error_column++;
     }
     if (!EOFSeen) {
        input_stream.backup(1);
        error_after = curPos <= 1 ? "" : input_stream.GetImage();
     }
     throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);
  }
}

void TokenLexicalActions(Token matchedToken)
{
   switch(jjmatchedKind)
   {
      case 5 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            isInScript = true;
         break;
      case 6 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          isInStyle = true;
         break;
      case 22 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                 switchEndTag();
         break;
      case 23 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                        switchEndTag();
         break;
      case 32 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                           matchedToken.image="\u00c6";
         break;
      case 33 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c1";
         break;
      case 34 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00c2";
         break;
      case 35 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c0";
         break;
      case 36 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0391";
         break;
      case 37 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00c5";
         break;
      case 38 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c3";
         break;
      case 39 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00c4";
         break;
      case 40 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u0392";
         break;
      case 41 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c7";
         break;
      case 42 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03a7";
         break;
      case 43 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2021";
         break;
      case 44 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0394";
         break;
      case 45 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00d0";
         break;
      case 46 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c9";
         break;
      case 47 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00ca";
         break;
      case 48 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00c8";
         break;
      case 49 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u0395";
         break;
      case 50 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u0397";
         break;
      case 51 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00cb";
         break;
      case 52 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0393";
         break;
      case 53 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00cd";
         break;
      case 54 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00ce";
         break;
      case 55 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00cc";
         break;
      case 56 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u0399";
         break;
      case 57 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00cf";
         break;
      case 58 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u039a";
         break;
      case 59 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u039b";
         break;
      case 60 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u039c";
         break;
      case 61 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d1";
         break;
      case 62 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u039d";
         break;
      case 63 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0152";
         break;
      case 64 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d3";
         break;
      case 65 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00d4";
         break;
      case 66 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d2";
         break;
      case 67 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03a9";
         break;
      case 68 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u039f";
         break;
      case 69 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d8";
         break;
      case 70 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d5";
         break;
      case 71 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00d6";
         break;
      case 72 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03a6";
         break;
      case 73 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u03a0";
         break;
      case 74 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2033";
         break;
      case 75 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03a8";
         break;
      case 76 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03a1";
         break;
      case 77 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u0160";
         break;
      case 78 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03a3";
         break;
      case 79 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00de";
         break;
      case 80 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03a4";
         break;
      case 81 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0398";
         break;
      case 82 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00da";
         break;
      case 83 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00db";
         break;
      case 84 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00d9";
         break;
      case 85 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u03a5";
         break;
      case 86 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00dc";
         break;
      case 87 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u039e";
         break;
      case 88 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00dd";
         break;
      case 89 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u0178";
         break;
      case 90 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u0396";
         break;
      case 91 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e1";
         break;
      case 92 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00e2";
         break;
      case 93 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00b4";
         break;
      case 94 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00e6";
         break;
      case 95 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e0";
         break;
      case 96 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u2135";
         break;
      case 97 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03b1";
         break;
      case 98 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="&";
         break;
      case 99 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2227";
         break;
      case 100 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2220";
         break;
      case 101 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00e5";
         break;
      case 102 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2248";
         break;
      case 103 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e3";
         break;
      case 104 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00e4";
         break;
      case 105 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u201e";
         break;
      case 106 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u03b2";
         break;
      case 107 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00a6";
         break;
      case 108 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2022";
         break;
      case 109 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2229";
         break;
      case 110 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e7";
         break;
      case 111 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00b8";
         break;
      case 112 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00a2";
         break;
      case 113 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03c7";
         break;
      case 114 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u02c6";
         break;
      case 115 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2663";
         break;
      case 116 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2245";
         break;
      case 117 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00a9";
         break;
      case 118 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u21b5";
         break;
      case 119 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u222a";
         break;
      case 120 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00a4";
         break;
      case 121 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u21d3";
         break;
      case 122 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2020";
         break;
      case 123 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2193";
         break;
      case 124 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00b0";
         break;
      case 125 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03b4";
         break;
      case 126 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2666";
         break;
      case 127 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f7";
         break;
      case 128 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e9";
         break;
      case 129 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00ea";
         break;
      case 130 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00e8";
         break;
      case 131 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2205";
         break;
      case 132 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2003";
         break;
      case 133 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2002";
         break;
      case 134 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u03b5";
         break;
      case 135 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2261";
         break;
      case 136 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03b7";
         break;
      case 137 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00f0";
         break;
      case 138 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00eb";
         break;
      case 139 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u20ac";
         break;
      case 140 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2203";
         break;
      case 141 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u0192";
         break;
      case 142 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2200";
         break;
      case 143 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00bd";
         break;
      case 144 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00bc";
         break;
      case 145 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00be";
         break;
      case 146 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2044";
         break;
      case 147 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03b3";
         break;
      case 148 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u2265";
         break;
      case 149 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image=">";
         break;
      case 150 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u21d4";
         break;
      case 151 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2194";
         break;
      case 152 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2665";
         break;
      case 153 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2026";
         break;
      case 154 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00ed";
         break;
      case 155 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00ee";
         break;
      case 156 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00a1";
         break;
      case 157 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00ec";
         break;
      case 158 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2111";
         break;
      case 159 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u221e";
         break;
      case 160 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u222b";
         break;
      case 161 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u03b9";
         break;
      case 162 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00bf";
         break;
      case 163 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2208";
         break;
      case 164 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00ef";
         break;
      case 165 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03ba";
         break;
      case 166 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u21d0";
         break;
      case 167 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u03bb";
         break;
      case 168 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2329";
         break;
      case 169 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00ab";
         break;
      case 170 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2190";
         break;
      case 171 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2308";
         break;
      case 172 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u201c";
         break;
      case 173 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u2264";
         break;
      case 174 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u230a";
         break;
      case 175 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2217";
         break;
      case 176 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u25ca";
         break;
      case 177 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u200e";
         break;
      case 178 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2039";
         break;
      case 179 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2018";
         break;
      case 180 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="<";
         break;
      case 181 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00af";
         break;
      case 182 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2014";
         break;
      case 183 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00b5";
         break;
      case 184 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00b7";
         break;
      case 185 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2212";
         break;
      case 186 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u03bc";
         break;
      case 187 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2207";
         break;
      case 188 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00a0";
         break;
      case 189 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2013";
         break;
      case 190 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u2260";
         break;
      case 191 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u220b";
         break;
      case 192 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00ac";
         break;
      case 193 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2209";
         break;
      case 194 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2284";
         break;
      case 195 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f1";
         break;
      case 196 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u03bd";
         break;
      case 197 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f3";
         break;
      case 198 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00f4";
         break;
      case 199 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u0153";
         break;
      case 200 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f2";
         break;
      case 201 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u203e";
         break;
      case 202 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03c9";
         break;
      case 203 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u03bf";
         break;
      case 204 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2295";
         break;
      case 205 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u2228";
         break;
      case 206 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00aa";
         break;
      case 207 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00ba";
         break;
      case 208 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f8";
         break;
      case 209 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f5";
         break;
      case 210 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2297";
         break;
      case 211 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00f6";
         break;
      case 212 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00b6";
         break;
      case 213 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2202";
         break;
      case 214 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2030";
         break;
      case 215 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u22a5";
         break;
      case 216 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03c6";
         break;
      case 217 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u03c0";
         break;
      case 218 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03d6";
         break;
      case 219 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00b1";
         break;
      case 220 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00a3";
         break;
      case 221 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2032";
         break;
      case 222 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u220f";
         break;
      case 223 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u221d";
         break;
      case 224 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03c8";
         break;
      case 225 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\"";
         break;
      case 226 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u21d2";
         break;
      case 227 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u221a";
         break;
      case 228 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u232a";
         break;
      case 229 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00bb";
         break;
      case 230 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2192";
         break;
      case 231 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2309";
         break;
      case 232 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u201d";
         break;
      case 233 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u211c";
         break;
      case 234 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00ae";
         break;
      case 235 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u230b";
         break;
      case 236 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03c1";
         break;
      case 237 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u200f";
         break;
      case 238 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u203a";
         break;
      case 239 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2019";
         break;
      case 240 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u201a";
         break;
      case 241 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u0161";
         break;
      case 242 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u22c5";
         break;
      case 243 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00a7";
         break;
      case 244 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00ad";
         break;
      case 245 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03c3";
         break;
      case 246 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u03c2";
         break;
      case 247 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u223c";
         break;
      case 248 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2660";
         break;
      case 249 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2282";
         break;
      case 250 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2286";
         break;
      case 251 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2211";
         break;
      case 252 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u2283";
         break;
      case 253 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00b9";
         break;
      case 254 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00b2";
         break;
      case 255 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00b3";
         break;
      case 256 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2287";
         break;
      case 257 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00df";
         break;
      case 258 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u03c4";
         break;
      case 259 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2234";
         break;
      case 260 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03b8";
         break;
      case 261 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                  matchedToken.image="\u03d1";
         break;
      case 262 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2009";
         break;
      case 263 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00fe";
         break;
      case 264 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u02dc";
         break;
      case 265 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00d7";
         break;
      case 266 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u2122";
         break;
      case 267 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u21d1";
         break;
      case 268 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00fa";
         break;
      case 269 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u2191";
         break;
      case 270 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u00fb";
         break;
      case 271 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00f9";
         break;
      case 272 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00a8";
         break;
      case 273 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                            matchedToken.image="\u03d2";
         break;
      case 274 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                                matchedToken.image="\u03c5";
         break;
      case 275 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00fc";
         break;
      case 276 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u2118";
         break;
      case 277 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                      matchedToken.image="\u03be";
         break;
      case 278 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                              matchedToken.image="\u00fd";
         break;
      case 279 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u00a5";
         break;
      case 280 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u00ff";
         break;
      case 281 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u03b6";
         break;
      case 282 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                        matchedToken.image="\u200d";
         break;
      case 283 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
                          matchedToken.image="\u200c";
         break;
      case 284 :
        if (image == null)
            image = new StringBuffer();
            image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
            int imageLength = image.length();
            String number = image.substring(imageLength - lengthOfMatch + 2, imageLength - 1);
            char[] chars = new char[]{(char)Integer.parseInt(number)};
            matchedToken.image = new String(chars);
         break;
      default : 
         break;
   }
}
}
