All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.spark.sql.catalyst.parser.extensions.IcebergSqlExtensionsLexer Maven / Gradle / Ivy

There is a newer version: 0.13.2
Show newest version
// Generated from org.apache.spark.sql.catalyst.parser.extensions/IcebergSqlExtensions.g4 by ANTLR 4.7.1
package org.apache.spark.sql.catalyst.parser.extensions;
import org.antlr.v4.runtime.Lexer;
import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.Token;
import org.antlr.v4.runtime.TokenStream;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.misc.*;

@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class IcebergSqlExtensionsLexer extends Lexer {
	static { RuntimeMetaData.checkVersion("4.7.1", RuntimeMetaData.VERSION); }

	protected static final DFA[] _decisionToDFA;
	protected static final PredictionContextCache _sharedContextCache =
		new PredictionContextCache();
	public static final int
		T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, ADD=6, ALTER=7, AS=8, ASC=9, BY=10, 
		CALL=11, DESC=12, DROP=13, FIELD=14, FIRST=15, LAST=16, NULLS=17, ORDERED=18, 
		PARTITION=19, TABLE=20, WRITE=21, TRUE=22, FALSE=23, MAP=24, PLUS=25, 
		MINUS=26, STRING=27, BIGINT_LITERAL=28, SMALLINT_LITERAL=29, TINYINT_LITERAL=30, 
		INTEGER_VALUE=31, EXPONENT_VALUE=32, DECIMAL_VALUE=33, FLOAT_LITERAL=34, 
		DOUBLE_LITERAL=35, BIGDECIMAL_LITERAL=36, IDENTIFIER=37, BACKQUOTED_IDENTIFIER=38, 
		SIMPLE_COMMENT=39, BRACKETED_COMMENT=40, WS=41, UNRECOGNIZED=42;
	public static String[] channelNames = {
		"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
	};

	public static String[] modeNames = {
		"DEFAULT_MODE"
	};

	public static final String[] ruleNames = {
		"T__0", "T__1", "T__2", "T__3", "T__4", "ADD", "ALTER", "AS", "ASC", "BY", 
		"CALL", "DESC", "DROP", "FIELD", "FIRST", "LAST", "NULLS", "ORDERED", 
		"PARTITION", "TABLE", "WRITE", "TRUE", "FALSE", "MAP", "PLUS", "MINUS", 
		"STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", 
		"EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", 
		"BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "DECIMAL_DIGITS", 
		"EXPONENT", "DIGIT", "LETTER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", 
		"WS", "UNRECOGNIZED"
	};

	private static final String[] _LITERAL_NAMES = {
		null, "'('", "','", "')'", "'=>'", "'.'", "'ADD'", "'ALTER'", "'AS'", 
		"'ASC'", "'BY'", "'CALL'", "'DESC'", "'DROP'", "'FIELD'", "'FIRST'", "'LAST'", 
		"'NULLS'", "'ORDERED'", "'PARTITION'", "'TABLE'", "'WRITE'", "'TRUE'", 
		"'FALSE'", "'MAP'", "'+'", "'-'"
	};
	private static final String[] _SYMBOLIC_NAMES = {
		null, null, null, null, null, null, "ADD", "ALTER", "AS", "ASC", "BY", 
		"CALL", "DESC", "DROP", "FIELD", "FIRST", "LAST", "NULLS", "ORDERED", 
		"PARTITION", "TABLE", "WRITE", "TRUE", "FALSE", "MAP", "PLUS", "MINUS", 
		"STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", 
		"EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", 
		"BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", 
		"BRACKETED_COMMENT", "WS", "UNRECOGNIZED"
	};
	public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);

	/**
	 * @deprecated Use {@link #VOCABULARY} instead.
	 */
	@Deprecated
	public static final String[] tokenNames;
	static {
		tokenNames = new String[_SYMBOLIC_NAMES.length];
		for (int i = 0; i < tokenNames.length; i++) {
			tokenNames[i] = VOCABULARY.getLiteralName(i);
			if (tokenNames[i] == null) {
				tokenNames[i] = VOCABULARY.getSymbolicName(i);
			}

			if (tokenNames[i] == null) {
				tokenNames[i] = "";
			}
		}
	}

	@Override
	@Deprecated
	public String[] getTokenNames() {
		return tokenNames;
	}

	@Override

	public Vocabulary getVocabulary() {
		return VOCABULARY;
	}


	  /**
	   * Verify whether current token is a valid decimal token (which contains dot).
	   * Returns true if the character that follows the token is not a digit or letter or underscore.
	   *
	   * For example:
	   * For char stream "2.3", "2." is not a valid decimal token, because it is followed by digit '3'.
	   * For char stream "2.3_", "2.3" is not a valid decimal token, because it is followed by '_'.
	   * For char stream "2.3W", "2.3" is not a valid decimal token, because it is followed by 'W'.
	   * For char stream "12.0D 34.E2+0.12 "  12.0D is a valid decimal token because it is followed
	   * by a space. 34.E2 is a valid decimal token because it is followed by symbol '+'
	   * which is not a digit or letter or underscore.
	   */
	  public boolean isValidDecimal() {
	    int nextChar = _input.LA(1);
	    if (nextChar >= 'A' && nextChar <= 'Z' || nextChar >= '0' && nextChar <= '9' ||
	      nextChar == '_') {
	      return false;
	    } else {
	      return true;
	    }
	  }

	  /**
	   * This method will be called when we see '/*' and try to match it as a bracketed comment.
	   * If the next character is '+', it should be parsed as hint later, and we cannot match
	   * it as a bracketed comment.
	   *
	   * Returns true if the next character is '+'.
	   */
	  public boolean isHint() {
	    int nextChar = _input.LA(1);
	    if (nextChar == '+') {
	      return true;
	    } else {
	      return false;
	    }
	  }


	public IcebergSqlExtensionsLexer(CharStream input) {
		super(input);
		_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
	}

	@Override
	public String getGrammarFileName() { return "IcebergSqlExtensions.g4"; }

	@Override
	public String[] getRuleNames() { return ruleNames; }

	@Override
	public String getSerializedATN() { return _serializedATN; }

	@Override
	public String[] getChannelNames() { return channelNames; }

	@Override
	public String[] getModeNames() { return modeNames; }

	@Override
	public ATN getATN() { return _ATN; }

	@Override
	public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
		switch (ruleIndex) {
		case 31:
			return EXPONENT_VALUE_sempred((RuleContext)_localctx, predIndex);
		case 32:
			return DECIMAL_VALUE_sempred((RuleContext)_localctx, predIndex);
		case 33:
			return FLOAT_LITERAL_sempred((RuleContext)_localctx, predIndex);
		case 34:
			return DOUBLE_LITERAL_sempred((RuleContext)_localctx, predIndex);
		case 35:
			return BIGDECIMAL_LITERAL_sempred((RuleContext)_localctx, predIndex);
		case 43:
			return BRACKETED_COMMENT_sempred((RuleContext)_localctx, predIndex);
		}
		return true;
	}
	private boolean EXPONENT_VALUE_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 0:
			return isValidDecimal();
		}
		return true;
	}
	private boolean DECIMAL_VALUE_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 1:
			return isValidDecimal();
		}
		return true;
	}
	private boolean FLOAT_LITERAL_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 2:
			return isValidDecimal();
		}
		return true;
	}
	private boolean DOUBLE_LITERAL_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 3:
			return isValidDecimal();
		}
		return true;
	}
	private boolean BIGDECIMAL_LITERAL_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 4:
			return isValidDecimal();
		}
		return true;
	}
	private boolean BRACKETED_COMMENT_sempred(RuleContext _localctx, int predIndex) {
		switch (predIndex) {
		case 5:
			return !isHint();
		}
		return true;
	}

	public static final String _serializedATN =
		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2,\u01b0\b\1\4\2\t"+
		"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
		"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
		"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
		"\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+
		"\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+
		",\t,\4-\t-\4.\t.\4/\t/\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\5\3\6\3\6\3\7"+
		"\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\13"+
		"\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16"+
		"\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\21"+
		"\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23"+
		"\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24"+
		"\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27"+
		"\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32"+
		"\3\32\3\33\3\33\3\34\3\34\3\34\3\34\7\34\u00da\n\34\f\34\16\34\u00dd\13"+
		"\34\3\34\3\34\3\34\3\34\3\34\7\34\u00e4\n\34\f\34\16\34\u00e7\13\34\3"+
		"\34\5\34\u00ea\n\34\3\35\6\35\u00ed\n\35\r\35\16\35\u00ee\3\35\3\35\3"+
		"\36\6\36\u00f4\n\36\r\36\16\36\u00f5\3\36\3\36\3\37\6\37\u00fb\n\37\r"+
		"\37\16\37\u00fc\3\37\3\37\3 \6 \u0102\n \r \16 \u0103\3!\6!\u0107\n!\r"+
		"!\16!\u0108\3!\3!\3!\3!\3!\3!\5!\u0111\n!\3\"\3\"\3\"\3#\6#\u0117\n#\r"+
		"#\16#\u0118\3#\5#\u011c\n#\3#\3#\3#\3#\5#\u0122\n#\3#\3#\3#\5#\u0127\n"+
		"#\3$\6$\u012a\n$\r$\16$\u012b\3$\5$\u012f\n$\3$\3$\3$\3$\5$\u0135\n$\3"+
		"$\3$\3$\5$\u013a\n$\3%\6%\u013d\n%\r%\16%\u013e\3%\5%\u0142\n%\3%\3%\3"+
		"%\3%\3%\5%\u0149\n%\3%\3%\3%\3%\3%\5%\u0150\n%\3&\3&\3&\6&\u0155\n&\r"+
		"&\16&\u0156\3\'\3\'\3\'\3\'\7\'\u015d\n\'\f\'\16\'\u0160\13\'\3\'\3\'"+
		"\3(\6(\u0165\n(\r(\16(\u0166\3(\3(\7(\u016b\n(\f(\16(\u016e\13(\3(\3("+
		"\6(\u0172\n(\r(\16(\u0173\5(\u0176\n(\3)\3)\5)\u017a\n)\3)\6)\u017d\n"+
		")\r)\16)\u017e\3*\3*\3+\3+\3,\3,\3,\3,\3,\3,\7,\u018b\n,\f,\16,\u018e"+
		"\13,\3,\5,\u0191\n,\3,\5,\u0194\n,\3,\3,\3-\3-\3-\3-\3-\3-\7-\u019e\n"+
		"-\f-\16-\u01a1\13-\3-\3-\3-\3-\3-\3.\6.\u01a9\n.\r.\16.\u01aa\3.\3.\3"+
		"/\3/\3\u019f\2\60\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31"+
		"\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65"+
		"\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O\2Q\2S\2U\2W)Y*[+],\3\2\n\4\2))"+
		"^^\4\2$$^^\3\2bb\4\2--//\3\2\62;\3\2C\\\4\2\f\f\17\17\5\2\13\f\17\17\""+
		"\"\2\u01d4\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2"+
		"\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27"+
		"\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2"+
		"\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2"+
		"\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2"+
		"\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2"+
		"\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2["+
		"\3\2\2\2\2]\3\2\2\2\3_\3\2\2\2\5a\3\2\2\2\7c\3\2\2\2\te\3\2\2\2\13h\3"+
		"\2\2\2\rj\3\2\2\2\17n\3\2\2\2\21t\3\2\2\2\23w\3\2\2\2\25{\3\2\2\2\27~"+
		"\3\2\2\2\31\u0083\3\2\2\2\33\u0088\3\2\2\2\35\u008d\3\2\2\2\37\u0093\3"+
		"\2\2\2!\u0099\3\2\2\2#\u009e\3\2\2\2%\u00a4\3\2\2\2\'\u00ac\3\2\2\2)\u00b6"+
		"\3\2\2\2+\u00bc\3\2\2\2-\u00c2\3\2\2\2/\u00c7\3\2\2\2\61\u00cd\3\2\2\2"+
		"\63\u00d1\3\2\2\2\65\u00d3\3\2\2\2\67\u00e9\3\2\2\29\u00ec\3\2\2\2;\u00f3"+
		"\3\2\2\2=\u00fa\3\2\2\2?\u0101\3\2\2\2A\u0110\3\2\2\2C\u0112\3\2\2\2E"+
		"\u0126\3\2\2\2G\u0139\3\2\2\2I\u014f\3\2\2\2K\u0154\3\2\2\2M\u0158\3\2"+
		"\2\2O\u0175\3\2\2\2Q\u0177\3\2\2\2S\u0180\3\2\2\2U\u0182\3\2\2\2W\u0184"+
		"\3\2\2\2Y\u0197\3\2\2\2[\u01a8\3\2\2\2]\u01ae\3\2\2\2_`\7*\2\2`\4\3\2"+
		"\2\2ab\7.\2\2b\6\3\2\2\2cd\7+\2\2d\b\3\2\2\2ef\7?\2\2fg\7@\2\2g\n\3\2"+
		"\2\2hi\7\60\2\2i\f\3\2\2\2jk\7C\2\2kl\7F\2\2lm\7F\2\2m\16\3\2\2\2no\7"+
		"C\2\2op\7N\2\2pq\7V\2\2qr\7G\2\2rs\7T\2\2s\20\3\2\2\2tu\7C\2\2uv\7U\2"+
		"\2v\22\3\2\2\2wx\7C\2\2xy\7U\2\2yz\7E\2\2z\24\3\2\2\2{|\7D\2\2|}\7[\2"+
		"\2}\26\3\2\2\2~\177\7E\2\2\177\u0080\7C\2\2\u0080\u0081\7N\2\2\u0081\u0082"+
		"\7N\2\2\u0082\30\3\2\2\2\u0083\u0084\7F\2\2\u0084\u0085\7G\2\2\u0085\u0086"+
		"\7U\2\2\u0086\u0087\7E\2\2\u0087\32\3\2\2\2\u0088\u0089\7F\2\2\u0089\u008a"+
		"\7T\2\2\u008a\u008b\7Q\2\2\u008b\u008c\7R\2\2\u008c\34\3\2\2\2\u008d\u008e"+
		"\7H\2\2\u008e\u008f\7K\2\2\u008f\u0090\7G\2\2\u0090\u0091\7N\2\2\u0091"+
		"\u0092\7F\2\2\u0092\36\3\2\2\2\u0093\u0094\7H\2\2\u0094\u0095\7K\2\2\u0095"+
		"\u0096\7T\2\2\u0096\u0097\7U\2\2\u0097\u0098\7V\2\2\u0098 \3\2\2\2\u0099"+
		"\u009a\7N\2\2\u009a\u009b\7C\2\2\u009b\u009c\7U\2\2\u009c\u009d\7V\2\2"+
		"\u009d\"\3\2\2\2\u009e\u009f\7P\2\2\u009f\u00a0\7W\2\2\u00a0\u00a1\7N"+
		"\2\2\u00a1\u00a2\7N\2\2\u00a2\u00a3\7U\2\2\u00a3$\3\2\2\2\u00a4\u00a5"+
		"\7Q\2\2\u00a5\u00a6\7T\2\2\u00a6\u00a7\7F\2\2\u00a7\u00a8\7G\2\2\u00a8"+
		"\u00a9\7T\2\2\u00a9\u00aa\7G\2\2\u00aa\u00ab\7F\2\2\u00ab&\3\2\2\2\u00ac"+
		"\u00ad\7R\2\2\u00ad\u00ae\7C\2\2\u00ae\u00af\7T\2\2\u00af\u00b0\7V\2\2"+
		"\u00b0\u00b1\7K\2\2\u00b1\u00b2\7V\2\2\u00b2\u00b3\7K\2\2\u00b3\u00b4"+
		"\7Q\2\2\u00b4\u00b5\7P\2\2\u00b5(\3\2\2\2\u00b6\u00b7\7V\2\2\u00b7\u00b8"+
		"\7C\2\2\u00b8\u00b9\7D\2\2\u00b9\u00ba\7N\2\2\u00ba\u00bb\7G\2\2\u00bb"+
		"*\3\2\2\2\u00bc\u00bd\7Y\2\2\u00bd\u00be\7T\2\2\u00be\u00bf\7K\2\2\u00bf"+
		"\u00c0\7V\2\2\u00c0\u00c1\7G\2\2\u00c1,\3\2\2\2\u00c2\u00c3\7V\2\2\u00c3"+
		"\u00c4\7T\2\2\u00c4\u00c5\7W\2\2\u00c5\u00c6\7G\2\2\u00c6.\3\2\2\2\u00c7"+
		"\u00c8\7H\2\2\u00c8\u00c9\7C\2\2\u00c9\u00ca\7N\2\2\u00ca\u00cb\7U\2\2"+
		"\u00cb\u00cc\7G\2\2\u00cc\60\3\2\2\2\u00cd\u00ce\7O\2\2\u00ce\u00cf\7"+
		"C\2\2\u00cf\u00d0\7R\2\2\u00d0\62\3\2\2\2\u00d1\u00d2\7-\2\2\u00d2\64"+
		"\3\2\2\2\u00d3\u00d4\7/\2\2\u00d4\66\3\2\2\2\u00d5\u00db\7)\2\2\u00d6"+
		"\u00da\n\2\2\2\u00d7\u00d8\7^\2\2\u00d8\u00da\13\2\2\2\u00d9\u00d6\3\2"+
		"\2\2\u00d9\u00d7\3\2\2\2\u00da\u00dd\3\2\2\2\u00db\u00d9\3\2\2\2\u00db"+
		"\u00dc\3\2\2\2\u00dc\u00de\3\2\2\2\u00dd\u00db\3\2\2\2\u00de\u00ea\7)"+
		"\2\2\u00df\u00e5\7$\2\2\u00e0\u00e4\n\3\2\2\u00e1\u00e2\7^\2\2\u00e2\u00e4"+
		"\13\2\2\2\u00e3\u00e0\3\2\2\2\u00e3\u00e1\3\2\2\2\u00e4\u00e7\3\2\2\2"+
		"\u00e5\u00e3\3\2\2\2\u00e5\u00e6\3\2\2\2\u00e6\u00e8\3\2\2\2\u00e7\u00e5"+
		"\3\2\2\2\u00e8\u00ea\7$\2\2\u00e9\u00d5\3\2\2\2\u00e9\u00df\3\2\2\2\u00ea"+
		"8\3\2\2\2\u00eb\u00ed\5S*\2\u00ec\u00eb\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee"+
		"\u00ec\3\2\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\3\2\2\2\u00f0\u00f1\7N"+
		"\2\2\u00f1:\3\2\2\2\u00f2\u00f4\5S*\2\u00f3\u00f2\3\2\2\2\u00f4\u00f5"+
		"\3\2\2\2\u00f5\u00f3\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00f7\3\2\2\2\u00f7"+
		"\u00f8\7U\2\2\u00f8<\3\2\2\2\u00f9\u00fb\5S*\2\u00fa\u00f9\3\2\2\2\u00fb"+
		"\u00fc\3\2\2\2\u00fc\u00fa\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fd\u00fe\3\2"+
		"\2\2\u00fe\u00ff\7[\2\2\u00ff>\3\2\2\2\u0100\u0102\5S*\2\u0101\u0100\3"+
		"\2\2\2\u0102\u0103\3\2\2\2\u0103\u0101\3\2\2\2\u0103\u0104\3\2\2\2\u0104"+
		"@\3\2\2\2\u0105\u0107\5S*\2\u0106\u0105\3\2\2\2\u0107\u0108\3\2\2\2\u0108"+
		"\u0106\3\2\2\2\u0108\u0109\3\2\2\2\u0109\u010a\3\2\2\2\u010a\u010b\5Q"+
		")\2\u010b\u0111\3\2\2\2\u010c\u010d\5O(\2\u010d\u010e\5Q)\2\u010e\u010f"+
		"\6!\2\2\u010f\u0111\3\2\2\2\u0110\u0106\3\2\2\2\u0110\u010c\3\2\2\2\u0111"+
		"B\3\2\2\2\u0112\u0113\5O(\2\u0113\u0114\6\"\3\2\u0114D\3\2\2\2\u0115\u0117"+
		"\5S*\2\u0116\u0115\3\2\2\2\u0117\u0118\3\2\2\2\u0118\u0116\3\2\2\2\u0118"+
		"\u0119\3\2\2\2\u0119\u011b\3\2\2\2\u011a\u011c\5Q)\2\u011b\u011a\3\2\2"+
		"\2\u011b\u011c\3\2\2\2\u011c\u011d\3\2\2\2\u011d\u011e\7H\2\2\u011e\u0127"+
		"\3\2\2\2\u011f\u0121\5O(\2\u0120\u0122\5Q)\2\u0121\u0120\3\2\2\2\u0121"+
		"\u0122\3\2\2\2\u0122\u0123\3\2\2\2\u0123\u0124\7H\2\2\u0124\u0125\6#\4"+
		"\2\u0125\u0127\3\2\2\2\u0126\u0116\3\2\2\2\u0126\u011f\3\2\2\2\u0127F"+
		"\3\2\2\2\u0128\u012a\5S*\2\u0129\u0128\3\2\2\2\u012a\u012b\3\2\2\2\u012b"+
		"\u0129\3\2\2\2\u012b\u012c\3\2\2\2\u012c\u012e\3\2\2\2\u012d\u012f\5Q"+
		")\2\u012e\u012d\3\2\2\2\u012e\u012f\3\2\2\2\u012f\u0130\3\2\2\2\u0130"+
		"\u0131\7F\2\2\u0131\u013a\3\2\2\2\u0132\u0134\5O(\2\u0133\u0135\5Q)\2"+
		"\u0134\u0133\3\2\2\2\u0134\u0135\3\2\2\2\u0135\u0136\3\2\2\2\u0136\u0137"+
		"\7F\2\2\u0137\u0138\6$\5\2\u0138\u013a\3\2\2\2\u0139\u0129\3\2\2\2\u0139"+
		"\u0132\3\2\2\2\u013aH\3\2\2\2\u013b\u013d\5S*\2\u013c\u013b\3\2\2\2\u013d"+
		"\u013e\3\2\2\2\u013e\u013c\3\2\2\2\u013e\u013f\3\2\2\2\u013f\u0141\3\2"+
		"\2\2\u0140\u0142\5Q)\2\u0141\u0140\3\2\2\2\u0141\u0142\3\2\2\2\u0142\u0143"+
		"\3\2\2\2\u0143\u0144\7D\2\2\u0144\u0145\7F\2\2\u0145\u0150\3\2\2\2\u0146"+
		"\u0148\5O(\2\u0147\u0149\5Q)\2\u0148\u0147\3\2\2\2\u0148\u0149\3\2\2\2"+
		"\u0149\u014a\3\2\2\2\u014a\u014b\7D\2\2\u014b\u014c\7F\2\2\u014c\u014d"+
		"\3\2\2\2\u014d\u014e\6%\6\2\u014e\u0150\3\2\2\2\u014f\u013c\3\2\2\2\u014f"+
		"\u0146\3\2\2\2\u0150J\3\2\2\2\u0151\u0155\5U+\2\u0152\u0155\5S*\2\u0153"+
		"\u0155\7a\2\2\u0154\u0151\3\2\2\2\u0154\u0152\3\2\2\2\u0154\u0153\3\2"+
		"\2\2\u0155\u0156\3\2\2\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157"+
		"L\3\2\2\2\u0158\u015e\7b\2\2\u0159\u015d\n\4\2\2\u015a\u015b\7b\2\2\u015b"+
		"\u015d\7b\2\2\u015c\u0159\3\2\2\2\u015c\u015a\3\2\2\2\u015d\u0160\3\2"+
		"\2\2\u015e\u015c\3\2\2\2\u015e\u015f\3\2\2\2\u015f\u0161\3\2\2\2\u0160"+
		"\u015e\3\2\2\2\u0161\u0162\7b\2\2\u0162N\3\2\2\2\u0163\u0165\5S*\2\u0164"+
		"\u0163\3\2\2\2\u0165\u0166\3\2\2\2\u0166\u0164\3\2\2\2\u0166\u0167\3\2"+
		"\2\2\u0167\u0168\3\2\2\2\u0168\u016c\7\60\2\2\u0169\u016b\5S*\2\u016a"+
		"\u0169\3\2\2\2\u016b\u016e\3\2\2\2\u016c\u016a\3\2\2\2\u016c\u016d\3\2"+
		"\2\2\u016d\u0176\3\2\2\2\u016e\u016c\3\2\2\2\u016f\u0171\7\60\2\2\u0170"+
		"\u0172\5S*\2\u0171\u0170\3\2\2\2\u0172\u0173\3\2\2\2\u0173\u0171\3\2\2"+
		"\2\u0173\u0174\3\2\2\2\u0174\u0176\3\2\2\2\u0175\u0164\3\2\2\2\u0175\u016f"+
		"\3\2\2\2\u0176P\3\2\2\2\u0177\u0179\7G\2\2\u0178\u017a\t\5\2\2\u0179\u0178"+
		"\3\2\2\2\u0179\u017a\3\2\2\2\u017a\u017c\3\2\2\2\u017b\u017d\5S*\2\u017c"+
		"\u017b\3\2\2\2\u017d\u017e\3\2\2\2\u017e\u017c\3\2\2\2\u017e\u017f\3\2"+
		"\2\2\u017fR\3\2\2\2\u0180\u0181\t\6\2\2\u0181T\3\2\2\2\u0182\u0183\t\7"+
		"\2\2\u0183V\3\2\2\2\u0184\u0185\7/\2\2\u0185\u0186\7/\2\2\u0186\u018c"+
		"\3\2\2\2\u0187\u0188\7^\2\2\u0188\u018b\7\f\2\2\u0189\u018b\n\b\2\2\u018a"+
		"\u0187\3\2\2\2\u018a\u0189\3\2\2\2\u018b\u018e\3\2\2\2\u018c\u018a\3\2"+
		"\2\2\u018c\u018d\3\2\2\2\u018d\u0190\3\2\2\2\u018e\u018c\3\2\2\2\u018f"+
		"\u0191\7\17\2\2\u0190\u018f\3\2\2\2\u0190\u0191\3\2\2\2\u0191\u0193\3"+
		"\2\2\2\u0192\u0194\7\f\2\2\u0193\u0192\3\2\2\2\u0193\u0194\3\2\2\2\u0194"+
		"\u0195\3\2\2\2\u0195\u0196\b,\2\2\u0196X\3\2\2\2\u0197\u0198\7\61\2\2"+
		"\u0198\u0199\7,\2\2\u0199\u019a\3\2\2\2\u019a\u019f\6-\7\2\u019b\u019e"+
		"\5Y-\2\u019c\u019e\13\2\2\2\u019d\u019b\3\2\2\2\u019d\u019c\3\2\2\2\u019e"+
		"\u01a1\3\2\2\2\u019f\u01a0\3\2\2\2\u019f\u019d\3\2\2\2\u01a0\u01a2\3\2"+
		"\2\2\u01a1\u019f\3\2\2\2\u01a2\u01a3\7,\2\2\u01a3\u01a4\7\61\2\2\u01a4"+
		"\u01a5\3\2\2\2\u01a5\u01a6\b-\2\2\u01a6Z\3\2\2\2\u01a7\u01a9\t\t\2\2\u01a8"+
		"\u01a7\3\2\2\2\u01a9\u01aa\3\2\2\2\u01aa\u01a8\3\2\2\2\u01aa\u01ab\3\2"+
		"\2\2\u01ab\u01ac\3\2\2\2\u01ac\u01ad\b.\2\2\u01ad\\\3\2\2\2\u01ae\u01af"+
		"\13\2\2\2\u01af^\3\2\2\2+\2\u00d9\u00db\u00e3\u00e5\u00e9\u00ee\u00f5"+
		"\u00fc\u0103\u0108\u0110\u0118\u011b\u0121\u0126\u012b\u012e\u0134\u0139"+
		"\u013e\u0141\u0148\u014f\u0154\u0156\u015c\u015e\u0166\u016c\u0173\u0175"+
		"\u0179\u017e\u018a\u018c\u0190\u0193\u019d\u019f\u01aa\3\2\3\2";
	public static final ATN _ATN =
		new ATNDeserializer().deserialize(_serializedATN.toCharArray());
	static {
		_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
		for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
			_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy