expressir 1.4.3 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (482) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/codeql.yml +2 -14
  3. data/.github/workflows/rake.yml +6 -364
  4. data/.github/workflows/release.yml +15 -178
  5. data/.github/workflows/stress.yml +1 -18
  6. data/.rubocop.yml +1 -0
  7. data/.rubocop_todo.yml +21 -0
  8. data/Gemfile +12 -0
  9. data/README.adoc +6 -19
  10. data/Rakefile +6 -7
  11. data/exe/{format-test → expressir-format-test} +1 -1
  12. data/expressir.gemspec +23 -32
  13. data/expressir_wrapped.txt +23068 -0
  14. data/lib/expressir/cli.rb +1 -1
  15. data/lib/expressir/express/formatter.rb +661 -661
  16. data/lib/expressir/express/parser.rb +299 -33
  17. data/lib/expressir/express/visitor.rb +238 -133
  18. data/lib/expressir/liquid/cache_drop.rb +20 -0
  19. data/lib/expressir/liquid/data_type_drop.rb +8 -0
  20. data/lib/expressir/liquid/data_types/aggregate_drop.rb +21 -0
  21. data/lib/expressir/liquid/data_types/array_drop.rb +34 -0
  22. data/lib/expressir/liquid/data_types/bag_drop.rb +26 -0
  23. data/lib/expressir/liquid/data_types/binary_drop.rb +22 -0
  24. data/lib/expressir/liquid/data_types/boolean_drop.rb +10 -0
  25. data/lib/expressir/liquid/data_types/enumeration_drop.rb +30 -0
  26. data/lib/expressir/liquid/data_types/enumeration_item_drop.rb +17 -0
  27. data/lib/expressir/liquid/data_types/generic_drop.rb +17 -0
  28. data/lib/expressir/liquid/data_types/generic_entity_drop.rb +17 -0
  29. data/lib/expressir/liquid/data_types/integer_drop.rb +10 -0
  30. data/lib/expressir/liquid/data_types/list_drop.rb +30 -0
  31. data/lib/expressir/liquid/data_types/logical_drop.rb +10 -0
  32. data/lib/expressir/liquid/data_types/number_drop.rb +10 -0
  33. data/lib/expressir/liquid/data_types/real_drop.rb +18 -0
  34. data/lib/expressir/liquid/data_types/select_drop.rb +34 -0
  35. data/lib/expressir/liquid/data_types/set_drop.rb +26 -0
  36. data/lib/expressir/liquid/data_types/string_drop.rb +22 -0
  37. data/lib/expressir/liquid/declaration_drop.rb +8 -0
  38. data/lib/expressir/liquid/declarations/attribute_drop.rb +37 -0
  39. data/lib/expressir/liquid/declarations/constant_drop.rb +25 -0
  40. data/lib/expressir/liquid/declarations/entity_drop.rb +65 -0
  41. data/lib/expressir/liquid/declarations/function_drop.rb +93 -0
  42. data/lib/expressir/liquid/declarations/interface_drop.rb +30 -0
  43. data/lib/expressir/liquid/declarations/interface_item_drop.rb +22 -0
  44. data/lib/expressir/liquid/declarations/interfaced_item_drop.rb +34 -0
  45. data/lib/expressir/liquid/declarations/parameter_drop.rb +25 -0
  46. data/lib/expressir/liquid/declarations/procedure_drop.rb +89 -0
  47. data/lib/expressir/liquid/declarations/remark_item_drop.rb +22 -0
  48. data/lib/expressir/liquid/declarations/rule_drop.rb +105 -0
  49. data/lib/expressir/liquid/declarations/schema_drop.rb +91 -0
  50. data/lib/expressir/liquid/declarations/schema_version_drop.rb +26 -0
  51. data/lib/expressir/liquid/declarations/schema_version_item_drop.rb +22 -0
  52. data/lib/expressir/liquid/declarations/subtype_constraint_drop.rb +37 -0
  53. data/lib/expressir/liquid/declarations/type_drop.rb +37 -0
  54. data/lib/expressir/liquid/declarations/unique_rule_drop.rb +21 -0
  55. data/lib/expressir/liquid/declarations/variable_drop.rb +25 -0
  56. data/lib/expressir/liquid/declarations/where_rule_drop.rb +21 -0
  57. data/lib/expressir/liquid/expression_drop.rb +8 -0
  58. data/lib/expressir/liquid/expressions/aggregate_initializer_drop.rb +24 -0
  59. data/lib/expressir/liquid/expressions/aggregate_initializer_item_drop.rb +22 -0
  60. data/lib/expressir/liquid/expressions/binary_expression_drop.rb +26 -0
  61. data/lib/expressir/liquid/expressions/entity_constructor_drop.rb +26 -0
  62. data/lib/expressir/liquid/expressions/function_call_drop.rb +26 -0
  63. data/lib/expressir/liquid/expressions/interval_drop.rb +34 -0
  64. data/lib/expressir/liquid/expressions/query_expression_drop.rb +25 -0
  65. data/lib/expressir/liquid/expressions/unary_expression_drop.rb +22 -0
  66. data/lib/expressir/liquid/identifier_drop.rb +33 -0
  67. data/lib/expressir/liquid/literal_drop.rb +8 -0
  68. data/lib/expressir/liquid/literals/binary_drop.rb +18 -0
  69. data/lib/expressir/liquid/literals/integer_drop.rb +18 -0
  70. data/lib/expressir/liquid/literals/logical_drop.rb +18 -0
  71. data/lib/expressir/liquid/literals/real_drop.rb +18 -0
  72. data/lib/expressir/liquid/literals/string_drop.rb +22 -0
  73. data/lib/expressir/liquid/model_element_drop.rb +33 -0
  74. data/lib/expressir/liquid/reference_drop.rb +8 -0
  75. data/lib/expressir/liquid/references/attribute_reference_drop.rb +22 -0
  76. data/lib/expressir/liquid/references/group_reference_drop.rb +22 -0
  77. data/lib/expressir/liquid/references/index_reference_drop.rb +26 -0
  78. data/lib/expressir/liquid/references/simple_reference_drop.rb +22 -0
  79. data/lib/expressir/liquid/repository_drop.rb +22 -0
  80. data/lib/expressir/liquid/statement_drop.rb +8 -0
  81. data/lib/expressir/liquid/statements/alias_drop.rb +29 -0
  82. data/lib/expressir/liquid/statements/assignment_drop.rb +22 -0
  83. data/lib/expressir/liquid/statements/case_action_drop.rb +26 -0
  84. data/lib/expressir/liquid/statements/case_drop.rb +30 -0
  85. data/lib/expressir/liquid/statements/compound_drop.rb +22 -0
  86. data/lib/expressir/liquid/statements/escape_drop.rb +10 -0
  87. data/lib/expressir/liquid/statements/if_drop.rb +34 -0
  88. data/lib/expressir/liquid/statements/null_drop.rb +10 -0
  89. data/lib/expressir/liquid/statements/procedure_call_drop.rb +26 -0
  90. data/lib/expressir/liquid/statements/repeat_drop.rb +45 -0
  91. data/lib/expressir/liquid/statements/return_drop.rb +18 -0
  92. data/lib/expressir/liquid/statements/skip_drop.rb +10 -0
  93. data/lib/expressir/liquid/supertype_expression_drop.rb +8 -0
  94. data/lib/expressir/liquid/supertype_expressions/binary_supertype_expression_drop.rb +26 -0
  95. data/lib/expressir/liquid/supertype_expressions/oneof_supertype_expression_drop.rb +22 -0
  96. data/lib/expressir/liquid.rb +18 -0
  97. data/lib/expressir/model/declarations/interface_item.rb +1 -1
  98. data/lib/expressir/model/model_element.rb +7 -0
  99. data/lib/expressir/version.rb +1 -1
  100. data/lib/expressir.rb +2 -0
  101. metadata +101 -569
  102. data/.cross_rubies +0 -28
  103. data/.gitmodules +0 -6
  104. data/.yardopts +0 -11
  105. data/exe/generate-parser +0 -51
  106. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +0 -191
  107. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +0 -652
  108. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +0 -948
  109. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj +0 -652
  110. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj.filters +0 -948
  111. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +0 -26
  112. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +0 -17
  113. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +0 -3040
  114. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  115. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  116. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +0 -76
  117. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +0 -76
  118. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +0 -76
  119. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.nuspec +0 -23
  120. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.targets +0 -8
  121. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.nuspec +0 -30
  122. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.props +0 -21
  123. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.targets +0 -44
  124. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.nuspec +0 -29
  125. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.targets +0 -44
  126. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/antlr4.jpg +0 -0
  127. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/pack.cmd +0 -93
  128. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +0 -10
  129. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +0 -167
  130. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +0 -10
  131. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +0 -121
  132. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +0 -23
  133. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +0 -30
  134. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +0 -180
  135. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +0 -79
  136. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +0 -61
  137. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +0 -59
  138. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +0 -25
  139. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +0 -36
  140. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +0 -414
  141. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +0 -200
  142. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +0 -11
  143. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +0 -37
  144. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +0 -193
  145. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +0 -158
  146. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +0 -39
  147. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +0 -74
  148. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +0 -78
  149. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +0 -79
  150. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +0 -15
  151. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +0 -35
  152. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +0 -336
  153. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +0 -466
  154. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +0 -84
  155. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +0 -80
  156. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +0 -64
  157. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +0 -99
  158. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +0 -52
  159. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +0 -32
  160. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashMap.h +0 -57
  161. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashSet.h +0 -57
  162. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +0 -18
  163. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +0 -24
  164. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +0 -12
  165. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +0 -218
  166. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +0 -19
  167. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +0 -45
  168. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +0 -294
  169. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +0 -196
  170. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +0 -60
  171. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +0 -46
  172. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +0 -36
  173. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +0 -31
  174. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +0 -92
  175. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +0 -88
  176. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +0 -46
  177. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +0 -42
  178. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +0 -670
  179. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +0 -461
  180. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +0 -294
  181. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +0 -173
  182. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +0 -138
  183. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +0 -147
  184. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +0 -53
  185. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +0 -38
  186. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +0 -65
  187. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +0 -98
  188. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +0 -157
  189. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +0 -160
  190. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +0 -144
  191. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +0 -141
  192. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +0 -27
  193. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +0 -32
  194. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +0 -54
  195. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +0 -155
  196. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +0 -9
  197. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +0 -92
  198. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +0 -30
  199. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +0 -9
  200. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +0 -85
  201. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +0 -11
  202. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +0 -137
  203. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +0 -425
  204. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +0 -295
  205. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +0 -208
  206. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +0 -117
  207. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +0 -270
  208. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +0 -115
  209. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Version.h +0 -42
  210. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +0 -64
  211. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +0 -177
  212. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +0 -9
  213. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +0 -23
  214. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +0 -101
  215. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +0 -168
  216. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +0 -159
  217. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +0 -133
  218. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +0 -106
  219. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +0 -157
  220. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +0 -233
  221. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +0 -157
  222. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +0 -39
  223. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +0 -48
  224. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +0 -628
  225. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +0 -32
  226. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +0 -33
  227. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +0 -71
  228. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +0 -56
  229. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +0 -139
  230. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +0 -33
  231. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.h +0 -36
  232. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +0 -20
  233. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +0 -29
  234. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +0 -35
  235. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +0 -16
  236. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +0 -68
  237. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +0 -129
  238. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +0 -51
  239. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +0 -27
  240. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +0 -33
  241. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +0 -24
  242. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +0 -23
  243. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +0 -26
  244. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +0 -30
  245. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +0 -14
  246. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +0 -47
  247. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +0 -14
  248. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +0 -70
  249. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +0 -25
  250. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +0 -227
  251. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +0 -12
  252. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +0 -34
  253. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +0 -31
  254. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +0 -42
  255. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +0 -15
  256. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +0 -43
  257. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/HashUtils.h +0 -18
  258. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +0 -189
  259. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +0 -76
  260. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +0 -67
  261. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +0 -44
  262. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +0 -621
  263. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +0 -199
  264. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +0 -15
  265. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +0 -100
  266. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +0 -108
  267. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +0 -128
  268. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +0 -57
  269. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +0 -43
  270. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +0 -59
  271. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +0 -45
  272. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +0 -75
  273. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +0 -50
  274. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +0 -76
  275. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +0 -43
  276. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +0 -57
  277. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +0 -36
  278. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +0 -53
  279. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +0 -36
  280. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +0 -53
  281. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +0 -43
  282. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +0 -57
  283. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +0 -36
  284. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +0 -51
  285. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +0 -43
  286. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +0 -51
  287. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +0 -16
  288. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +0 -42
  289. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +0 -26
  290. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +0 -22
  291. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +0 -27
  292. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +0 -16
  293. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +0 -25
  294. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +0 -102
  295. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +0 -102
  296. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +0 -1413
  297. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +0 -911
  298. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +0 -50
  299. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +0 -29
  300. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +0 -25
  301. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +0 -23
  302. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +0 -35
  303. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +0 -17
  304. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +0 -62
  305. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +0 -24
  306. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +0 -50
  307. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +0 -601
  308. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +0 -225
  309. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +0 -56
  310. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +0 -63
  311. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +0 -167
  312. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +0 -101
  313. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +0 -71
  314. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextType.h +0 -21
  315. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +0 -202
  316. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +0 -436
  317. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +0 -179
  318. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +0 -60
  319. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +0 -26
  320. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +0 -31
  321. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +0 -26
  322. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +0 -27
  323. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +0 -33
  324. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +0 -42
  325. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +0 -418
  326. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +0 -237
  327. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContextType.h +0 -23
  328. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SerializedATNView.h +0 -101
  329. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +0 -28
  330. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +0 -38
  331. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +0 -79
  332. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +0 -43
  333. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +0 -24
  334. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +0 -37
  335. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +0 -19
  336. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +0 -25
  337. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +0 -24
  338. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +0 -36
  339. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +0 -65
  340. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.cpp +0 -27
  341. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.h +0 -33
  342. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +0 -21
  343. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +0 -27
  344. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +0 -115
  345. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +0 -96
  346. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +0 -60
  347. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +0 -32
  348. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +0 -59
  349. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +0 -154
  350. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +0 -17
  351. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +0 -22
  352. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.cpp +0 -100
  353. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.h +0 -154
  354. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +0 -124
  355. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +0 -33
  356. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +0 -61
  357. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +0 -84
  358. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +0 -508
  359. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +0 -190
  360. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +0 -120
  361. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +0 -102
  362. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +0 -4
  363. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +0 -21
  364. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +0 -8
  365. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +0 -16
  366. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +0 -43
  367. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +0 -149
  368. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +0 -76
  369. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +0 -207
  370. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +0 -65
  371. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Casts.h +0 -34
  372. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +0 -161
  373. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +0 -38
  374. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +0 -16
  375. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Unicode.h +0 -28
  376. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.cpp +0 -242
  377. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.h +0 -54
  378. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +0 -129
  379. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +0 -24
  380. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +0 -54
  381. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +0 -43
  382. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +0 -66
  383. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +0 -53
  384. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +0 -12
  385. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +0 -111
  386. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +0 -9
  387. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +0 -39
  388. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +0 -50
  389. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeType.h +0 -22
  390. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +0 -9
  391. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +0 -57
  392. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +0 -48
  393. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +0 -55
  394. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +0 -40
  395. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +0 -54
  396. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +0 -32
  397. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +0 -241
  398. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +0 -78
  399. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +0 -9
  400. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +0 -44
  401. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +0 -69
  402. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +0 -132
  403. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +0 -64
  404. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +0 -105
  405. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +0 -370
  406. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +0 -185
  407. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +0 -77
  408. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +0 -117
  409. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +0 -39
  410. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +0 -86
  411. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +0 -28
  412. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +0 -51
  413. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +0 -36
  414. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +0 -80
  415. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +0 -154
  416. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +0 -86
  417. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +0 -31
  418. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +0 -40
  419. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +0 -180
  420. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +0 -64
  421. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +0 -53
  422. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +0 -12
  423. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +0 -13
  424. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +0 -22
  425. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +0 -20
  426. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +0 -27
  427. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +0 -30
  428. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +0 -26
  429. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +0 -20
  430. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +0 -25
  431. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +0 -33
  432. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +0 -26
  433. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +0 -23
  434. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +0 -23
  435. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +0 -24
  436. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +0 -23
  437. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/tests/Utf8Test.cpp +0 -110
  438. data/ext/express_parser/antlrgen/Express.interp +0 -532
  439. data/ext/express_parser/antlrgen/Express.tokens +0 -190
  440. data/ext/express_parser/antlrgen/ExpressBaseListener.cpp +0 -7
  441. data/ext/express_parser/antlrgen/ExpressBaseListener.h +0 -623
  442. data/ext/express_parser/antlrgen/ExpressBaseVisitor.cpp +0 -7
  443. data/ext/express_parser/antlrgen/ExpressBaseVisitor.h +0 -816
  444. data/ext/express_parser/antlrgen/ExpressLexer.cpp +0 -685
  445. data/ext/express_parser/antlrgen/ExpressLexer.h +0 -78
  446. data/ext/express_parser/antlrgen/ExpressLexer.interp +0 -534
  447. data/ext/express_parser/antlrgen/ExpressLexer.tokens +0 -190
  448. data/ext/express_parser/antlrgen/ExpressListener.cpp +0 -7
  449. data/ext/express_parser/antlrgen/ExpressListener.h +0 -616
  450. data/ext/express_parser/antlrgen/ExpressParser.cpp +0 -17591
  451. data/ext/express_parser/antlrgen/ExpressParser.h +0 -3692
  452. data/ext/express_parser/antlrgen/ExpressVisitor.cpp +0 -7
  453. data/ext/express_parser/antlrgen/ExpressVisitor.h +0 -422
  454. data/ext/express_parser/express_parser.cpp +0 -19405
  455. data/ext/express_parser/extconf.rb +0 -63
  456. data/rakelib/antlr4-native.rake +0 -173
  457. data/rakelib/cross-ruby.rake +0 -403
  458. data/spec/acceptance/version_spec.rb +0 -30
  459. data/spec/expressir/express/cache_spec.rb +0 -89
  460. data/spec/expressir/express/formatter_spec.rb +0 -171
  461. data/spec/expressir/express/parser_spec.rb +0 -141
  462. data/spec/expressir/model/model_element_spec.rb +0 -343
  463. data/spec/spec_helper.rb +0 -24
  464. data/spec/support/console_helper.rb +0 -29
  465. data/spec/syntax/multiple.exp +0 -23
  466. data/spec/syntax/multiple.yaml +0 -198
  467. data/spec/syntax/multiple_formatted.exp +0 -71
  468. data/spec/syntax/multiple_hyperlink_formatted.exp +0 -71
  469. data/spec/syntax/multiple_schema_head_hyperlink_formatted.exp +0 -13
  470. data/spec/syntax/remark.exp +0 -193
  471. data/spec/syntax/remark.yaml +0 -471
  472. data/spec/syntax/remark_formatted.exp +0 -228
  473. data/spec/syntax/single.exp +0 -4
  474. data/spec/syntax/single.yaml +0 -18
  475. data/spec/syntax/single_formatted.exp +0 -10
  476. data/spec/syntax/single_formatted.yaml +0 -36
  477. data/spec/syntax/syntax.exp +0 -333
  478. data/spec/syntax/syntax.yaml +0 -3509
  479. data/spec/syntax/syntax_formatted.exp +0 -902
  480. data/spec/syntax/syntax_hyperlink_formatted.exp +0 -902
  481. data/spec/syntax/syntax_schema_head_formatted.exp +0 -18
  482. /data/exe/{format → expressir-format} +0 -0
