org.opendaylight.yangtools.yang.parser.antlr.YangStatementParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yang-parser-rfc7950 Show documentation
Show all versions of yang-parser-rfc7950 Show documentation
RFC6020/RFC7950 parser support
// Generated from org/opendaylight/yangtools/yang/parser/antlr/YangStatementParser.g4 by ANTLR 4.13.2
package org.opendaylight.yangtools.yang.parser.antlr;
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.misc.*;
import org.antlr.v4.runtime.tree.*;
import java.util.List;
import java.util.Iterator;
import java.util.ArrayList;
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
public class YangStatementParser extends Parser {
static { RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
SEMICOLON=1, LEFT_BRACE=2, RIGHT_BRACE=3, SEP=4, IDENTIFIER=5, COLON=6,
PLUS=7, SLASH=8, STAR=9, DQUOT_STRING=10, SQUOT_STRING=11, UQUOT_STRING=12,
LINE_COMMENT=13, BLOCK_COMMENT=14, DQUOT_START=15, SQUOT_START=16, DQUOT_END=17,
SQUOT_END=18;
public static final int
RULE_file = 0, RULE_statement = 1, RULE_keyword = 2, RULE_argument = 3,
RULE_unquotedString = 4;
private static String[] makeRuleNames() {
return new String[] {
"file", "statement", "keyword", "argument", "unquotedString"
};
}
public static final String[] ruleNames = makeRuleNames();
private static String[] makeLiteralNames() {
return new String[] {
null, "';'", "'{'", "'}'", null, null, "':'", "'+'", "'/'", "'*'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "SEMICOLON", "LEFT_BRACE", "RIGHT_BRACE", "SEP", "IDENTIFIER",
"COLON", "PLUS", "SLASH", "STAR", "DQUOT_STRING", "SQUOT_STRING", "UQUOT_STRING",
"LINE_COMMENT", "BLOCK_COMMENT", "DQUOT_START", "SQUOT_START", "DQUOT_END",
"SQUOT_END"
};
}
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
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;
}
@Override
public String getGrammarFileName() { return "YangStatementParser.g4"; }
@Override
public String[] getRuleNames() { return ruleNames; }
@Override
public String getSerializedATN() { return _serializedATN; }
@Override
public ATN getATN() { return _ATN; }
public YangStatementParser(TokenStream input) {
super(input);
_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
}
@SuppressWarnings("CheckReturnValue")
public static class FileContext extends ParserRuleContext {
public StatementContext statement() {
return getRuleContext(StatementContext.class,0);
}
public TerminalNode EOF() { return getToken(YangStatementParser.EOF, 0); }
public List SEP() { return getTokens(YangStatementParser.SEP); }
public TerminalNode SEP(int i) {
return getToken(YangStatementParser.SEP, i);
}
public FileContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_file; }
}
public final FileContext file() throws RecognitionException {
FileContext _localctx = new FileContext(_ctx, getState());
enterRule(_localctx, 0, RULE_file);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(13);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(10);
match(SEP);
}
}
setState(15);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(16);
statement();
setState(20);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(17);
match(SEP);
}
}
setState(22);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(23);
match(EOF);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
@SuppressWarnings("CheckReturnValue")
public static class StatementContext extends ParserRuleContext {
public KeywordContext keyword() {
return getRuleContext(KeywordContext.class,0);
}
public TerminalNode SEMICOLON() { return getToken(YangStatementParser.SEMICOLON, 0); }
public TerminalNode LEFT_BRACE() { return getToken(YangStatementParser.LEFT_BRACE, 0); }
public TerminalNode RIGHT_BRACE() { return getToken(YangStatementParser.RIGHT_BRACE, 0); }
public ArgumentContext argument() {
return getRuleContext(ArgumentContext.class,0);
}
public List SEP() { return getTokens(YangStatementParser.SEP); }
public TerminalNode SEP(int i) {
return getToken(YangStatementParser.SEP, i);
}
public List statement() {
return getRuleContexts(StatementContext.class);
}
public StatementContext statement(int i) {
return getRuleContext(StatementContext.class,i);
}
public StatementContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_statement; }
}
public final StatementContext statement() throws RecognitionException {
StatementContext _localctx = new StatementContext(_ctx, getState());
enterRule(_localctx, 2, RULE_statement);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(25);
keyword();
setState(32);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
case 1:
{
setState(27);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(26);
match(SEP);
}
}
setState(29);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==SEP );
setState(31);
argument();
}
break;
}
setState(37);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(34);
match(SEP);
}
}
setState(39);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(61);
_errHandler.sync(this);
switch (_input.LA(1)) {
case SEMICOLON:
{
setState(40);
match(SEMICOLON);
}
break;
case LEFT_BRACE:
{
setState(41);
match(LEFT_BRACE);
setState(45);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(42);
match(SEP);
}
}
setState(47);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(57);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==IDENTIFIER) {
{
{
setState(48);
statement();
setState(52);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(49);
match(SEP);
}
}
setState(54);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
setState(59);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(60);
match(RIGHT_BRACE);
}
break;
default:
throw new NoViableAltException(this);
}
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
@SuppressWarnings("CheckReturnValue")
public static class KeywordContext extends ParserRuleContext {
public List IDENTIFIER() { return getTokens(YangStatementParser.IDENTIFIER); }
public TerminalNode IDENTIFIER(int i) {
return getToken(YangStatementParser.IDENTIFIER, i);
}
public TerminalNode COLON() { return getToken(YangStatementParser.COLON, 0); }
public KeywordContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_keyword; }
}
public final KeywordContext keyword() throws RecognitionException {
KeywordContext _localctx = new KeywordContext(_ctx, getState());
enterRule(_localctx, 4, RULE_keyword);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(63);
match(IDENTIFIER);
setState(66);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COLON) {
{
setState(64);
match(COLON);
setState(65);
match(IDENTIFIER);
}
}
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
@SuppressWarnings("CheckReturnValue")
public static class ArgumentContext extends ParserRuleContext {
public TerminalNode IDENTIFIER() { return getToken(YangStatementParser.IDENTIFIER, 0); }
public List DQUOT_END() { return getTokens(YangStatementParser.DQUOT_END); }
public TerminalNode DQUOT_END(int i) {
return getToken(YangStatementParser.DQUOT_END, i);
}
public List SQUOT_END() { return getTokens(YangStatementParser.SQUOT_END); }
public TerminalNode SQUOT_END(int i) {
return getToken(YangStatementParser.SQUOT_END, i);
}
public List PLUS() { return getTokens(YangStatementParser.PLUS); }
public TerminalNode PLUS(int i) {
return getToken(YangStatementParser.PLUS, i);
}
public List DQUOT_STRING() { return getTokens(YangStatementParser.DQUOT_STRING); }
public TerminalNode DQUOT_STRING(int i) {
return getToken(YangStatementParser.DQUOT_STRING, i);
}
public List SQUOT_STRING() { return getTokens(YangStatementParser.SQUOT_STRING); }
public TerminalNode SQUOT_STRING(int i) {
return getToken(YangStatementParser.SQUOT_STRING, i);
}
public List SEP() { return getTokens(YangStatementParser.SEP); }
public TerminalNode SEP(int i) {
return getToken(YangStatementParser.SEP, i);
}
public UnquotedStringContext unquotedString() {
return getRuleContext(UnquotedStringContext.class,0);
}
public ArgumentContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_argument; }
}
public final ArgumentContext argument() throws RecognitionException {
ArgumentContext _localctx = new ArgumentContext(_ctx, getState());
enterRule(_localctx, 6, RULE_argument);
int _la;
try {
int _alt;
setState(108);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
setState(68);
match(IDENTIFIER);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
setState(77);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DQUOT_STRING:
case DQUOT_END:
{
setState(70);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==DQUOT_STRING) {
{
setState(69);
match(DQUOT_STRING);
}
}
setState(72);
match(DQUOT_END);
}
break;
case SQUOT_STRING:
case SQUOT_END:
{
setState(74);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==SQUOT_STRING) {
{
setState(73);
match(SQUOT_STRING);
}
}
setState(76);
match(SQUOT_END);
}
break;
default:
throw new NoViableAltException(this);
}
setState(104);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
setState(82);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(79);
match(SEP);
}
}
setState(84);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(85);
match(PLUS);
setState(89);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==SEP) {
{
{
setState(86);
match(SEP);
}
}
setState(91);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(100);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DQUOT_STRING:
case DQUOT_END:
{
setState(93);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==DQUOT_STRING) {
{
setState(92);
match(DQUOT_STRING);
}
}
setState(95);
match(DQUOT_END);
}
break;
case SQUOT_STRING:
case SQUOT_END:
{
setState(97);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==SQUOT_STRING) {
{
setState(96);
match(SQUOT_STRING);
}
}
setState(99);
match(SQUOT_END);
}
break;
default:
throw new NoViableAltException(this);
}
}
}
}
setState(106);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
}
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
setState(107);
unquotedString();
}
break;
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
@SuppressWarnings("CheckReturnValue")
public static class UnquotedStringContext extends ParserRuleContext {
public List SLASH() { return getTokens(YangStatementParser.SLASH); }
public TerminalNode SLASH(int i) {
return getToken(YangStatementParser.SLASH, i);
}
public List STAR() { return getTokens(YangStatementParser.STAR); }
public TerminalNode STAR(int i) {
return getToken(YangStatementParser.STAR, i);
}
public List COLON() { return getTokens(YangStatementParser.COLON); }
public TerminalNode COLON(int i) {
return getToken(YangStatementParser.COLON, i);
}
public List PLUS() { return getTokens(YangStatementParser.PLUS); }
public TerminalNode PLUS(int i) {
return getToken(YangStatementParser.PLUS, i);
}
public List IDENTIFIER() { return getTokens(YangStatementParser.IDENTIFIER); }
public TerminalNode IDENTIFIER(int i) {
return getToken(YangStatementParser.IDENTIFIER, i);
}
public List UQUOT_STRING() { return getTokens(YangStatementParser.UQUOT_STRING); }
public TerminalNode UQUOT_STRING(int i) {
return getToken(YangStatementParser.UQUOT_STRING, i);
}
public UnquotedStringContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_unquotedString; }
}
public final UnquotedStringContext unquotedString() throws RecognitionException {
UnquotedStringContext _localctx = new UnquotedStringContext(_ctx, getState());
enterRule(_localctx, 8, RULE_unquotedString);
int _la;
try {
int _alt;
setState(161);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
setState(110);
match(SLASH);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
setState(112);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(111);
match(STAR);
}
}
setState(114);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==STAR );
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
setState(125);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) {
case 1:
{
setState(117);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==SLASH) {
{
setState(116);
match(SLASH);
}
}
}
break;
case 2:
{
setState(122);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==STAR) {
{
{
setState(119);
match(STAR);
}
}
setState(124);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
break;
}
setState(128);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(127);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 4320L) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
_errHandler.reportMatch(this);
consume();
}
}
}
setState(130);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & 4320L) != 0) );
setState(147);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,28,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
setState(138);
_errHandler.sync(this);
switch (_input.LA(1)) {
case SLASH:
{
setState(132);
match(SLASH);
}
break;
case STAR:
{
setState(134);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(133);
match(STAR);
}
}
setState(136);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==STAR );
}
break;
default:
throw new NoViableAltException(this);
}
setState(141);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(140);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 4320L) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
_errHandler.reportMatch(this);
consume();
}
}
}
setState(143);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & 4320L) != 0) );
}
}
}
setState(149);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,28,_ctx);
}
setState(159);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
{
setState(151);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==SLASH) {
{
setState(150);
match(SLASH);
}
}
}
break;
case 2:
{
setState(156);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==STAR) {
{
{
setState(153);
match(STAR);
}
}
setState(158);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
break;
}
}
break;
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static final String _serializedATN =
"\u0004\u0001\u0012\u00a4\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
"\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+
"\u0001\u0000\u0005\u0000\f\b\u0000\n\u0000\f\u0000\u000f\t\u0000\u0001"+
"\u0000\u0001\u0000\u0005\u0000\u0013\b\u0000\n\u0000\f\u0000\u0016\t\u0000"+
"\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0004\u0001\u001c\b\u0001"+
"\u000b\u0001\f\u0001\u001d\u0001\u0001\u0003\u0001!\b\u0001\u0001\u0001"+
"\u0005\u0001$\b\u0001\n\u0001\f\u0001\'\t\u0001\u0001\u0001\u0001\u0001"+
"\u0001\u0001\u0005\u0001,\b\u0001\n\u0001\f\u0001/\t\u0001\u0001\u0001"+
"\u0001\u0001\u0005\u00013\b\u0001\n\u0001\f\u00016\t\u0001\u0005\u0001"+
"8\b\u0001\n\u0001\f\u0001;\t\u0001\u0001\u0001\u0003\u0001>\b\u0001\u0001"+
"\u0002\u0001\u0002\u0001\u0002\u0003\u0002C\b\u0002\u0001\u0003\u0001"+
"\u0003\u0003\u0003G\b\u0003\u0001\u0003\u0001\u0003\u0003\u0003K\b\u0003"+
"\u0001\u0003\u0003\u0003N\b\u0003\u0001\u0003\u0005\u0003Q\b\u0003\n\u0003"+
"\f\u0003T\t\u0003\u0001\u0003\u0001\u0003\u0005\u0003X\b\u0003\n\u0003"+
"\f\u0003[\t\u0003\u0001\u0003\u0003\u0003^\b\u0003\u0001\u0003\u0001\u0003"+
"\u0003\u0003b\b\u0003\u0001\u0003\u0003\u0003e\b\u0003\u0005\u0003g\b"+
"\u0003\n\u0003\f\u0003j\t\u0003\u0001\u0003\u0003\u0003m\b\u0003\u0001"+
"\u0004\u0001\u0004\u0004\u0004q\b\u0004\u000b\u0004\f\u0004r\u0001\u0004"+
"\u0003\u0004v\b\u0004\u0001\u0004\u0005\u0004y\b\u0004\n\u0004\f\u0004"+
"|\t\u0004\u0003\u0004~\b\u0004\u0001\u0004\u0004\u0004\u0081\b\u0004\u000b"+
"\u0004\f\u0004\u0082\u0001\u0004\u0001\u0004\u0004\u0004\u0087\b\u0004"+
"\u000b\u0004\f\u0004\u0088\u0003\u0004\u008b\b\u0004\u0001\u0004\u0004"+
"\u0004\u008e\b\u0004\u000b\u0004\f\u0004\u008f\u0005\u0004\u0092\b\u0004"+
"\n\u0004\f\u0004\u0095\t\u0004\u0001\u0004\u0003\u0004\u0098\b\u0004\u0001"+
"\u0004\u0005\u0004\u009b\b\u0004\n\u0004\f\u0004\u009e\t\u0004\u0003\u0004"+
"\u00a0\b\u0004\u0003\u0004\u00a2\b\u0004\u0001\u0004\u0000\u0000\u0005"+
"\u0000\u0002\u0004\u0006\b\u0000\u0001\u0002\u0000\u0005\u0007\f\f\u00c1"+
"\u0000\r\u0001\u0000\u0000\u0000\u0002\u0019\u0001\u0000\u0000\u0000\u0004"+
"?\u0001\u0000\u0000\u0000\u0006l\u0001\u0000\u0000\u0000\b\u00a1\u0001"+
"\u0000\u0000\u0000\n\f\u0005\u0004\u0000\u0000\u000b\n\u0001\u0000\u0000"+
"\u0000\f\u000f\u0001\u0000\u0000\u0000\r\u000b\u0001\u0000\u0000\u0000"+
"\r\u000e\u0001\u0000\u0000\u0000\u000e\u0010\u0001\u0000\u0000\u0000\u000f"+
"\r\u0001\u0000\u0000\u0000\u0010\u0014\u0003\u0002\u0001\u0000\u0011\u0013"+
"\u0005\u0004\u0000\u0000\u0012\u0011\u0001\u0000\u0000\u0000\u0013\u0016"+
"\u0001\u0000\u0000\u0000\u0014\u0012\u0001\u0000\u0000\u0000\u0014\u0015"+
"\u0001\u0000\u0000\u0000\u0015\u0017\u0001\u0000\u0000\u0000\u0016\u0014"+
"\u0001\u0000\u0000\u0000\u0017\u0018\u0005\u0000\u0000\u0001\u0018\u0001"+
"\u0001\u0000\u0000\u0000\u0019 \u0003\u0004\u0002\u0000\u001a\u001c\u0005"+
"\u0004\u0000\u0000\u001b\u001a\u0001\u0000\u0000\u0000\u001c\u001d\u0001"+
"\u0000\u0000\u0000\u001d\u001b\u0001\u0000\u0000\u0000\u001d\u001e\u0001"+
"\u0000\u0000\u0000\u001e\u001f\u0001\u0000\u0000\u0000\u001f!\u0003\u0006"+
"\u0003\u0000 \u001b\u0001\u0000\u0000\u0000 !\u0001\u0000\u0000\u0000"+
"!%\u0001\u0000\u0000\u0000\"$\u0005\u0004\u0000\u0000#\"\u0001\u0000\u0000"+
"\u0000$\'\u0001\u0000\u0000\u0000%#\u0001\u0000\u0000\u0000%&\u0001\u0000"+
"\u0000\u0000&=\u0001\u0000\u0000\u0000\'%\u0001\u0000\u0000\u0000(>\u0005"+
"\u0001\u0000\u0000)-\u0005\u0002\u0000\u0000*,\u0005\u0004\u0000\u0000"+
"+*\u0001\u0000\u0000\u0000,/\u0001\u0000\u0000\u0000-+\u0001\u0000\u0000"+
"\u0000-.\u0001\u0000\u0000\u0000.9\u0001\u0000\u0000\u0000/-\u0001\u0000"+
"\u0000\u000004\u0003\u0002\u0001\u000013\u0005\u0004\u0000\u000021\u0001"+
"\u0000\u0000\u000036\u0001\u0000\u0000\u000042\u0001\u0000\u0000\u0000"+
"45\u0001\u0000\u0000\u000058\u0001\u0000\u0000\u000064\u0001\u0000\u0000"+
"\u000070\u0001\u0000\u0000\u00008;\u0001\u0000\u0000\u000097\u0001\u0000"+
"\u0000\u00009:\u0001\u0000\u0000\u0000:<\u0001\u0000\u0000\u0000;9\u0001"+
"\u0000\u0000\u0000<>\u0005\u0003\u0000\u0000=(\u0001\u0000\u0000\u0000"+
"=)\u0001\u0000\u0000\u0000>\u0003\u0001\u0000\u0000\u0000?B\u0005\u0005"+
"\u0000\u0000@A\u0005\u0006\u0000\u0000AC\u0005\u0005\u0000\u0000B@\u0001"+
"\u0000\u0000\u0000BC\u0001\u0000\u0000\u0000C\u0005\u0001\u0000\u0000"+
"\u0000Dm\u0005\u0005\u0000\u0000EG\u0005\n\u0000\u0000FE\u0001\u0000\u0000"+
"\u0000FG\u0001\u0000\u0000\u0000GH\u0001\u0000\u0000\u0000HN\u0005\u0011"+
"\u0000\u0000IK\u0005\u000b\u0000\u0000JI\u0001\u0000\u0000\u0000JK\u0001"+
"\u0000\u0000\u0000KL\u0001\u0000\u0000\u0000LN\u0005\u0012\u0000\u0000"+
"MF\u0001\u0000\u0000\u0000MJ\u0001\u0000\u0000\u0000Nh\u0001\u0000\u0000"+
"\u0000OQ\u0005\u0004\u0000\u0000PO\u0001\u0000\u0000\u0000QT\u0001\u0000"+
"\u0000\u0000RP\u0001\u0000\u0000\u0000RS\u0001\u0000\u0000\u0000SU\u0001"+
"\u0000\u0000\u0000TR\u0001\u0000\u0000\u0000UY\u0005\u0007\u0000\u0000"+
"VX\u0005\u0004\u0000\u0000WV\u0001\u0000\u0000\u0000X[\u0001\u0000\u0000"+
"\u0000YW\u0001\u0000\u0000\u0000YZ\u0001\u0000\u0000\u0000Zd\u0001\u0000"+
"\u0000\u0000[Y\u0001\u0000\u0000\u0000\\^\u0005\n\u0000\u0000]\\\u0001"+
"\u0000\u0000\u0000]^\u0001\u0000\u0000\u0000^_\u0001\u0000\u0000\u0000"+
"_e\u0005\u0011\u0000\u0000`b\u0005\u000b\u0000\u0000a`\u0001\u0000\u0000"+
"\u0000ab\u0001\u0000\u0000\u0000bc\u0001\u0000\u0000\u0000ce\u0005\u0012"+
"\u0000\u0000d]\u0001\u0000\u0000\u0000da\u0001\u0000\u0000\u0000eg\u0001"+
"\u0000\u0000\u0000fR\u0001\u0000\u0000\u0000gj\u0001\u0000\u0000\u0000"+
"hf\u0001\u0000\u0000\u0000hi\u0001\u0000\u0000\u0000im\u0001\u0000\u0000"+
"\u0000jh\u0001\u0000\u0000\u0000km\u0003\b\u0004\u0000lD\u0001\u0000\u0000"+
"\u0000lM\u0001\u0000\u0000\u0000lk\u0001\u0000\u0000\u0000m\u0007\u0001"+
"\u0000\u0000\u0000n\u00a2\u0005\b\u0000\u0000oq\u0005\t\u0000\u0000po"+
"\u0001\u0000\u0000\u0000qr\u0001\u0000\u0000\u0000rp\u0001\u0000\u0000"+
"\u0000rs\u0001\u0000\u0000\u0000s\u00a2\u0001\u0000\u0000\u0000tv\u0005"+
"\b\u0000\u0000ut\u0001\u0000\u0000\u0000uv\u0001\u0000\u0000\u0000v~\u0001"+
"\u0000\u0000\u0000wy\u0005\t\u0000\u0000xw\u0001\u0000\u0000\u0000y|\u0001"+
"\u0000\u0000\u0000zx\u0001\u0000\u0000\u0000z{\u0001\u0000\u0000\u0000"+
"{~\u0001\u0000\u0000\u0000|z\u0001\u0000\u0000\u0000}u\u0001\u0000\u0000"+
"\u0000}z\u0001\u0000\u0000\u0000~\u0080\u0001\u0000\u0000\u0000\u007f"+
"\u0081\u0007\u0000\u0000\u0000\u0080\u007f\u0001\u0000\u0000\u0000\u0081"+
"\u0082\u0001\u0000\u0000\u0000\u0082\u0080\u0001\u0000\u0000\u0000\u0082"+
"\u0083\u0001\u0000\u0000\u0000\u0083\u0093\u0001\u0000\u0000\u0000\u0084"+
"\u008b\u0005\b\u0000\u0000\u0085\u0087\u0005\t\u0000\u0000\u0086\u0085"+
"\u0001\u0000\u0000\u0000\u0087\u0088\u0001\u0000\u0000\u0000\u0088\u0086"+
"\u0001\u0000\u0000\u0000\u0088\u0089\u0001\u0000\u0000\u0000\u0089\u008b"+
"\u0001\u0000\u0000\u0000\u008a\u0084\u0001\u0000\u0000\u0000\u008a\u0086"+
"\u0001\u0000\u0000\u0000\u008b\u008d\u0001\u0000\u0000\u0000\u008c\u008e"+
"\u0007\u0000\u0000\u0000\u008d\u008c\u0001\u0000\u0000\u0000\u008e\u008f"+
"\u0001\u0000\u0000\u0000\u008f\u008d\u0001\u0000\u0000\u0000\u008f\u0090"+
"\u0001\u0000\u0000\u0000\u0090\u0092\u0001\u0000\u0000\u0000\u0091\u008a"+
"\u0001\u0000\u0000\u0000\u0092\u0095\u0001\u0000\u0000\u0000\u0093\u0091"+
"\u0001\u0000\u0000\u0000\u0093\u0094\u0001\u0000\u0000\u0000\u0094\u009f"+
"\u0001\u0000\u0000\u0000\u0095\u0093\u0001\u0000\u0000\u0000\u0096\u0098"+
"\u0005\b\u0000\u0000\u0097\u0096\u0001\u0000\u0000\u0000\u0097\u0098\u0001"+
"\u0000\u0000\u0000\u0098\u00a0\u0001\u0000\u0000\u0000\u0099\u009b\u0005"+
"\t\u0000\u0000\u009a\u0099\u0001\u0000\u0000\u0000\u009b\u009e\u0001\u0000"+
"\u0000\u0000\u009c\u009a\u0001\u0000\u0000\u0000\u009c\u009d\u0001\u0000"+
"\u0000\u0000\u009d\u00a0\u0001\u0000\u0000\u0000\u009e\u009c\u0001\u0000"+
"\u0000\u0000\u009f\u0097\u0001\u0000\u0000\u0000\u009f\u009c\u0001\u0000"+
"\u0000\u0000\u00a0\u00a2\u0001\u0000\u0000\u0000\u00a1n\u0001\u0000\u0000"+
"\u0000\u00a1p\u0001\u0000\u0000\u0000\u00a1}\u0001\u0000\u0000\u0000\u00a2"+
"\t\u0001\u0000\u0000\u0000!\r\u0014\u001d %-49=BFJMRY]adhlruz}\u0082\u0088"+
"\u008a\u008f\u0093\u0097\u009c\u009f\u00a1";
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);
}
}
}