asn_parser 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +12 -0
- data/Rakefile +30 -0
- data/asn_parser.gemspec +31 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +30 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +180 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +79 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +37 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +193 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +158 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +336 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +99 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +52 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +218 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +294 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +196 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +60 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +46 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +668 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +461 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +294 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +173 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +138 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +65 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +156 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +159 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +144 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +141 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +54 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +92 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +85 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +137 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +425 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +295 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +208 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +117 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Version.h +42 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +64 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +177 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +98 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +169 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +158 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +132 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +106 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +157 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +232 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +156 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +54 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +48 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +629 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +32 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +71 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +56 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +139 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.h +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +29 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +35 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +109 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +51 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +30 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +12 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +34 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +31 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +42 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +189 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +76 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +67 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +615 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +199 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +15 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +100 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +111 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +128 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +57 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +59 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +45 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +75 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +57 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +76 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +57 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +53 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +53 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +57 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +51 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +51 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +22 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +16 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1383 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +911 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +50 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +29 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +35 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +50 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +579 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +225 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +56 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +64 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +167 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +101 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +71 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextType.h +21 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +202 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +31 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +42 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +418 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +233 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContextType.h +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SerializedATNView.h +101 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +28 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +38 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +86 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +37 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +65 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.cpp +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.h +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +21 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +115 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +96 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +60 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +59 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +153 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +17 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +22 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +61 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +508 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +190 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +120 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +102 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +8 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +16 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +149 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +207 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +65 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Casts.h +34 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +161 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +38 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +16 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Unicode.h +28 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.cpp +242 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.h +54 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +129 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +54 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +43 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +66 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +12 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +111 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeType.h +22 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +48 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +55 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +40 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +54 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +32 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +370 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +182 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +47 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
- data/ext/asn_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
- data/ext/asn_parser/antlrgen/ASN.interp +366 -0
- data/ext/asn_parser/antlrgen/ASN.tokens +199 -0
- data/ext/asn_parser/antlrgen/ASNBaseListener.cpp +7 -0
- data/ext/asn_parser/antlrgen/ASNBaseListener.h +467 -0
- data/ext/asn_parser/antlrgen/ASNBaseVisitor.cpp +7 -0
- data/ext/asn_parser/antlrgen/ASNBaseVisitor.h +608 -0
- data/ext/asn_parser/antlrgen/ASNLexer.cpp +487 -0
- data/ext/asn_parser/antlrgen/ASNLexer.h +75 -0
- data/ext/asn_parser/antlrgen/ASNLexer.interp +337 -0
- data/ext/asn_parser/antlrgen/ASNLexer.tokens +199 -0
- data/ext/asn_parser/antlrgen/ASNListener.cpp +7 -0
- data/ext/asn_parser/antlrgen/ASNListener.h +460 -0
- data/ext/asn_parser/antlrgen/ASNParser.cpp +13779 -0
- data/ext/asn_parser/antlrgen/ASNParser.h +2861 -0
- data/ext/asn_parser/antlrgen/ASNVisitor.cpp +7 -0
- data/ext/asn_parser/antlrgen/ASNVisitor.h +318 -0
- data/ext/asn_parser/asn_parser.cpp +16222 -0
- data/ext/asn_parser/extconf.rb +38 -0
- data/lib/asn_parser/version.rb +3 -0
- data/lib/asn_parser.rb +2 -0
- metadata +379 -0
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated from ./ASN.g4 by ANTLR 4.10.1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
#include "ASNLexer.h"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
using namespace antlr4;
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
using namespace antlr4;
|
|
13
|
+
|
|
14
|
+
namespace {
|
|
15
|
+
|
|
16
|
+
struct ASNLexerStaticData final {
|
|
17
|
+
ASNLexerStaticData(std::vector<std::string> ruleNames,
|
|
18
|
+
std::vector<std::string> channelNames,
|
|
19
|
+
std::vector<std::string> modeNames,
|
|
20
|
+
std::vector<std::string> literalNames,
|
|
21
|
+
std::vector<std::string> symbolicNames)
|
|
22
|
+
: ruleNames(std::move(ruleNames)), channelNames(std::move(channelNames)),
|
|
23
|
+
modeNames(std::move(modeNames)), literalNames(std::move(literalNames)),
|
|
24
|
+
symbolicNames(std::move(symbolicNames)),
|
|
25
|
+
vocabulary(this->literalNames, this->symbolicNames) {}
|
|
26
|
+
|
|
27
|
+
ASNLexerStaticData(const ASNLexerStaticData&) = delete;
|
|
28
|
+
ASNLexerStaticData(ASNLexerStaticData&&) = delete;
|
|
29
|
+
ASNLexerStaticData& operator=(const ASNLexerStaticData&) = delete;
|
|
30
|
+
ASNLexerStaticData& operator=(ASNLexerStaticData&&) = delete;
|
|
31
|
+
|
|
32
|
+
std::vector<antlr4::dfa::DFA> decisionToDFA;
|
|
33
|
+
antlr4::atn::PredictionContextCache sharedContextCache;
|
|
34
|
+
const std::vector<std::string> ruleNames;
|
|
35
|
+
const std::vector<std::string> channelNames;
|
|
36
|
+
const std::vector<std::string> modeNames;
|
|
37
|
+
const std::vector<std::string> literalNames;
|
|
38
|
+
const std::vector<std::string> symbolicNames;
|
|
39
|
+
const antlr4::dfa::Vocabulary vocabulary;
|
|
40
|
+
antlr4::atn::SerializedATNView serializedATN;
|
|
41
|
+
std::unique_ptr<antlr4::atn::ATN> atn;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
std::once_flag asnlexerLexerOnceFlag;
|
|
45
|
+
ASNLexerStaticData *asnlexerLexerStaticData = nullptr;
|
|
46
|
+
|
|
47
|
+
void asnlexerLexerInitialize() {
|
|
48
|
+
assert(asnlexerLexerStaticData == nullptr);
|
|
49
|
+
auto staticData = std::make_unique<ASNLexerStaticData>(
|
|
50
|
+
std::vector<std::string>{
|
|
51
|
+
"A_ROND", "STAR", "ASSIGN_OP", "BOOLEAN_LITERAL", "TRUE_LITERAL",
|
|
52
|
+
"FALSE_LITERAL", "DOT", "DOUBLE_DOT", "ELLIPSIS", "APOSTROPHE", "AMPERSAND",
|
|
53
|
+
"LESS_THAN", "GREATER_THAN", "LESS_THAN_SLASH", "SLASH_GREATER_THAN",
|
|
54
|
+
"TRUE_SMALL_LITERAL", "FALSE_SMALL_LITERAL", "INTEGER_LITERAL", "L_BRACE",
|
|
55
|
+
"R_BRACE", "COMMA", "L_PARAN", "R_PARAN", "MINUS", "ENUMERATED_LITERAL",
|
|
56
|
+
"REAL_LITERAL", "PLUS_INFINITY_LITERAL", "MINUS_INFINITY_LITERAL",
|
|
57
|
+
"BIT_LITERAL", "STRING_LITERAL", "CONTAINING_LITERAL", "OCTET_LITERAL",
|
|
58
|
+
"NULL_LITERAL", "SEQUENCE_LITERAL", "OPTIONAL_LITERAL", "DEFAULT_LITERAL",
|
|
59
|
+
"COMPONENTS_LITERAL", "OF_LITERAL", "SET_LITERAL", "EXCLAM", "ALL_LITERAL",
|
|
60
|
+
"EXCEPT_LITERAL", "POWER", "PIPE", "UNION_LITERAL", "INTERSECTION_LITERAL",
|
|
61
|
+
"INCLUDES_LITERAL", "MIN_LITERAL", "MAX_LITERAL", "SIZE_LITERAL",
|
|
62
|
+
"FROM_LITERAL", "WITH_LITERAL", "COMPONENT_LITERAL", "PRESENT_LITERAL",
|
|
63
|
+
"ABSENT_LITERAL", "PATTERN_LITERAL", "TYPE_IDENTIFIER_LITERAL", "ABSTRACT_SYNTAX_LITERAL",
|
|
64
|
+
"CLASS_LITERAL", "UNIQUE_LITERAL", "SYNTAX_LITERAL", "L_BRACKET",
|
|
65
|
+
"R_BRACKET", "INSTANCE_LITERAL", "SEMI_COLON", "IMPORTS_LITERAL",
|
|
66
|
+
"EXPORTS_LITERAL", "EXTENSIBILITY_LITERAL", "IMPLIED_LITERAL", "EXPLICIT_LITERAL",
|
|
67
|
+
"TAGS_LITERAL", "IMPLICIT_LITERAL", "AUTOMATIC_LITERAL", "DEFINITIONS_LITERAL",
|
|
68
|
+
"BEGIN_LITERAL", "END_LITERAL", "DOUBLE_L_BRACKET", "DOUBLE_R_BRACKET",
|
|
69
|
+
"COLON", "CHOICE_LITERAL", "UNIVERSAL_LITERAL", "APPLICATION_LITERAL",
|
|
70
|
+
"PRIVATE_LITERAL", "EMBEDDED_LITERAL", "PDV_LITERAL", "EXTERNAL_LITERAL",
|
|
71
|
+
"OBJECT_LITERAL", "IDENTIFIER_LITERAL", "RELATIVE_OID_LITERAL", "CHARACTER_LITERAL",
|
|
72
|
+
"CONSTRAINED_LITERAL", "BY_LITERAL", "A_ROND_DOT", "ENCODED_LITERAL",
|
|
73
|
+
"COMMENT", "UNRESTRICTEDCHARACTERSTRINGTYPE", "EXTENSTIONENDMARKER",
|
|
74
|
+
"DIGIT", "UPPER", "LOWER", "NUMBER", "WS", "Exponent", "LINE_COMMENT",
|
|
75
|
+
"BSTRING", "HEXDIGIT", "HSTRING", "CSTRING", "EscapeSequence", "LETTER",
|
|
76
|
+
"JavaIDDigit", "IDENTIFIER"
|
|
77
|
+
},
|
|
78
|
+
std::vector<std::string>{
|
|
79
|
+
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
|
80
|
+
},
|
|
81
|
+
std::vector<std::string>{
|
|
82
|
+
"DEFAULT_MODE"
|
|
83
|
+
},
|
|
84
|
+
std::vector<std::string>{
|
|
85
|
+
"", "'@'", "'*'", "'::='", "'BOOLEAN'", "'TRUE'", "'FALSE'", "'.'",
|
|
86
|
+
"'..'", "'...'", "'''", "'&'", "'<'", "'>'", "'</'", "'/>'", "'true'",
|
|
87
|
+
"'false'", "'INTEGER'", "'{'", "'}'", "','", "'('", "')'", "'-'",
|
|
88
|
+
"'ENUMERATED'", "'REAL'", "'PLUS-INFINITY'", "'MINUS-INFINITY'", "'BIT'",
|
|
89
|
+
"'STRING'", "'CONTAINING'", "'OCTET'", "'NULL'", "'SEQUENCE'", "'OPTIONAL'",
|
|
90
|
+
"'DEFAULT'", "'COMPONENTS'", "'OF'", "'SET'", "'!'", "'ALL'", "'EXCEPT'",
|
|
91
|
+
"'^'", "'|'", "'UNION'", "'INTERSECTION'", "'INCLUDES'", "'MIN'",
|
|
92
|
+
"'MAX'", "'SIZE'", "'FROM'", "'WITH'", "'COMPONENT'", "'PRESENT'",
|
|
93
|
+
"'ABSENT'", "'PATTERN'", "'TYPE-Identifier'", "'ABSTRACT-SYNTAX'",
|
|
94
|
+
"'CLASS'", "'UNIQUE'", "'SYNTAX'", "'['", "']'", "'INSTANCE'", "';'",
|
|
95
|
+
"'IMPORTS'", "'EXPORTS'", "'EXTENSIBILITY'", "'IMPLIED'", "'EXPLICIT'",
|
|
96
|
+
"'TAGS'", "'IMPLICIT'", "'AUTOMATIC'", "'DEFINITIONS'", "'BEGIN'",
|
|
97
|
+
"'END'", "'[['", "']]'", "':'", "'CHOICE'", "'UNIVERSAL'", "'APPLICATION'",
|
|
98
|
+
"'PRIVATE'", "'EMBEDDED'", "'PDV'", "'EXTERNAL'", "'OBJECT'", "'IDENTIFIER'",
|
|
99
|
+
"'RELATIVE-OID'", "'CHARACTER'", "'CONSTRAINED'", "'BY'", "'@.'",
|
|
100
|
+
"'ENCODED'", "'--'"
|
|
101
|
+
},
|
|
102
|
+
std::vector<std::string>{
|
|
103
|
+
"", "A_ROND", "STAR", "ASSIGN_OP", "BOOLEAN_LITERAL", "TRUE_LITERAL",
|
|
104
|
+
"FALSE_LITERAL", "DOT", "DOUBLE_DOT", "ELLIPSIS", "APOSTROPHE", "AMPERSAND",
|
|
105
|
+
"LESS_THAN", "GREATER_THAN", "LESS_THAN_SLASH", "SLASH_GREATER_THAN",
|
|
106
|
+
"TRUE_SMALL_LITERAL", "FALSE_SMALL_LITERAL", "INTEGER_LITERAL", "L_BRACE",
|
|
107
|
+
"R_BRACE", "COMMA", "L_PARAN", "R_PARAN", "MINUS", "ENUMERATED_LITERAL",
|
|
108
|
+
"REAL_LITERAL", "PLUS_INFINITY_LITERAL", "MINUS_INFINITY_LITERAL",
|
|
109
|
+
"BIT_LITERAL", "STRING_LITERAL", "CONTAINING_LITERAL", "OCTET_LITERAL",
|
|
110
|
+
"NULL_LITERAL", "SEQUENCE_LITERAL", "OPTIONAL_LITERAL", "DEFAULT_LITERAL",
|
|
111
|
+
"COMPONENTS_LITERAL", "OF_LITERAL", "SET_LITERAL", "EXCLAM", "ALL_LITERAL",
|
|
112
|
+
"EXCEPT_LITERAL", "POWER", "PIPE", "UNION_LITERAL", "INTERSECTION_LITERAL",
|
|
113
|
+
"INCLUDES_LITERAL", "MIN_LITERAL", "MAX_LITERAL", "SIZE_LITERAL",
|
|
114
|
+
"FROM_LITERAL", "WITH_LITERAL", "COMPONENT_LITERAL", "PRESENT_LITERAL",
|
|
115
|
+
"ABSENT_LITERAL", "PATTERN_LITERAL", "TYPE_IDENTIFIER_LITERAL", "ABSTRACT_SYNTAX_LITERAL",
|
|
116
|
+
"CLASS_LITERAL", "UNIQUE_LITERAL", "SYNTAX_LITERAL", "L_BRACKET",
|
|
117
|
+
"R_BRACKET", "INSTANCE_LITERAL", "SEMI_COLON", "IMPORTS_LITERAL",
|
|
118
|
+
"EXPORTS_LITERAL", "EXTENSIBILITY_LITERAL", "IMPLIED_LITERAL", "EXPLICIT_LITERAL",
|
|
119
|
+
"TAGS_LITERAL", "IMPLICIT_LITERAL", "AUTOMATIC_LITERAL", "DEFINITIONS_LITERAL",
|
|
120
|
+
"BEGIN_LITERAL", "END_LITERAL", "DOUBLE_L_BRACKET", "DOUBLE_R_BRACKET",
|
|
121
|
+
"COLON", "CHOICE_LITERAL", "UNIVERSAL_LITERAL", "APPLICATION_LITERAL",
|
|
122
|
+
"PRIVATE_LITERAL", "EMBEDDED_LITERAL", "PDV_LITERAL", "EXTERNAL_LITERAL",
|
|
123
|
+
"OBJECT_LITERAL", "IDENTIFIER_LITERAL", "RELATIVE_OID_LITERAL", "CHARACTER_LITERAL",
|
|
124
|
+
"CONSTRAINED_LITERAL", "BY_LITERAL", "A_ROND_DOT", "ENCODED_LITERAL",
|
|
125
|
+
"COMMENT", "UNRESTRICTEDCHARACTERSTRINGTYPE", "EXTENSTIONENDMARKER",
|
|
126
|
+
"NUMBER", "WS", "LINE_COMMENT", "BSTRING", "HSTRING", "CSTRING", "IDENTIFIER"
|
|
127
|
+
}
|
|
128
|
+
);
|
|
129
|
+
static const int32_t serializedATNSegment[] = {
|
|
130
|
+
4,0,104,921,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6,
|
|
131
|
+
7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7,13,2,
|
|
132
|
+
14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2,20,7,20,2,
|
|
133
|
+
21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7,26,2,27,7,27,2,
|
|
134
|
+
28,7,28,2,29,7,29,2,30,7,30,2,31,7,31,2,32,7,32,2,33,7,33,2,34,7,34,2,
|
|
135
|
+
35,7,35,2,36,7,36,2,37,7,37,2,38,7,38,2,39,7,39,2,40,7,40,2,41,7,41,2,
|
|
136
|
+
42,7,42,2,43,7,43,2,44,7,44,2,45,7,45,2,46,7,46,2,47,7,47,2,48,7,48,2,
|
|
137
|
+
49,7,49,2,50,7,50,2,51,7,51,2,52,7,52,2,53,7,53,2,54,7,54,2,55,7,55,2,
|
|
138
|
+
56,7,56,2,57,7,57,2,58,7,58,2,59,7,59,2,60,7,60,2,61,7,61,2,62,7,62,2,
|
|
139
|
+
63,7,63,2,64,7,64,2,65,7,65,2,66,7,66,2,67,7,67,2,68,7,68,2,69,7,69,2,
|
|
140
|
+
70,7,70,2,71,7,71,2,72,7,72,2,73,7,73,2,74,7,74,2,75,7,75,2,76,7,76,2,
|
|
141
|
+
77,7,77,2,78,7,78,2,79,7,79,2,80,7,80,2,81,7,81,2,82,7,82,2,83,7,83,2,
|
|
142
|
+
84,7,84,2,85,7,85,2,86,7,86,2,87,7,87,2,88,7,88,2,89,7,89,2,90,7,90,2,
|
|
143
|
+
91,7,91,2,92,7,92,2,93,7,93,2,94,7,94,2,95,7,95,2,96,7,96,2,97,7,97,2,
|
|
144
|
+
98,7,98,2,99,7,99,2,100,7,100,2,101,7,101,2,102,7,102,2,103,7,103,2,104,
|
|
145
|
+
7,104,2,105,7,105,2,106,7,106,2,107,7,107,2,108,7,108,2,109,7,109,2,110,
|
|
146
|
+
7,110,2,111,7,111,1,0,1,0,1,1,1,1,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,
|
|
147
|
+
1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,7,1,
|
|
148
|
+
7,1,7,1,8,1,8,1,8,1,8,1,9,1,9,1,10,1,10,1,11,1,11,1,12,1,12,1,13,1,13,
|
|
149
|
+
1,13,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,
|
|
150
|
+
1,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,19,1,19,1,20,
|
|
151
|
+
1,20,1,21,1,21,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,
|
|
152
|
+
1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,
|
|
153
|
+
1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,
|
|
154
|
+
1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,
|
|
155
|
+
1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,
|
|
156
|
+
1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,
|
|
157
|
+
1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,
|
|
158
|
+
1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,36,
|
|
159
|
+
1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,38,
|
|
160
|
+
1,38,1,38,1,38,1,39,1,39,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,
|
|
161
|
+
1,41,1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45,
|
|
162
|
+
1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,
|
|
163
|
+
1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,
|
|
164
|
+
1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,
|
|
165
|
+
1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,
|
|
166
|
+
1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,
|
|
167
|
+
1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,
|
|
168
|
+
1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,57,
|
|
169
|
+
1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,
|
|
170
|
+
1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,
|
|
171
|
+
1,60,1,60,1,61,1,61,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,
|
|
172
|
+
1,63,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,
|
|
173
|
+
1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,
|
|
174
|
+
1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,69,
|
|
175
|
+
1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,71,
|
|
176
|
+
1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,
|
|
177
|
+
1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,
|
|
178
|
+
1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,76,1,76,
|
|
179
|
+
1,76,1,77,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,
|
|
180
|
+
1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,
|
|
181
|
+
1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,
|
|
182
|
+
1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,
|
|
183
|
+
1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,
|
|
184
|
+
1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,88,
|
|
185
|
+
1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,
|
|
186
|
+
1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,
|
|
187
|
+
1,90,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,92,1,92,1,92,1,93,1,93,
|
|
188
|
+
1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96,
|
|
189
|
+
1,96,1,97,1,97,1,98,1,98,1,99,1,99,1,100,4,100,840,8,100,11,100,12,100,
|
|
190
|
+
841,1,101,1,101,1,101,1,101,1,102,1,102,3,102,850,8,102,1,102,1,102,1,
|
|
191
|
+
103,1,103,1,103,1,103,5,103,858,8,103,10,103,12,103,861,9,103,1,103,3,
|
|
192
|
+
103,864,8,103,1,103,1,103,1,103,1,103,1,104,1,104,5,104,872,8,104,10,
|
|
193
|
+
104,12,104,875,9,104,1,104,1,104,1,104,1,105,1,105,3,105,882,8,105,1,
|
|
194
|
+
106,1,106,5,106,886,8,106,10,106,12,106,889,9,106,1,106,1,106,1,106,1,
|
|
195
|
+
107,1,107,1,107,5,107,897,8,107,10,107,12,107,900,9,107,1,107,1,107,1,
|
|
196
|
+
108,1,108,1,108,1,108,3,108,908,8,108,1,109,1,109,1,110,1,110,1,111,1,
|
|
197
|
+
111,1,111,5,111,917,8,111,10,111,12,111,920,9,111,0,0,112,1,1,3,2,5,3,
|
|
198
|
+
7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,
|
|
199
|
+
33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55,
|
|
200
|
+
28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38,77,39,
|
|
201
|
+
79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49,99,50,101,
|
|
202
|
+
51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117,59,119,60,121,
|
|
203
|
+
61,123,62,125,63,127,64,129,65,131,66,133,67,135,68,137,69,139,70,141,
|
|
204
|
+
71,143,72,145,73,147,74,149,75,151,76,153,77,155,78,157,79,159,80,161,
|
|
205
|
+
81,163,82,165,83,167,84,169,85,171,86,173,87,175,88,177,89,179,90,181,
|
|
206
|
+
91,183,92,185,93,187,94,189,95,191,96,193,97,195,0,197,0,199,0,201,98,
|
|
207
|
+
203,99,205,0,207,100,209,101,211,0,213,102,215,103,217,0,219,0,221,0,
|
|
208
|
+
223,104,1,0,9,3,0,9,10,12,13,32,32,2,0,69,69,101,101,2,0,43,43,45,45,
|
|
209
|
+
2,0,10,10,13,13,2,0,65,70,97,102,2,0,34,34,92,92,6,0,34,34,98,98,102,
|
|
210
|
+
102,110,110,114,114,116,116,13,0,36,36,45,45,65,90,95,95,97,122,192,214,
|
|
211
|
+
216,246,248,8191,12352,12687,13056,13183,13312,15661,19968,40959,63744,
|
|
212
|
+
64255,15,0,48,57,1632,1641,1776,1785,2406,2415,2534,2543,2662,2671,2790,
|
|
213
|
+
2799,2918,2927,3047,3055,3174,3183,3302,3311,3430,3439,3664,3673,3792,
|
|
214
|
+
3801,4160,4169,925,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,
|
|
215
|
+
9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,
|
|
216
|
+
0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,
|
|
217
|
+
0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,
|
|
218
|
+
41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,
|
|
219
|
+
0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,
|
|
220
|
+
0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,
|
|
221
|
+
73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,
|
|
222
|
+
0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,
|
|
223
|
+
0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,
|
|
224
|
+
0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,
|
|
225
|
+
0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,
|
|
226
|
+
0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,
|
|
227
|
+
0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,
|
|
228
|
+
0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,
|
|
229
|
+
0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,
|
|
230
|
+
0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,
|
|
231
|
+
0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,
|
|
232
|
+
0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,
|
|
233
|
+
0,201,1,0,0,0,0,203,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,213,1,0,0,0,
|
|
234
|
+
0,215,1,0,0,0,0,223,1,0,0,0,1,225,1,0,0,0,3,227,1,0,0,0,5,229,1,0,0,0,
|
|
235
|
+
7,233,1,0,0,0,9,241,1,0,0,0,11,246,1,0,0,0,13,252,1,0,0,0,15,254,1,0,
|
|
236
|
+
0,0,17,257,1,0,0,0,19,261,1,0,0,0,21,263,1,0,0,0,23,265,1,0,0,0,25,267,
|
|
237
|
+
1,0,0,0,27,269,1,0,0,0,29,272,1,0,0,0,31,275,1,0,0,0,33,280,1,0,0,0,35,
|
|
238
|
+
286,1,0,0,0,37,294,1,0,0,0,39,296,1,0,0,0,41,298,1,0,0,0,43,300,1,0,0,
|
|
239
|
+
0,45,302,1,0,0,0,47,304,1,0,0,0,49,306,1,0,0,0,51,317,1,0,0,0,53,322,
|
|
240
|
+
1,0,0,0,55,336,1,0,0,0,57,351,1,0,0,0,59,355,1,0,0,0,61,362,1,0,0,0,63,
|
|
241
|
+
373,1,0,0,0,65,379,1,0,0,0,67,384,1,0,0,0,69,393,1,0,0,0,71,402,1,0,0,
|
|
242
|
+
0,73,410,1,0,0,0,75,421,1,0,0,0,77,424,1,0,0,0,79,428,1,0,0,0,81,430,
|
|
243
|
+
1,0,0,0,83,434,1,0,0,0,85,441,1,0,0,0,87,443,1,0,0,0,89,445,1,0,0,0,91,
|
|
244
|
+
451,1,0,0,0,93,464,1,0,0,0,95,473,1,0,0,0,97,477,1,0,0,0,99,481,1,0,0,
|
|
245
|
+
0,101,486,1,0,0,0,103,491,1,0,0,0,105,496,1,0,0,0,107,506,1,0,0,0,109,
|
|
246
|
+
514,1,0,0,0,111,521,1,0,0,0,113,529,1,0,0,0,115,545,1,0,0,0,117,561,1,
|
|
247
|
+
0,0,0,119,567,1,0,0,0,121,574,1,0,0,0,123,581,1,0,0,0,125,583,1,0,0,0,
|
|
248
|
+
127,585,1,0,0,0,129,594,1,0,0,0,131,596,1,0,0,0,133,604,1,0,0,0,135,612,
|
|
249
|
+
1,0,0,0,137,626,1,0,0,0,139,634,1,0,0,0,141,643,1,0,0,0,143,648,1,0,0,
|
|
250
|
+
0,145,657,1,0,0,0,147,667,1,0,0,0,149,679,1,0,0,0,151,685,1,0,0,0,153,
|
|
251
|
+
689,1,0,0,0,155,692,1,0,0,0,157,695,1,0,0,0,159,697,1,0,0,0,161,704,1,
|
|
252
|
+
0,0,0,163,714,1,0,0,0,165,726,1,0,0,0,167,734,1,0,0,0,169,743,1,0,0,0,
|
|
253
|
+
171,747,1,0,0,0,173,756,1,0,0,0,175,763,1,0,0,0,177,774,1,0,0,0,179,787,
|
|
254
|
+
1,0,0,0,181,797,1,0,0,0,183,809,1,0,0,0,185,812,1,0,0,0,187,815,1,0,0,
|
|
255
|
+
0,189,823,1,0,0,0,191,826,1,0,0,0,193,829,1,0,0,0,195,832,1,0,0,0,197,
|
|
256
|
+
834,1,0,0,0,199,836,1,0,0,0,201,839,1,0,0,0,203,843,1,0,0,0,205,847,1,
|
|
257
|
+
0,0,0,207,853,1,0,0,0,209,869,1,0,0,0,211,881,1,0,0,0,213,883,1,0,0,0,
|
|
258
|
+
215,893,1,0,0,0,217,903,1,0,0,0,219,909,1,0,0,0,221,911,1,0,0,0,223,913,
|
|
259
|
+
1,0,0,0,225,226,5,64,0,0,226,2,1,0,0,0,227,228,5,42,0,0,228,4,1,0,0,0,
|
|
260
|
+
229,230,5,58,0,0,230,231,5,58,0,0,231,232,5,61,0,0,232,6,1,0,0,0,233,
|
|
261
|
+
234,5,66,0,0,234,235,5,79,0,0,235,236,5,79,0,0,236,237,5,76,0,0,237,238,
|
|
262
|
+
5,69,0,0,238,239,5,65,0,0,239,240,5,78,0,0,240,8,1,0,0,0,241,242,5,84,
|
|
263
|
+
0,0,242,243,5,82,0,0,243,244,5,85,0,0,244,245,5,69,0,0,245,10,1,0,0,0,
|
|
264
|
+
246,247,5,70,0,0,247,248,5,65,0,0,248,249,5,76,0,0,249,250,5,83,0,0,250,
|
|
265
|
+
251,5,69,0,0,251,12,1,0,0,0,252,253,5,46,0,0,253,14,1,0,0,0,254,255,5,
|
|
266
|
+
46,0,0,255,256,5,46,0,0,256,16,1,0,0,0,257,258,5,46,0,0,258,259,5,46,
|
|
267
|
+
0,0,259,260,5,46,0,0,260,18,1,0,0,0,261,262,5,39,0,0,262,20,1,0,0,0,263,
|
|
268
|
+
264,5,38,0,0,264,22,1,0,0,0,265,266,5,60,0,0,266,24,1,0,0,0,267,268,5,
|
|
269
|
+
62,0,0,268,26,1,0,0,0,269,270,5,60,0,0,270,271,5,47,0,0,271,28,1,0,0,
|
|
270
|
+
0,272,273,5,47,0,0,273,274,5,62,0,0,274,30,1,0,0,0,275,276,5,116,0,0,
|
|
271
|
+
276,277,5,114,0,0,277,278,5,117,0,0,278,279,5,101,0,0,279,32,1,0,0,0,
|
|
272
|
+
280,281,5,102,0,0,281,282,5,97,0,0,282,283,5,108,0,0,283,284,5,115,0,
|
|
273
|
+
0,284,285,5,101,0,0,285,34,1,0,0,0,286,287,5,73,0,0,287,288,5,78,0,0,
|
|
274
|
+
288,289,5,84,0,0,289,290,5,69,0,0,290,291,5,71,0,0,291,292,5,69,0,0,292,
|
|
275
|
+
293,5,82,0,0,293,36,1,0,0,0,294,295,5,123,0,0,295,38,1,0,0,0,296,297,
|
|
276
|
+
5,125,0,0,297,40,1,0,0,0,298,299,5,44,0,0,299,42,1,0,0,0,300,301,5,40,
|
|
277
|
+
0,0,301,44,1,0,0,0,302,303,5,41,0,0,303,46,1,0,0,0,304,305,5,45,0,0,305,
|
|
278
|
+
48,1,0,0,0,306,307,5,69,0,0,307,308,5,78,0,0,308,309,5,85,0,0,309,310,
|
|
279
|
+
5,77,0,0,310,311,5,69,0,0,311,312,5,82,0,0,312,313,5,65,0,0,313,314,5,
|
|
280
|
+
84,0,0,314,315,5,69,0,0,315,316,5,68,0,0,316,50,1,0,0,0,317,318,5,82,
|
|
281
|
+
0,0,318,319,5,69,0,0,319,320,5,65,0,0,320,321,5,76,0,0,321,52,1,0,0,0,
|
|
282
|
+
322,323,5,80,0,0,323,324,5,76,0,0,324,325,5,85,0,0,325,326,5,83,0,0,326,
|
|
283
|
+
327,5,45,0,0,327,328,5,73,0,0,328,329,5,78,0,0,329,330,5,70,0,0,330,331,
|
|
284
|
+
5,73,0,0,331,332,5,78,0,0,332,333,5,73,0,0,333,334,5,84,0,0,334,335,5,
|
|
285
|
+
89,0,0,335,54,1,0,0,0,336,337,5,77,0,0,337,338,5,73,0,0,338,339,5,78,
|
|
286
|
+
0,0,339,340,5,85,0,0,340,341,5,83,0,0,341,342,5,45,0,0,342,343,5,73,0,
|
|
287
|
+
0,343,344,5,78,0,0,344,345,5,70,0,0,345,346,5,73,0,0,346,347,5,78,0,0,
|
|
288
|
+
347,348,5,73,0,0,348,349,5,84,0,0,349,350,5,89,0,0,350,56,1,0,0,0,351,
|
|
289
|
+
352,5,66,0,0,352,353,5,73,0,0,353,354,5,84,0,0,354,58,1,0,0,0,355,356,
|
|
290
|
+
5,83,0,0,356,357,5,84,0,0,357,358,5,82,0,0,358,359,5,73,0,0,359,360,5,
|
|
291
|
+
78,0,0,360,361,5,71,0,0,361,60,1,0,0,0,362,363,5,67,0,0,363,364,5,79,
|
|
292
|
+
0,0,364,365,5,78,0,0,365,366,5,84,0,0,366,367,5,65,0,0,367,368,5,73,0,
|
|
293
|
+
0,368,369,5,78,0,0,369,370,5,73,0,0,370,371,5,78,0,0,371,372,5,71,0,0,
|
|
294
|
+
372,62,1,0,0,0,373,374,5,79,0,0,374,375,5,67,0,0,375,376,5,84,0,0,376,
|
|
295
|
+
377,5,69,0,0,377,378,5,84,0,0,378,64,1,0,0,0,379,380,5,78,0,0,380,381,
|
|
296
|
+
5,85,0,0,381,382,5,76,0,0,382,383,5,76,0,0,383,66,1,0,0,0,384,385,5,83,
|
|
297
|
+
0,0,385,386,5,69,0,0,386,387,5,81,0,0,387,388,5,85,0,0,388,389,5,69,0,
|
|
298
|
+
0,389,390,5,78,0,0,390,391,5,67,0,0,391,392,5,69,0,0,392,68,1,0,0,0,393,
|
|
299
|
+
394,5,79,0,0,394,395,5,80,0,0,395,396,5,84,0,0,396,397,5,73,0,0,397,398,
|
|
300
|
+
5,79,0,0,398,399,5,78,0,0,399,400,5,65,0,0,400,401,5,76,0,0,401,70,1,
|
|
301
|
+
0,0,0,402,403,5,68,0,0,403,404,5,69,0,0,404,405,5,70,0,0,405,406,5,65,
|
|
302
|
+
0,0,406,407,5,85,0,0,407,408,5,76,0,0,408,409,5,84,0,0,409,72,1,0,0,0,
|
|
303
|
+
410,411,5,67,0,0,411,412,5,79,0,0,412,413,5,77,0,0,413,414,5,80,0,0,414,
|
|
304
|
+
415,5,79,0,0,415,416,5,78,0,0,416,417,5,69,0,0,417,418,5,78,0,0,418,419,
|
|
305
|
+
5,84,0,0,419,420,5,83,0,0,420,74,1,0,0,0,421,422,5,79,0,0,422,423,5,70,
|
|
306
|
+
0,0,423,76,1,0,0,0,424,425,5,83,0,0,425,426,5,69,0,0,426,427,5,84,0,0,
|
|
307
|
+
427,78,1,0,0,0,428,429,5,33,0,0,429,80,1,0,0,0,430,431,5,65,0,0,431,432,
|
|
308
|
+
5,76,0,0,432,433,5,76,0,0,433,82,1,0,0,0,434,435,5,69,0,0,435,436,5,88,
|
|
309
|
+
0,0,436,437,5,67,0,0,437,438,5,69,0,0,438,439,5,80,0,0,439,440,5,84,0,
|
|
310
|
+
0,440,84,1,0,0,0,441,442,5,94,0,0,442,86,1,0,0,0,443,444,5,124,0,0,444,
|
|
311
|
+
88,1,0,0,0,445,446,5,85,0,0,446,447,5,78,0,0,447,448,5,73,0,0,448,449,
|
|
312
|
+
5,79,0,0,449,450,5,78,0,0,450,90,1,0,0,0,451,452,5,73,0,0,452,453,5,78,
|
|
313
|
+
0,0,453,454,5,84,0,0,454,455,5,69,0,0,455,456,5,82,0,0,456,457,5,83,0,
|
|
314
|
+
0,457,458,5,69,0,0,458,459,5,67,0,0,459,460,5,84,0,0,460,461,5,73,0,0,
|
|
315
|
+
461,462,5,79,0,0,462,463,5,78,0,0,463,92,1,0,0,0,464,465,5,73,0,0,465,
|
|
316
|
+
466,5,78,0,0,466,467,5,67,0,0,467,468,5,76,0,0,468,469,5,85,0,0,469,470,
|
|
317
|
+
5,68,0,0,470,471,5,69,0,0,471,472,5,83,0,0,472,94,1,0,0,0,473,474,5,77,
|
|
318
|
+
0,0,474,475,5,73,0,0,475,476,5,78,0,0,476,96,1,0,0,0,477,478,5,77,0,0,
|
|
319
|
+
478,479,5,65,0,0,479,480,5,88,0,0,480,98,1,0,0,0,481,482,5,83,0,0,482,
|
|
320
|
+
483,5,73,0,0,483,484,5,90,0,0,484,485,5,69,0,0,485,100,1,0,0,0,486,487,
|
|
321
|
+
5,70,0,0,487,488,5,82,0,0,488,489,5,79,0,0,489,490,5,77,0,0,490,102,1,
|
|
322
|
+
0,0,0,491,492,5,87,0,0,492,493,5,73,0,0,493,494,5,84,0,0,494,495,5,72,
|
|
323
|
+
0,0,495,104,1,0,0,0,496,497,5,67,0,0,497,498,5,79,0,0,498,499,5,77,0,
|
|
324
|
+
0,499,500,5,80,0,0,500,501,5,79,0,0,501,502,5,78,0,0,502,503,5,69,0,0,
|
|
325
|
+
503,504,5,78,0,0,504,505,5,84,0,0,505,106,1,0,0,0,506,507,5,80,0,0,507,
|
|
326
|
+
508,5,82,0,0,508,509,5,69,0,0,509,510,5,83,0,0,510,511,5,69,0,0,511,512,
|
|
327
|
+
5,78,0,0,512,513,5,84,0,0,513,108,1,0,0,0,514,515,5,65,0,0,515,516,5,
|
|
328
|
+
66,0,0,516,517,5,83,0,0,517,518,5,69,0,0,518,519,5,78,0,0,519,520,5,84,
|
|
329
|
+
0,0,520,110,1,0,0,0,521,522,5,80,0,0,522,523,5,65,0,0,523,524,5,84,0,
|
|
330
|
+
0,524,525,5,84,0,0,525,526,5,69,0,0,526,527,5,82,0,0,527,528,5,78,0,0,
|
|
331
|
+
528,112,1,0,0,0,529,530,5,84,0,0,530,531,5,89,0,0,531,532,5,80,0,0,532,
|
|
332
|
+
533,5,69,0,0,533,534,5,45,0,0,534,535,5,73,0,0,535,536,5,100,0,0,536,
|
|
333
|
+
537,5,101,0,0,537,538,5,110,0,0,538,539,5,116,0,0,539,540,5,105,0,0,540,
|
|
334
|
+
541,5,102,0,0,541,542,5,105,0,0,542,543,5,101,0,0,543,544,5,114,0,0,544,
|
|
335
|
+
114,1,0,0,0,545,546,5,65,0,0,546,547,5,66,0,0,547,548,5,83,0,0,548,549,
|
|
336
|
+
5,84,0,0,549,550,5,82,0,0,550,551,5,65,0,0,551,552,5,67,0,0,552,553,5,
|
|
337
|
+
84,0,0,553,554,5,45,0,0,554,555,5,83,0,0,555,556,5,89,0,0,556,557,5,78,
|
|
338
|
+
0,0,557,558,5,84,0,0,558,559,5,65,0,0,559,560,5,88,0,0,560,116,1,0,0,
|
|
339
|
+
0,561,562,5,67,0,0,562,563,5,76,0,0,563,564,5,65,0,0,564,565,5,83,0,0,
|
|
340
|
+
565,566,5,83,0,0,566,118,1,0,0,0,567,568,5,85,0,0,568,569,5,78,0,0,569,
|
|
341
|
+
570,5,73,0,0,570,571,5,81,0,0,571,572,5,85,0,0,572,573,5,69,0,0,573,120,
|
|
342
|
+
1,0,0,0,574,575,5,83,0,0,575,576,5,89,0,0,576,577,5,78,0,0,577,578,5,
|
|
343
|
+
84,0,0,578,579,5,65,0,0,579,580,5,88,0,0,580,122,1,0,0,0,581,582,5,91,
|
|
344
|
+
0,0,582,124,1,0,0,0,583,584,5,93,0,0,584,126,1,0,0,0,585,586,5,73,0,0,
|
|
345
|
+
586,587,5,78,0,0,587,588,5,83,0,0,588,589,5,84,0,0,589,590,5,65,0,0,590,
|
|
346
|
+
591,5,78,0,0,591,592,5,67,0,0,592,593,5,69,0,0,593,128,1,0,0,0,594,595,
|
|
347
|
+
5,59,0,0,595,130,1,0,0,0,596,597,5,73,0,0,597,598,5,77,0,0,598,599,5,
|
|
348
|
+
80,0,0,599,600,5,79,0,0,600,601,5,82,0,0,601,602,5,84,0,0,602,603,5,83,
|
|
349
|
+
0,0,603,132,1,0,0,0,604,605,5,69,0,0,605,606,5,88,0,0,606,607,5,80,0,
|
|
350
|
+
0,607,608,5,79,0,0,608,609,5,82,0,0,609,610,5,84,0,0,610,611,5,83,0,0,
|
|
351
|
+
611,134,1,0,0,0,612,613,5,69,0,0,613,614,5,88,0,0,614,615,5,84,0,0,615,
|
|
352
|
+
616,5,69,0,0,616,617,5,78,0,0,617,618,5,83,0,0,618,619,5,73,0,0,619,620,
|
|
353
|
+
5,66,0,0,620,621,5,73,0,0,621,622,5,76,0,0,622,623,5,73,0,0,623,624,5,
|
|
354
|
+
84,0,0,624,625,5,89,0,0,625,136,1,0,0,0,626,627,5,73,0,0,627,628,5,77,
|
|
355
|
+
0,0,628,629,5,80,0,0,629,630,5,76,0,0,630,631,5,73,0,0,631,632,5,69,0,
|
|
356
|
+
0,632,633,5,68,0,0,633,138,1,0,0,0,634,635,5,69,0,0,635,636,5,88,0,0,
|
|
357
|
+
636,637,5,80,0,0,637,638,5,76,0,0,638,639,5,73,0,0,639,640,5,67,0,0,640,
|
|
358
|
+
641,5,73,0,0,641,642,5,84,0,0,642,140,1,0,0,0,643,644,5,84,0,0,644,645,
|
|
359
|
+
5,65,0,0,645,646,5,71,0,0,646,647,5,83,0,0,647,142,1,0,0,0,648,649,5,
|
|
360
|
+
73,0,0,649,650,5,77,0,0,650,651,5,80,0,0,651,652,5,76,0,0,652,653,5,73,
|
|
361
|
+
0,0,653,654,5,67,0,0,654,655,5,73,0,0,655,656,5,84,0,0,656,144,1,0,0,
|
|
362
|
+
0,657,658,5,65,0,0,658,659,5,85,0,0,659,660,5,84,0,0,660,661,5,79,0,0,
|
|
363
|
+
661,662,5,77,0,0,662,663,5,65,0,0,663,664,5,84,0,0,664,665,5,73,0,0,665,
|
|
364
|
+
666,5,67,0,0,666,146,1,0,0,0,667,668,5,68,0,0,668,669,5,69,0,0,669,670,
|
|
365
|
+
5,70,0,0,670,671,5,73,0,0,671,672,5,78,0,0,672,673,5,73,0,0,673,674,5,
|
|
366
|
+
84,0,0,674,675,5,73,0,0,675,676,5,79,0,0,676,677,5,78,0,0,677,678,5,83,
|
|
367
|
+
0,0,678,148,1,0,0,0,679,680,5,66,0,0,680,681,5,69,0,0,681,682,5,71,0,
|
|
368
|
+
0,682,683,5,73,0,0,683,684,5,78,0,0,684,150,1,0,0,0,685,686,5,69,0,0,
|
|
369
|
+
686,687,5,78,0,0,687,688,5,68,0,0,688,152,1,0,0,0,689,690,5,91,0,0,690,
|
|
370
|
+
691,5,91,0,0,691,154,1,0,0,0,692,693,5,93,0,0,693,694,5,93,0,0,694,156,
|
|
371
|
+
1,0,0,0,695,696,5,58,0,0,696,158,1,0,0,0,697,698,5,67,0,0,698,699,5,72,
|
|
372
|
+
0,0,699,700,5,79,0,0,700,701,5,73,0,0,701,702,5,67,0,0,702,703,5,69,0,
|
|
373
|
+
0,703,160,1,0,0,0,704,705,5,85,0,0,705,706,5,78,0,0,706,707,5,73,0,0,
|
|
374
|
+
707,708,5,86,0,0,708,709,5,69,0,0,709,710,5,82,0,0,710,711,5,83,0,0,711,
|
|
375
|
+
712,5,65,0,0,712,713,5,76,0,0,713,162,1,0,0,0,714,715,5,65,0,0,715,716,
|
|
376
|
+
5,80,0,0,716,717,5,80,0,0,717,718,5,76,0,0,718,719,5,73,0,0,719,720,5,
|
|
377
|
+
67,0,0,720,721,5,65,0,0,721,722,5,84,0,0,722,723,5,73,0,0,723,724,5,79,
|
|
378
|
+
0,0,724,725,5,78,0,0,725,164,1,0,0,0,726,727,5,80,0,0,727,728,5,82,0,
|
|
379
|
+
0,728,729,5,73,0,0,729,730,5,86,0,0,730,731,5,65,0,0,731,732,5,84,0,0,
|
|
380
|
+
732,733,5,69,0,0,733,166,1,0,0,0,734,735,5,69,0,0,735,736,5,77,0,0,736,
|
|
381
|
+
737,5,66,0,0,737,738,5,69,0,0,738,739,5,68,0,0,739,740,5,68,0,0,740,741,
|
|
382
|
+
5,69,0,0,741,742,5,68,0,0,742,168,1,0,0,0,743,744,5,80,0,0,744,745,5,
|
|
383
|
+
68,0,0,745,746,5,86,0,0,746,170,1,0,0,0,747,748,5,69,0,0,748,749,5,88,
|
|
384
|
+
0,0,749,750,5,84,0,0,750,751,5,69,0,0,751,752,5,82,0,0,752,753,5,78,0,
|
|
385
|
+
0,753,754,5,65,0,0,754,755,5,76,0,0,755,172,1,0,0,0,756,757,5,79,0,0,
|
|
386
|
+
757,758,5,66,0,0,758,759,5,74,0,0,759,760,5,69,0,0,760,761,5,67,0,0,761,
|
|
387
|
+
762,5,84,0,0,762,174,1,0,0,0,763,764,5,73,0,0,764,765,5,68,0,0,765,766,
|
|
388
|
+
5,69,0,0,766,767,5,78,0,0,767,768,5,84,0,0,768,769,5,73,0,0,769,770,5,
|
|
389
|
+
70,0,0,770,771,5,73,0,0,771,772,5,69,0,0,772,773,5,82,0,0,773,176,1,0,
|
|
390
|
+
0,0,774,775,5,82,0,0,775,776,5,69,0,0,776,777,5,76,0,0,777,778,5,65,0,
|
|
391
|
+
0,778,779,5,84,0,0,779,780,5,73,0,0,780,781,5,86,0,0,781,782,5,69,0,0,
|
|
392
|
+
782,783,5,45,0,0,783,784,5,79,0,0,784,785,5,73,0,0,785,786,5,68,0,0,786,
|
|
393
|
+
178,1,0,0,0,787,788,5,67,0,0,788,789,5,72,0,0,789,790,5,65,0,0,790,791,
|
|
394
|
+
5,82,0,0,791,792,5,65,0,0,792,793,5,67,0,0,793,794,5,84,0,0,794,795,5,
|
|
395
|
+
69,0,0,795,796,5,82,0,0,796,180,1,0,0,0,797,798,5,67,0,0,798,799,5,79,
|
|
396
|
+
0,0,799,800,5,78,0,0,800,801,5,83,0,0,801,802,5,84,0,0,802,803,5,82,0,
|
|
397
|
+
0,803,804,5,65,0,0,804,805,5,73,0,0,805,806,5,78,0,0,806,807,5,69,0,0,
|
|
398
|
+
807,808,5,68,0,0,808,182,1,0,0,0,809,810,5,66,0,0,810,811,5,89,0,0,811,
|
|
399
|
+
184,1,0,0,0,812,813,5,64,0,0,813,814,5,46,0,0,814,186,1,0,0,0,815,816,
|
|
400
|
+
5,69,0,0,816,817,5,78,0,0,817,818,5,67,0,0,818,819,5,79,0,0,819,820,5,
|
|
401
|
+
68,0,0,820,821,5,69,0,0,821,822,5,68,0,0,822,188,1,0,0,0,823,824,5,45,
|
|
402
|
+
0,0,824,825,5,45,0,0,825,190,1,0,0,0,826,827,3,179,89,0,827,828,3,59,
|
|
403
|
+
29,0,828,192,1,0,0,0,829,830,3,41,20,0,830,831,3,17,8,0,831,194,1,0,0,
|
|
404
|
+
0,832,833,2,48,57,0,833,196,1,0,0,0,834,835,2,65,90,0,835,198,1,0,0,0,
|
|
405
|
+
836,837,2,97,122,0,837,200,1,0,0,0,838,840,3,195,97,0,839,838,1,0,0,0,
|
|
406
|
+
840,841,1,0,0,0,841,839,1,0,0,0,841,842,1,0,0,0,842,202,1,0,0,0,843,844,
|
|
407
|
+
7,0,0,0,844,845,1,0,0,0,845,846,6,101,0,0,846,204,1,0,0,0,847,849,7,1,
|
|
408
|
+
0,0,848,850,7,2,0,0,849,848,1,0,0,0,849,850,1,0,0,0,850,851,1,0,0,0,851,
|
|
409
|
+
852,3,201,100,0,852,206,1,0,0,0,853,854,5,45,0,0,854,855,5,45,0,0,855,
|
|
410
|
+
859,1,0,0,0,856,858,8,3,0,0,857,856,1,0,0,0,858,861,1,0,0,0,859,857,1,
|
|
411
|
+
0,0,0,859,860,1,0,0,0,860,863,1,0,0,0,861,859,1,0,0,0,862,864,5,13,0,
|
|
412
|
+
0,863,862,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0,865,866,5,10,0,0,866,
|
|
413
|
+
867,1,0,0,0,867,868,6,103,0,0,868,208,1,0,0,0,869,873,3,19,9,0,870,872,
|
|
414
|
+
2,48,49,0,871,870,1,0,0,0,872,875,1,0,0,0,873,871,1,0,0,0,873,874,1,0,
|
|
415
|
+
0,0,874,876,1,0,0,0,875,873,1,0,0,0,876,877,5,39,0,0,877,878,5,66,0,0,
|
|
416
|
+
878,210,1,0,0,0,879,882,3,195,97,0,880,882,7,4,0,0,881,879,1,0,0,0,881,
|
|
417
|
+
880,1,0,0,0,882,212,1,0,0,0,883,887,3,19,9,0,884,886,3,211,105,0,885,
|
|
418
|
+
884,1,0,0,0,886,889,1,0,0,0,887,885,1,0,0,0,887,888,1,0,0,0,888,890,1,
|
|
419
|
+
0,0,0,889,887,1,0,0,0,890,891,5,39,0,0,891,892,5,72,0,0,892,214,1,0,0,
|
|
420
|
+
0,893,898,5,34,0,0,894,897,3,217,108,0,895,897,8,5,0,0,896,894,1,0,0,
|
|
421
|
+
0,896,895,1,0,0,0,897,900,1,0,0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,
|
|
422
|
+
901,1,0,0,0,900,898,1,0,0,0,901,902,5,34,0,0,902,216,1,0,0,0,903,907,
|
|
423
|
+
5,92,0,0,904,908,7,6,0,0,905,908,3,19,9,0,906,908,5,92,0,0,907,904,1,
|
|
424
|
+
0,0,0,907,905,1,0,0,0,907,906,1,0,0,0,908,218,1,0,0,0,909,910,7,7,0,0,
|
|
425
|
+
910,220,1,0,0,0,911,912,7,8,0,0,912,222,1,0,0,0,913,918,3,219,109,0,914,
|
|
426
|
+
917,3,219,109,0,915,917,3,221,110,0,916,914,1,0,0,0,916,915,1,0,0,0,917,
|
|
427
|
+
920,1,0,0,0,918,916,1,0,0,0,918,919,1,0,0,0,919,224,1,0,0,0,920,918,1,
|
|
428
|
+
0,0,0,13,0,841,849,859,863,873,881,887,896,898,907,916,918,1,6,0,0
|
|
429
|
+
};
|
|
430
|
+
staticData->serializedATN = antlr4::atn::SerializedATNView(serializedATNSegment, sizeof(serializedATNSegment) / sizeof(serializedATNSegment[0]));
|
|
431
|
+
|
|
432
|
+
antlr4::atn::ATNDeserializer deserializer;
|
|
433
|
+
staticData->atn = deserializer.deserialize(staticData->serializedATN);
|
|
434
|
+
|
|
435
|
+
const size_t count = staticData->atn->getNumberOfDecisions();
|
|
436
|
+
staticData->decisionToDFA.reserve(count);
|
|
437
|
+
for (size_t i = 0; i < count; i++) {
|
|
438
|
+
staticData->decisionToDFA.emplace_back(staticData->atn->getDecisionState(i), i);
|
|
439
|
+
}
|
|
440
|
+
asnlexerLexerStaticData = staticData.release();
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
ASNLexer::ASNLexer(CharStream *input) : Lexer(input) {
|
|
446
|
+
ASNLexer::initialize();
|
|
447
|
+
_interpreter = new atn::LexerATNSimulator(this, *asnlexerLexerStaticData->atn, asnlexerLexerStaticData->decisionToDFA, asnlexerLexerStaticData->sharedContextCache);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
ASNLexer::~ASNLexer() {
|
|
451
|
+
delete _interpreter;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
std::string ASNLexer::getGrammarFileName() const {
|
|
455
|
+
return "ASN.g4";
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
const std::vector<std::string>& ASNLexer::getRuleNames() const {
|
|
459
|
+
return asnlexerLexerStaticData->ruleNames;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
const std::vector<std::string>& ASNLexer::getChannelNames() const {
|
|
463
|
+
return asnlexerLexerStaticData->channelNames;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
const std::vector<std::string>& ASNLexer::getModeNames() const {
|
|
467
|
+
return asnlexerLexerStaticData->modeNames;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
const dfa::Vocabulary& ASNLexer::getVocabulary() const {
|
|
471
|
+
return asnlexerLexerStaticData->vocabulary;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
antlr4::atn::SerializedATNView ASNLexer::getSerializedATN() const {
|
|
475
|
+
return asnlexerLexerStaticData->serializedATN;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
const atn::ATN& ASNLexer::getATN() const {
|
|
479
|
+
return *asnlexerLexerStaticData->atn;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
void ASNLexer::initialize() {
|
|
486
|
+
std::call_once(asnlexerLexerOnceFlag, asnlexerLexerInitialize);
|
|
487
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated from ./ASN.g4 by ANTLR 4.10.1
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
#include "antlr4-runtime.h"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ASNLexer : public antlr4::Lexer {
|
|
13
|
+
public:
|
|
14
|
+
enum {
|
|
15
|
+
A_ROND = 1, STAR = 2, ASSIGN_OP = 3, BOOLEAN_LITERAL = 4, TRUE_LITERAL = 5,
|
|
16
|
+
FALSE_LITERAL = 6, DOT = 7, DOUBLE_DOT = 8, ELLIPSIS = 9, APOSTROPHE = 10,
|
|
17
|
+
AMPERSAND = 11, LESS_THAN = 12, GREATER_THAN = 13, LESS_THAN_SLASH = 14,
|
|
18
|
+
SLASH_GREATER_THAN = 15, TRUE_SMALL_LITERAL = 16, FALSE_SMALL_LITERAL = 17,
|
|
19
|
+
INTEGER_LITERAL = 18, L_BRACE = 19, R_BRACE = 20, COMMA = 21, L_PARAN = 22,
|
|
20
|
+
R_PARAN = 23, MINUS = 24, ENUMERATED_LITERAL = 25, REAL_LITERAL = 26,
|
|
21
|
+
PLUS_INFINITY_LITERAL = 27, MINUS_INFINITY_LITERAL = 28, BIT_LITERAL = 29,
|
|
22
|
+
STRING_LITERAL = 30, CONTAINING_LITERAL = 31, OCTET_LITERAL = 32, NULL_LITERAL = 33,
|
|
23
|
+
SEQUENCE_LITERAL = 34, OPTIONAL_LITERAL = 35, DEFAULT_LITERAL = 36,
|
|
24
|
+
COMPONENTS_LITERAL = 37, OF_LITERAL = 38, SET_LITERAL = 39, EXCLAM = 40,
|
|
25
|
+
ALL_LITERAL = 41, EXCEPT_LITERAL = 42, POWER = 43, PIPE = 44, UNION_LITERAL = 45,
|
|
26
|
+
INTERSECTION_LITERAL = 46, INCLUDES_LITERAL = 47, MIN_LITERAL = 48,
|
|
27
|
+
MAX_LITERAL = 49, SIZE_LITERAL = 50, FROM_LITERAL = 51, WITH_LITERAL = 52,
|
|
28
|
+
COMPONENT_LITERAL = 53, PRESENT_LITERAL = 54, ABSENT_LITERAL = 55, PATTERN_LITERAL = 56,
|
|
29
|
+
TYPE_IDENTIFIER_LITERAL = 57, ABSTRACT_SYNTAX_LITERAL = 58, CLASS_LITERAL = 59,
|
|
30
|
+
UNIQUE_LITERAL = 60, SYNTAX_LITERAL = 61, L_BRACKET = 62, R_BRACKET = 63,
|
|
31
|
+
INSTANCE_LITERAL = 64, SEMI_COLON = 65, IMPORTS_LITERAL = 66, EXPORTS_LITERAL = 67,
|
|
32
|
+
EXTENSIBILITY_LITERAL = 68, IMPLIED_LITERAL = 69, EXPLICIT_LITERAL = 70,
|
|
33
|
+
TAGS_LITERAL = 71, IMPLICIT_LITERAL = 72, AUTOMATIC_LITERAL = 73, DEFINITIONS_LITERAL = 74,
|
|
34
|
+
BEGIN_LITERAL = 75, END_LITERAL = 76, DOUBLE_L_BRACKET = 77, DOUBLE_R_BRACKET = 78,
|
|
35
|
+
COLON = 79, CHOICE_LITERAL = 80, UNIVERSAL_LITERAL = 81, APPLICATION_LITERAL = 82,
|
|
36
|
+
PRIVATE_LITERAL = 83, EMBEDDED_LITERAL = 84, PDV_LITERAL = 85, EXTERNAL_LITERAL = 86,
|
|
37
|
+
OBJECT_LITERAL = 87, IDENTIFIER_LITERAL = 88, RELATIVE_OID_LITERAL = 89,
|
|
38
|
+
CHARACTER_LITERAL = 90, CONSTRAINED_LITERAL = 91, BY_LITERAL = 92, A_ROND_DOT = 93,
|
|
39
|
+
ENCODED_LITERAL = 94, COMMENT = 95, UNRESTRICTEDCHARACTERSTRINGTYPE = 96,
|
|
40
|
+
EXTENSTIONENDMARKER = 97, NUMBER = 98, WS = 99, LINE_COMMENT = 100,
|
|
41
|
+
BSTRING = 101, HSTRING = 102, CSTRING = 103, IDENTIFIER = 104
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
explicit ASNLexer(antlr4::CharStream *input);
|
|
45
|
+
|
|
46
|
+
~ASNLexer() override;
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
std::string getGrammarFileName() const override;
|
|
50
|
+
|
|
51
|
+
const std::vector<std::string>& getRuleNames() const override;
|
|
52
|
+
|
|
53
|
+
const std::vector<std::string>& getChannelNames() const override;
|
|
54
|
+
|
|
55
|
+
const std::vector<std::string>& getModeNames() const override;
|
|
56
|
+
|
|
57
|
+
const antlr4::dfa::Vocabulary& getVocabulary() const override;
|
|
58
|
+
|
|
59
|
+
antlr4::atn::SerializedATNView getSerializedATN() const override;
|
|
60
|
+
|
|
61
|
+
const antlr4::atn::ATN& getATN() const override;
|
|
62
|
+
|
|
63
|
+
// By default the static state used to implement the lexer is lazily initialized during the first
|
|
64
|
+
// call to the constructor. You can call this function if you wish to initialize the static state
|
|
65
|
+
// ahead of time.
|
|
66
|
+
static void initialize();
|
|
67
|
+
|
|
68
|
+
private:
|
|
69
|
+
|
|
70
|
+
// Individual action functions triggered by action() above.
|
|
71
|
+
|
|
72
|
+
// Individual semantic predicate functions triggered by sempred() above.
|
|
73
|
+
|
|
74
|
+
};
|
|
75
|
+
|