@@ -1,685 +0,0 @@
1
-
2
- // Generated from Express.g4 by ANTLR 4.10.1
3
-
4
-
5
- #include "ExpressLexer.h"
6
-
7
-
8
- using namespace antlr4;
9
-
10
-
11
-
12
- using namespace antlr4;
13
-
14
- namespace {
15
-
16
- struct ExpressLexerStaticData final {
17
- ExpressLexerStaticData(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
- ExpressLexerStaticData(const ExpressLexerStaticData&) = delete;
28
- ExpressLexerStaticData(ExpressLexerStaticData&&) = delete;
29
- ExpressLexerStaticData& operator=(const ExpressLexerStaticData&) = delete;
30
- ExpressLexerStaticData& operator=(ExpressLexerStaticData&&) = 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 expresslexerLexerOnceFlag;
45
- ExpressLexerStaticData *expresslexerLexerStaticData = nullptr;
46
-
47
- void expresslexerLexerInitialize() {
48
- assert(expresslexerLexerStaticData == nullptr);
49
- auto staticData = std::make_unique<ExpressLexerStaticData>(
50
- std::vector<std::string>{
51
- "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8",
52
- "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16",
53
- "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24",
54
- "T__25", "T__26", "T__27", "T__28", "A", "B", "C", "D", "E", "F",
55
- "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
56
- "U", "V", "W", "X", "Y", "Z", "ABS", "ABSTRACT", "ACOS", "AGGREGATE",
57
- "ALIAS", "AND", "ANDOR", "ARRAY", "AS", "ASIN", "ATAN", "BAG", "BASED_ON",
58
- "BEGIN_", "BINARY", "BLENGTH", "BOOLEAN", "BY", "CASE", "CONSTANT",
59
- "CONST_E", "COS", "DERIVE", "DIV", "ELSE", "END_", "END_ALIAS", "END_CASE",
60
- "END_CONSTANT", "END_ENTITY", "END_FUNCTION", "END_IF", "END_LOCAL",
61
- "END_PROCEDURE", "END_REPEAT", "END_RULE", "END_SCHEMA", "END_SUBTYPE_CONSTRAINT",
62
- "END_TYPE", "ENTITY", "ENUMERATION", "ESCAPE", "EXISTS", "EXP", "EXTENSIBLE",
63
- "FALSE", "FIXED", "FOR", "FORMAT", "FROM", "FUNCTION", "GENERIC",
64
- "GENERIC_ENTITY", "HIBOUND", "HIINDEX", "IF", "IN", "INSERT", "INTEGER",
65
- "INVERSE", "LENGTH", "LIKE", "LIST", "LOBOUND", "LOCAL", "LOG", "LOG10",
66
- "LOG2", "LOGICAL", "LOINDEX", "MOD", "NOT", "NUMBER", "NVL", "ODD",
67
- "OF", "ONEOF", "OPTIONAL", "OR", "OTHERWISE", "PI", "PROCEDURE", "QUERY",
68
- "REAL", "REFERENCE", "REMOVE", "RENAMED", "REPEAT", "RETURN", "ROLESOF",
69
- "RULE", "SCHEMA", "SELECT", "SELF", "SET", "SIN", "SIZEOF", "SKIP_",
70
- "SQRT", "STRING", "SUBTYPE", "SUBTYPE_CONSTRAINT", "SUPERTYPE", "TAN",
71
- "THEN", "TO", "TRUE", "TYPE", "TYPEOF", "TOTAL_OVER", "UNIQUE", "UNKNOWN",
72
- "UNTIL", "USE", "USEDIN", "VALUE_", "VALUE_IN", "VALUE_UNIQUE", "VAR",
73
- "WITH", "WHERE", "WHILE", "XOR", "Bit", "Digit", "Digits", "EncodedCharacter",
74
- "HexDigit", "Letter", "Octet", "Sign", "BinaryLiteral", "EncodedStringLiteral",
75
- "IntegerLiteral", "RealLiteral", "SimpleId", "SimpleStringLiteral",
76
- "EmbeddedRemark", "TailRemark", "Whitespace"
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
- "", "';'", "'('", "','", "')'", "'+'", "'-'", "'['", "']'", "':'",
86
- "':='", "'.'", "'\\u003F'", "'**'", "'\\'", "'{'", "'}'", "'<'", "'<='",
87
- "'*'", "'/'", "'||'", "'<*'", "'|'", "'>'", "'>='", "'<>'", "'='",
88
- "':<>:'", "':=:'"
89
- },
90
- std::vector<std::string>{
91
- "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
92
- "", "", "", "", "", "", "", "", "", "", "", "", "", "ABS", "ABSTRACT",
93
- "ACOS", "AGGREGATE", "ALIAS", "AND", "ANDOR", "ARRAY", "AS", "ASIN",
94
- "ATAN", "BAG", "BASED_ON", "BEGIN_", "BINARY", "BLENGTH", "BOOLEAN",
95
- "BY", "CASE", "CONSTANT", "CONST_E", "COS", "DERIVE", "DIV", "ELSE",
96
- "END_", "END_ALIAS", "END_CASE", "END_CONSTANT", "END_ENTITY", "END_FUNCTION",
97
- "END_IF", "END_LOCAL", "END_PROCEDURE", "END_REPEAT", "END_RULE",
98
- "END_SCHEMA", "END_SUBTYPE_CONSTRAINT", "END_TYPE", "ENTITY", "ENUMERATION",
99
- "ESCAPE", "EXISTS", "EXP", "EXTENSIBLE", "FALSE", "FIXED", "FOR",
100
- "FORMAT", "FROM", "FUNCTION", "GENERIC", "GENERIC_ENTITY", "HIBOUND",
101
- "HIINDEX", "IF", "IN", "INSERT", "INTEGER", "INVERSE", "LENGTH", "LIKE",
102
- "LIST", "LOBOUND", "LOCAL", "LOG", "LOG10", "LOG2", "LOGICAL", "LOINDEX",
103
- "MOD", "NOT", "NUMBER", "NVL", "ODD", "OF", "ONEOF", "OPTIONAL", "OR",
104
- "OTHERWISE", "PI", "PROCEDURE", "QUERY", "REAL", "REFERENCE", "REMOVE",
105
- "RENAMED", "REPEAT", "RETURN", "ROLESOF", "RULE", "SCHEMA", "SELECT",
106
- "SELF", "SET", "SIN", "SIZEOF", "SKIP_", "SQRT", "STRING", "SUBTYPE",
107
- "SUBTYPE_CONSTRAINT", "SUPERTYPE", "TAN", "THEN", "TO", "TRUE", "TYPE",
108
- "TYPEOF", "TOTAL_OVER", "UNIQUE", "UNKNOWN", "UNTIL", "USE", "USEDIN",
109
- "VALUE_", "VALUE_IN", "VALUE_UNIQUE", "VAR", "WITH", "WHERE", "WHILE",
110
- "XOR", "BinaryLiteral", "EncodedStringLiteral", "IntegerLiteral",
111
- "RealLiteral", "SimpleId", "SimpleStringLiteral", "EmbeddedRemark",
112
- "TailRemark", "Whitespace"
113
- }
114
- );
115
- static const int32_t serializedATNSegment[] = {
116
- 4,0,161,1486,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,
117
- 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,
118
- 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,
119
- 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,
120
- 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,
121
- 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,
122
- 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,
123
- 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,
124
- 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,
125
- 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,
126
- 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,
127
- 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,
128
- 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,
129
- 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,
130
- 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,
131
- 7,104,2,105,7,105,2,106,7,106,2,107,7,107,2,108,7,108,2,109,7,109,2,110,
132
- 7,110,2,111,7,111,2,112,7,112,2,113,7,113,2,114,7,114,2,115,7,115,2,116,
133
- 7,116,2,117,7,117,2,118,7,118,2,119,7,119,2,120,7,120,2,121,7,121,2,122,
134
- 7,122,2,123,7,123,2,124,7,124,2,125,7,125,2,126,7,126,2,127,7,127,2,128,
135
- 7,128,2,129,7,129,2,130,7,130,2,131,7,131,2,132,7,132,2,133,7,133,2,134,
136
- 7,134,2,135,7,135,2,136,7,136,2,137,7,137,2,138,7,138,2,139,7,139,2,140,
137
- 7,140,2,141,7,141,2,142,7,142,2,143,7,143,2,144,7,144,2,145,7,145,2,146,
138
- 7,146,2,147,7,147,2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,
139
- 7,152,2,153,7,153,2,154,7,154,2,155,7,155,2,156,7,156,2,157,7,157,2,158,
140
- 7,158,2,159,7,159,2,160,7,160,2,161,7,161,2,162,7,162,2,163,7,163,2,164,
141
- 7,164,2,165,7,165,2,166,7,166,2,167,7,167,2,168,7,168,2,169,7,169,2,170,
142
- 7,170,2,171,7,171,2,172,7,172,2,173,7,173,2,174,7,174,2,175,7,175,2,176,
143
- 7,176,2,177,7,177,2,178,7,178,2,179,7,179,2,180,7,180,2,181,7,181,2,182,
144
- 7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186,7,186,2,187,7,187,2,188,
145
- 7,188,2,189,7,189,2,190,7,190,2,191,7,191,2,192,7,192,2,193,7,193,2,194,
146
- 7,194,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4,1,5,1,5,1,6,1,6,1,7,1,7,
147
- 1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,11,1,11,1,12,1,12,1,12,1,13,1,13,1,14,
148
- 1,14,1,15,1,15,1,16,1,16,1,17,1,17,1,17,1,18,1,18,1,19,1,19,1,20,1,20,
149
- 1,20,1,21,1,21,1,21,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,
150
- 1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,29,1,29,1,30,
151
- 1,30,1,31,1,31,1,32,1,32,1,33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,
152
- 1,37,1,38,1,38,1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43,1,44,
153
- 1,44,1,45,1,45,1,46,1,46,1,47,1,47,1,48,1,48,1,49,1,49,1,50,1,50,1,51,
154
- 1,51,1,52,1,52,1,53,1,53,1,54,1,54,1,55,1,55,1,55,1,55,1,56,1,56,1,56,
155
- 1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,
156
- 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,60,
157
- 1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,
158
- 1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,
159
- 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,1,68,
160
- 1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,
161
- 1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,
162
- 1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,
163
- 1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76,
164
- 1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,79,1,79,
165
- 1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,
166
- 1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,
167
- 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,
168
- 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,
169
- 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,
170
- 1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,
171
- 1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,
172
- 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,1,90,
173
- 1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,92,
174
- 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,
175
- 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,
176
- 1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,
177
- 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,96,
178
- 1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,1,99,1,99,
179
- 1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,
180
- 1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,
181
- 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,
182
- 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106,
183
- 1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,
184
- 1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108,1,108,
185
- 1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,
186
- 1,110,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,112,
187
- 1,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,114,1,114,1,114,
188
- 1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,115,1,115,
189
- 1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118,1,118,
190
- 1,118,1,118,1,118,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119,
191
- 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,122,1,122,
192
- 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,124,
193
- 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,126,
194
- 1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128,
195
- 1,128,1,128,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,131,1,131,1,131,
196
- 1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,
197
- 1,133,1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,
198
- 1,134,1,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,
199
- 1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,
200
- 1,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,140,
201
- 1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,
202
- 1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,
203
- 1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,
204
- 1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,
205
- 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,
206
- 1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151,
207
- 1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,
208
- 1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,
209
- 1,155,1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,
210
- 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,
211
- 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,
212
- 1,158,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,161,1,161,1,161,
213
- 1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,
214
- 1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,
215
- 1,164,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,
216
- 1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1,168,
217
- 1,168,1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,
218
- 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,
219
- 1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,
220
- 1,172,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175,
221
- 1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,
222
- 1,177,1,177,1,178,1,178,1,179,1,179,1,180,1,180,5,180,1382,8,180,10,180,
223
- 12,180,1385,9,180,1,181,1,181,1,181,1,181,1,181,1,182,1,182,3,182,1394,
224
- 8,182,1,183,1,183,1,184,1,184,1,184,1,185,1,185,1,186,1,186,1,186,5,186,
225
- 1406,8,186,10,186,12,186,1409,9,186,1,187,1,187,1,187,5,187,1414,8,187,
226
- 10,187,12,187,1417,9,187,1,187,1,187,1,188,1,188,1,189,1,189,1,189,3,
227
- 189,1426,8,189,1,189,1,189,3,189,1430,8,189,1,189,1,189,3,189,1434,8,
228
- 189,1,190,1,190,1,190,1,190,5,190,1440,8,190,10,190,12,190,1443,9,190,
229
- 1,191,1,191,5,191,1447,8,191,10,191,12,191,1450,9,191,1,191,1,191,1,192,
230
- 1,192,1,192,1,192,1,192,5,192,1459,8,192,10,192,12,192,1462,9,192,1,192,
231
- 1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,5,193,1473,8,193,10,193,
232
- 12,193,1476,9,193,1,193,1,193,1,194,4,194,1481,8,194,11,194,12,194,1482,
233
- 1,194,1,194,2,1448,1460,0,195,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,
234
- 19,10,21,11,23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,
235
- 21,43,22,45,23,47,24,49,25,51,26,53,27,55,28,57,29,59,0,61,0,63,0,65,
236
- 0,67,0,69,0,71,0,73,0,75,0,77,0,79,0,81,0,83,0,85,0,87,0,89,0,91,0,93,
237
- 0,95,0,97,0,99,0,101,0,103,0,105,0,107,0,109,0,111,30,113,31,115,32,117,
238
- 33,119,34,121,35,123,36,125,37,127,38,129,39,131,40,133,41,135,42,137,
239
- 43,139,44,141,45,143,46,145,47,147,48,149,49,151,50,153,51,155,52,157,
240
- 53,159,54,161,55,163,56,165,57,167,58,169,59,171,60,173,61,175,62,177,
241
- 63,179,64,181,65,183,66,185,67,187,68,189,69,191,70,193,71,195,72,197,
242
- 73,199,74,201,75,203,76,205,77,207,78,209,79,211,80,213,81,215,82,217,
243
- 83,219,84,221,85,223,86,225,87,227,88,229,89,231,90,233,91,235,92,237,
244
- 93,239,94,241,95,243,96,245,97,247,98,249,99,251,100,253,101,255,102,
245
- 257,103,259,104,261,105,263,106,265,107,267,108,269,109,271,110,273,111,
246
- 275,112,277,113,279,114,281,115,283,116,285,117,287,118,289,119,291,120,
247
- 293,121,295,122,297,123,299,124,301,125,303,126,305,127,307,128,309,129,
248
- 311,130,313,131,315,132,317,133,319,134,321,135,323,136,325,137,327,138,
249
- 329,139,331,140,333,141,335,142,337,143,339,144,341,145,343,146,345,147,
250
- 347,148,349,149,351,150,353,151,355,152,357,0,359,0,361,0,363,0,365,0,
251
- 367,0,369,0,371,0,373,153,375,154,377,155,379,156,381,157,383,158,385,
252
- 159,387,160,389,161,1,0,33,2,0,65,65,97,97,2,0,66,66,98,98,2,0,67,67,
253
- 99,99,2,0,68,68,100,100,2,0,69,69,101,101,2,0,70,70,102,102,2,0,71,71,
254
- 103,103,2,0,72,72,104,104,2,0,73,73,105,105,2,0,74,74,106,106,2,0,75,
255
- 75,107,107,2,0,76,76,108,108,2,0,77,77,109,109,2,0,78,78,110,110,2,0,
256
- 79,79,111,111,2,0,80,80,112,112,2,0,81,81,113,113,2,0,82,82,114,114,2,
257
- 0,83,83,115,115,2,0,84,84,116,116,2,0,85,85,117,117,2,0,86,86,118,118,
258
- 2,0,87,87,119,119,2,0,88,88,120,120,2,0,89,89,121,121,2,0,90,90,122,122,
259
- 1,0,48,49,1,0,48,57,2,0,65,70,97,102,2,0,65,90,97,122,2,0,43,43,45,45,
260
- 1,0,10,10,3,0,9,10,12,13,32,32,1466,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,
261
- 0,0,7,1,0,0,0,0,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,
262
- 1,0,0,0,0,19,1,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,
263
- 0,0,0,29,1,0,0,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,
264
- 0,39,1,0,0,0,0,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,
265
- 1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,111,1,0,
266
- 0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,
267
- 0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,
268
- 0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,
269
- 0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,
270
- 0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,
271
- 0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,
272
- 0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,
273
- 0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,
274
- 0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,
275
- 0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,
276
- 0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,
277
- 0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,
278
- 0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,
279
- 0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,
280
- 0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,
281
- 0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,
282
- 0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,
283
- 0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,
284
- 0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,
285
- 0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1,0,
286
- 0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,
287
- 0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,
288
- 0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,
289
- 0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,
290
- 0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,
291
- 0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,
292
- 0,0,0,389,1,0,0,0,1,391,1,0,0,0,3,393,1,0,0,0,5,395,1,0,0,0,7,397,1,0,
293
- 0,0,9,399,1,0,0,0,11,401,1,0,0,0,13,403,1,0,0,0,15,405,1,0,0,0,17,407,
294
- 1,0,0,0,19,409,1,0,0,0,21,412,1,0,0,0,23,414,1,0,0,0,25,416,1,0,0,0,27,
295
- 419,1,0,0,0,29,421,1,0,0,0,31,423,1,0,0,0,33,425,1,0,0,0,35,427,1,0,0,
296
- 0,37,430,1,0,0,0,39,432,1,0,0,0,41,434,1,0,0,0,43,437,1,0,0,0,45,440,
297
- 1,0,0,0,47,442,1,0,0,0,49,444,1,0,0,0,51,447,1,0,0,0,53,450,1,0,0,0,55,
298
- 452,1,0,0,0,57,457,1,0,0,0,59,461,1,0,0,0,61,463,1,0,0,0,63,465,1,0,0,
299
- 0,65,467,1,0,0,0,67,469,1,0,0,0,69,471,1,0,0,0,71,473,1,0,0,0,73,475,
300
- 1,0,0,0,75,477,1,0,0,0,77,479,1,0,0,0,79,481,1,0,0,0,81,483,1,0,0,0,83,
301
- 485,1,0,0,0,85,487,1,0,0,0,87,489,1,0,0,0,89,491,1,0,0,0,91,493,1,0,0,
302
- 0,93,495,1,0,0,0,95,497,1,0,0,0,97,499,1,0,0,0,99,501,1,0,0,0,101,503,
303
- 1,0,0,0,103,505,1,0,0,0,105,507,1,0,0,0,107,509,1,0,0,0,109,511,1,0,0,
304
- 0,111,513,1,0,0,0,113,517,1,0,0,0,115,526,1,0,0,0,117,531,1,0,0,0,119,
305
- 541,1,0,0,0,121,547,1,0,0,0,123,551,1,0,0,0,125,557,1,0,0,0,127,563,1,
306
- 0,0,0,129,566,1,0,0,0,131,571,1,0,0,0,133,576,1,0,0,0,135,580,1,0,0,0,
307
- 137,589,1,0,0,0,139,595,1,0,0,0,141,602,1,0,0,0,143,610,1,0,0,0,145,618,
308
- 1,0,0,0,147,621,1,0,0,0,149,626,1,0,0,0,151,635,1,0,0,0,153,643,1,0,0,
309
- 0,155,647,1,0,0,0,157,654,1,0,0,0,159,658,1,0,0,0,161,663,1,0,0,0,163,
310
- 667,1,0,0,0,165,677,1,0,0,0,167,686,1,0,0,0,169,699,1,0,0,0,171,710,1,
311
- 0,0,0,173,723,1,0,0,0,175,730,1,0,0,0,177,740,1,0,0,0,179,754,1,0,0,0,
312
- 181,765,1,0,0,0,183,774,1,0,0,0,185,785,1,0,0,0,187,808,1,0,0,0,189,817,
313
- 1,0,0,0,191,824,1,0,0,0,193,836,1,0,0,0,195,843,1,0,0,0,197,850,1,0,0,
314
- 0,199,854,1,0,0,0,201,865,1,0,0,0,203,871,1,0,0,0,205,877,1,0,0,0,207,
315
- 881,1,0,0,0,209,888,1,0,0,0,211,893,1,0,0,0,213,902,1,0,0,0,215,910,1,
316
- 0,0,0,217,925,1,0,0,0,219,933,1,0,0,0,221,941,1,0,0,0,223,944,1,0,0,0,
317
- 225,947,1,0,0,0,227,954,1,0,0,0,229,962,1,0,0,0,231,970,1,0,0,0,233,977,
318
- 1,0,0,0,235,982,1,0,0,0,237,987,1,0,0,0,239,995,1,0,0,0,241,1001,1,0,
319
- 0,0,243,1005,1,0,0,0,245,1011,1,0,0,0,247,1016,1,0,0,0,249,1024,1,0,0,
320
- 0,251,1032,1,0,0,0,253,1036,1,0,0,0,255,1040,1,0,0,0,257,1047,1,0,0,0,
321
- 259,1051,1,0,0,0,261,1055,1,0,0,0,263,1058,1,0,0,0,265,1064,1,0,0,0,267,
322
- 1073,1,0,0,0,269,1076,1,0,0,0,271,1086,1,0,0,0,273,1089,1,0,0,0,275,1099,
323
- 1,0,0,0,277,1105,1,0,0,0,279,1110,1,0,0,0,281,1120,1,0,0,0,283,1127,1,
324
- 0,0,0,285,1135,1,0,0,0,287,1142,1,0,0,0,289,1149,1,0,0,0,291,1157,1,0,
325
- 0,0,293,1162,1,0,0,0,295,1169,1,0,0,0,297,1176,1,0,0,0,299,1181,1,0,0,
326
- 0,301,1185,1,0,0,0,303,1189,1,0,0,0,305,1196,1,0,0,0,307,1201,1,0,0,0,
327
- 309,1206,1,0,0,0,311,1213,1,0,0,0,313,1221,1,0,0,0,315,1240,1,0,0,0,317,
328
- 1250,1,0,0,0,319,1254,1,0,0,0,321,1259,1,0,0,0,323,1262,1,0,0,0,325,1267,
329
- 1,0,0,0,327,1272,1,0,0,0,329,1279,1,0,0,0,331,1290,1,0,0,0,333,1297,1,
330
- 0,0,0,335,1305,1,0,0,0,337,1311,1,0,0,0,339,1315,1,0,0,0,341,1322,1,0,
331
- 0,0,343,1328,1,0,0,0,345,1337,1,0,0,0,347,1350,1,0,0,0,349,1354,1,0,0,
332
- 0,351,1359,1,0,0,0,353,1365,1,0,0,0,355,1371,1,0,0,0,357,1375,1,0,0,0,
333
- 359,1377,1,0,0,0,361,1379,1,0,0,0,363,1386,1,0,0,0,365,1393,1,0,0,0,367,
334
- 1395,1,0,0,0,369,1397,1,0,0,0,371,1400,1,0,0,0,373,1402,1,0,0,0,375,1410,
335
- 1,0,0,0,377,1420,1,0,0,0,379,1422,1,0,0,0,381,1435,1,0,0,0,383,1444,1,
336
- 0,0,0,385,1453,1,0,0,0,387,1468,1,0,0,0,389,1480,1,0,0,0,391,392,5,59,
337
- 0,0,392,2,1,0,0,0,393,394,5,40,0,0,394,4,1,0,0,0,395,396,5,44,0,0,396,
338
- 6,1,0,0,0,397,398,5,41,0,0,398,8,1,0,0,0,399,400,5,43,0,0,400,10,1,0,
339
- 0,0,401,402,5,45,0,0,402,12,1,0,0,0,403,404,5,91,0,0,404,14,1,0,0,0,405,
340
- 406,5,93,0,0,406,16,1,0,0,0,407,408,5,58,0,0,408,18,1,0,0,0,409,410,5,
341
- 58,0,0,410,411,5,61,0,0,411,20,1,0,0,0,412,413,5,46,0,0,413,22,1,0,0,
342
- 0,414,415,5,63,0,0,415,24,1,0,0,0,416,417,5,42,0,0,417,418,5,42,0,0,418,
343
- 26,1,0,0,0,419,420,5,92,0,0,420,28,1,0,0,0,421,422,5,123,0,0,422,30,1,
344
- 0,0,0,423,424,5,125,0,0,424,32,1,0,0,0,425,426,5,60,0,0,426,34,1,0,0,
345
- 0,427,428,5,60,0,0,428,429,5,61,0,0,429,36,1,0,0,0,430,431,5,42,0,0,431,
346
- 38,1,0,0,0,432,433,5,47,0,0,433,40,1,0,0,0,434,435,5,124,0,0,435,436,
347
- 5,124,0,0,436,42,1,0,0,0,437,438,5,60,0,0,438,439,5,42,0,0,439,44,1,0,
348
- 0,0,440,441,5,124,0,0,441,46,1,0,0,0,442,443,5,62,0,0,443,48,1,0,0,0,
349
- 444,445,5,62,0,0,445,446,5,61,0,0,446,50,1,0,0,0,447,448,5,60,0,0,448,
350
- 449,5,62,0,0,449,52,1,0,0,0,450,451,5,61,0,0,451,54,1,0,0,0,452,453,5,
351
- 58,0,0,453,454,5,60,0,0,454,455,5,62,0,0,455,456,5,58,0,0,456,56,1,0,
352
- 0,0,457,458,5,58,0,0,458,459,5,61,0,0,459,460,5,58,0,0,460,58,1,0,0,0,
353
- 461,462,7,0,0,0,462,60,1,0,0,0,463,464,7,1,0,0,464,62,1,0,0,0,465,466,
354
- 7,2,0,0,466,64,1,0,0,0,467,468,7,3,0,0,468,66,1,0,0,0,469,470,7,4,0,0,
355
- 470,68,1,0,0,0,471,472,7,5,0,0,472,70,1,0,0,0,473,474,7,6,0,0,474,72,
356
- 1,0,0,0,475,476,7,7,0,0,476,74,1,0,0,0,477,478,7,8,0,0,478,76,1,0,0,0,
357
- 479,480,7,9,0,0,480,78,1,0,0,0,481,482,7,10,0,0,482,80,1,0,0,0,483,484,
358
- 7,11,0,0,484,82,1,0,0,0,485,486,7,12,0,0,486,84,1,0,0,0,487,488,7,13,
359
- 0,0,488,86,1,0,0,0,489,490,7,14,0,0,490,88,1,0,0,0,491,492,7,15,0,0,492,
360
- 90,1,0,0,0,493,494,7,16,0,0,494,92,1,0,0,0,495,496,7,17,0,0,496,94,1,
361
- 0,0,0,497,498,7,18,0,0,498,96,1,0,0,0,499,500,7,19,0,0,500,98,1,0,0,0,
362
- 501,502,7,20,0,0,502,100,1,0,0,0,503,504,7,21,0,0,504,102,1,0,0,0,505,
363
- 506,7,22,0,0,506,104,1,0,0,0,507,508,7,23,0,0,508,106,1,0,0,0,509,510,
364
- 7,24,0,0,510,108,1,0,0,0,511,512,7,25,0,0,512,110,1,0,0,0,513,514,3,59,
365
- 29,0,514,515,3,61,30,0,515,516,3,95,47,0,516,112,1,0,0,0,517,518,3,59,
366
- 29,0,518,519,3,61,30,0,519,520,3,95,47,0,520,521,3,97,48,0,521,522,3,
367
- 93,46,0,522,523,3,59,29,0,523,524,3,63,31,0,524,525,3,97,48,0,525,114,
368
- 1,0,0,0,526,527,3,59,29,0,527,528,3,63,31,0,528,529,3,87,43,0,529,530,
369
- 3,95,47,0,530,116,1,0,0,0,531,532,3,59,29,0,532,533,3,71,35,0,533,534,
370
- 3,71,35,0,534,535,3,93,46,0,535,536,3,67,33,0,536,537,3,71,35,0,537,538,
371
- 3,59,29,0,538,539,3,97,48,0,539,540,3,67,33,0,540,118,1,0,0,0,541,542,
372
- 3,59,29,0,542,543,3,81,40,0,543,544,3,75,37,0,544,545,3,59,29,0,545,546,
373
- 3,95,47,0,546,120,1,0,0,0,547,548,3,59,29,0,548,549,3,85,42,0,549,550,
374
- 3,65,32,0,550,122,1,0,0,0,551,552,3,59,29,0,552,553,3,85,42,0,553,554,
375
- 3,65,32,0,554,555,3,87,43,0,555,556,3,93,46,0,556,124,1,0,0,0,557,558,
376
- 3,59,29,0,558,559,3,93,46,0,559,560,3,93,46,0,560,561,3,59,29,0,561,562,
377
- 3,107,53,0,562,126,1,0,0,0,563,564,3,59,29,0,564,565,3,95,47,0,565,128,
378
- 1,0,0,0,566,567,3,59,29,0,567,568,3,95,47,0,568,569,3,75,37,0,569,570,
379
- 3,85,42,0,570,130,1,0,0,0,571,572,3,59,29,0,572,573,3,97,48,0,573,574,
380
- 3,59,29,0,574,575,3,85,42,0,575,132,1,0,0,0,576,577,3,61,30,0,577,578,
381
- 3,59,29,0,578,579,3,71,35,0,579,134,1,0,0,0,580,581,3,61,30,0,581,582,
382
- 3,59,29,0,582,583,3,95,47,0,583,584,3,67,33,0,584,585,3,65,32,0,585,586,
383
- 5,95,0,0,586,587,3,87,43,0,587,588,3,85,42,0,588,136,1,0,0,0,589,590,
384
- 3,61,30,0,590,591,3,67,33,0,591,592,3,71,35,0,592,593,3,75,37,0,593,594,
385
- 3,85,42,0,594,138,1,0,0,0,595,596,3,61,30,0,596,597,3,75,37,0,597,598,
386
- 3,85,42,0,598,599,3,59,29,0,599,600,3,93,46,0,600,601,3,107,53,0,601,
387
- 140,1,0,0,0,602,603,3,61,30,0,603,604,3,81,40,0,604,605,3,67,33,0,605,
388
- 606,3,85,42,0,606,607,3,71,35,0,607,608,3,97,48,0,608,609,3,73,36,0,609,
389
- 142,1,0,0,0,610,611,3,61,30,0,611,612,3,87,43,0,612,613,3,87,43,0,613,
390
- 614,3,81,40,0,614,615,3,67,33,0,615,616,3,59,29,0,616,617,3,85,42,0,617,
391
- 144,1,0,0,0,618,619,3,61,30,0,619,620,3,107,53,0,620,146,1,0,0,0,621,
392
- 622,3,63,31,0,622,623,3,59,29,0,623,624,3,95,47,0,624,625,3,67,33,0,625,
393
- 148,1,0,0,0,626,627,3,63,31,0,627,628,3,87,43,0,628,629,3,85,42,0,629,
394
- 630,3,95,47,0,630,631,3,97,48,0,631,632,3,59,29,0,632,633,3,85,42,0,633,
395
- 634,3,97,48,0,634,150,1,0,0,0,635,636,3,63,31,0,636,637,3,87,43,0,637,
396
- 638,3,85,42,0,638,639,3,95,47,0,639,640,3,97,48,0,640,641,5,95,0,0,641,
397
- 642,3,67,33,0,642,152,1,0,0,0,643,644,3,63,31,0,644,645,3,87,43,0,645,
398
- 646,3,95,47,0,646,154,1,0,0,0,647,648,3,65,32,0,648,649,3,67,33,0,649,
399
- 650,3,93,46,0,650,651,3,75,37,0,651,652,3,101,50,0,652,653,3,67,33,0,
400
- 653,156,1,0,0,0,654,655,3,65,32,0,655,656,3,75,37,0,656,657,3,101,50,
401
- 0,657,158,1,0,0,0,658,659,3,67,33,0,659,660,3,81,40,0,660,661,3,95,47,
402
- 0,661,662,3,67,33,0,662,160,1,0,0,0,663,664,3,67,33,0,664,665,3,85,42,
403
- 0,665,666,3,65,32,0,666,162,1,0,0,0,667,668,3,67,33,0,668,669,3,85,42,
404
- 0,669,670,3,65,32,0,670,671,5,95,0,0,671,672,3,59,29,0,672,673,3,81,40,
405
- 0,673,674,3,75,37,0,674,675,3,59,29,0,675,676,3,95,47,0,676,164,1,0,0,
406
- 0,677,678,3,67,33,0,678,679,3,85,42,0,679,680,3,65,32,0,680,681,5,95,
407
- 0,0,681,682,3,63,31,0,682,683,3,59,29,0,683,684,3,95,47,0,684,685,3,67,
408
- 33,0,685,166,1,0,0,0,686,687,3,67,33,0,687,688,3,85,42,0,688,689,3,65,
409
- 32,0,689,690,5,95,0,0,690,691,3,63,31,0,691,692,3,87,43,0,692,693,3,85,
410
- 42,0,693,694,3,95,47,0,694,695,3,97,48,0,695,696,3,59,29,0,696,697,3,
411
- 85,42,0,697,698,3,97,48,0,698,168,1,0,0,0,699,700,3,67,33,0,700,701,3,
412
- 85,42,0,701,702,3,65,32,0,702,703,5,95,0,0,703,704,3,67,33,0,704,705,
413
- 3,85,42,0,705,706,3,97,48,0,706,707,3,75,37,0,707,708,3,97,48,0,708,709,
414
- 3,107,53,0,709,170,1,0,0,0,710,711,3,67,33,0,711,712,3,85,42,0,712,713,
415
- 3,65,32,0,713,714,5,95,0,0,714,715,3,69,34,0,715,716,3,99,49,0,716,717,
416
- 3,85,42,0,717,718,3,63,31,0,718,719,3,97,48,0,719,720,3,75,37,0,720,721,
417
- 3,87,43,0,721,722,3,85,42,0,722,172,1,0,0,0,723,724,3,67,33,0,724,725,
418
- 3,85,42,0,725,726,3,65,32,0,726,727,5,95,0,0,727,728,3,75,37,0,728,729,
419
- 3,69,34,0,729,174,1,0,0,0,730,731,3,67,33,0,731,732,3,85,42,0,732,733,
420
- 3,65,32,0,733,734,5,95,0,0,734,735,3,81,40,0,735,736,3,87,43,0,736,737,
421
- 3,63,31,0,737,738,3,59,29,0,738,739,3,81,40,0,739,176,1,0,0,0,740,741,
422
- 3,67,33,0,741,742,3,85,42,0,742,743,3,65,32,0,743,744,5,95,0,0,744,745,
423
- 3,89,44,0,745,746,3,93,46,0,746,747,3,87,43,0,747,748,3,63,31,0,748,749,
424
- 3,67,33,0,749,750,3,65,32,0,750,751,3,99,49,0,751,752,3,93,46,0,752,753,
425
- 3,67,33,0,753,178,1,0,0,0,754,755,3,67,33,0,755,756,3,85,42,0,756,757,
426
- 3,65,32,0,757,758,5,95,0,0,758,759,3,93,46,0,759,760,3,67,33,0,760,761,
427
- 3,89,44,0,761,762,3,67,33,0,762,763,3,59,29,0,763,764,3,97,48,0,764,180,
428
- 1,0,0,0,765,766,3,67,33,0,766,767,3,85,42,0,767,768,3,65,32,0,768,769,
429
- 5,95,0,0,769,770,3,93,46,0,770,771,3,99,49,0,771,772,3,81,40,0,772,773,
430
- 3,67,33,0,773,182,1,0,0,0,774,775,3,67,33,0,775,776,3,85,42,0,776,777,
431
- 3,65,32,0,777,778,5,95,0,0,778,779,3,95,47,0,779,780,3,63,31,0,780,781,
432
- 3,73,36,0,781,782,3,67,33,0,782,783,3,83,41,0,783,784,3,59,29,0,784,184,
433
- 1,0,0,0,785,786,3,67,33,0,786,787,3,85,42,0,787,788,3,65,32,0,788,789,
434
- 5,95,0,0,789,790,3,95,47,0,790,791,3,99,49,0,791,792,3,61,30,0,792,793,
435
- 3,97,48,0,793,794,3,107,53,0,794,795,3,89,44,0,795,796,3,67,33,0,796,
436
- 797,5,95,0,0,797,798,3,63,31,0,798,799,3,87,43,0,799,800,3,85,42,0,800,
437
- 801,3,95,47,0,801,802,3,97,48,0,802,803,3,93,46,0,803,804,3,59,29,0,804,
438
- 805,3,75,37,0,805,806,3,85,42,0,806,807,3,97,48,0,807,186,1,0,0,0,808,
439
- 809,3,67,33,0,809,810,3,85,42,0,810,811,3,65,32,0,811,812,5,95,0,0,812,
440
- 813,3,97,48,0,813,814,3,107,53,0,814,815,3,89,44,0,815,816,3,67,33,0,
441
- 816,188,1,0,0,0,817,818,3,67,33,0,818,819,3,85,42,0,819,820,3,97,48,0,
442
- 820,821,3,75,37,0,821,822,3,97,48,0,822,823,3,107,53,0,823,190,1,0,0,
443
- 0,824,825,3,67,33,0,825,826,3,85,42,0,826,827,3,99,49,0,827,828,3,83,
444
- 41,0,828,829,3,67,33,0,829,830,3,93,46,0,830,831,3,59,29,0,831,832,3,
445
- 97,48,0,832,833,3,75,37,0,833,834,3,87,43,0,834,835,3,85,42,0,835,192,
446
- 1,0,0,0,836,837,3,67,33,0,837,838,3,95,47,0,838,839,3,63,31,0,839,840,
447
- 3,59,29,0,840,841,3,89,44,0,841,842,3,67,33,0,842,194,1,0,0,0,843,844,
448
- 3,67,33,0,844,845,3,105,52,0,845,846,3,75,37,0,846,847,3,95,47,0,847,
449
- 848,3,97,48,0,848,849,3,95,47,0,849,196,1,0,0,0,850,851,3,67,33,0,851,
450
- 852,3,105,52,0,852,853,3,89,44,0,853,198,1,0,0,0,854,855,3,67,33,0,855,
451
- 856,3,105,52,0,856,857,3,97,48,0,857,858,3,67,33,0,858,859,3,85,42,0,
452
- 859,860,3,95,47,0,860,861,3,75,37,0,861,862,3,61,30,0,862,863,3,81,40,
453
- 0,863,864,3,67,33,0,864,200,1,0,0,0,865,866,3,69,34,0,866,867,3,59,29,
454
- 0,867,868,3,81,40,0,868,869,3,95,47,0,869,870,3,67,33,0,870,202,1,0,0,
455
- 0,871,872,3,69,34,0,872,873,3,75,37,0,873,874,3,105,52,0,874,875,3,67,
456
- 33,0,875,876,3,65,32,0,876,204,1,0,0,0,877,878,3,69,34,0,878,879,3,87,
457
- 43,0,879,880,3,93,46,0,880,206,1,0,0,0,881,882,3,69,34,0,882,883,3,87,
458
- 43,0,883,884,3,93,46,0,884,885,3,83,41,0,885,886,3,59,29,0,886,887,3,
459
- 97,48,0,887,208,1,0,0,0,888,889,3,69,34,0,889,890,3,93,46,0,890,891,3,
460
- 87,43,0,891,892,3,83,41,0,892,210,1,0,0,0,893,894,3,69,34,0,894,895,3,
461
- 99,49,0,895,896,3,85,42,0,896,897,3,63,31,0,897,898,3,97,48,0,898,899,
462
- 3,75,37,0,899,900,3,87,43,0,900,901,3,85,42,0,901,212,1,0,0,0,902,903,
463
- 3,71,35,0,903,904,3,67,33,0,904,905,3,85,42,0,905,906,3,67,33,0,906,907,
464
- 3,93,46,0,907,908,3,75,37,0,908,909,3,63,31,0,909,214,1,0,0,0,910,911,
465
- 3,71,35,0,911,912,3,67,33,0,912,913,3,85,42,0,913,914,3,67,33,0,914,915,
466
- 3,93,46,0,915,916,3,75,37,0,916,917,3,63,31,0,917,918,5,95,0,0,918,919,
467
- 3,67,33,0,919,920,3,85,42,0,920,921,3,97,48,0,921,922,3,75,37,0,922,923,
468
- 3,97,48,0,923,924,3,107,53,0,924,216,1,0,0,0,925,926,3,73,36,0,926,927,
469
- 3,75,37,0,927,928,3,61,30,0,928,929,3,87,43,0,929,930,3,99,49,0,930,931,
470
- 3,85,42,0,931,932,3,65,32,0,932,218,1,0,0,0,933,934,3,73,36,0,934,935,
471
- 3,75,37,0,935,936,3,75,37,0,936,937,3,85,42,0,937,938,3,65,32,0,938,939,
472
- 3,67,33,0,939,940,3,105,52,0,940,220,1,0,0,0,941,942,3,75,37,0,942,943,
473
- 3,69,34,0,943,222,1,0,0,0,944,945,3,75,37,0,945,946,3,85,42,0,946,224,
474
- 1,0,0,0,947,948,3,75,37,0,948,949,3,85,42,0,949,950,3,95,47,0,950,951,
475
- 3,67,33,0,951,952,3,93,46,0,952,953,3,97,48,0,953,226,1,0,0,0,954,955,
476
- 3,75,37,0,955,956,3,85,42,0,956,957,3,97,48,0,957,958,3,67,33,0,958,959,
477
- 3,71,35,0,959,960,3,67,33,0,960,961,3,93,46,0,961,228,1,0,0,0,962,963,
478
- 3,75,37,0,963,964,3,85,42,0,964,965,3,101,50,0,965,966,3,67,33,0,966,
479
- 967,3,93,46,0,967,968,3,95,47,0,968,969,3,67,33,0,969,230,1,0,0,0,970,
480
- 971,3,81,40,0,971,972,3,67,33,0,972,973,3,85,42,0,973,974,3,71,35,0,974,
481
- 975,3,97,48,0,975,976,3,73,36,0,976,232,1,0,0,0,977,978,3,81,40,0,978,
482
- 979,3,75,37,0,979,980,3,79,39,0,980,981,3,67,33,0,981,234,1,0,0,0,982,
483
- 983,3,81,40,0,983,984,3,75,37,0,984,985,3,95,47,0,985,986,3,97,48,0,986,
484
- 236,1,0,0,0,987,988,3,81,40,0,988,989,3,87,43,0,989,990,3,61,30,0,990,
485
- 991,3,87,43,0,991,992,3,99,49,0,992,993,3,85,42,0,993,994,3,65,32,0,994,
486
- 238,1,0,0,0,995,996,3,81,40,0,996,997,3,87,43,0,997,998,3,63,31,0,998,
487
- 999,3,59,29,0,999,1000,3,81,40,0,1000,240,1,0,0,0,1001,1002,3,81,40,0,
488
- 1002,1003,3,87,43,0,1003,1004,3,71,35,0,1004,242,1,0,0,0,1005,1006,3,
489
- 81,40,0,1006,1007,3,87,43,0,1007,1008,3,71,35,0,1008,1009,5,49,0,0,1009,
490
- 1010,5,48,0,0,1010,244,1,0,0,0,1011,1012,3,81,40,0,1012,1013,3,87,43,
491
- 0,1013,1014,3,71,35,0,1014,1015,5,50,0,0,1015,246,1,0,0,0,1016,1017,3,
492
- 81,40,0,1017,1018,3,87,43,0,1018,1019,3,71,35,0,1019,1020,3,75,37,0,1020,
493
- 1021,3,63,31,0,1021,1022,3,59,29,0,1022,1023,3,81,40,0,1023,248,1,0,0,
494
- 0,1024,1025,3,81,40,0,1025,1026,3,87,43,0,1026,1027,3,75,37,0,1027,1028,
495
- 3,85,42,0,1028,1029,3,65,32,0,1029,1030,3,67,33,0,1030,1031,3,105,52,
496
- 0,1031,250,1,0,0,0,1032,1033,3,83,41,0,1033,1034,3,87,43,0,1034,1035,
497
- 3,65,32,0,1035,252,1,0,0,0,1036,1037,3,85,42,0,1037,1038,3,87,43,0,1038,
498
- 1039,3,97,48,0,1039,254,1,0,0,0,1040,1041,3,85,42,0,1041,1042,3,99,49,
499
- 0,1042,1043,3,83,41,0,1043,1044,3,61,30,0,1044,1045,3,67,33,0,1045,1046,
500
- 3,93,46,0,1046,256,1,0,0,0,1047,1048,3,85,42,0,1048,1049,3,101,50,0,1049,
501
- 1050,3,81,40,0,1050,258,1,0,0,0,1051,1052,3,87,43,0,1052,1053,3,65,32,
502
- 0,1053,1054,3,65,32,0,1054,260,1,0,0,0,1055,1056,3,87,43,0,1056,1057,
503
- 3,69,34,0,1057,262,1,0,0,0,1058,1059,3,87,43,0,1059,1060,3,85,42,0,1060,
504
- 1061,3,67,33,0,1061,1062,3,87,43,0,1062,1063,3,69,34,0,1063,264,1,0,0,
505
- 0,1064,1065,3,87,43,0,1065,1066,3,89,44,0,1066,1067,3,97,48,0,1067,1068,
506
- 3,75,37,0,1068,1069,3,87,43,0,1069,1070,3,85,42,0,1070,1071,3,59,29,0,
507
- 1071,1072,3,81,40,0,1072,266,1,0,0,0,1073,1074,3,87,43,0,1074,1075,3,
508
- 93,46,0,1075,268,1,0,0,0,1076,1077,3,87,43,0,1077,1078,3,97,48,0,1078,
509
- 1079,3,73,36,0,1079,1080,3,67,33,0,1080,1081,3,93,46,0,1081,1082,3,103,
510
- 51,0,1082,1083,3,75,37,0,1083,1084,3,95,47,0,1084,1085,3,67,33,0,1085,
511
- 270,1,0,0,0,1086,1087,3,89,44,0,1087,1088,3,75,37,0,1088,272,1,0,0,0,
512
- 1089,1090,3,89,44,0,1090,1091,3,93,46,0,1091,1092,3,87,43,0,1092,1093,
513
- 3,63,31,0,1093,1094,3,67,33,0,1094,1095,3,65,32,0,1095,1096,3,99,49,0,
514
- 1096,1097,3,93,46,0,1097,1098,3,67,33,0,1098,274,1,0,0,0,1099,1100,3,
515
- 91,45,0,1100,1101,3,99,49,0,1101,1102,3,67,33,0,1102,1103,3,93,46,0,1103,
516
- 1104,3,107,53,0,1104,276,1,0,0,0,1105,1106,3,93,46,0,1106,1107,3,67,33,
517
- 0,1107,1108,3,59,29,0,1108,1109,3,81,40,0,1109,278,1,0,0,0,1110,1111,
518
- 3,93,46,0,1111,1112,3,67,33,0,1112,1113,3,69,34,0,1113,1114,3,67,33,0,
519
- 1114,1115,3,93,46,0,1115,1116,3,67,33,0,1116,1117,3,85,42,0,1117,1118,
520
- 3,63,31,0,1118,1119,3,67,33,0,1119,280,1,0,0,0,1120,1121,3,93,46,0,1121,
521
- 1122,3,67,33,0,1122,1123,3,83,41,0,1123,1124,3,87,43,0,1124,1125,3,101,
522
- 50,0,1125,1126,3,67,33,0,1126,282,1,0,0,0,1127,1128,3,93,46,0,1128,1129,
523
- 3,67,33,0,1129,1130,3,85,42,0,1130,1131,3,59,29,0,1131,1132,3,83,41,0,
524
- 1132,1133,3,67,33,0,1133,1134,3,65,32,0,1134,284,1,0,0,0,1135,1136,3,
525
- 93,46,0,1136,1137,3,67,33,0,1137,1138,3,89,44,0,1138,1139,3,67,33,0,1139,
526
- 1140,3,59,29,0,1140,1141,3,97,48,0,1141,286,1,0,0,0,1142,1143,3,93,46,
527
- 0,1143,1144,3,67,33,0,1144,1145,3,97,48,0,1145,1146,3,99,49,0,1146,1147,
528
- 3,93,46,0,1147,1148,3,85,42,0,1148,288,1,0,0,0,1149,1150,3,93,46,0,1150,
529
- 1151,3,87,43,0,1151,1152,3,81,40,0,1152,1153,3,67,33,0,1153,1154,3,95,
530
- 47,0,1154,1155,3,87,43,0,1155,1156,3,69,34,0,1156,290,1,0,0,0,1157,1158,
531
- 3,93,46,0,1158,1159,3,99,49,0,1159,1160,3,81,40,0,1160,1161,3,67,33,0,
532
- 1161,292,1,0,0,0,1162,1163,3,95,47,0,1163,1164,3,63,31,0,1164,1165,3,
533
- 73,36,0,1165,1166,3,67,33,0,1166,1167,3,83,41,0,1167,1168,3,59,29,0,1168,
534
- 294,1,0,0,0,1169,1170,3,95,47,0,1170,1171,3,67,33,0,1171,1172,3,81,40,
535
- 0,1172,1173,3,67,33,0,1173,1174,3,63,31,0,1174,1175,3,97,48,0,1175,296,
536
- 1,0,0,0,1176,1177,3,95,47,0,1177,1178,3,67,33,0,1178,1179,3,81,40,0,1179,
537
- 1180,3,69,34,0,1180,298,1,0,0,0,1181,1182,3,95,47,0,1182,1183,3,67,33,
538
- 0,1183,1184,3,97,48,0,1184,300,1,0,0,0,1185,1186,3,95,47,0,1186,1187,
539
- 3,75,37,0,1187,1188,3,85,42,0,1188,302,1,0,0,0,1189,1190,3,95,47,0,1190,
540
- 1191,3,75,37,0,1191,1192,3,109,54,0,1192,1193,3,67,33,0,1193,1194,3,87,
541
- 43,0,1194,1195,3,69,34,0,1195,304,1,0,0,0,1196,1197,3,95,47,0,1197,1198,
542
- 3,79,39,0,1198,1199,3,75,37,0,1199,1200,3,89,44,0,1200,306,1,0,0,0,1201,
543
- 1202,3,95,47,0,1202,1203,3,91,45,0,1203,1204,3,93,46,0,1204,1205,3,97,
544
- 48,0,1205,308,1,0,0,0,1206,1207,3,95,47,0,1207,1208,3,97,48,0,1208,1209,
545
- 3,93,46,0,1209,1210,3,75,37,0,1210,1211,3,85,42,0,1211,1212,3,71,35,0,
546
- 1212,310,1,0,0,0,1213,1214,3,95,47,0,1214,1215,3,99,49,0,1215,1216,3,
547
- 61,30,0,1216,1217,3,97,48,0,1217,1218,3,107,53,0,1218,1219,3,89,44,0,
548
- 1219,1220,3,67,33,0,1220,312,1,0,0,0,1221,1222,3,95,47,0,1222,1223,3,
549
- 99,49,0,1223,1224,3,61,30,0,1224,1225,3,97,48,0,1225,1226,3,107,53,0,
550
- 1226,1227,3,89,44,0,1227,1228,3,67,33,0,1228,1229,5,95,0,0,1229,1230,
551
- 3,63,31,0,1230,1231,3,87,43,0,1231,1232,3,85,42,0,1232,1233,3,95,47,0,
552
- 1233,1234,3,97,48,0,1234,1235,3,93,46,0,1235,1236,3,59,29,0,1236,1237,
553
- 3,75,37,0,1237,1238,3,85,42,0,1238,1239,3,97,48,0,1239,314,1,0,0,0,1240,
554
- 1241,3,95,47,0,1241,1242,3,99,49,0,1242,1243,3,89,44,0,1243,1244,3,67,
555
- 33,0,1244,1245,3,93,46,0,1245,1246,3,97,48,0,1246,1247,3,107,53,0,1247,
556
- 1248,3,89,44,0,1248,1249,3,67,33,0,1249,316,1,0,0,0,1250,1251,3,97,48,
557
- 0,1251,1252,3,59,29,0,1252,1253,3,85,42,0,1253,318,1,0,0,0,1254,1255,
558
- 3,97,48,0,1255,1256,3,73,36,0,1256,1257,3,67,33,0,1257,1258,3,85,42,0,
559
- 1258,320,1,0,0,0,1259,1260,3,97,48,0,1260,1261,3,87,43,0,1261,322,1,0,
560
- 0,0,1262,1263,3,97,48,0,1263,1264,3,93,46,0,1264,1265,3,99,49,0,1265,
561
- 1266,3,67,33,0,1266,324,1,0,0,0,1267,1268,3,97,48,0,1268,1269,3,107,53,
562
- 0,1269,1270,3,89,44,0,1270,1271,3,67,33,0,1271,326,1,0,0,0,1272,1273,
563
- 3,97,48,0,1273,1274,3,107,53,0,1274,1275,3,89,44,0,1275,1276,3,67,33,
564
- 0,1276,1277,3,87,43,0,1277,1278,3,69,34,0,1278,328,1,0,0,0,1279,1280,
565
- 3,97,48,0,1280,1281,3,87,43,0,1281,1282,3,97,48,0,1282,1283,3,59,29,0,
566
- 1283,1284,3,81,40,0,1284,1285,5,95,0,0,1285,1286,3,87,43,0,1286,1287,
567
- 3,101,50,0,1287,1288,3,67,33,0,1288,1289,3,93,46,0,1289,330,1,0,0,0,1290,
568
- 1291,3,99,49,0,1291,1292,3,85,42,0,1292,1293,3,75,37,0,1293,1294,3,91,
569
- 45,0,1294,1295,3,99,49,0,1295,1296,3,67,33,0,1296,332,1,0,0,0,1297,1298,
570
- 3,99,49,0,1298,1299,3,85,42,0,1299,1300,3,79,39,0,1300,1301,3,85,42,0,
571
- 1301,1302,3,87,43,0,1302,1303,3,103,51,0,1303,1304,3,85,42,0,1304,334,
572
- 1,0,0,0,1305,1306,3,99,49,0,1306,1307,3,85,42,0,1307,1308,3,97,48,0,1308,
573
- 1309,3,75,37,0,1309,1310,3,81,40,0,1310,336,1,0,0,0,1311,1312,3,99,49,
574
- 0,1312,1313,3,95,47,0,1313,1314,3,67,33,0,1314,338,1,0,0,0,1315,1316,
575
- 3,99,49,0,1316,1317,3,95,47,0,1317,1318,3,67,33,0,1318,1319,3,65,32,0,
576
- 1319,1320,3,75,37,0,1320,1321,3,85,42,0,1321,340,1,0,0,0,1322,1323,3,
577
- 101,50,0,1323,1324,3,59,29,0,1324,1325,3,81,40,0,1325,1326,3,99,49,0,
578
- 1326,1327,3,67,33,0,1327,342,1,0,0,0,1328,1329,3,101,50,0,1329,1330,3,
579
- 59,29,0,1330,1331,3,81,40,0,1331,1332,3,99,49,0,1332,1333,3,67,33,0,1333,
580
- 1334,5,95,0,0,1334,1335,3,75,37,0,1335,1336,3,85,42,0,1336,344,1,0,0,
581
- 0,1337,1338,3,101,50,0,1338,1339,3,59,29,0,1339,1340,3,81,40,0,1340,1341,
582
- 3,99,49,0,1341,1342,3,67,33,0,1342,1343,5,95,0,0,1343,1344,3,99,49,0,
583
- 1344,1345,3,85,42,0,1345,1346,3,75,37,0,1346,1347,3,91,45,0,1347,1348,
584
- 3,99,49,0,1348,1349,3,67,33,0,1349,346,1,0,0,0,1350,1351,3,101,50,0,1351,
585
- 1352,3,59,29,0,1352,1353,3,93,46,0,1353,348,1,0,0,0,1354,1355,3,103,51,
586
- 0,1355,1356,3,75,37,0,1356,1357,3,97,48,0,1357,1358,3,73,36,0,1358,350,
587
- 1,0,0,0,1359,1360,3,103,51,0,1360,1361,3,73,36,0,1361,1362,3,67,33,0,
588
- 1362,1363,3,93,46,0,1363,1364,3,67,33,0,1364,352,1,0,0,0,1365,1366,3,
589
- 103,51,0,1366,1367,3,73,36,0,1367,1368,3,75,37,0,1368,1369,3,81,40,0,
590
- 1369,1370,3,67,33,0,1370,354,1,0,0,0,1371,1372,3,105,52,0,1372,1373,3,
591
- 87,43,0,1373,1374,3,93,46,0,1374,356,1,0,0,0,1375,1376,7,26,0,0,1376,
592
- 358,1,0,0,0,1377,1378,7,27,0,0,1378,360,1,0,0,0,1379,1383,3,359,179,0,
593
- 1380,1382,3,359,179,0,1381,1380,1,0,0,0,1382,1385,1,0,0,0,1383,1381,1,
594
- 0,0,0,1383,1384,1,0,0,0,1384,362,1,0,0,0,1385,1383,1,0,0,0,1386,1387,
595
- 3,369,184,0,1387,1388,3,369,184,0,1388,1389,3,369,184,0,1389,1390,3,369,
596
- 184,0,1390,364,1,0,0,0,1391,1394,3,359,179,0,1392,1394,7,28,0,0,1393,
597
- 1391,1,0,0,0,1393,1392,1,0,0,0,1394,366,1,0,0,0,1395,1396,7,29,0,0,1396,
598
- 368,1,0,0,0,1397,1398,3,365,182,0,1398,1399,3,365,182,0,1399,370,1,0,
599
- 0,0,1400,1401,7,30,0,0,1401,372,1,0,0,0,1402,1403,5,37,0,0,1403,1407,
600
- 3,357,178,0,1404,1406,3,357,178,0,1405,1404,1,0,0,0,1406,1409,1,0,0,0,
601
- 1407,1405,1,0,0,0,1407,1408,1,0,0,0,1408,374,1,0,0,0,1409,1407,1,0,0,
602
- 0,1410,1411,5,34,0,0,1411,1415,3,363,181,0,1412,1414,3,363,181,0,1413,
603
- 1412,1,0,0,0,1414,1417,1,0,0,0,1415,1413,1,0,0,0,1415,1416,1,0,0,0,1416,
604
- 1418,1,0,0,0,1417,1415,1,0,0,0,1418,1419,5,34,0,0,1419,376,1,0,0,0,1420,
605
- 1421,3,361,180,0,1421,378,1,0,0,0,1422,1423,3,361,180,0,1423,1425,5,46,
606
- 0,0,1424,1426,3,361,180,0,1425,1424,1,0,0,0,1425,1426,1,0,0,0,1426,1433,
607
- 1,0,0,0,1427,1429,3,67,33,0,1428,1430,3,371,185,0,1429,1428,1,0,0,0,1429,
608
- 1430,1,0,0,0,1430,1431,1,0,0,0,1431,1432,3,361,180,0,1432,1434,1,0,0,
609
- 0,1433,1427,1,0,0,0,1433,1434,1,0,0,0,1434,380,1,0,0,0,1435,1441,3,367,
610
- 183,0,1436,1440,3,367,183,0,1437,1440,3,359,179,0,1438,1440,5,95,0,0,
611
- 1439,1436,1,0,0,0,1439,1437,1,0,0,0,1439,1438,1,0,0,0,1440,1443,1,0,0,
612
- 0,1441,1439,1,0,0,0,1441,1442,1,0,0,0,1442,382,1,0,0,0,1443,1441,1,0,
613
- 0,0,1444,1448,5,39,0,0,1445,1447,9,0,0,0,1446,1445,1,0,0,0,1447,1450,
614
- 1,0,0,0,1448,1449,1,0,0,0,1448,1446,1,0,0,0,1449,1451,1,0,0,0,1450,1448,
615
- 1,0,0,0,1451,1452,5,39,0,0,1452,384,1,0,0,0,1453,1454,5,40,0,0,1454,1455,
616
- 5,42,0,0,1455,1460,1,0,0,0,1456,1459,3,385,192,0,1457,1459,9,0,0,0,1458,
617
- 1456,1,0,0,0,1458,1457,1,0,0,0,1459,1462,1,0,0,0,1460,1461,1,0,0,0,1460,
618
- 1458,1,0,0,0,1461,1463,1,0,0,0,1462,1460,1,0,0,0,1463,1464,5,42,0,0,1464,
619
- 1465,5,41,0,0,1465,1466,1,0,0,0,1466,1467,6,192,0,0,1467,386,1,0,0,0,
620
- 1468,1469,5,45,0,0,1469,1470,5,45,0,0,1470,1474,1,0,0,0,1471,1473,8,31,
621
- 0,0,1472,1471,1,0,0,0,1473,1476,1,0,0,0,1474,1472,1,0,0,0,1474,1475,1,
622
- 0,0,0,1475,1477,1,0,0,0,1476,1474,1,0,0,0,1477,1478,6,193,0,0,1478,388,
623
- 1,0,0,0,1479,1481,7,32,0,0,1480,1479,1,0,0,0,1481,1482,1,0,0,0,1482,1480,
624
- 1,0,0,0,1482,1483,1,0,0,0,1483,1484,1,0,0,0,1484,1485,6,194,1,0,1485,
625
- 390,1,0,0,0,15,0,1383,1393,1407,1415,1425,1429,1433,1439,1441,1448,1458,
626
- 1460,1474,1482,2,0,2,0,0,1,0
627
- };
628
- staticData->serializedATN = antlr4::atn::SerializedATNView(serializedATNSegment, sizeof(serializedATNSegment) / sizeof(serializedATNSegment[0]));
629
-
630
- antlr4::atn::ATNDeserializer deserializer;
631
- staticData->atn = deserializer.deserialize(staticData->serializedATN);
632
-
633
- const size_t count = staticData->atn->getNumberOfDecisions();
634
- staticData->decisionToDFA.reserve(count);
635
- for (size_t i = 0; i < count; i++) {
636
- staticData->decisionToDFA.emplace_back(staticData->atn->getDecisionState(i), i);
637
- }
638
- expresslexerLexerStaticData = staticData.release();
639
- }
640
-
641
- }
642
-
643
- ExpressLexer::ExpressLexer(CharStream *input) : Lexer(input) {
644
- ExpressLexer::initialize();
645
- _interpreter = new atn::LexerATNSimulator(this, *expresslexerLexerStaticData->atn, expresslexerLexerStaticData->decisionToDFA, expresslexerLexerStaticData->sharedContextCache);
646
- }
647
-
648
- ExpressLexer::~ExpressLexer() {
649
- delete _interpreter;
650
- }
651
-
652
- std::string ExpressLexer::getGrammarFileName() const {
653
- return "Express.g4";
654
- }
655
-
656
- const std::vector<std::string>& ExpressLexer::getRuleNames() const {
657
- return expresslexerLexerStaticData->ruleNames;
658
- }
659
-
660
- const std::vector<std::string>& ExpressLexer::getChannelNames() const {
661
- return expresslexerLexerStaticData->channelNames;
662
- }
663
-
664
- const std::vector<std::string>& ExpressLexer::getModeNames() const {
665
- return expresslexerLexerStaticData->modeNames;
666
- }
667
-
668
- const dfa::Vocabulary& ExpressLexer::getVocabulary() const {
669
- return expresslexerLexerStaticData->vocabulary;
670
- }
671
-
672
- antlr4::atn::SerializedATNView ExpressLexer::getSerializedATN() const {
673
- return expresslexerLexerStaticData->serializedATN;
674
- }
675
-
676
- const atn::ATN& ExpressLexer::getATN() const {
677
- return *expresslexerLexerStaticData->atn;
678
- }
679
-
680
-
681
-
682
-
683
- void ExpressLexer::initialize() {
684
- std::call_once(expresslexerLexerOnceFlag, expresslexerLexerInitialize);
685
- }