phronomy 0.1.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.
Files changed (3645) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +6 -0
  3. data/README.md +536 -0
  4. data/Rakefile +10 -0
  5. data/docs/trustworthy_ai_enhancements.md +332 -0
  6. data/lib/generators/phronomy/install/install_generator.rb +41 -0
  7. data/lib/generators/phronomy/install/templates/create_phronomy_messages.rb.tt +15 -0
  8. data/lib/generators/phronomy/install/templates/initializer.rb.tt +18 -0
  9. data/lib/generators/phronomy/install/templates/message_model.rb.tt +8 -0
  10. data/lib/phronomy/active_record/acts_as.rb +48 -0
  11. data/lib/phronomy/active_record/checkpoint.rb +20 -0
  12. data/lib/phronomy/active_record/extensions.rb +14 -0
  13. data/lib/phronomy/active_record/message.rb +20 -0
  14. data/lib/phronomy/agent/base.rb +902 -0
  15. data/lib/phronomy/agent/before_completion_context.rb +46 -0
  16. data/lib/phronomy/agent/handoff.rb +56 -0
  17. data/lib/phronomy/agent/react_agent.rb +152 -0
  18. data/lib/phronomy/agent/runner.rb +93 -0
  19. data/lib/phronomy/agent.rb +16 -0
  20. data/lib/phronomy/configuration.rb +52 -0
  21. data/lib/phronomy/context/assembler.rb +129 -0
  22. data/lib/phronomy/context/builder.rb +92 -0
  23. data/lib/phronomy/context/compaction_context.rb +111 -0
  24. data/lib/phronomy/context/context_version_cache.rb +59 -0
  25. data/lib/phronomy/context/token_budget.rb +92 -0
  26. data/lib/phronomy/context/token_estimator.rb +52 -0
  27. data/lib/phronomy/context/trigger_context.rb +38 -0
  28. data/lib/phronomy/context/trim_context.rb +71 -0
  29. data/lib/phronomy/context.rb +19 -0
  30. data/lib/phronomy/embeddings/base.rb +19 -0
  31. data/lib/phronomy/embeddings/ruby_llm_embeddings.rb +41 -0
  32. data/lib/phronomy/embeddings.rb +11 -0
  33. data/lib/phronomy/eval/comparison.rb +45 -0
  34. data/lib/phronomy/eval/dataset.rb +41 -0
  35. data/lib/phronomy/eval/eval_case.rb +17 -0
  36. data/lib/phronomy/eval/eval_result.rb +19 -0
  37. data/lib/phronomy/eval/metrics.rb +60 -0
  38. data/lib/phronomy/eval/runner.rb +53 -0
  39. data/lib/phronomy/eval/scorer/base.rb +21 -0
  40. data/lib/phronomy/eval/scorer/exact_match.rb +29 -0
  41. data/lib/phronomy/eval/scorer/includes_scorer.rb +30 -0
  42. data/lib/phronomy/eval/scorer/llm_judge.rb +54 -0
  43. data/lib/phronomy/eval/scorer.rb +9 -0
  44. data/lib/phronomy/eval.rb +7 -0
  45. data/lib/phronomy/graph/compiled_graph.rb +183 -0
  46. data/lib/phronomy/graph/parallel_node.rb +158 -0
  47. data/lib/phronomy/graph/state.rb +105 -0
  48. data/lib/phronomy/graph/state_graph.rb +143 -0
  49. data/lib/phronomy/graph.rb +13 -0
  50. data/lib/phronomy/guardrail/base.rb +42 -0
  51. data/lib/phronomy/guardrail/builtin/pii_pattern_detector.rb +73 -0
  52. data/lib/phronomy/guardrail/builtin/prompt_injection_detector.rb +53 -0
  53. data/lib/phronomy/guardrail/builtin.rb +16 -0
  54. data/lib/phronomy/guardrail/input_guardrail.rb +19 -0
  55. data/lib/phronomy/guardrail/output_guardrail.rb +19 -0
  56. data/lib/phronomy/guardrail.rb +8 -0
  57. data/lib/phronomy/knowledge_source/base.rb +32 -0
  58. data/lib/phronomy/knowledge_source/entity_knowledge.rb +91 -0
  59. data/lib/phronomy/knowledge_source/rag_knowledge.rb +53 -0
  60. data/lib/phronomy/knowledge_source/static_knowledge.rb +47 -0
  61. data/lib/phronomy/knowledge_source.rb +17 -0
  62. data/lib/phronomy/loader/base.rb +24 -0
  63. data/lib/phronomy/loader/csv_loader.rb +54 -0
  64. data/lib/phronomy/loader/markdown_loader.rb +74 -0
  65. data/lib/phronomy/loader/plain_text_loader.rb +21 -0
  66. data/lib/phronomy/loader.rb +13 -0
  67. data/lib/phronomy/memory/compression/base.rb +37 -0
  68. data/lib/phronomy/memory/compression/summary.rb +106 -0
  69. data/lib/phronomy/memory/compression/tool_output_pruner.rb +62 -0
  70. data/lib/phronomy/memory/compression.rb +11 -0
  71. data/lib/phronomy/memory/conversation_manager.rb +197 -0
  72. data/lib/phronomy/memory/retrieval/base.rb +21 -0
  73. data/lib/phronomy/memory/retrieval/composite.rb +75 -0
  74. data/lib/phronomy/memory/retrieval/recent.rb +34 -0
  75. data/lib/phronomy/memory/retrieval/semantic.rb +81 -0
  76. data/lib/phronomy/memory/retrieval.rb +12 -0
  77. data/lib/phronomy/memory/storage/active_record.rb +223 -0
  78. data/lib/phronomy/memory/storage/base.rb +133 -0
  79. data/lib/phronomy/memory/storage/in_memory.rb +104 -0
  80. data/lib/phronomy/memory/storage.rb +11 -0
  81. data/lib/phronomy/memory.rb +21 -0
  82. data/lib/phronomy/output_parser/base.rb +22 -0
  83. data/lib/phronomy/output_parser/json_parser.rb +29 -0
  84. data/lib/phronomy/output_parser/structured_parser.rb +27 -0
  85. data/lib/phronomy/output_parser.rb +6 -0
  86. data/lib/phronomy/prompt_template.rb +91 -0
  87. data/lib/phronomy/rails/agent_job.rb +58 -0
  88. data/lib/phronomy/railtie.rb +45 -0
  89. data/lib/phronomy/runnable.rb +34 -0
  90. data/lib/phronomy/splitter/base.rb +45 -0
  91. data/lib/phronomy/splitter/fixed_size_splitter.rb +49 -0
  92. data/lib/phronomy/splitter/recursive_splitter.rb +103 -0
  93. data/lib/phronomy/splitter.rb +12 -0
  94. data/lib/phronomy/state_store/active_record.rb +72 -0
  95. data/lib/phronomy/state_store/base.rb +100 -0
  96. data/lib/phronomy/state_store/encryptor/active_support.rb +49 -0
  97. data/lib/phronomy/state_store/encryptor/base.rb +34 -0
  98. data/lib/phronomy/state_store/encryptor.rb +16 -0
  99. data/lib/phronomy/state_store/in_memory.rb +39 -0
  100. data/lib/phronomy/state_store/redis.rb +70 -0
  101. data/lib/phronomy/state_store.rb +9 -0
  102. data/lib/phronomy/token_usage.rb +85 -0
  103. data/lib/phronomy/tool/agent_tool.rb +76 -0
  104. data/lib/phronomy/tool/base.rb +358 -0
  105. data/lib/phronomy/tool/mcp_tool.rb +256 -0
  106. data/lib/phronomy/tool.rb +10 -0
  107. data/lib/phronomy/tracing/base.rb +58 -0
  108. data/lib/phronomy/tracing/langfuse_tracer.rb +96 -0
  109. data/lib/phronomy/tracing/null_tracer.rb +20 -0
  110. data/lib/phronomy/tracing/open_telemetry_tracer.rb +55 -0
  111. data/lib/phronomy/tracing.rb +6 -0
  112. data/lib/phronomy/trust_pipeline.rb +239 -0
  113. data/lib/phronomy/vector_store/base.rb +41 -0
  114. data/lib/phronomy/vector_store/in_memory.rb +68 -0
  115. data/lib/phronomy/vector_store/pgvector.rb +90 -0
  116. data/lib/phronomy/vector_store/redis_search.rb +153 -0
  117. data/lib/phronomy/vector_store.rb +11 -0
  118. data/lib/phronomy/version.rb +5 -0
  119. data/lib/phronomy.rb +52 -0
  120. data/sig/phronomy.rbs +4 -0
  121. data/vendor/bundle/ruby/3.2.0/bin/erb +29 -0
  122. data/vendor/bundle/ruby/3.2.0/bin/htmldiff +29 -0
  123. data/vendor/bundle/ruby/3.2.0/bin/irb +29 -0
  124. data/vendor/bundle/ruby/3.2.0/bin/ldiff +29 -0
  125. data/vendor/bundle/ruby/3.2.0/bin/racc +29 -0
  126. data/vendor/bundle/ruby/3.2.0/bin/rake +29 -0
  127. data/vendor/bundle/ruby/3.2.0/bin/rdoc +29 -0
  128. data/vendor/bundle/ruby/3.2.0/bin/ri +29 -0
  129. data/vendor/bundle/ruby/3.2.0/bin/rspec +29 -0
  130. data/vendor/bundle/ruby/3.2.0/bin/rubocop +29 -0
  131. data/vendor/bundle/ruby/3.2.0/bin/ruby-parse +29 -0
  132. data/vendor/bundle/ruby/3.2.0/bin/ruby-rewrite +29 -0
  133. data/vendor/bundle/ruby/3.2.0/bin/standardrb +29 -0
  134. data/vendor/bundle/ruby/3.2.0/cache/ast-2.4.3.gem +0 -0
  135. data/vendor/bundle/ruby/3.2.0/cache/base64-0.3.0.gem +0 -0
  136. data/vendor/bundle/ruby/3.2.0/cache/date-3.5.1.gem +0 -0
  137. data/vendor/bundle/ruby/3.2.0/cache/diff-lcs-1.6.2.gem +0 -0
  138. data/vendor/bundle/ruby/3.2.0/cache/erb-6.0.4.gem +0 -0
  139. data/vendor/bundle/ruby/3.2.0/cache/event_stream_parser-1.0.0.gem +0 -0
  140. data/vendor/bundle/ruby/3.2.0/cache/faraday-2.14.1.gem +0 -0
  141. data/vendor/bundle/ruby/3.2.0/cache/faraday-multipart-1.2.0.gem +0 -0
  142. data/vendor/bundle/ruby/3.2.0/cache/faraday-net_http-3.4.2.gem +0 -0
  143. data/vendor/bundle/ruby/3.2.0/cache/faraday-retry-2.4.0.gem +0 -0
  144. data/vendor/bundle/ruby/3.2.0/cache/io-console-0.8.2.gem +0 -0
  145. data/vendor/bundle/ruby/3.2.0/cache/irb-1.18.0.gem +0 -0
  146. data/vendor/bundle/ruby/3.2.0/cache/json-2.19.5.gem +0 -0
  147. data/vendor/bundle/ruby/3.2.0/cache/language_server-protocol-3.17.0.5.gem +0 -0
  148. data/vendor/bundle/ruby/3.2.0/cache/lint_roller-1.1.0.gem +0 -0
  149. data/vendor/bundle/ruby/3.2.0/cache/logger-1.7.0.gem +0 -0
  150. data/vendor/bundle/ruby/3.2.0/cache/marcel-1.1.0.gem +0 -0
  151. data/vendor/bundle/ruby/3.2.0/cache/multipart-post-2.4.1.gem +0 -0
  152. data/vendor/bundle/ruby/3.2.0/cache/net-http-0.9.1.gem +0 -0
  153. data/vendor/bundle/ruby/3.2.0/cache/parallel-1.28.0.gem +0 -0
  154. data/vendor/bundle/ruby/3.2.0/cache/parser-3.3.11.1.gem +0 -0
  155. data/vendor/bundle/ruby/3.2.0/cache/pp-0.6.3.gem +0 -0
  156. data/vendor/bundle/ruby/3.2.0/cache/prettyprint-0.2.0.gem +0 -0
  157. data/vendor/bundle/ruby/3.2.0/cache/prism-1.9.0.gem +0 -0
  158. data/vendor/bundle/ruby/3.2.0/cache/psych-5.3.1.gem +0 -0
  159. data/vendor/bundle/ruby/3.2.0/cache/racc-1.8.1.gem +0 -0
  160. data/vendor/bundle/ruby/3.2.0/cache/rainbow-3.1.1.gem +0 -0
  161. data/vendor/bundle/ruby/3.2.0/cache/rake-13.4.2.gem +0 -0
  162. data/vendor/bundle/ruby/3.2.0/cache/rdoc-7.2.0.gem +0 -0
  163. data/vendor/bundle/ruby/3.2.0/cache/regexp_parser-2.12.0.gem +0 -0
  164. data/vendor/bundle/ruby/3.2.0/cache/reline-0.6.3.gem +0 -0
  165. data/vendor/bundle/ruby/3.2.0/cache/rspec-3.13.2.gem +0 -0
  166. data/vendor/bundle/ruby/3.2.0/cache/rspec-core-3.13.6.gem +0 -0
  167. data/vendor/bundle/ruby/3.2.0/cache/rspec-expectations-3.13.5.gem +0 -0
  168. data/vendor/bundle/ruby/3.2.0/cache/rspec-mocks-3.13.8.gem +0 -0
  169. data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.13.7.gem +0 -0
  170. data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.84.2.gem +0 -0
  171. data/vendor/bundle/ruby/3.2.0/cache/rubocop-ast-1.49.1.gem +0 -0
  172. data/vendor/bundle/ruby/3.2.0/cache/rubocop-performance-1.26.1.gem +0 -0
  173. data/vendor/bundle/ruby/3.2.0/cache/ruby-progressbar-1.13.0.gem +0 -0
  174. data/vendor/bundle/ruby/3.2.0/cache/ruby_llm-1.14.1.gem +0 -0
  175. data/vendor/bundle/ruby/3.2.0/cache/ruby_llm-schema-0.3.0.gem +0 -0
  176. data/vendor/bundle/ruby/3.2.0/cache/standard-1.54.0.gem +0 -0
  177. data/vendor/bundle/ruby/3.2.0/cache/standard-custom-1.0.2.gem +0 -0
  178. data/vendor/bundle/ruby/3.2.0/cache/standard-performance-1.9.0.gem +0 -0
  179. data/vendor/bundle/ruby/3.2.0/cache/stringio-3.2.0.gem +0 -0
  180. data/vendor/bundle/ruby/3.2.0/cache/tsort-0.2.0.gem +0 -0
  181. data/vendor/bundle/ruby/3.2.0/cache/unicode-display_width-3.2.0.gem +0 -0
  182. data/vendor/bundle/ruby/3.2.0/cache/unicode-emoji-4.2.0.gem +0 -0
  183. data/vendor/bundle/ruby/3.2.0/cache/uri-1.1.1.gem +0 -0
  184. data/vendor/bundle/ruby/3.2.0/cache/zeitwerk-2.7.5.gem +0 -0
  185. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/date-3.5.1/date_core.so +0 -0
  186. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/date-3.5.1/gem.build_complete +0 -0
  187. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/date-3.5.1/gem_make.out +24 -0
  188. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/date-3.5.1/mkmf.log +89 -0
  189. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/erb-6.0.4/erb/escape.so +0 -0
  190. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/erb-6.0.4/gem.build_complete +0 -0
  191. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/erb-6.0.4/gem_make.out +19 -0
  192. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/erb-6.0.4/mkmf.log +36 -0
  193. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/gem.build_complete +0 -0
  194. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/gem_make.out +31 -0
  195. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/io/console.so +0 -0
  196. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/io-console-0.8.2/mkmf.log +430 -0
  197. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/json-2.19.5/gem.build_complete +0 -0
  198. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/json-2.19.5/gem_make.out +26 -0
  199. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/json-2.19.5/json/ext/generator.so +0 -0
  200. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/json-2.19.5/json/ext/parser.so +0 -0
  201. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/json-2.19.5/mkmf.log +184 -0
  202. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/prism-1.9.0/gem.build_complete +0 -0
  203. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/prism-1.9.0/gem_make.out +44 -0
  204. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/prism-1.9.0/mkmf.log +74 -0
  205. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/prism-1.9.0/prism/prism.so +0 -0
  206. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/psych-5.3.1/gem.build_complete +0 -0
  207. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/psych-5.3.1/gem_make.out +28 -0
  208. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/psych-5.3.1/mkmf.log +37 -0
  209. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/psych-5.3.1/psych.so +0 -0
  210. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/racc-1.8.1/gem.build_complete +0 -0
  211. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/racc-1.8.1/gem_make.out +18 -0
  212. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/racc-1.8.1/racc/cparse.so +0 -0
  213. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/stringio-3.2.0/gem.build_complete +0 -0
  214. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/stringio-3.2.0/gem_make.out +19 -0
  215. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/stringio-3.2.0/mkmf.log +30 -0
  216. data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux-gnu/3.2.0/stringio-3.2.0/stringio.so +0 -0
  217. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/LICENSE.MIT +20 -0
  218. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/README.YARD.md +12 -0
  219. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/lib/ast/node.rb +268 -0
  220. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/lib/ast/processor/mixin.rb +288 -0
  221. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/lib/ast/processor.rb +12 -0
  222. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/lib/ast/sexp.rb +30 -0
  223. data/vendor/bundle/ruby/3.2.0/gems/ast-2.4.3/lib/ast.rb +17 -0
  224. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/BSDL +22 -0
  225. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/COPYING +56 -0
  226. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/LEGAL +60 -0
  227. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/README.md +48 -0
  228. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/lib/base64.rb +381 -0
  229. data/vendor/bundle/ruby/3.2.0/gems/base64-0.3.0/sig/base64.rbs +355 -0
  230. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/BSDL +22 -0
  231. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/COPYING +56 -0
  232. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/README.md +102 -0
  233. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/Makefile +269 -0
  234. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/date_core.c +10065 -0
  235. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/date_parse.c +3086 -0
  236. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/date_strftime.c +638 -0
  237. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/date_strptime.c +704 -0
  238. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/date_tmx.h +56 -0
  239. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/extconf.rb +13 -0
  240. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/prereq.mk +19 -0
  241. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/zonetab.h +1564 -0
  242. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date/zonetab.list +330 -0
  243. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/lib/date.rb +70 -0
  244. data/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/lib/date_core.so +0 -0
  245. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/.rspec +1 -0
  246. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/CHANGELOG.md +518 -0
  247. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/CODE_OF_CONDUCT.md +128 -0
  248. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/CONTRIBUTING.md +71 -0
  249. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/CONTRIBUTORS.md +49 -0
  250. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/LICENCE.md +40 -0
  251. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/Manifest.txt +115 -0
  252. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/README.md +92 -0
  253. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/Rakefile +115 -0
  254. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/SECURITY.md +41 -0
  255. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/bin/htmldiff +35 -0
  256. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/bin/ldiff +9 -0
  257. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/docs/COPYING.txt +339 -0
  258. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/docs/artistic.txt +127 -0
  259. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/array.rb +7 -0
  260. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/backports.rb +13 -0
  261. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/block.rb +37 -0
  262. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/callbacks.rb +327 -0
  263. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/change.rb +174 -0
  264. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/htmldiff.rb +160 -0
  265. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/hunk.rb +379 -0
  266. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/internals.rb +308 -0
  267. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/ldiff.rb +189 -0
  268. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/string.rb +5 -0
  269. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs/version.rb +7 -0
  270. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff/lcs.rb +742 -0
  271. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/lib/diff-lcs.rb +3 -0
  272. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/mise.toml +5 -0
  273. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/change_spec.rb +89 -0
  274. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/diff_spec.rb +51 -0
  275. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/123_x +2 -0
  276. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/456_x +2 -0
  277. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/aX +1 -0
  278. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/bXaX +1 -0
  279. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ds1.csv +50 -0
  280. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ds2.csv +51 -0
  281. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/empty +0 -0
  282. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/file1.bin +0 -0
  283. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/file2.bin +0 -0
  284. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/four_lines +4 -0
  285. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/four_lines_with_missing_new_line +4 -0
  286. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line1-e +1 -0
  287. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line1-f +1 -0
  288. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line2-e +1 -0
  289. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/diff.missing_new_line2-f +1 -0
  290. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.chef-e +2 -0
  291. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.chef-f +2 -0
  292. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line1-e +1 -0
  293. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line1-f +1 -0
  294. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line2-e +1 -0
  295. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/error.diff.missing_new_line2-f +1 -0
  296. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff +4 -0
  297. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-c +7 -0
  298. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-e +3 -0
  299. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-f +3 -0
  300. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff-u +5 -0
  301. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1 +0 -0
  302. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-c +0 -0
  303. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-e +0 -0
  304. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-f +0 -0
  305. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin1-u +0 -0
  306. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2 +1 -0
  307. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-c +1 -0
  308. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-e +1 -0
  309. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-f +1 -0
  310. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.bin2-u +1 -0
  311. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef +4 -0
  312. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-c +15 -0
  313. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-e +3 -0
  314. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-f +3 -0
  315. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef-u +9 -0
  316. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2 +7 -0
  317. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-c +20 -0
  318. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-d +7 -0
  319. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-e +7 -0
  320. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-f +7 -0
  321. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.chef2-u +16 -0
  322. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines +5 -0
  323. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-c +9 -0
  324. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-e +6 -0
  325. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-f +6 -0
  326. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.empty.vs.four_lines-u +7 -0
  327. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty +5 -0
  328. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-c +9 -0
  329. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-e +1 -0
  330. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-f +1 -0
  331. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.four_lines.vs.empty-u +7 -0
  332. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context +4 -0
  333. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-c +9 -0
  334. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-e +3 -0
  335. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-f +3 -0
  336. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.issue95_trailing_context-u +6 -0
  337. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1 +5 -0
  338. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-c +14 -0
  339. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-e +0 -0
  340. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-f +0 -0
  341. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line1-u +9 -0
  342. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2 +5 -0
  343. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-c +14 -0
  344. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-e +0 -0
  345. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-f +0 -0
  346. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/ldiff/output.diff.missing_new_line2-u +9 -0
  347. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/new-chef +4 -0
  348. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/new-chef2 +17 -0
  349. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/old-chef +4 -0
  350. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/fixtures/old-chef2 +14 -0
  351. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/hunk_spec.rb +83 -0
  352. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/issues_spec.rb +160 -0
  353. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/lcs_spec.rb +56 -0
  354. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/ldiff_spec.rb +100 -0
  355. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/patch_spec.rb +416 -0
  356. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/sdiff_spec.rb +216 -0
  357. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/spec_helper.rb +376 -0
  358. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/traverse_balanced_spec.rb +312 -0
  359. data/vendor/bundle/ruby/3.2.0/gems/diff-lcs-1.6.2/spec/traverse_sequences_spec.rb +137 -0
  360. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/.document +6 -0
  361. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/.gitignore +12 -0
  362. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/.rdoc_options +1 -0
  363. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/BSDL +22 -0
  364. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/COPYING +56 -0
  365. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/Gemfile +11 -0
  366. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/LICENSE.txt +2 -0
  367. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/NEWS.md +106 -0
  368. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/README.md +98 -0
  369. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/Rakefile +19 -0
  370. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/_doc/cgi.rb +3 -0
  371. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/_doc/erb_executable.md +240 -0
  372. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/bin/console +14 -0
  373. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/bin/setup +8 -0
  374. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/erb.gemspec +37 -0
  375. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/ext/erb/escape/Makefile +269 -0
  376. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/ext/erb/escape/escape.c +114 -0
  377. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/ext/erb/escape/extconf.rb +9 -0
  378. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/lib/erb/compiler.rb +487 -0
  379. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/lib/erb/def_method.rb +47 -0
  380. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/lib/erb/util.rb +77 -0
  381. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/lib/erb/version.rb +5 -0
  382. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/lib/erb.rb +1179 -0
  383. data/vendor/bundle/ruby/3.2.0/gems/erb-6.0.4/libexec/erb +184 -0
  384. data/vendor/bundle/ruby/3.2.0/gems/event_stream_parser-1.0.0/LICENSE.md +21 -0
  385. data/vendor/bundle/ruby/3.2.0/gems/event_stream_parser-1.0.0/README.md +99 -0
  386. data/vendor/bundle/ruby/3.2.0/gems/event_stream_parser-1.0.0/lib/event_stream_parser/version.rb +5 -0
  387. data/vendor/bundle/ruby/3.2.0/gems/event_stream_parser-1.0.0/lib/event_stream_parser.rb +222 -0
  388. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/CHANGELOG.md +574 -0
  389. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/LICENSE.md +20 -0
  390. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/README.md +67 -0
  391. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/Rakefile +12 -0
  392. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/examples/client_spec.rb +119 -0
  393. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/examples/client_test.rb +144 -0
  394. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/adapter/test.rb +311 -0
  395. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/adapter.rb +101 -0
  396. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/adapter_registry.rb +30 -0
  397. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/connection.rb +565 -0
  398. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/encoders/flat_params_encoder.rb +105 -0
  399. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/encoders/nested_params_encoder.rb +183 -0
  400. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/error.rb +202 -0
  401. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/logging/formatter.rb +118 -0
  402. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/methods.rb +6 -0
  403. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/middleware.rb +72 -0
  404. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/middleware_registry.rb +83 -0
  405. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options/connection_options.rb +23 -0
  406. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options/env.rb +204 -0
  407. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options/proxy_options.rb +38 -0
  408. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options/request_options.rb +23 -0
  409. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options/ssl_options.rb +76 -0
  410. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/options.rb +219 -0
  411. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/parameters.rb +5 -0
  412. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/rack_builder.rb +248 -0
  413. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/request/authorization.rb +54 -0
  414. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/request/instrumentation.rb +58 -0
  415. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/request/json.rb +70 -0
  416. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/request/url_encoded.rb +60 -0
  417. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/request.rb +139 -0
  418. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/response/json.rb +74 -0
  419. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/response/logger.rb +39 -0
  420. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/response/raise_error.rb +83 -0
  421. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/response.rb +95 -0
  422. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/utils/headers.rb +150 -0
  423. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/utils/params_hash.rb +61 -0
  424. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/utils.rb +121 -0
  425. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday/version.rb +5 -0
  426. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/lib/faraday.rb +158 -0
  427. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/external_adapters/faraday_specs_setup.rb +14 -0
  428. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/adapter/test_spec.rb +442 -0
  429. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/adapter_registry_spec.rb +28 -0
  430. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/adapter_spec.rb +55 -0
  431. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/connection_spec.rb +841 -0
  432. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/error_spec.rb +175 -0
  433. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/middleware_registry_spec.rb +31 -0
  434. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/middleware_spec.rb +213 -0
  435. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/options/env_spec.rb +76 -0
  436. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/options/options_spec.rb +297 -0
  437. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/options/proxy_options_spec.rb +79 -0
  438. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/options/request_options_spec.rb +19 -0
  439. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/params_encoders/flat_spec.rb +42 -0
  440. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/params_encoders/nested_spec.rb +151 -0
  441. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/rack_builder_spec.rb +317 -0
  442. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/request/authorization_spec.rb +118 -0
  443. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/request/instrumentation_spec.rb +74 -0
  444. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/request/json_spec.rb +199 -0
  445. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/request/url_encoded_spec.rb +93 -0
  446. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/request_spec.rb +110 -0
  447. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/response/json_spec.rb +206 -0
  448. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/response/logger_spec.rb +299 -0
  449. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/response/raise_error_spec.rb +286 -0
  450. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/response_spec.rb +84 -0
  451. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/utils/headers_spec.rb +109 -0
  452. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday/utils_spec.rb +120 -0
  453. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/faraday_spec.rb +43 -0
  454. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/spec_helper.rb +133 -0
  455. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/disabling_stub.rb +14 -0
  456. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/fake_safe_buffer.rb +15 -0
  457. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/faraday_middleware_subclasses.rb +18 -0
  458. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/helper_methods.rb +96 -0
  459. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/shared_examples/adapter.rb +105 -0
  460. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/shared_examples/params_encoder.rb +18 -0
  461. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/shared_examples/request_method.rb +263 -0
  462. data/vendor/bundle/ruby/3.2.0/gems/faraday-2.14.1/spec/support/streaming_response_checker.rb +35 -0
  463. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/CHANGELOG.md +54 -0
  464. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/LICENSE.md +21 -0
  465. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/README.md +170 -0
  466. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/lib/faraday/multipart/file_part.rb +130 -0
  467. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/lib/faraday/multipart/middleware.rb +134 -0
  468. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/lib/faraday/multipart/param_part.rb +55 -0
  469. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/lib/faraday/multipart/version.rb +16 -0
  470. data/vendor/bundle/ruby/3.2.0/gems/faraday-multipart-1.2.0/lib/faraday/multipart.rb +26 -0
  471. data/vendor/bundle/ruby/3.2.0/gems/faraday-net_http-3.4.2/LICENSE.md +21 -0
  472. data/vendor/bundle/ruby/3.2.0/gems/faraday-net_http-3.4.2/README.md +57 -0
  473. data/vendor/bundle/ruby/3.2.0/gems/faraday-net_http-3.4.2/lib/faraday/adapter/net_http.rb +206 -0
  474. data/vendor/bundle/ruby/3.2.0/gems/faraday-net_http-3.4.2/lib/faraday/net_http/version.rb +7 -0
  475. data/vendor/bundle/ruby/3.2.0/gems/faraday-net_http-3.4.2/lib/faraday/net_http.rb +10 -0
  476. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/CHANGELOG.md +49 -0
  477. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/LICENSE.md +21 -0
  478. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/README.md +207 -0
  479. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/lib/faraday/retriable_response.rb +8 -0
  480. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/lib/faraday/retry/middleware.rb +263 -0
  481. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/lib/faraday/retry/retryable.rb +46 -0
  482. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/lib/faraday/retry/version.rb +7 -0
  483. data/vendor/bundle/ruby/3.2.0/gems/faraday-retry-2.4.0/lib/faraday/retry.rb +13 -0
  484. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/.document +5 -0
  485. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/BSDL +22 -0
  486. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/COPYING +56 -0
  487. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/README.md +46 -0
  488. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/Makefile +271 -0
  489. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/console.c +2022 -0
  490. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/extconf.rb +61 -0
  491. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/win32_vk.inc +1390 -0
  492. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/lib/io/console/size.rb +23 -0
  493. data/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/lib/io/console.so +0 -0
  494. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/.rdoc_options +5 -0
  495. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/CONTRIBUTING.md +52 -0
  496. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/EXTEND_IRB.md +3 -0
  497. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/Gemfile +37 -0
  498. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/LICENSE.txt +22 -0
  499. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/README.md +125 -0
  500. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/COMMAND_LINE_OPTIONS.md +69 -0
  501. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/COMPARED_WITH_PRY.md +22 -0
  502. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/Configurations.md +274 -0
  503. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/EXTEND_IRB.md +122 -0
  504. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/Index.md +705 -0
  505. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/irb/irb-tools.rd.ja +184 -0
  506. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/doc/irb/irb.rd.ja +425 -0
  507. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/exe/irb +9 -0
  508. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/cmd/nop.rb +4 -0
  509. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/color.rb +351 -0
  510. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/color_printer.rb +56 -0
  511. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/backtrace.rb +17 -0
  512. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/base.rb +95 -0
  513. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/break.rb +17 -0
  514. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/catch.rb +17 -0
  515. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/cd.rb +51 -0
  516. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/chws.rb +40 -0
  517. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/context.rb +16 -0
  518. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/continue.rb +17 -0
  519. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/copy.rb +83 -0
  520. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/debug.rb +73 -0
  521. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/delete.rb +17 -0
  522. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/disable_irb.rb +19 -0
  523. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/edit.rb +63 -0
  524. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/exit.rb +18 -0
  525. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/finish.rb +17 -0
  526. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/force_exit.rb +18 -0
  527. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/help.rb +83 -0
  528. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/history.rb +45 -0
  529. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/info.rb +17 -0
  530. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/internal_helpers.rb +30 -0
  531. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/irb_info.rb +33 -0
  532. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/load.rb +91 -0
  533. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/ls.rb +169 -0
  534. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/measure.rb +49 -0
  535. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/next.rb +17 -0
  536. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/pushws.rb +65 -0
  537. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/show_doc.rb +51 -0
  538. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/show_source.rb +74 -0
  539. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/step.rb +17 -0
  540. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/subirb.rb +123 -0
  541. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command/whereami.rb +23 -0
  542. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/command.rb +23 -0
  543. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/completion.rb +521 -0
  544. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/context.rb +752 -0
  545. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/debug/ui.rb +101 -0
  546. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/debug.rb +127 -0
  547. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/default_commands.rb +279 -0
  548. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/easter-egg.rb +154 -0
  549. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/change-ws.rb +37 -0
  550. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/eval_history.rb +149 -0
  551. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/loader.rb +127 -0
  552. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/multi-irb.rb +260 -0
  553. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/tracer.rb +39 -0
  554. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/use-loader.rb +67 -0
  555. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ext/workspaces.rb +36 -0
  556. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/frame.rb +80 -0
  557. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/help.rb +28 -0
  558. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/helper_method/base.rb +16 -0
  559. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/helper_method/conf.rb +11 -0
  560. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/helper_method.rb +29 -0
  561. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/history.rb +116 -0
  562. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/init.rb +543 -0
  563. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/input-method.rb +551 -0
  564. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/inspector.rb +136 -0
  565. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/lc/error.rb +52 -0
  566. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/lc/help-message +55 -0
  567. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/lc/ja/error.rb +53 -0
  568. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/lc/ja/help-message +58 -0
  569. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/locale.rb +153 -0
  570. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/nesting_parser.rb +388 -0
  571. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/notifier.rb +230 -0
  572. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/output-method.rb +80 -0
  573. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/pager.rb +221 -0
  574. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ruby-lex.rb +402 -0
  575. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ruby_logo.aa +122 -0
  576. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/source_finder.rb +132 -0
  577. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/startup_message.rb +83 -0
  578. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/statement.rb +101 -0
  579. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/version.rb +11 -0
  580. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/workspace.rb +180 -0
  581. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/ws-for-case-2.rb +9 -0
  582. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb/xmp.rb +164 -0
  583. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/lib/irb.rb +778 -0
  584. data/vendor/bundle/ruby/3.2.0/gems/irb-1.18.0/man/irb.1 +292 -0
  585. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/BSDL +22 -0
  586. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/CHANGES.md +766 -0
  587. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/COPYING +56 -0
  588. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/LEGAL +20 -0
  589. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/README.md +299 -0
  590. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/fbuffer/fbuffer.h +251 -0
  591. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/generator/Makefile +269 -0
  592. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/generator/extconf.rb +18 -0
  593. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/generator/generator.c +1992 -0
  594. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/json.h +116 -0
  595. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/parser/Makefile +269 -0
  596. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/parser/extconf.rb +20 -0
  597. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/parser/parser.c +1715 -0
  598. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/simd/conf.rb +24 -0
  599. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/simd/simd.h +208 -0
  600. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/vendor/fpconv.c +480 -0
  601. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/vendor/jeaiii-ltoa.h +267 -0
  602. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/ext/json/ext/vendor/ryu.h +819 -0
  603. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/json.gemspec +62 -0
  604. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/bigdecimal.rb +58 -0
  605. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/complex.rb +51 -0
  606. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/core.rb +13 -0
  607. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/date.rb +54 -0
  608. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/date_time.rb +67 -0
  609. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/exception.rb +49 -0
  610. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/ostruct.rb +54 -0
  611. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/range.rb +54 -0
  612. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/rational.rb +49 -0
  613. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/regexp.rb +48 -0
  614. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/set.rb +48 -0
  615. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/string.rb +35 -0
  616. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/struct.rb +52 -0
  617. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/symbol.rb +52 -0
  618. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/add/time.rb +52 -0
  619. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/common.rb +1173 -0
  620. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/ext/generator/state.rb +103 -0
  621. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/ext/generator.so +0 -0
  622. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/ext/parser.so +0 -0
  623. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/ext.rb +45 -0
  624. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/generic_object.rb +67 -0
  625. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/truffle_ruby/generator.rb +752 -0
  626. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json/version.rb +5 -0
  627. data/vendor/bundle/ruby/3.2.0/gems/json-2.19.5/lib/json.rb +675 -0
  628. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/LICENSE.txt +21 -0
  629. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/README.md +88 -0
  630. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/code_action_kind.rb +85 -0
  631. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/code_action_trigger_kind.rb +22 -0
  632. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/completion_item_kind.rb +36 -0
  633. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/completion_item_tag.rb +16 -0
  634. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/completion_trigger_kind.rb +26 -0
  635. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/diagnostic_severity.rb +24 -0
  636. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/diagnostic_tag.rb +24 -0
  637. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/document_diagnostic_report_kind.rb +21 -0
  638. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/document_highlight_kind.rb +23 -0
  639. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/error_codes.rb +73 -0
  640. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/failure_handling_kind.rb +30 -0
  641. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/file_change_type.rb +23 -0
  642. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/file_operation_pattern_kind.rb +20 -0
  643. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/folding_range_kind.rb +24 -0
  644. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/initialize_error_codes.rb +16 -0
  645. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/inlay_hint_kind.rb +19 -0
  646. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/insert_text_format.rb +25 -0
  647. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/insert_text_mode.rb +30 -0
  648. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/markup_kind.rb +23 -0
  649. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/message_type.rb +24 -0
  650. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/moniker_kind.rb +24 -0
  651. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/notebook_cell_kind.rb +19 -0
  652. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/position_encoding_kind.rb +32 -0
  653. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/prepare_support_default_behavior.rb +13 -0
  654. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/resource_operation_kind.rb +23 -0
  655. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/semantic_token_modifiers.rb +18 -0
  656. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/semantic_token_types.rb +35 -0
  657. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/signature_help_trigger_kind.rb +24 -0
  658. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/symbol_kind.rb +37 -0
  659. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/symbol_tag.rb +15 -0
  660. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/text_document_save_reason.rb +24 -0
  661. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/text_document_sync_kind.rb +27 -0
  662. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/token_format.rb +9 -0
  663. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/uniqueness_level.rb +31 -0
  664. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant/watch_kind.rb +20 -0
  665. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/constant.rb +77 -0
  666. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/annotated_text_edit.rb +56 -0
  667. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/apply_workspace_edit_params.rb +44 -0
  668. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/apply_workspace_edit_result.rb +56 -0
  669. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_client_capabilities.rb +36 -0
  670. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_incoming_call.rb +43 -0
  671. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_incoming_calls_params.rb +49 -0
  672. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_item.rb +100 -0
  673. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_options.rb +30 -0
  674. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_outgoing_call.rb +43 -0
  675. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_outgoing_calls_params.rb +49 -0
  676. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_prepare_params.rb +51 -0
  677. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/call_hierarchy_registration_options.rb +50 -0
  678. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/cancel_params.rb +33 -0
  679. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/change_annotation.rb +57 -0
  680. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/client_capabilities.rb +78 -0
  681. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action.rb +127 -0
  682. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action_client_capabilities.rb +95 -0
  683. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action_context.rb +63 -0
  684. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action_options.rb +52 -0
  685. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action_params.rb +73 -0
  686. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_action_registration_options.rb +62 -0
  687. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_description.rb +36 -0
  688. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens.rb +61 -0
  689. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens_client_capabilities.rb +33 -0
  690. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens_options.rb +39 -0
  691. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens_params.rb +52 -0
  692. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens_registration_options.rb +49 -0
  693. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/code_lens_workspace_client_capabilities.rb +39 -0
  694. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/color.rb +63 -0
  695. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/color_information.rb +42 -0
  696. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/color_presentation.rb +57 -0
  697. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/color_presentation_params.rb +70 -0
  698. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/command.rb +52 -0
  699. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_client_capabilities.rb +79 -0
  700. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_context.rb +48 -0
  701. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_item.rb +267 -0
  702. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_item_label_details.rb +49 -0
  703. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_list.rb +69 -0
  704. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_options.rb +87 -0
  705. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_params.rb +72 -0
  706. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/completion_registration_options.rb +94 -0
  707. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/configuration_item.rb +42 -0
  708. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/configuration_params.rb +30 -0
  709. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/create_file.rb +63 -0
  710. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/create_file_options.rb +45 -0
  711. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/create_files_params.rb +37 -0
  712. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/declaration_client_capabilities.rb +44 -0
  713. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/declaration_options.rb +30 -0
  714. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/declaration_params.rb +61 -0
  715. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/declaration_registration_options.rb +50 -0
  716. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/definition_client_capabilities.rb +42 -0
  717. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/definition_options.rb +30 -0
  718. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/definition_params.rb +61 -0
  719. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/definition_registration_options.rb +40 -0
  720. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/delete_file.rb +63 -0
  721. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/delete_file_options.rb +45 -0
  722. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/delete_files_params.rb +37 -0
  723. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic.rb +110 -0
  724. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_client_capabilities.rb +49 -0
  725. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_options.rb +64 -0
  726. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_registration_options.rb +84 -0
  727. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_related_information.rb +47 -0
  728. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_server_cancellation_data.rb +33 -0
  729. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/diagnostic_workspace_client_capabilities.rb +42 -0
  730. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_configuration_client_capabilities.rb +33 -0
  731. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_configuration_params.rb +33 -0
  732. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_notebook_document_params.rb +56 -0
  733. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_text_document_params.rb +56 -0
  734. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb +45 -0
  735. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_watched_files_params.rb +33 -0
  736. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_watched_files_registration_options.rb +36 -0
  737. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_change_workspace_folders_params.rb +33 -0
  738. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_close_notebook_document_params.rb +46 -0
  739. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_close_text_document_params.rb +33 -0
  740. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_open_notebook_document_params.rb +46 -0
  741. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_open_text_document_params.rb +33 -0
  742. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_save_notebook_document_params.rb +36 -0
  743. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/did_save_text_document_params.rb +43 -0
  744. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_color_client_capabilities.rb +33 -0
  745. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_color_options.rb +30 -0
  746. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_color_params.rb +52 -0
  747. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_color_registration_options.rb +50 -0
  748. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_diagnostic_params.rb +73 -0
  749. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_diagnostic_report_partial_result.rb +33 -0
  750. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_filter.rb +63 -0
  751. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_formatting_client_capabilities.rb +33 -0
  752. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_formatting_options.rb +30 -0
  753. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_formatting_params.rb +51 -0
  754. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_formatting_registration_options.rb +40 -0
  755. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_highlight.rb +47 -0
  756. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_highlight_client_capabilities.rb +33 -0
  757. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_highlight_options.rb +30 -0
  758. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_highlight_params.rb +61 -0
  759. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_highlight_registration_options.rb +40 -0
  760. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_link.rb +70 -0
  761. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_link_client_capabilities.rb +42 -0
  762. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_link_options.rb +39 -0
  763. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_link_params.rb +52 -0
  764. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_link_registration_options.rb +49 -0
  765. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_on_type_formatting_client_capabilities.rb +33 -0
  766. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_on_type_formatting_options.rb +42 -0
  767. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_on_type_formatting_params.rb +65 -0
  768. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_on_type_formatting_registration_options.rb +52 -0
  769. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_range_formatting_client_capabilities.rb +33 -0
  770. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_range_formatting_options.rb +30 -0
  771. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_range_formatting_params.rb +60 -0
  772. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_range_formatting_registration_options.rb +40 -0
  773. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_symbol.rb +108 -0
  774. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_symbol_client_capabilities.rb +73 -0
  775. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_symbol_options.rb +40 -0
  776. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_symbol_params.rb +52 -0
  777. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/document_symbol_registration_options.rb +50 -0
  778. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/execute_command_client_capabilities.rb +33 -0
  779. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/execute_command_options.rb +39 -0
  780. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/execute_command_params.rb +51 -0
  781. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/execute_command_registration_options.rb +42 -0
  782. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/execution_summary.rb +45 -0
  783. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_create.rb +36 -0
  784. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_delete.rb +36 -0
  785. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_event.rb +45 -0
  786. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_operation_filter.rb +46 -0
  787. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_operation_pattern.rb +67 -0
  788. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_operation_pattern_options.rb +36 -0
  789. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_operation_registration_options.rb +36 -0
  790. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_rename.rb +45 -0
  791. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/file_system_watcher.rb +45 -0
  792. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/folding_range.rb +94 -0
  793. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/folding_range_client_capabilities.rb +76 -0
  794. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/folding_range_options.rb +30 -0
  795. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/folding_range_params.rb +52 -0
  796. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/folding_range_registration_options.rb +50 -0
  797. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/formatting_options.rb +72 -0
  798. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/full_document_diagnostic_report.rb +56 -0
  799. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover.rb +46 -0
  800. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover_client_capabilities.rb +44 -0
  801. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover_options.rb +30 -0
  802. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover_params.rb +51 -0
  803. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover_registration_options.rb +40 -0
  804. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/hover_result.rb +30 -0
  805. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/implementation_client_capabilities.rb +44 -0
  806. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/implementation_options.rb +30 -0
  807. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/implementation_params.rb +61 -0
  808. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/implementation_registration_options.rb +50 -0
  809. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/initialize_error.rb +36 -0
  810. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/initialize_params.rb +128 -0
  811. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/initialize_result.rb +42 -0
  812. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/initialized_params.rb +24 -0
  813. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint.rb +122 -0
  814. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb +46 -0
  815. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_label_part.rb +79 -0
  816. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_options.rb +43 -0
  817. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_params.rb +54 -0
  818. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_registration_options.rb +63 -0
  819. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inlay_hint_workspace_client_capabilities.rb +42 -0
  820. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_client_capabilities.rb +37 -0
  821. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_context.rb +44 -0
  822. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_evaluatable_expression.rb +52 -0
  823. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_options.rb +33 -0
  824. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_params.rb +64 -0
  825. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_registration_options.rb +53 -0
  826. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_text.rb +45 -0
  827. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_variable_lookup.rb +61 -0
  828. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/inline_value_workspace_client_capabilities.rb +42 -0
  829. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/insert_replace_edit.rb +54 -0
  830. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/linked_editing_range_client_capabilities.rb +36 -0
  831. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/linked_editing_range_options.rb +30 -0
  832. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/linked_editing_range_params.rb +51 -0
  833. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/linked_editing_range_registration_options.rb +50 -0
  834. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/linked_editing_ranges.rb +46 -0
  835. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/location.rb +36 -0
  836. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/location_link.rb +68 -0
  837. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/log_message_params.rb +42 -0
  838. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/log_trace_params.rb +43 -0
  839. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/markup_content.rb +68 -0
  840. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/message.rb +30 -0
  841. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/message_action_item.rb +33 -0
  842. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/moniker.rb +64 -0
  843. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/moniker_client_capabilities.rb +36 -0
  844. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/moniker_options.rb +30 -0
  845. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/moniker_params.rb +61 -0
  846. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/moniker_registration_options.rb +40 -0
  847. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_cell.rb +69 -0
  848. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_cell_array_change.rb +55 -0
  849. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_cell_text_document_filter.rb +52 -0
  850. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document.rb +74 -0
  851. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_change_event.rb +45 -0
  852. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_client_capabilities.rb +36 -0
  853. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_filter.rb +79 -0
  854. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_identifier.rb +36 -0
  855. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb +48 -0
  856. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_sync_options.rb +56 -0
  857. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notebook_document_sync_registration_options.rb +56 -0
  858. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/notification_message.rb +48 -0
  859. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/optional_versioned_text_document_identifier.rb +50 -0
  860. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/parameter_information.rb +56 -0
  861. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/partial_result_params.rb +34 -0
  862. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/position.rb +46 -0
  863. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/prepare_rename_params.rb +51 -0
  864. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/previous_result_id.rb +46 -0
  865. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/progress_params.rb +42 -0
  866. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb +73 -0
  867. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/publish_diagnostics_params.rb +52 -0
  868. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/range.rb +42 -0
  869. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/reference_client_capabilities.rb +33 -0
  870. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/reference_context.rb +33 -0
  871. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/reference_options.rb +30 -0
  872. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/reference_params.rb +67 -0
  873. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/reference_registration_options.rb +40 -0
  874. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/registration.rb +55 -0
  875. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/registration_params.rb +30 -0
  876. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/regular_expressions_client_capabilities.rb +45 -0
  877. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/related_full_document_diagnostic_report.rb +69 -0
  878. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/related_unchanged_document_diagnostic_report.rb +62 -0
  879. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/relative_pattern.rb +48 -0
  880. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_client_capabilities.rb +69 -0
  881. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_file.rb +72 -0
  882. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_file_options.rb +45 -0
  883. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_files_params.rb +38 -0
  884. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_options.rb +39 -0
  885. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_params.rb +62 -0
  886. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/rename_registration_options.rb +49 -0
  887. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/request_message.rb +57 -0
  888. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/response_error.rb +52 -0
  889. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/response_message.rb +58 -0
  890. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/save_options.rb +33 -0
  891. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/selection_range.rb +43 -0
  892. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/selection_range_client_capabilities.rb +36 -0
  893. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/selection_range_options.rb +30 -0
  894. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/selection_range_params.rb +61 -0
  895. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/selection_range_registration_options.rb +50 -0
  896. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens.rb +45 -0
  897. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_client_capabilities.rb +125 -0
  898. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_delta.rb +40 -0
  899. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_delta_params.rb +62 -0
  900. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_delta_partial_result.rb +30 -0
  901. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_edit.rb +51 -0
  902. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_legend.rb +42 -0
  903. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_options.rb +58 -0
  904. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_params.rb +52 -0
  905. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_partial_result.rb +30 -0
  906. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_range_params.rb +61 -0
  907. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_registration_options.rb +78 -0
  908. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/semantic_tokens_workspace_client_capabilities.rb +39 -0
  909. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/server_capabilities.rb +352 -0
  910. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/set_trace_params.rb +33 -0
  911. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_document_client_capabilities.rb +37 -0
  912. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_document_params.rb +71 -0
  913. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_document_result.rb +36 -0
  914. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_message_params.rb +42 -0
  915. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_message_request_client_capabilities.rb +36 -0
  916. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/show_message_request_params.rb +51 -0
  917. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help.rb +71 -0
  918. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help_client_capabilities.rb +55 -0
  919. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help_context.rb +74 -0
  920. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help_options.rb +53 -0
  921. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help_params.rb +62 -0
  922. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_help_registration_options.rb +63 -0
  923. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/signature_information.rb +69 -0
  924. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/static_registration_options.rb +37 -0
  925. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/symbol_information.rb +93 -0
  926. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_change_registration_options.rb +47 -0
  927. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_client_capabilities.rb +297 -0
  928. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_content_change_event.rb +59 -0
  929. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_edit.rb +42 -0
  930. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_identifier.rb +33 -0
  931. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_item.rb +61 -0
  932. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_position_params.rb +42 -0
  933. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_registration_options.rb +37 -0
  934. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_save_registration_options.rb +43 -0
  935. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_sync_client_capabilities.rb +62 -0
  936. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_document_sync_options.rb +78 -0
  937. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/text_edit.rb +44 -0
  938. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_definition_client_capabilities.rb +44 -0
  939. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_definition_options.rb +30 -0
  940. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_definition_params.rb +61 -0
  941. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_definition_registration_options.rb +50 -0
  942. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_item.rb +102 -0
  943. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_options.rb +30 -0
  944. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_prepare_params.rb +51 -0
  945. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_registration_options.rb +50 -0
  946. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_subtypes_params.rb +49 -0
  947. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/type_hierarchy_supertypes_params.rb +49 -0
  948. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/unchanged_document_diagnostic_report.rb +50 -0
  949. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/unregistration.rb +46 -0
  950. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/unregistration_params.rb +30 -0
  951. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb +45 -0
  952. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/versioned_text_document_identifier.rb +45 -0
  953. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/will_save_text_document_params.rb +45 -0
  954. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_begin.rb +80 -0
  955. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_cancel_params.rb +33 -0
  956. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_create_params.rb +33 -0
  957. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_end.rb +40 -0
  958. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_options.rb +30 -0
  959. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_params.rb +33 -0
  960. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/work_done_progress_report.rb +70 -0
  961. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_diagnostic_params.rb +65 -0
  962. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_diagnostic_report.rb +33 -0
  963. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_diagnostic_report_partial_result.rb +33 -0
  964. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_edit.rb +68 -0
  965. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_edit_client_capabilities.rb +75 -0
  966. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_folder.rb +43 -0
  967. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_folders_change_event.rb +45 -0
  968. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_folders_server_capabilities.rb +48 -0
  969. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_full_document_diagnostic_report.rb +75 -0
  970. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_symbol.rb +89 -0
  971. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb +64 -0
  972. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_symbol_options.rb +40 -0
  973. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_symbol_params.rb +56 -0
  974. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_symbol_registration_options.rb +40 -0
  975. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface/workspace_unchanged_document_diagnostic_report.rb +68 -0
  976. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/interface.rb +631 -0
  977. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/io/reader.rb +35 -0
  978. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/io/writer.rb +39 -0
  979. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/io.rb +2 -0
  980. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/stdio/reader.rb +13 -0
  981. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/stdio/writer.rb +13 -0
  982. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport/stdio.rb +2 -0
  983. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/transport.rb +2 -0
  984. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol/version.rb +5 -0
  985. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server/protocol.rb +4 -0
  986. data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.5/lib/language_server-protocol.rb +1 -0
  987. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/.standard.yml +3 -0
  988. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/CHANGELOG.md +15 -0
  989. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/Gemfile +9 -0
  990. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/Gemfile.lock +58 -0
  991. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/LICENSE.txt +21 -0
  992. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/README.md +173 -0
  993. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/Rakefile +12 -0
  994. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/about.rb +9 -0
  995. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/context.rb +11 -0
  996. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/error.rb +4 -0
  997. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/plugin.rb +22 -0
  998. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/rules.rb +17 -0
  999. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/support/merges_upstream_metadata.rb +23 -0
  1000. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller/version.rb +3 -0
  1001. data/vendor/bundle/ruby/3.2.0/gems/lint_roller-1.1.0/lib/lint_roller.rb +13 -0
  1002. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/.document +4 -0
  1003. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/.rdoc_options +3 -0
  1004. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/BSDL +22 -0
  1005. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/COPYING +56 -0
  1006. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/README.md +104 -0
  1007. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/errors.rb +9 -0
  1008. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/formatter.rb +36 -0
  1009. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/log_device.rb +265 -0
  1010. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/period.rb +47 -0
  1011. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/severity.rb +38 -0
  1012. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger/version.rb +5 -0
  1013. data/vendor/bundle/ruby/3.2.0/gems/logger-1.7.0/lib/logger.rb +789 -0
  1014. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/APACHE-LICENSE +202 -0
  1015. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/MIT-LICENSE +20 -0
  1016. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/README.md +78 -0
  1017. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel/magic.rb +148 -0
  1018. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel/mime_type/definitions.rb +72 -0
  1019. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel/mime_type.rb +98 -0
  1020. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel/tables.rb +2962 -0
  1021. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel/version.rb +5 -0
  1022. data/vendor/bundle/ruby/3.2.0/gems/marcel-1.1.0/lib/marcel.rb +7 -0
  1023. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/changelog.md +14 -0
  1024. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/composite_io.rb +17 -0
  1025. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post/composite_read_io.rb +91 -0
  1026. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post/multipartable.rb +70 -0
  1027. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post/parts.rb +148 -0
  1028. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post/upload_io.rb +64 -0
  1029. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post/version.rb +11 -0
  1030. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart/post.rb +8 -0
  1031. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipart_post.rb +11 -0
  1032. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/multipartable.rb +19 -0
  1033. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/net/http/post/multipart.rb +28 -0
  1034. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/lib/parts.rb +25 -0
  1035. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/license.md +58 -0
  1036. data/vendor/bundle/ruby/3.2.0/gems/multipart-post-2.4.1/readme.md +170 -0
  1037. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/.document +5 -0
  1038. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/BSDL +22 -0
  1039. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/COPYING +56 -0
  1040. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/README.md +93 -0
  1041. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/doc/net-http/examples.rdoc +31 -0
  1042. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/doc/net-http/included_getters.rdoc +3 -0
  1043. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/exceptions.rb +35 -0
  1044. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/generic_request.rb +429 -0
  1045. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/header.rb +985 -0
  1046. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/proxy_delta.rb +17 -0
  1047. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/request.rb +88 -0
  1048. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/requests.rb +444 -0
  1049. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/response.rb +739 -0
  1050. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/responses.rb +1242 -0
  1051. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http/status.rb +84 -0
  1052. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/http.rb +2608 -0
  1053. data/vendor/bundle/ruby/3.2.0/gems/net-http-0.9.1/lib/net/https.rb +23 -0
  1054. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.28.0/MIT-LICENSE.txt +20 -0
  1055. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.28.0/lib/parallel/version.rb +4 -0
  1056. data/vendor/bundle/ruby/3.2.0/gems/parallel-1.28.0/lib/parallel.rb +719 -0
  1057. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/LICENSE.txt +26 -0
  1058. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/bin/ruby-parse +7 -0
  1059. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/bin/ruby-rewrite +7 -0
  1060. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/gauntlet_parser.rb +123 -0
  1061. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/all.rb +17 -0
  1062. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ast/node.rb +40 -0
  1063. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ast/processor.rb +293 -0
  1064. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/base.rb +294 -0
  1065. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/builders/default.rb +2351 -0
  1066. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/clobbering_error.rb +13 -0
  1067. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/color.rb +32 -0
  1068. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/context.rb +51 -0
  1069. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/current.rb +146 -0
  1070. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/current_arg_stack.rb +46 -0
  1071. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/deprecation.rb +13 -0
  1072. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/diagnostic/engine.rb +104 -0
  1073. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/diagnostic.rb +163 -0
  1074. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer/dedenter.rb +88 -0
  1075. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer/explanation.rb +55 -0
  1076. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer/literal.rb +284 -0
  1077. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer/stack_state.rb +49 -0
  1078. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer-F0.rb +12931 -0
  1079. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer-F1.rb +14884 -0
  1080. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/lexer-strings.rb +5433 -0
  1081. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/macruby.rb +9634 -0
  1082. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/max_numparam_stack.rb +56 -0
  1083. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/messages.rb +125 -0
  1084. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/meta.rb +48 -0
  1085. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/rewriter.rb +105 -0
  1086. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby18.rb +9272 -0
  1087. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby19.rb +9558 -0
  1088. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby20.rb +10229 -0
  1089. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby21.rb +10203 -0
  1090. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby22.rb +10302 -0
  1091. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby23.rb +10322 -0
  1092. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby24.rb +10454 -0
  1093. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby25.rb +10374 -0
  1094. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby26.rb +10352 -0
  1095. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby27.rb +11948 -0
  1096. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby30.rb +12244 -0
  1097. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby31.rb +12717 -0
  1098. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby32.rb +12705 -0
  1099. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby33.rb +12590 -0
  1100. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/ruby34.rb +12597 -0
  1101. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/rubymotion.rb +9515 -0
  1102. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/runner/ruby_parse.rb +157 -0
  1103. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/runner/ruby_rewrite.rb +101 -0
  1104. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/runner.rb +299 -0
  1105. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/buffer.rb +369 -0
  1106. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/comment/associator.rb +233 -0
  1107. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/comment.rb +134 -0
  1108. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/collection.rb +18 -0
  1109. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/condition.rb +21 -0
  1110. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/constant.rb +32 -0
  1111. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/definition.rb +23 -0
  1112. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/for.rb +19 -0
  1113. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/heredoc.rb +19 -0
  1114. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/index.rb +33 -0
  1115. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/keyword.rb +20 -0
  1116. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/method_definition.rb +25 -0
  1117. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/objc_kwarg.rb +19 -0
  1118. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/operator.rb +17 -0
  1119. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/rescue_body.rb +21 -0
  1120. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/send.rb +36 -0
  1121. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/ternary.rb +18 -0
  1122. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map/variable.rb +31 -0
  1123. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/map.rb +186 -0
  1124. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/range.rb +326 -0
  1125. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/rewriter/action.rb +44 -0
  1126. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/rewriter.rb +513 -0
  1127. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/tree_rewriter/action.rb +243 -0
  1128. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/source/tree_rewriter.rb +431 -0
  1129. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/static_environment.rb +134 -0
  1130. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/syntax_error.rb +21 -0
  1131. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/tree_rewriter.rb +133 -0
  1132. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/unknown_encoding_in_magic_comment_error.rb +15 -0
  1133. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/variables_stack.rb +36 -0
  1134. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser/version.rb +5 -0
  1135. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/lib/parser.rb +91 -0
  1136. data/vendor/bundle/ruby/3.2.0/gems/parser-3.3.11.1/parser.gemspec +43 -0
  1137. data/vendor/bundle/ruby/3.2.0/gems/pp-0.6.3/BSDL +22 -0
  1138. data/vendor/bundle/ruby/3.2.0/gems/pp-0.6.3/COPYING +56 -0
  1139. data/vendor/bundle/ruby/3.2.0/gems/pp-0.6.3/lib/pp.rb +738 -0
  1140. data/vendor/bundle/ruby/3.2.0/gems/pp-0.6.3/pp.gemspec +35 -0
  1141. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/.github/dependabot.yml +6 -0
  1142. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/.github/workflows/test.yml +41 -0
  1143. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/.gitignore +8 -0
  1144. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/Gemfile +4 -0
  1145. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/LICENSE.txt +22 -0
  1146. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/README.md +43 -0
  1147. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/Rakefile +10 -0
  1148. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/bin/console +14 -0
  1149. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/bin/setup +8 -0
  1150. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/lib/prettyprint.rb +558 -0
  1151. data/vendor/bundle/ruby/3.2.0/gems/prettyprint-0.2.0/prettyprint.gemspec +29 -0
  1152. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/BSDmakefile +58 -0
  1153. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/CHANGELOG.md +786 -0
  1154. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/CODE_OF_CONDUCT.md +76 -0
  1155. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/CONTRIBUTING.md +58 -0
  1156. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/LICENSE.md +7 -0
  1157. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/Makefile +116 -0
  1158. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/README.md +143 -0
  1159. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/config.yml +4739 -0
  1160. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/build_system.md +119 -0
  1161. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/configuration.md +68 -0
  1162. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/cruby_compilation.md +27 -0
  1163. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/design.md +53 -0
  1164. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/encoding.md +121 -0
  1165. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/fuzzing.md +88 -0
  1166. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/heredocs.md +36 -0
  1167. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/javascript.md +118 -0
  1168. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/local_variable_depth.md +229 -0
  1169. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/mapping.md +117 -0
  1170. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/parser_translation.md +24 -0
  1171. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/parsing_rules.md +22 -0
  1172. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/releasing.md +75 -0
  1173. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/relocation.md +34 -0
  1174. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/ripper_translation.md +63 -0
  1175. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/ruby_api.md +45 -0
  1176. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/ruby_parser_translation.md +19 -0
  1177. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/serialization.md +233 -0
  1178. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/docs/testing.md +55 -0
  1179. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/Makefile +269 -0
  1180. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/api_node.c +6945 -0
  1181. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/api_pack.c +276 -0
  1182. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/extconf.rb +127 -0
  1183. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/extension.c +1427 -0
  1184. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/ext/prism/extension.h +19 -0
  1185. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/ast.h +8254 -0
  1186. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/defines.h +260 -0
  1187. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/diagnostic.h +458 -0
  1188. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/encoding.h +283 -0
  1189. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/node.h +129 -0
  1190. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/options.h +488 -0
  1191. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/pack.h +163 -0
  1192. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/parser.h +936 -0
  1193. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/prettyprint.h +34 -0
  1194. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/regexp.h +43 -0
  1195. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/static_literals.h +121 -0
  1196. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_buffer.h +236 -0
  1197. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_char.h +204 -0
  1198. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_constant_pool.h +218 -0
  1199. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_integer.h +130 -0
  1200. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_list.h +103 -0
  1201. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_memchr.h +29 -0
  1202. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_newline_list.h +113 -0
  1203. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_string.h +200 -0
  1204. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_strncasecmp.h +32 -0
  1205. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/util/pm_strpbrk.h +46 -0
  1206. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism/version.h +29 -0
  1207. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/include/prism.h +408 -0
  1208. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/compiler.rb +801 -0
  1209. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/desugar_compiler.rb +392 -0
  1210. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/dispatcher.rb +2210 -0
  1211. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/dot_visitor.rb +4767 -0
  1212. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/dsl.rb +1003 -0
  1213. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/ffi.rb +578 -0
  1214. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/inspect_visitor.rb +2393 -0
  1215. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/lex_compat.rb +911 -0
  1216. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/mutation_compiler.rb +772 -0
  1217. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/node.rb +19966 -0
  1218. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/node_ext.rb +511 -0
  1219. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/pack.rb +230 -0
  1220. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/parse_result/comments.rb +188 -0
  1221. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/parse_result/errors.rb +66 -0
  1222. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/parse_result/newlines.rb +155 -0
  1223. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/parse_result.rb +907 -0
  1224. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/pattern.rb +269 -0
  1225. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/polyfill/append_as_bytes.rb +15 -0
  1226. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/polyfill/byteindex.rb +13 -0
  1227. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/polyfill/scan_byte.rb +14 -0
  1228. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/polyfill/unpack1.rb +14 -0
  1229. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/polyfill/warn.rb +36 -0
  1230. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/prism.so +0 -0
  1231. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/reflection.rb +416 -0
  1232. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/relocation.rb +505 -0
  1233. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/serialize.rb +2400 -0
  1234. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/string_query.rb +31 -0
  1235. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser/builder.rb +62 -0
  1236. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser/compiler.rb +2234 -0
  1237. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser/lexer.rb +820 -0
  1238. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser.rb +376 -0
  1239. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser_current.rb +26 -0
  1240. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/parser_versions.rb +36 -0
  1241. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ripper/filter.rb +53 -0
  1242. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ripper/lexer.rb +135 -0
  1243. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ripper/sexp.rb +126 -0
  1244. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ripper/shim.rb +5 -0
  1245. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ripper.rb +3520 -0
  1246. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation/ruby_parser.rb +1964 -0
  1247. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/translation.rb +18 -0
  1248. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism/visitor.rb +813 -0
  1249. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/lib/prism.rb +98 -0
  1250. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/prism.gemspec +172 -0
  1251. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/compiler.rbi +12 -0
  1252. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/dsl.rbi +524 -0
  1253. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/inspect_visitor.rbi +12 -0
  1254. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/node.rbi +8750 -0
  1255. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/node_ext.rbi +107 -0
  1256. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/parse_result.rbi +404 -0
  1257. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/reflection.rbi +58 -0
  1258. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/string_query.rbi +12 -0
  1259. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/translation/parser.rbi +11 -0
  1260. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/translation/parser_versions.rbi +23 -0
  1261. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/translation/ripper.rbi +15 -0
  1262. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism/visitor.rbi +473 -0
  1263. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/rbi/prism.rbi +63 -0
  1264. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/compiler.rbs +9 -0
  1265. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/dispatcher.rbs +19 -0
  1266. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/dot_visitor.rbs +6 -0
  1267. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/dsl.rbs +351 -0
  1268. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/inspect_visitor.rbs +22 -0
  1269. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/lex_compat.rbs +10 -0
  1270. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/mutation_compiler.rbs +159 -0
  1271. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/node.rbs +4042 -0
  1272. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/node_ext.rbs +149 -0
  1273. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/pack.rbs +43 -0
  1274. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/parse_result/comments.rbs +38 -0
  1275. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/parse_result.rbs +197 -0
  1276. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/pattern.rbs +13 -0
  1277. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/reflection.rbs +50 -0
  1278. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/relocation.rbs +185 -0
  1279. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/serialize.rbs +8 -0
  1280. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/string_query.rbs +11 -0
  1281. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism/visitor.rbs +169 -0
  1282. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/sig/prism.rbs +272 -0
  1283. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/diagnostic.c +854 -0
  1284. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/encoding.c +5340 -0
  1285. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/node.c +8685 -0
  1286. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/options.c +338 -0
  1287. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/pack.c +509 -0
  1288. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/prettyprint.c +8957 -0
  1289. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/prism.c +22679 -0
  1290. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/regexp.c +790 -0
  1291. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/serialize.c +2274 -0
  1292. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/static_literals.c +617 -0
  1293. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/token_type.c +703 -0
  1294. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_buffer.c +357 -0
  1295. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_char.c +318 -0
  1296. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_constant_pool.c +342 -0
  1297. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_integer.c +670 -0
  1298. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_list.c +49 -0
  1299. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_memchr.c +35 -0
  1300. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_newline_list.c +125 -0
  1301. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_string.c +381 -0
  1302. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_strncasecmp.c +36 -0
  1303. data/vendor/bundle/ruby/3.2.0/gems/prism-1.9.0/src/util/pm_strpbrk.c +206 -0
  1304. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/CONTRIBUTING.md +24 -0
  1305. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/LICENSE +21 -0
  1306. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/README.md +90 -0
  1307. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/Makefile +291 -0
  1308. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/depend +17 -0
  1309. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/extconf.rb +56 -0
  1310. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych.c +36 -0
  1311. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych.h +17 -0
  1312. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_emitter.c +589 -0
  1313. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_emitter.h +8 -0
  1314. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_parser.c +564 -0
  1315. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_parser.h +6 -0
  1316. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_to_ruby.c +42 -0
  1317. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_to_ruby.h +8 -0
  1318. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_yaml_tree.c +11 -0
  1319. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych/psych_yaml_tree.h +8 -0
  1320. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/class_loader.rb +105 -0
  1321. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/coder.rb +95 -0
  1322. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/core_ext.rb +36 -0
  1323. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/exception.rb +28 -0
  1324. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/handler.rb +255 -0
  1325. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/handlers/document_stream.rb +23 -0
  1326. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/handlers/recorder.rb +40 -0
  1327. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/json/ruby_events.rb +20 -0
  1328. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/json/stream.rb +17 -0
  1329. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/json/tree_builder.rb +13 -0
  1330. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/json/yaml_events.rb +30 -0
  1331. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/alias.rb +21 -0
  1332. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/document.rb +63 -0
  1333. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/mapping.rb +59 -0
  1334. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/node.rb +76 -0
  1335. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/scalar.rb +70 -0
  1336. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/sequence.rb +84 -0
  1337. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes/stream.rb +40 -0
  1338. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/nodes.rb +78 -0
  1339. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/omap.rb +5 -0
  1340. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/parser.rb +65 -0
  1341. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/scalar_scanner.rb +142 -0
  1342. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/set.rb +5 -0
  1343. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/stream.rb +38 -0
  1344. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/streaming.rb +28 -0
  1345. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/syntax_error.rb +22 -0
  1346. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/tree_builder.rb +137 -0
  1347. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/versions.rb +10 -0
  1348. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/depth_first.rb +27 -0
  1349. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/emitter.rb +52 -0
  1350. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/json_tree.rb +25 -0
  1351. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/to_ruby.rb +479 -0
  1352. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/visitor.rb +34 -0
  1353. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors/yaml_tree.rb +626 -0
  1354. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/visitors.rb +7 -0
  1355. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych/y.rb +10 -0
  1356. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych.rb +794 -0
  1357. data/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/lib/psych.so +0 -0
  1358. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/BSDL +22 -0
  1359. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/COPYING +56 -0
  1360. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ChangeLog +846 -0
  1361. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/README.ja.rdoc +58 -0
  1362. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/README.rdoc +60 -0
  1363. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/TODO +5 -0
  1364. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/bin/racc +320 -0
  1365. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/en/grammar.en.rdoc +218 -0
  1366. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/en/grammar2.en.rdoc +219 -0
  1367. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/command.ja.html +99 -0
  1368. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/debug.ja.rdoc +36 -0
  1369. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/grammar.ja.rdoc +348 -0
  1370. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/index.ja.html +10 -0
  1371. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/parser.ja.rdoc +125 -0
  1372. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/doc/ja/usage.ja.html +414 -0
  1373. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +269 -0
  1374. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse/cparse.c +840 -0
  1375. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse/extconf.rb +8 -0
  1376. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/compat.rb +33 -0
  1377. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
  1378. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/debugflags.rb +60 -0
  1379. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/exception.rb +16 -0
  1380. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/grammar.rb +1191 -0
  1381. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/grammarfileparser.rb +667 -0
  1382. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/info.rb +18 -0
  1383. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/iset.rb +92 -0
  1384. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/logfilegenerator.rb +212 -0
  1385. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/parser-text.rb +644 -0
  1386. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/parser.rb +630 -0
  1387. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/parserfilegenerator.rb +473 -0
  1388. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/sourcetext.rb +35 -0
  1389. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/state.rb +976 -0
  1390. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/statetransitiontable.rb +311 -0
  1391. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc/static.rb +5 -0
  1392. data/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/lib/racc.rb +6 -0
  1393. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/Changelog.md +101 -0
  1394. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/LICENSE +20 -0
  1395. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/README.markdown +227 -0
  1396. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/color.rb +150 -0
  1397. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/ext/string.rb +64 -0
  1398. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/global.rb +25 -0
  1399. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/null_presenter.rb +100 -0
  1400. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/presenter.rb +144 -0
  1401. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/refinement.rb +14 -0
  1402. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/string_utils.rb +22 -0
  1403. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/version.rb +5 -0
  1404. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/wrapper.rb +22 -0
  1405. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow/x11_color_names.rb +153 -0
  1406. data/vendor/bundle/ruby/3.2.0/gems/rainbow-3.1.1/lib/rainbow.rb +13 -0
  1407. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/History.rdoc +2454 -0
  1408. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/MIT-LICENSE +21 -0
  1409. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/README.rdoc +155 -0
  1410. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/command_line_usage.rdoc +171 -0
  1411. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/example/Rakefile1 +38 -0
  1412. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/example/Rakefile2 +35 -0
  1413. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/example/a.c +6 -0
  1414. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/example/b.c +6 -0
  1415. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/example/main.c +11 -0
  1416. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/glossary.rdoc +42 -0
  1417. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/jamis.rb +592 -0
  1418. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/proto_rake.rdoc +127 -0
  1419. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/rake.1 +156 -0
  1420. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/rakefile.rdoc +635 -0
  1421. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/doc/rational.rdoc +151 -0
  1422. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/exe/rake +27 -0
  1423. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/application.rb +847 -0
  1424. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/backtrace.rb +25 -0
  1425. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/clean.rb +78 -0
  1426. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/cloneable.rb +17 -0
  1427. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/cpu_counter.rb +122 -0
  1428. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/default_loader.rb +15 -0
  1429. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/dsl_definition.rb +196 -0
  1430. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/early_time.rb +22 -0
  1431. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/ext/core.rb +26 -0
  1432. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/ext/string.rb +176 -0
  1433. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/file_creation_task.rb +25 -0
  1434. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/file_list.rb +435 -0
  1435. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/file_task.rb +58 -0
  1436. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/file_utils.rb +137 -0
  1437. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/file_utils_ext.rb +135 -0
  1438. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/invocation_chain.rb +57 -0
  1439. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/invocation_exception_mixin.rb +17 -0
  1440. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/late_time.rb +18 -0
  1441. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/linked_list.rb +112 -0
  1442. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/loaders/makefile.rb +54 -0
  1443. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/multi_task.rb +14 -0
  1444. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/name_space.rb +38 -0
  1445. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/options.rb +31 -0
  1446. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/packagetask.rb +222 -0
  1447. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/phony.rb +16 -0
  1448. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/private_reader.rb +21 -0
  1449. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/promise.rb +100 -0
  1450. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/pseudo_status.rb +30 -0
  1451. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/rake_module.rb +67 -0
  1452. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/rake_test_loader.rb +27 -0
  1453. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1454. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/scope.rb +43 -0
  1455. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/task.rb +434 -0
  1456. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/task_argument_error.rb +8 -0
  1457. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/task_arguments.rb +113 -0
  1458. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/task_manager.rb +333 -0
  1459. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/tasklib.rb +12 -0
  1460. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/testtask.rb +192 -0
  1461. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/thread_history_display.rb +49 -0
  1462. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/thread_pool.rb +157 -0
  1463. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/trace_output.rb +23 -0
  1464. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/version.rb +10 -0
  1465. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake/win32.rb +17 -0
  1466. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/lib/rake.rb +69 -0
  1467. data/vendor/bundle/ruby/3.2.0/gems/rake-13.4.2/rake.gemspec +102 -0
  1468. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/CONTRIBUTING.md +196 -0
  1469. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/CVE-2013-0256.rdoc +49 -0
  1470. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/History.rdoc +1668 -0
  1471. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/LEGAL.rdoc +56 -0
  1472. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/LICENSE.rdoc +59 -0
  1473. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/README.md +195 -0
  1474. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/RI.md +842 -0
  1475. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/TODO.rdoc +60 -0
  1476. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/doc/markup_reference/markdown.md +558 -0
  1477. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/doc/markup_reference/rdoc.rdoc +1169 -0
  1478. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/exe/rdoc +43 -0
  1479. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/exe/ri +12 -0
  1480. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/alias.rb +104 -0
  1481. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/anon_class.rb +10 -0
  1482. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/any_method.rb +382 -0
  1483. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/attr.rb +173 -0
  1484. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/class_module.rb +939 -0
  1485. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/constant.rb +195 -0
  1486. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/context/section.rb +213 -0
  1487. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/context.rb +1233 -0
  1488. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/extend.rb +9 -0
  1489. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/ghost_method.rb +6 -0
  1490. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/include.rb +9 -0
  1491. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/meta_method.rb +6 -0
  1492. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/method_attr.rb +423 -0
  1493. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/mixin.rb +123 -0
  1494. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/normal_class.rb +92 -0
  1495. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/normal_module.rb +73 -0
  1496. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/require.rb +51 -0
  1497. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/single_class.rb +30 -0
  1498. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object/top_level.rb +280 -0
  1499. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_object.rb +395 -0
  1500. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/code_objects.rb +5 -0
  1501. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/comment.rb +418 -0
  1502. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/cross_reference.rb +235 -0
  1503. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/encoding.rb +120 -0
  1504. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/erb_partial.rb +18 -0
  1505. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/erbio.rb +37 -0
  1506. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/aliki.rb +183 -0
  1507. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/darkfish.rb +818 -0
  1508. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/json_index.rb +284 -0
  1509. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/markup.rb +171 -0
  1510. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/pot/message_extractor.rb +68 -0
  1511. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/pot/po.rb +84 -0
  1512. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/pot/po_entry.rb +141 -0
  1513. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/pot.rb +94 -0
  1514. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/ri.rb +30 -0
  1515. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_aside_toc.rhtml +8 -0
  1516. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_footer.rhtml +23 -0
  1517. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_head.rhtml +163 -0
  1518. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_header.rhtml +56 -0
  1519. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_icons.rhtml +208 -0
  1520. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_ancestors.rhtml +16 -0
  1521. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_classes.rhtml +15 -0
  1522. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_extends.rhtml +25 -0
  1523. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_includes.rhtml +25 -0
  1524. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_installed.rhtml +16 -0
  1525. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_methods.rhtml +41 -0
  1526. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_pages.rhtml +67 -0
  1527. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_search.rhtml +15 -0
  1528. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_sections.rhtml +21 -0
  1529. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/_sidebar_toggle.rhtml +3 -0
  1530. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/class.rhtml +220 -0
  1531. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/css/rdoc.css +1955 -0
  1532. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/index.rhtml +22 -0
  1533. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/aliki.js +511 -0
  1534. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/bash_highlighter.js +167 -0
  1535. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/c_highlighter.js +299 -0
  1536. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/search_controller.js +129 -0
  1537. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/search_navigation.js +105 -0
  1538. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/search_ranker.js +239 -0
  1539. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/js/theme-toggle.js +112 -0
  1540. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/page.rhtml +18 -0
  1541. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/servlet_not_found.rhtml +14 -0
  1542. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/aliki/servlet_root.rhtml +65 -0
  1543. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_footer.rhtml +5 -0
  1544. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_head.rhtml +43 -0
  1545. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml +5 -0
  1546. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml +15 -0
  1547. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml +15 -0
  1548. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml +16 -0
  1549. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml +21 -0
  1550. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml +11 -0
  1551. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml +32 -0
  1552. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml +6 -0
  1553. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml +15 -0
  1554. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml +11 -0
  1555. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml +39 -0
  1556. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/_sidebar_toggle.rhtml +3 -0
  1557. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/class.rhtml +223 -0
  1558. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/css/fonts.css +167 -0
  1559. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/css/rdoc.css +702 -0
  1560. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf +0 -0
  1561. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf +0 -0
  1562. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf +0 -0
  1563. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf +0 -0
  1564. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf +0 -0
  1565. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf +0 -0
  1566. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/add.png +0 -0
  1567. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/arrow_up.png +0 -0
  1568. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/brick.png +0 -0
  1569. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/brick_link.png +0 -0
  1570. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/bug.png +0 -0
  1571. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/bullet_black.png +0 -0
  1572. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png +0 -0
  1573. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png +0 -0
  1574. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/date.png +0 -0
  1575. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/delete.png +0 -0
  1576. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/find.png +0 -0
  1577. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif +0 -0
  1578. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png +0 -0
  1579. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/package.png +0 -0
  1580. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/page_green.png +0 -0
  1581. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/page_white_text.png +0 -0
  1582. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/page_white_width.png +0 -0
  1583. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/plugin.png +0 -0
  1584. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/ruby.png +0 -0
  1585. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/tag_blue.png +0 -0
  1586. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/tag_green.png +0 -0
  1587. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/transparent.png +0 -0
  1588. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/wrench.png +0 -0
  1589. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/wrench_orange.png +0 -0
  1590. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/images/zoom.png +0 -0
  1591. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/index.rhtml +24 -0
  1592. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/js/darkfish.js +140 -0
  1593. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/js/search.js +120 -0
  1594. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/page.rhtml +19 -0
  1595. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml +21 -0
  1596. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/servlet_root.rhtml +65 -0
  1597. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml +72 -0
  1598. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/json_index/js/navigation.js +105 -0
  1599. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator/template/json_index/js/searcher.js +271 -0
  1600. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/generator.rb +52 -0
  1601. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/i18n/locale.rb +102 -0
  1602. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/i18n/text.rb +126 -0
  1603. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/i18n.rb +10 -0
  1604. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/known_classes.rb +74 -0
  1605. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markdown/entities.rb +2131 -0
  1606. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markdown/literals.kpeg +21 -0
  1607. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markdown/literals.rb +454 -0
  1608. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markdown.kpeg +1310 -0
  1609. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markdown.rb +16680 -0
  1610. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/blank_line.rb +29 -0
  1611. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/block_quote.rb +14 -0
  1612. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/document.rb +164 -0
  1613. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/element.rb +21 -0
  1614. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/formatter.rb +295 -0
  1615. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/hard_break.rb +34 -0
  1616. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/heading.rb +173 -0
  1617. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/include.rb +42 -0
  1618. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/indented_paragraph.rb +47 -0
  1619. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/inline_parser.rb +312 -0
  1620. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/list.rb +101 -0
  1621. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/list_item.rb +99 -0
  1622. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/paragraph.rb +28 -0
  1623. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/parser.rb +585 -0
  1624. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/pre_process.rb +342 -0
  1625. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/raw.rb +66 -0
  1626. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/rule.rb +20 -0
  1627. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/table.rb +64 -0
  1628. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_ansi.rb +144 -0
  1629. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_bs.rb +86 -0
  1630. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_html.rb +604 -0
  1631. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_html_crossref.rb +235 -0
  1632. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_html_snippet.rb +287 -0
  1633. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_joined_paragraph.rb +46 -0
  1634. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_label.rb +84 -0
  1635. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_markdown.rb +215 -0
  1636. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_rdoc.rb +421 -0
  1637. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_table_of_contents.rb +88 -0
  1638. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_test.rb +77 -0
  1639. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/to_tt_only.rb +114 -0
  1640. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup/verbatim.rb +83 -0
  1641. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/markup.rb +219 -0
  1642. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/options.rb +1427 -0
  1643. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/c.rb +1226 -0
  1644. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/changelog.rb +379 -0
  1645. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/markdown.rb +22 -0
  1646. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/prism_ruby.rb +1112 -0
  1647. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/rd.rb +22 -0
  1648. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/ripper_state_lex.rb +302 -0
  1649. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/ruby.rb +2378 -0
  1650. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/ruby_tools.rb +163 -0
  1651. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/simple.rb +44 -0
  1652. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser/text.rb +11 -0
  1653. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/parser.rb +297 -0
  1654. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd/block_parser.rb +1706 -0
  1655. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd/block_parser.ry +643 -0
  1656. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd/inline.rb +71 -0
  1657. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd/inline_parser.rb +1854 -0
  1658. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd/inline_parser.ry +593 -0
  1659. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rd.rb +99 -0
  1660. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rdoc.rb +552 -0
  1661. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri/driver.rb +1566 -0
  1662. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri/formatter.rb +6 -0
  1663. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri/paths.rb +171 -0
  1664. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri/store.rb +6 -0
  1665. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri/task.rb +71 -0
  1666. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/ri.rb +20 -0
  1667. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/rubygems_hook.rb +327 -0
  1668. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/servlet.rb +452 -0
  1669. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/stats/normal.rb +58 -0
  1670. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/stats/quiet.rb +59 -0
  1671. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/stats/verbose.rb +44 -0
  1672. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/stats.rb +461 -0
  1673. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/store.rb +997 -0
  1674. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/task.rb +354 -0
  1675. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/text.rb +361 -0
  1676. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/token_stream.rb +126 -0
  1677. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/tom_doc.rb +257 -0
  1678. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc/version.rb +10 -0
  1679. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rdoc.rb +211 -0
  1680. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/lib/rubygems_plugin.rb +23 -0
  1681. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/man/ri.1 +249 -0
  1682. data/vendor/bundle/ruby/3.2.0/gems/rdoc-7.2.0/rdoc.gemspec +72 -0
  1683. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/Gemfile +17 -0
  1684. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/LICENSE +22 -0
  1685. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/Rakefile +25 -0
  1686. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/error.rb +6 -0
  1687. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/base.rb +78 -0
  1688. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/alternation.rb +12 -0
  1689. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/anchor.rb +26 -0
  1690. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/backreference.rb +58 -0
  1691. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/character_set/intersection.rb +11 -0
  1692. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/character_set/range.rb +21 -0
  1693. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/character_set.rb +25 -0
  1694. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/character_type.rb +19 -0
  1695. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/conditional.rb +52 -0
  1696. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/escape_sequence.rb +33 -0
  1697. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/free_space.rb +19 -0
  1698. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/group.rb +75 -0
  1699. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/keep.rb +9 -0
  1700. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/literal.rb +5 -0
  1701. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/posix_class.rb +13 -0
  1702. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/root.rb +11 -0
  1703. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/classes/unicode_property.rb +121 -0
  1704. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/construct.rb +43 -0
  1705. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/escape_sequence_char.rb +7 -0
  1706. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/escape_sequence_codepoint.rb +76 -0
  1707. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/human_name.rb +45 -0
  1708. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/match.rb +15 -0
  1709. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/match_length.rb +178 -0
  1710. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/negative.rb +22 -0
  1711. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/options.rb +37 -0
  1712. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/parts.rb +25 -0
  1713. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/printing.rb +28 -0
  1714. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/referenced_expressions.rb +30 -0
  1715. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/strfregexp.rb +116 -0
  1716. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/tests.rb +145 -0
  1717. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/methods/traverse.rb +82 -0
  1718. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/quantifier.rb +86 -0
  1719. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/sequence.rb +33 -0
  1720. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/sequence_operation.rb +22 -0
  1721. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/shared.rb +114 -0
  1722. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression/subexpression.rb +69 -0
  1723. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/expression.rb +42 -0
  1724. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/lexer.rb +171 -0
  1725. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/parser.rb +602 -0
  1726. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/char_type.rl +28 -0
  1727. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/errors/premature_end_error.rb +10 -0
  1728. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/errors/scanner_error.rb +8 -0
  1729. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/errors/validation_error.rb +65 -0
  1730. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/properties/long.csv +683 -0
  1731. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/properties/short.csv +261 -0
  1732. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/property.rl +30 -0
  1733. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner/scanner.rl +864 -0
  1734. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/scanner.rb +2601 -0
  1735. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/any.rb +12 -0
  1736. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/base.rb +122 -0
  1737. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/anchor.rb +17 -0
  1738. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/assertion.rb +15 -0
  1739. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/backreference.rb +35 -0
  1740. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/character_set.rb +18 -0
  1741. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/character_type.rb +18 -0
  1742. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/conditional.rb +18 -0
  1743. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/escape.rb +35 -0
  1744. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/group.rb +25 -0
  1745. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/keep.rb +14 -0
  1746. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/meta.rb +22 -0
  1747. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/posix_class.rb +19 -0
  1748. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/quantifier.rb +37 -0
  1749. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/unicode_property.rb +811 -0
  1750. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token/virtual.rb +13 -0
  1751. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/token.rb +47 -0
  1752. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/version_lookup.rb +67 -0
  1753. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/1.8.6.rb +16 -0
  1754. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/1.9.1.rb +13 -0
  1755. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/1.9.3.rb +6 -0
  1756. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.0.0.rb +12 -0
  1757. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.2.0.rb +6 -0
  1758. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.3.0.rb +6 -0
  1759. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.4.0.rb +6 -0
  1760. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.4.1.rb +5 -0
  1761. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.5.0.rb +6 -0
  1762. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.6.0.rb +6 -0
  1763. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.6.2.rb +6 -0
  1764. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/2.6.3.rb +6 -0
  1765. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/3.1.0.rb +6 -0
  1766. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/3.2.0.rb +6 -0
  1767. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/3.5.0.rb +4 -0
  1768. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions/4.0.0.rb +4 -0
  1769. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax/versions.rb +10 -0
  1770. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/syntax.rb +13 -0
  1771. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/token.rb +26 -0
  1772. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser/version.rb +7 -0
  1773. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/lib/regexp_parser.rb +8 -0
  1774. data/vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.12.0/regexp_parser.gemspec +36 -0
  1775. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/BSDL +22 -0
  1776. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/COPYING +56 -0
  1777. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/README.md +94 -0
  1778. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/config.rb +378 -0
  1779. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/face.rb +199 -0
  1780. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/history.rb +76 -0
  1781. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/io/ansi.rb +310 -0
  1782. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/io/dumb.rb +120 -0
  1783. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/io/windows.rb +530 -0
  1784. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/io.rb +55 -0
  1785. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor/base.rb +37 -0
  1786. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor/composite.rb +17 -0
  1787. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor/emacs.rb +517 -0
  1788. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor/vi_command.rb +518 -0
  1789. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor/vi_insert.rb +517 -0
  1790. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_actor.rb +8 -0
  1791. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/key_stroke.rb +119 -0
  1792. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/kill_ring.rb +125 -0
  1793. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/line_editor.rb +2356 -0
  1794. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/unicode/east_asian_width.rb +1292 -0
  1795. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/unicode.rb +421 -0
  1796. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline/version.rb +3 -0
  1797. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/lib/reline.rb +527 -0
  1798. data/vendor/bundle/ruby/3.2.0/gems/reline-0.6.3/license_of_rb-readline +25 -0
  1799. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.2/LICENSE.md +27 -0
  1800. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.2/README.md +47 -0
  1801. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.2/lib/rspec/version.rb +5 -0
  1802. data/vendor/bundle/ruby/3.2.0/gems/rspec-3.13.2/lib/rspec.rb +3 -0
  1803. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/.document +5 -0
  1804. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/.yardopts +8 -0
  1805. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/Changelog.md +2447 -0
  1806. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/LICENSE.md +26 -0
  1807. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/README.md +389 -0
  1808. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/exe/rspec +4 -0
  1809. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/autorun.rb +3 -0
  1810. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/backtrace_formatter.rb +65 -0
  1811. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/coordinator.rb +62 -0
  1812. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  1813. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/fork_runner.rb +140 -0
  1814. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/server.rb +61 -0
  1815. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/shell_command.rb +126 -0
  1816. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/shell_runner.rb +73 -0
  1817. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/bisect/utilities.rb +69 -0
  1818. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/configuration.rb +2419 -0
  1819. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/configuration_options.rb +240 -0
  1820. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/did_you_mean.rb +52 -0
  1821. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/drb.rb +120 -0
  1822. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/dsl.rb +98 -0
  1823. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/example.rb +666 -0
  1824. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/example_group.rb +912 -0
  1825. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/example_status_persister.rb +235 -0
  1826. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/filter_manager.rb +231 -0
  1827. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/flat_map.rb +20 -0
  1828. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  1829. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_formatter.rb +70 -0
  1830. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  1831. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  1832. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  1833. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/console_codes.rb +76 -0
  1834. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  1835. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  1836. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/exception_presenter.rb +553 -0
  1837. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  1838. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  1839. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/helpers.rb +118 -0
  1840. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_formatter.rb +153 -0
  1841. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_printer.rb +412 -0
  1842. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/html_snippet_extractor.rb +122 -0
  1843. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/json_formatter.rb +103 -0
  1844. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  1845. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  1846. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/protocol.rb +182 -0
  1847. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  1848. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  1849. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/formatters.rb +279 -0
  1850. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/hooks.rb +646 -0
  1851. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/invocations.rb +87 -0
  1852. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/memoized_helpers.rb +580 -0
  1853. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/metadata.rb +498 -0
  1854. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/metadata_filter.rb +255 -0
  1855. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  1856. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  1857. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  1858. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/null.rb +14 -0
  1859. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  1860. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  1861. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/notifications.rb +523 -0
  1862. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/option_parser.rb +325 -0
  1863. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/ordering.rb +208 -0
  1864. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/output_wrapper.rb +29 -0
  1865. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/pending.rb +157 -0
  1866. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/profiler.rb +34 -0
  1867. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer/.rspec +1 -0
  1868. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer/spec/spec_helper.rb +98 -0
  1869. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/project_initializer.rb +48 -0
  1870. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/rake_task.rb +190 -0
  1871. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/reporter.rb +266 -0
  1872. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/ruby_project.rb +53 -0
  1873. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/runner.rb +216 -0
  1874. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/sandbox.rb +37 -0
  1875. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/set.rb +54 -0
  1876. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/shared_context.rb +55 -0
  1877. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/shared_example_group.rb +271 -0
  1878. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/shell_escape.rb +49 -0
  1879. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  1880. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/version.rb +9 -0
  1881. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/warnings.rb +40 -0
  1882. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core/world.rb +287 -0
  1883. data/vendor/bundle/ruby/3.2.0/gems/rspec-core-3.13.6/lib/rspec/core.rb +212 -0
  1884. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/.document +5 -0
  1885. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/.yardopts +6 -0
  1886. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/Changelog.md +1366 -0
  1887. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/LICENSE.md +25 -0
  1888. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/README.md +326 -0
  1889. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/block_snippet_extractor.rb +255 -0
  1890. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/configuration.rb +244 -0
  1891. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/expectation_target.rb +163 -0
  1892. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/fail_with.rb +39 -0
  1893. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/failure_aggregator.rb +236 -0
  1894. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/handler.rb +181 -0
  1895. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/minitest_integration.rb +58 -0
  1896. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/syntax.rb +132 -0
  1897. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations/version.rb +8 -0
  1898. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/expectations.rb +82 -0
  1899. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/aliased_matcher.rb +116 -0
  1900. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/all.rb +86 -0
  1901. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/base_matcher.rb +225 -0
  1902. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be.rb +191 -0
  1903. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_between.rb +77 -0
  1904. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  1905. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  1906. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/be_within.rb +72 -0
  1907. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/change.rb +452 -0
  1908. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/compound.rb +293 -0
  1909. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/contain_exactly.rb +312 -0
  1910. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/count_expectation.rb +171 -0
  1911. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/cover.rb +24 -0
  1912. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/eq.rb +44 -0
  1913. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/eql.rb +38 -0
  1914. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/equal.rb +81 -0
  1915. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/exist.rb +90 -0
  1916. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/has.rb +194 -0
  1917. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  1918. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/include.rb +218 -0
  1919. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/match.rb +120 -0
  1920. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/operators.rb +128 -0
  1921. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/output.rb +207 -0
  1922. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/raise_error.rb +275 -0
  1923. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/respond_to.rb +200 -0
  1924. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/satisfy.rb +62 -0
  1925. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  1926. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/throw_symbol.rb +138 -0
  1927. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in/yield.rb +375 -0
  1928. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/built_in.rb +53 -0
  1929. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/composable.rb +171 -0
  1930. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/dsl.rb +546 -0
  1931. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/english_phrasing.rb +60 -0
  1932. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/fail_matchers.rb +42 -0
  1933. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/generated_descriptions.rb +41 -0
  1934. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/matcher_delegator.rb +61 -0
  1935. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/matcher_protocol.rb +105 -0
  1936. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers/multi_matcher_diff.rb +82 -0
  1937. data/vendor/bundle/ruby/3.2.0/gems/rspec-expectations-3.13.5/lib/rspec/matchers.rb +1046 -0
  1938. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/.document +5 -0
  1939. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/.yardopts +6 -0
  1940. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/Changelog.md +1351 -0
  1941. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/LICENSE.md +25 -0
  1942. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/README.md +465 -0
  1943. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/chain.rb +111 -0
  1944. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  1945. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  1946. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  1947. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  1948. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/proxy.rb +125 -0
  1949. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/recorder.rb +301 -0
  1950. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  1951. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  1952. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/any_instance.rb +11 -0
  1953. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/argument_list_matcher.rb +117 -0
  1954. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/argument_matchers.rb +366 -0
  1955. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/configuration.rb +212 -0
  1956. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/error_generator.rb +390 -0
  1957. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/example_methods.rb +434 -0
  1958. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  1959. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/marshal_extension.rb +41 -0
  1960. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  1961. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/matchers/have_received.rb +134 -0
  1962. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/matchers/receive.rb +134 -0
  1963. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  1964. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  1965. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/message_chain.rb +87 -0
  1966. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/message_expectation.rb +856 -0
  1967. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/method_double.rb +316 -0
  1968. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/method_reference.rb +214 -0
  1969. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/minitest_integration.rb +68 -0
  1970. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/mutate_const.rb +339 -0
  1971. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/object_reference.rb +149 -0
  1972. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/order_group.rb +92 -0
  1973. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/proxy.rb +517 -0
  1974. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/space.rb +238 -0
  1975. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/standalone.rb +3 -0
  1976. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/syntax.rb +325 -0
  1977. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/targets.rb +124 -0
  1978. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/test_double.rb +174 -0
  1979. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/verifying_double.rb +125 -0
  1980. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/verifying_message_expectation.rb +55 -0
  1981. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/verifying_proxy.rb +221 -0
  1982. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks/version.rb +9 -0
  1983. data/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.8/lib/rspec/mocks.rb +133 -0
  1984. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/Changelog.md +444 -0
  1985. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/LICENSE.md +23 -0
  1986. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/README.md +40 -0
  1987. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/caller_filter.rb +85 -0
  1988. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/comparable_version.rb +48 -0
  1989. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/differ.rb +216 -0
  1990. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/directory_maker.rb +65 -0
  1991. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/encoded_string.rb +163 -0
  1992. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/fuzzy_matcher.rb +53 -0
  1993. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/hunk_generator.rb +49 -0
  1994. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/matcher_definition.rb +44 -0
  1995. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/method_signature_verifier.rb +467 -0
  1996. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/mutex.rb +75 -0
  1997. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/object_formatter.rb +279 -0
  1998. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/recursive_const_methods.rb +78 -0
  1999. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/reentrant_mutex.rb +80 -0
  2000. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/ruby_features.rb +221 -0
  2001. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/source/location.rb +23 -0
  2002. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/source/node.rb +112 -0
  2003. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/source/token.rb +96 -0
  2004. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/source.rb +87 -0
  2005. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/deprecation_helpers.rb +50 -0
  2006. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/diff_helpers.rb +45 -0
  2007. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/formatting_support.rb +11 -0
  2008. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/in_sub_process.rb +73 -0
  2009. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/library_wide_checks.rb +152 -0
  2010. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/shell_out.rb +115 -0
  2011. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/stderr_splitter.rb +77 -0
  2012. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/string_matcher.rb +47 -0
  2013. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/with_isolated_directory.rb +15 -0
  2014. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec/with_isolated_stderr.rb +15 -0
  2015. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/spec.rb +84 -0
  2016. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/version.rb +9 -0
  2017. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/warnings.rb +41 -0
  2018. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support/with_keywords_when_needed.rb +35 -0
  2019. data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.7/lib/rspec/support.rb +163 -0
  2020. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/LICENSE.txt +20 -0
  2021. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/README.md +255 -0
  2022. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/assets/logo.png +0 -0
  2023. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/assets/output.css.erb +159 -0
  2024. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/assets/output.html.erb +102 -0
  2025. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/config/default.yml +6146 -0
  2026. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/config/internal_affairs.yml +31 -0
  2027. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/config/obsoletion.yml +247 -0
  2028. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/exe/rubocop +17 -0
  2029. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/arguments_env.rb +17 -0
  2030. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/arguments_file.rb +17 -0
  2031. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ast_aliases.rb +8 -0
  2032. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cache_config.rb +58 -0
  2033. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cached_data.rb +74 -0
  2034. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/auto_generate_config.rb +167 -0
  2035. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/base.rb +35 -0
  2036. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/execute_runner.rb +105 -0
  2037. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/init_dotfile.rb +44 -0
  2038. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/lsp.rb +19 -0
  2039. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/show_cops.rb +96 -0
  2040. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/show_docs_url.rb +48 -0
  2041. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/suggest_extensions.rb +132 -0
  2042. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/version.rb +18 -0
  2043. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/command.rb +22 -0
  2044. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli/environment.rb +22 -0
  2045. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cli.rb +247 -0
  2046. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/comment_config.rb +261 -0
  2047. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config.rb +400 -0
  2048. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_finder.rb +78 -0
  2049. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_loader.rb +269 -0
  2050. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_loader_resolver.rb +313 -0
  2051. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  2052. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/changed_parameter.rb +26 -0
  2053. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  2054. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/extracted_cop.rb +47 -0
  2055. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/parameter_rule.rb +56 -0
  2056. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  2057. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/renamed_cop.rb +49 -0
  2058. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/rule.rb +41 -0
  2059. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  2060. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_obsoletion.rb +155 -0
  2061. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_regeneration.rb +33 -0
  2062. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_store.rb +77 -0
  2063. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/config_validator.rb +291 -0
  2064. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/autocorrect_logic.rb +163 -0
  2065. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/badge.rb +68 -0
  2066. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/base.rb +547 -0
  2067. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/duplicated_gem.rb +94 -0
  2068. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/duplicated_group.rb +127 -0
  2069. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  2070. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_filename.rb +102 -0
  2071. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_version.rb +132 -0
  2072. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/insecure_protocol_source.rb +85 -0
  2073. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/ordered_gems.rb +69 -0
  2074. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/commissioner.rb +182 -0
  2075. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/cop.rb +192 -0
  2076. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/corrector.rb +138 -0
  2077. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/alignment_corrector.rb +144 -0
  2078. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/condition_corrector.rb +25 -0
  2079. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/each_to_for_corrector.rb +47 -0
  2080. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/empty_line_corrector.rb +25 -0
  2081. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/for_to_each_corrector.rb +71 -0
  2082. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/if_then_corrector.rb +55 -0
  2083. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +139 -0
  2084. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/line_break_corrector.rb +66 -0
  2085. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +113 -0
  2086. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +38 -0
  2087. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/parentheses_corrector.rb +89 -0
  2088. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/percent_literal_corrector.rb +116 -0
  2089. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/punctuation_corrector.rb +27 -0
  2090. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/require_library_corrector.rb +23 -0
  2091. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/space_corrector.rb +46 -0
  2092. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/string_literal_corrector.rb +23 -0
  2093. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/unused_arg_corrector.rb +40 -0
  2094. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/documentation.rb +66 -0
  2095. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/exclude_limit.rb +26 -0
  2096. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/force.rb +55 -0
  2097. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +38 -0
  2098. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/attribute_assignment.rb +91 -0
  2099. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/dependency_version.rb +152 -0
  2100. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +91 -0
  2101. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
  2102. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/duplicated_assignment.rb +111 -0
  2103. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/ordered_dependencies.rb +100 -0
  2104. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/require_mfa.rb +159 -0
  2105. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/required_ruby_version.rb +129 -0
  2106. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  2107. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/generator/configuration_injector.rb +65 -0
  2108. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/generator/require_file_injector.rb +75 -0
  2109. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/generator.rb +223 -0
  2110. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/ignored_node.rb +36 -0
  2111. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/cop_description.rb +118 -0
  2112. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/cop_enabled.rb +85 -0
  2113. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
  2114. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +69 -0
  2115. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_description.rb +118 -0
  2116. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  2117. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +34 -0
  2118. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +46 -0
  2119. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/location_exists.rb +142 -0
  2120. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/location_expression.rb +38 -0
  2121. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +61 -0
  2122. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +82 -0
  2123. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/method_name_equal.rb +49 -0
  2124. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  2125. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +54 -0
  2126. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +241 -0
  2127. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +63 -0
  2128. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +131 -0
  2129. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +233 -0
  2130. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_type_group.rb +92 -0
  2131. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +126 -0
  2132. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +42 -0
  2133. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
  2134. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +56 -0
  2135. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +90 -0
  2136. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/operator_keyword.rb +48 -0
  2137. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/plugin.rb +33 -0
  2138. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
  2139. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -0
  2140. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +63 -0
  2141. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +34 -0
  2142. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +73 -0
  2143. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +53 -0
  2144. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +61 -0
  2145. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +56 -0
  2146. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +75 -0
  2147. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +63 -0
  2148. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +146 -0
  2149. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/undefined_config.rb +94 -0
  2150. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +49 -0
  2151. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
  2152. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs.rb +40 -0
  2153. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/access_modifier_indentation.rb +104 -0
  2154. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/argument_alignment.rb +151 -0
  2155. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  2156. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/assignment_indentation.rb +57 -0
  2157. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/begin_end_alignment.rb +73 -0
  2158. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/block_alignment.rb +259 -0
  2159. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/block_end_newline.rb +83 -0
  2160. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/case_indentation.rb +221 -0
  2161. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/class_structure.rb +388 -0
  2162. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +123 -0
  2163. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +193 -0
  2164. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/comment_indentation.rb +168 -0
  2165. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/condition_position.rb +60 -0
  2166. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/def_end_alignment.rb +73 -0
  2167. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/dot_position.rb +139 -0
  2168. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/else_alignment.rb +156 -0
  2169. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_comment.rb +153 -0
  2170. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +217 -0
  2171. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +71 -0
  2172. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  2173. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_line_between_defs.rb +311 -0
  2174. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines.rb +73 -0
  2175. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
  2176. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +241 -0
  2177. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +82 -0
  2178. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +139 -0
  2179. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +41 -0
  2180. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +41 -0
  2181. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +85 -0
  2182. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +139 -0
  2183. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +64 -0
  2184. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +59 -0
  2185. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/end_alignment.rb +214 -0
  2186. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/end_of_line.rb +92 -0
  2187. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/extra_spacing.rb +185 -0
  2188. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_argument_indentation.rb +315 -0
  2189. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_indentation.rb +189 -0
  2190. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_line_break.rb +94 -0
  2191. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_indentation.rb +234 -0
  2192. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
  2193. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_method_argument_line_break.rb +105 -0
  2194. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +75 -0
  2195. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  2196. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/hash_alignment.rb +395 -0
  2197. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +312 -0
  2198. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_indentation.rb +195 -0
  2199. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_consistency.rb +205 -0
  2200. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  2201. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_width.rb +493 -0
  2202. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/initial_indentation.rb +55 -0
  2203. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/leading_comment_space.rb +203 -0
  2204. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  2205. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_continuation_leading_space.rb +153 -0
  2206. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_continuation_spacing.rb +146 -0
  2207. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +143 -0
  2208. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_length.rb +431 -0
  2209. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  2210. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +65 -0
  2211. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_assignment_layout.rb +117 -0
  2212. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_block_layout.rb +164 -0
  2213. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
  2214. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +74 -0
  2215. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +112 -0
  2216. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +132 -0
  2217. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +403 -0
  2218. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +128 -0
  2219. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +78 -0
  2220. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_operation_indentation.rb +130 -0
  2221. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/parameter_alignment.rb +118 -0
  2222. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/redundant_line_break.rb +134 -0
  2223. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +220 -0
  2224. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/single_line_block_chain.rb +69 -0
  2225. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_after_colon.rb +49 -0
  2226. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_after_comma.rb +32 -0
  2227. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_after_method_name.rb +39 -0
  2228. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_after_not.rb +39 -0
  2229. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_after_semicolon.rb +39 -0
  2230. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_around_block_parameters.rb +162 -0
  2231. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +89 -0
  2232. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_around_keyword.rb +274 -0
  2233. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  2234. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_around_operators.rb +303 -0
  2235. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_block_braces.rb +164 -0
  2236. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_brackets.rb +40 -0
  2237. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_comma.rb +29 -0
  2238. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_comment.rb +34 -0
  2239. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_first_arg.rb +73 -0
  2240. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_before_semicolon.rb +24 -0
  2241. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
  2242. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +239 -0
  2243. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +46 -0
  2244. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_block_braces.rb +268 -0
  2245. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +215 -0
  2246. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_parens.rb +176 -0
  2247. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +94 -0
  2248. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_range_literal.rb +54 -0
  2249. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +143 -0
  2250. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +63 -0
  2251. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/trailing_empty_lines.rb +113 -0
  2252. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/trailing_whitespace.rb +133 -0
  2253. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  2254. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/legacy/corrector.rb +37 -0
  2255. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  2256. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_block_association.rb +105 -0
  2257. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_operator.rb +105 -0
  2258. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +111 -0
  2259. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_range.rb +113 -0
  2260. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +78 -0
  2261. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/array_literal_in_regexp.rb +118 -0
  2262. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/assignment_in_condition.rb +107 -0
  2263. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/big_decimal_new.rb +41 -0
  2264. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +66 -0
  2265. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/boolean_symbol.rb +61 -0
  2266. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/circular_argument_reference.rb +106 -0
  2267. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  2268. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +52 -0
  2269. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/constant_reassignment.rb +148 -0
  2270. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
  2271. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/cop_directive_syntax.rb +90 -0
  2272. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/debugger.rb +144 -0
  2273. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/deprecated_class_methods.rb +118 -0
  2274. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/deprecated_constants.rb +88 -0
  2275. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +148 -0
  2276. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +110 -0
  2277. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_branch.rb +188 -0
  2278. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_case_condition.rb +39 -0
  2279. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  2280. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_hash_key.rb +33 -0
  2281. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
  2282. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_match_pattern.rb +122 -0
  2283. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_methods.rb +398 -0
  2284. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +84 -0
  2285. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_require.rb +56 -0
  2286. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  2287. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_set_element.rb +87 -0
  2288. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/each_with_object_argument.rb +40 -0
  2289. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/else_layout.rb +107 -0
  2290. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_block.rb +94 -0
  2291. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_class.rb +95 -0
  2292. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_conditional_body.rb +148 -0
  2293. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_ensure.rb +48 -0
  2294. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_expression.rb +40 -0
  2295. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_file.rb +46 -0
  2296. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_in_pattern.rb +64 -0
  2297. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_interpolation.rb +42 -0
  2298. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/empty_when.rb +61 -0
  2299. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ensure_return.rb +51 -0
  2300. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/erb_new_arguments.rb +162 -0
  2301. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/flip_flop.rb +38 -0
  2302. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
  2303. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_out_of_range.rb +28 -0
  2304. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/format_parameter_mismatch.rb +191 -0
  2305. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/hash_compare_by_identity.rb +48 -0
  2306. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +55 -0
  2307. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/heredoc_method_call_position.rb +152 -0
  2308. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/identity_comparison.rb +54 -0
  2309. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/implicit_string_concatenation.rb +112 -0
  2310. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +81 -0
  2311. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ineffective_access_modifier.rb +114 -0
  2312. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/inherit_exception.rb +105 -0
  2313. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/interpolation_check.rb +64 -0
  2314. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +50 -0
  2315. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
  2316. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_as_condition.rb +283 -0
  2317. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +85 -0
  2318. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_in_interpolation.rb +210 -0
  2319. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/loop.rb +80 -0
  2320. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +120 -0
  2321. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/missing_super.rb +159 -0
  2322. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/mixed_case_range.rb +113 -0
  2323. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  2324. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  2325. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/nested_method_definition.rb +142 -0
  2326. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/nested_percent_literal.rb +63 -0
  2327. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/next_without_accumulator.rb +51 -0
  2328. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +57 -0
  2329. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/non_atomic_file_operation.rb +174 -0
  2330. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/non_deterministic_require_order.rb +183 -0
  2331. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +86 -0
  2332. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/number_conversion.rb +200 -0
  2333. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +46 -0
  2334. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +94 -0
  2335. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/or_assignment_to_constant.rb +41 -0
  2336. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/ordered_magic_comments.rb +81 -0
  2337. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +129 -0
  2338. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +87 -0
  2339. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/percent_string_array.rb +74 -0
  2340. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/percent_symbol_array.rb +64 -0
  2341. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/raise_exception.rb +110 -0
  2342. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/rand_one.rb +42 -0
  2343. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +344 -0
  2344. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +135 -0
  2345. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +62 -0
  2346. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +130 -0
  2347. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_require_statement.rb +80 -0
  2348. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_safe_navigation.rb +259 -0
  2349. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_splat_expansion.rb +216 -0
  2350. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_string_coercion.rb +68 -0
  2351. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_type_conversion.rb +261 -0
  2352. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_with_index.rb +87 -0
  2353. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_with_object.rb +82 -0
  2354. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/refinement_import_methods.rb +52 -0
  2355. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/regexp_as_condition.rb +36 -0
  2356. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/require_parentheses.rb +62 -0
  2357. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/require_range_parentheses.rb +57 -0
  2358. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/require_relative_self_path.rb +50 -0
  2359. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/rescue_exception.rb +38 -0
  2360. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/rescue_type.rb +82 -0
  2361. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/return_in_void_context.rb +55 -0
  2362. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/safe_navigation_chain.rb +116 -0
  2363. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/safe_navigation_consistency.rb +160 -0
  2364. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  2365. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/script_permission.rb +73 -0
  2366. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/self_assignment.rb +148 -0
  2367. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
  2368. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/shadowed_argument.rb +177 -0
  2369. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/shadowed_exception.rb +165 -0
  2370. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +116 -0
  2371. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/shared_mutable_default.rb +76 -0
  2372. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/struct_new_override.rb +75 -0
  2373. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/suppressed_exception.rb +132 -0
  2374. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +111 -0
  2375. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/symbol_conversion.rb +184 -0
  2376. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/syntax.rb +49 -0
  2377. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_enum_arguments.rb +99 -0
  2378. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_json.rb +45 -0
  2379. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/top_level_return_with_argument.rb +48 -0
  2380. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  2381. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  2382. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +80 -0
  2383. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +88 -0
  2384. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unexpected_block_arity.rb +92 -0
  2385. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unified_integer.rb +40 -0
  2386. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +205 -0
  2387. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unreachable_code.rb +146 -0
  2388. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unreachable_loop.rb +208 -0
  2389. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unused_block_argument.rb +172 -0
  2390. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/unused_method_argument.rb +137 -0
  2391. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/uri_escape_unescape.rb +81 -0
  2392. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/uri_regexp.rb +56 -0
  2393. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_access_modifier.rb +321 -0
  2394. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_assignment.rb +242 -0
  2395. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_constant_scoping.rb +71 -0
  2396. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_default_value_argument.rb +90 -0
  2397. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_defined.rb +55 -0
  2398. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_else_without_rescue.rb +44 -0
  2399. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_method_definition.rb +77 -0
  2400. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_numeric_operation.rb +79 -0
  2401. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_or.rb +111 -0
  2402. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_rescue.rb +89 -0
  2403. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +127 -0
  2404. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_setter_call.rb +158 -0
  2405. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_times.rb +114 -0
  2406. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
  2407. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/void.rb +279 -0
  2408. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/message_annotator.rb +134 -0
  2409. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/abc_size.rb +56 -0
  2410. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/block_length.rb +88 -0
  2411. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/block_nesting.rb +72 -0
  2412. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/class_length.rb +77 -0
  2413. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/collection_literal_length.rb +83 -0
  2414. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +58 -0
  2415. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/method_length.rb +80 -0
  2416. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/module_length.rb +62 -0
  2417. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/parameter_lists.rb +147 -0
  2418. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/perceived_complexity.rb +59 -0
  2419. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +141 -0
  2420. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +209 -0
  2421. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  2422. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  2423. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  2424. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/migration/department_name.rb +81 -0
  2425. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/alignment.rb +85 -0
  2426. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  2427. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/allowed_methods.rb +48 -0
  2428. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/allowed_pattern.rb +68 -0
  2429. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
  2430. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/annotation_comment.rb +70 -0
  2431. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/array_min_size.rb +57 -0
  2432. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
  2433. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  2434. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/check_assignment.rb +36 -0
  2435. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/check_line_breakable.rb +237 -0
  2436. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/check_single_line_suitability.rb +47 -0
  2437. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/code_length.rb +70 -0
  2438. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/comments_help.rb +95 -0
  2439. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/configurable_enforced_style.rb +112 -0
  2440. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/configurable_formatting.rb +41 -0
  2441. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/configurable_max.rb +28 -0
  2442. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
  2443. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/configurable_numbering.rb +18 -0
  2444. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/def_node.rb +26 -0
  2445. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/dig_help.rb +27 -0
  2446. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/documentation_comment.rb +52 -0
  2447. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/duplication.rb +46 -0
  2448. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
  2449. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/empty_parameter.rb +25 -0
  2450. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/end_keyword_alignment.rb +74 -0
  2451. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/endless_method_rewriter.rb +24 -0
  2452. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/enforce_superclass.rb +44 -0
  2453. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/first_element_line_break.rb +50 -0
  2454. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/forbidden_identifiers.rb +20 -0
  2455. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/forbidden_pattern.rb +16 -0
  2456. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/frozen_string_literal.rb +99 -0
  2457. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  2458. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/gemspec_help.rb +52 -0
  2459. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_alignment_styles.rb +157 -0
  2460. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +236 -0
  2461. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_subset.rb +203 -0
  2462. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_transform_method.rb +192 -0
  2463. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/heredoc.rb +41 -0
  2464. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/integer_node.rb +14 -0
  2465. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/interpolation.rb +25 -0
  2466. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/line_length_help.rb +151 -0
  2467. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/match_range.rb +23 -0
  2468. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/method_complexity.rb +84 -0
  2469. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/method_preference.rb +30 -0
  2470. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
  2471. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
  2472. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/multiline_element_indentation.rb +109 -0
  2473. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +32 -0
  2474. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +226 -0
  2475. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
  2476. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/negative_conditional.rb +34 -0
  2477. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  2478. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
  2479. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/ordered_gem_node.rb +66 -0
  2480. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/parentheses.rb +16 -0
  2481. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/percent_array.rb +125 -0
  2482. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/percent_literal.rb +32 -0
  2483. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/preceding_following_alignment.rb +219 -0
  2484. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/preferred_delimiters.rb +50 -0
  2485. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/range_help.rb +160 -0
  2486. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  2487. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/require_library.rb +61 -0
  2488. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/rescue_node.rb +34 -0
  2489. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/safe_assignment.rb +27 -0
  2490. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/space_after_punctuation.rb +55 -0
  2491. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  2492. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/statement_modifier.rb +109 -0
  2493. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/string_help.rb +40 -0
  2494. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/string_literals_help.rb +33 -0
  2495. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/surrounding_space.rb +134 -0
  2496. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  2497. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/target_ruby_version.rb +36 -0
  2498. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/trailing_body.rb +25 -0
  2499. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/trailing_comma.rb +228 -0
  2500. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/uncommunicative_name.rb +104 -0
  2501. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/unused_argument.rb +29 -0
  2502. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/visibility_help.rb +72 -0
  2503. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/accessor_method_name.rb +78 -0
  2504. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/ascii_identifiers.rb +90 -0
  2505. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
  2506. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/block_forwarding.rb +156 -0
  2507. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  2508. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/class_and_module_camel_case.rb +45 -0
  2509. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/constant_name.rb +82 -0
  2510. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/file_name.rb +245 -0
  2511. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +68 -0
  2512. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +57 -0
  2513. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/inclusive_language.rb +297 -0
  2514. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +294 -0
  2515. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/method_name.rb +253 -0
  2516. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  2517. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_method.rb +330 -0
  2518. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
  2519. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +172 -0
  2520. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/variable_name.rb +112 -0
  2521. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/variable_number.rb +155 -0
  2522. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/offense.rb +246 -0
  2523. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/registry.rb +318 -0
  2524. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/compound_hash.rb +108 -0
  2525. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/eval.rb +34 -0
  2526. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/io_methods.rb +49 -0
  2527. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/json_load.rb +69 -0
  2528. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/marshal_load.rb +39 -0
  2529. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/open.rb +90 -0
  2530. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/yaml_load.rb +50 -0
  2531. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/severity.rb +67 -0
  2532. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/access_modifier_declarations.rb +364 -0
  2533. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/accessor_grouping.rb +214 -0
  2534. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/alias.rb +158 -0
  2535. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +79 -0
  2536. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/and_or.rb +158 -0
  2537. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/arguments_forwarding.rb +564 -0
  2538. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/array_coercion.rb +87 -0
  2539. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/array_first_last.rb +80 -0
  2540. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/array_intersect.rb +195 -0
  2541. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/array_intersect_with_single_element.rb +47 -0
  2542. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/array_join.rb +39 -0
  2543. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/ascii_comments.rb +57 -0
  2544. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/attr.rb +80 -0
  2545. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/auto_resource_cleanup.rb +55 -0
  2546. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/bare_percent_literals.rb +75 -0
  2547. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/begin_block.rb +21 -0
  2548. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  2549. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  2550. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/bitwise_predicate.rb +107 -0
  2551. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_comments.rb +66 -0
  2552. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_delimiters.rb +504 -0
  2553. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/case_equality.rb +106 -0
  2554. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/case_like_if.rb +277 -0
  2555. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/character_literal.rb +57 -0
  2556. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_and_module_children.rb +228 -0
  2557. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_check.rb +55 -0
  2558. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_equality_comparison.rb +134 -0
  2559. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_methods.rb +54 -0
  2560. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_methods_definitions.rb +158 -0
  2561. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/class_vars.rb +64 -0
  2562. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/collection_compact.rb +143 -0
  2563. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/collection_methods.rb +93 -0
  2564. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/collection_querying.rb +167 -0
  2565. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/colon_method_call.rb +46 -0
  2566. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  2567. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/combinable_defined.rb +115 -0
  2568. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/combinable_loops.rb +131 -0
  2569. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/command_literal.rb +181 -0
  2570. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/comment_annotation.rb +130 -0
  2571. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/commented_keyword.rb +118 -0
  2572. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/comparable_between.rb +78 -0
  2573. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
  2574. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/concat_array_literals.rb +95 -0
  2575. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/conditional_assignment.rb +670 -0
  2576. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/constant_visibility.rb +102 -0
  2577. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/copyright.rb +109 -0
  2578. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/data_inheritance.rb +82 -0
  2579. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/date_time.rb +94 -0
  2580. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/def_with_parentheses.rb +70 -0
  2581. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/dig_chain.rb +89 -0
  2582. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/dir.rb +50 -0
  2583. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/dir_empty.rb +54 -0
  2584. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  2585. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  2586. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation.rb +198 -0
  2587. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation_method.rb +152 -0
  2588. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/double_cop_disable_directive.rb +46 -0
  2589. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/double_negation.rb +159 -0
  2590. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/each_for_simple_loop.rb +86 -0
  2591. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/each_with_object.rb +138 -0
  2592. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_block_parameter.rb +47 -0
  2593. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_case_condition.rb +117 -0
  2594. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_class_definition.rb +96 -0
  2595. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_else.rb +207 -0
  2596. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_heredoc.rb +60 -0
  2597. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_lambda_parameter.rb +44 -0
  2598. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_literal.rb +151 -0
  2599. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_method.rb +113 -0
  2600. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +100 -0
  2601. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/encoding.rb +63 -0
  2602. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/end_block.rb +28 -0
  2603. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/endless_method.rb +246 -0
  2604. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/env_home.rb +56 -0
  2605. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/eval_with_location.rb +229 -0
  2606. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/even_odd.rb +56 -0
  2607. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/exact_regexp_match.rb +69 -0
  2608. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/expand_path_arguments.rb +191 -0
  2609. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/explicit_block_argument.rb +166 -0
  2610. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/exponential_notation.rb +117 -0
  2611. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/fetch_env_var.rb +159 -0
  2612. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/file_empty.rb +71 -0
  2613. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/file_null.rb +89 -0
  2614. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/file_read.rb +109 -0
  2615. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/file_touch.rb +75 -0
  2616. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/file_write.rb +133 -0
  2617. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/float_division.rb +169 -0
  2618. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/for.rb +90 -0
  2619. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string.rb +154 -0
  2620. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string_token.rb +272 -0
  2621. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/frozen_string_literal_comment.rb +221 -0
  2622. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/global_std_stream.rb +79 -0
  2623. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/global_vars.rb +78 -0
  2624. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/guard_clause.rb +321 -0
  2625. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_as_last_array_item.rb +102 -0
  2626. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_conversion.rb +151 -0
  2627. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_each_methods.rb +221 -0
  2628. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_except.rb +80 -0
  2629. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_fetch_chain.rb +104 -0
  2630. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_like_case.rb +71 -0
  2631. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_lookup_method.rb +94 -0
  2632. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_slice.rb +80 -0
  2633. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_syntax.rb +307 -0
  2634. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  2635. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_transform_values.rb +93 -0
  2636. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/identical_conditional_branches.rb +273 -0
  2637. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_inside_else.rb +152 -0
  2638. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier.rb +351 -0
  2639. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +44 -0
  2640. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +166 -0
  2641. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_semicolon.rb +132 -0
  2642. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/implicit_runtime_error.rb +34 -0
  2643. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/in_pattern_then.rb +60 -0
  2644. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/infinite_loop.rb +127 -0
  2645. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/inline_comment.rb +34 -0
  2646. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/inverse_methods.rb +200 -0
  2647. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/invertible_unless_condition.rb +160 -0
  2648. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/ip_addresses.rb +75 -0
  2649. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/it_assignment.rb +93 -0
  2650. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/it_block_parameter.rb +121 -0
  2651. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/keyword_arguments_merging.rb +67 -0
  2652. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/keyword_parameters_order.rb +81 -0
  2653. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda.rb +126 -0
  2654. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda_call.rb +79 -0
  2655. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/line_end_concatenation.rb +143 -0
  2656. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
  2657. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +168 -0
  2658. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/map_into_array.rb +236 -0
  2659. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/map_to_hash.rb +90 -0
  2660. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/map_to_set.rb +63 -0
  2661. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +259 -0
  2662. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +59 -0
  2663. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +277 -0
  2664. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +120 -0
  2665. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_called_on_do_end_block.rb +55 -0
  2666. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_def_parentheses.rb +178 -0
  2667. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/min_max.rb +64 -0
  2668. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/min_max_comparison.rb +91 -0
  2669. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/missing_else.rb +185 -0
  2670. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/missing_respond_to_missing.rb +82 -0
  2671. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/mixin_grouping.rb +135 -0
  2672. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/mixin_usage.rb +72 -0
  2673. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_function.rb +170 -0
  2674. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_member_existence_check.rb +117 -0
  2675. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_block_chain.rb +51 -0
  2676. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_modifier.rb +58 -0
  2677. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_then.rb +42 -0
  2678. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_in_pattern_then.rb +60 -0
  2679. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_memoization.rb +96 -0
  2680. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_method_signature.rb +93 -0
  2681. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_ternary_operator.rb +102 -0
  2682. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_when_then.rb +60 -0
  2683. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiple_comparison.rb +164 -0
  2684. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/mutable_constant.rb +246 -0
  2685. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negated_if.rb +98 -0
  2686. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negated_if_else_condition.rb +137 -0
  2687. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negated_unless.rb +88 -0
  2688. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negated_while.rb +40 -0
  2689. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negative_array_index.rb +220 -0
  2690. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
  2691. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nested_modifier.rb +100 -0
  2692. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nested_parenthesized_calls.rb +79 -0
  2693. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nested_ternary_operator.rb +63 -0
  2694. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/next.rb +277 -0
  2695. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nil_comparison.rb +87 -0
  2696. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  2697. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/non_nil_check.rb +158 -0
  2698. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/not.rb +76 -0
  2699. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/numbered_parameters.rb +46 -0
  2700. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/numbered_parameters_limit.rb +58 -0
  2701. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/numeric_literal_prefix.rb +119 -0
  2702. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/numeric_literals.rb +129 -0
  2703. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/numeric_predicate.rb +185 -0
  2704. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/object_then.rb +76 -0
  2705. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/one_line_conditional.rb +156 -0
  2706. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/open_struct_use.rb +69 -0
  2707. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/operator_method_call.rb +100 -0
  2708. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/option_hash.rb +54 -0
  2709. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/optional_arguments.rb +59 -0
  2710. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/optional_boolean_parameter.rb +64 -0
  2711. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/or_assignment.rb +94 -0
  2712. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/parallel_assignment.rb +302 -0
  2713. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/parentheses_around_condition.rb +136 -0
  2714. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/percent_literal_delimiters.rb +118 -0
  2715. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/percent_q_literals.rb +70 -0
  2716. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/perl_backrefs.rb +127 -0
  2717. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
  2718. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/proc.rb +37 -0
  2719. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/quoted_symbols.rb +122 -0
  2720. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/raise_args.rb +160 -0
  2721. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/random_with_offset.rb +153 -0
  2722. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_argument.rb +131 -0
  2723. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
  2724. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_array_flatten.rb +50 -0
  2725. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_assignment.rb +114 -0
  2726. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_begin.rb +239 -0
  2727. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_capital_w.rb +46 -0
  2728. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_condition.rb +345 -0
  2729. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_conditional.rb +84 -0
  2730. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
  2731. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +50 -0
  2732. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +129 -0
  2733. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_each.rb +119 -0
  2734. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_exception.rb +85 -0
  2735. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_fetch_block.rb +113 -0
  2736. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +61 -0
  2737. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_filter_chain.rb +118 -0
  2738. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_format.rb +283 -0
  2739. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_freeze.rb +69 -0
  2740. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +58 -0
  2741. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_initialize.rb +165 -0
  2742. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_interpolation.rb +147 -0
  2743. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +46 -0
  2744. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_line_continuation.rb +236 -0
  2745. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_parentheses.rb +360 -0
  2746. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_percent_q.rb +107 -0
  2747. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_regexp_argument.rb +116 -0
  2748. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_regexp_character_class.rb +119 -0
  2749. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
  2750. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_regexp_escape.rb +128 -0
  2751. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_return.rb +189 -0
  2752. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_self.rb +215 -0
  2753. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_self_assignment.rb +106 -0
  2754. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +90 -0
  2755. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_sort.rb +209 -0
  2756. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_sort_by.rb +79 -0
  2757. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_string_escape.rb +185 -0
  2758. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/regexp_literal.rb +231 -0
  2759. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/require_order.rb +139 -0
  2760. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/rescue_modifier.rb +112 -0
  2761. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/rescue_standard_error.rb +126 -0
  2762. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/return_nil.rb +99 -0
  2763. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +137 -0
  2764. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/reverse_find.rb +51 -0
  2765. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/safe_navigation.rb +427 -0
  2766. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/safe_navigation_chain_length.rb +52 -0
  2767. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/sample.rb +144 -0
  2768. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/select_by_regexp.rb +169 -0
  2769. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/self_assignment.rb +95 -0
  2770. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/semicolon.rb +188 -0
  2771. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/send.rb +29 -0
  2772. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/send_with_literal_method_name.rb +105 -0
  2773. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/signal_exception.rb +217 -0
  2774. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/single_argument_dig.rb +73 -0
  2775. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/single_line_block_params.rb +119 -0
  2776. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/single_line_do_end_block.rb +78 -0
  2777. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/single_line_methods.rb +147 -0
  2778. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/slicing_with_range.rb +146 -0
  2779. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/sole_nested_conditional.rb +244 -0
  2780. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/special_global_vars.rb +259 -0
  2781. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +79 -0
  2782. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/static_class.rb +128 -0
  2783. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/stderr_puts.rb +57 -0
  2784. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_chars.rb +42 -0
  2785. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_concatenation.rb +182 -0
  2786. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_hash_keys.rb +58 -0
  2787. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_literals.rb +129 -0
  2788. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_literals_in_interpolation.rb +76 -0
  2789. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/string_methods.rb +36 -0
  2790. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/strip.rb +45 -0
  2791. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/struct_inheritance.rb +79 -0
  2792. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/super_arguments.rb +221 -0
  2793. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/super_with_args_parentheses.rb +35 -0
  2794. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/swap_values.rb +101 -0
  2795. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/symbol_array.rb +133 -0
  2796. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/symbol_literal.rb +28 -0
  2797. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/symbol_proc.rb +282 -0
  2798. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/ternary_parentheses.rb +240 -0
  2799. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/top_level_method_definition.rb +86 -0
  2800. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_body_on_class.rb +41 -0
  2801. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +55 -0
  2802. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  2803. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +160 -0
  2804. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +137 -0
  2805. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
  2806. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +139 -0
  2807. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_method_end_statement.rb +62 -0
  2808. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trailing_underscore_variable.rb +152 -0
  2809. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/trivial_accessors.rb +254 -0
  2810. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/unless_else.rb +56 -0
  2811. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
  2812. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/unpack_first.rb +59 -0
  2813. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/variable_interpolation.rb +44 -0
  2814. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/when_then.rb +37 -0
  2815. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/while_until_do.rb +47 -0
  2816. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/while_until_modifier.rb +51 -0
  2817. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/word_array.rb +155 -0
  2818. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
  2819. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/yoda_condition.rb +185 -0
  2820. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/yoda_expression.rb +92 -0
  2821. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/zero_length_predicate.rb +154 -0
  2822. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/team.rb +290 -0
  2823. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/util.rb +215 -0
  2824. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/utils/format_string.rb +148 -0
  2825. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/assignment.rb +156 -0
  2826. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branch.rb +355 -0
  2827. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branchable.rb +23 -0
  2828. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/reference.rb +47 -0
  2829. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/scope.rb +106 -0
  2830. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/variable.rb +127 -0
  2831. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/variable_table.rb +131 -0
  2832. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force.rb +462 -0
  2833. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/cops_documentation_generator.rb +406 -0
  2834. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/core_ext/string.rb +19 -0
  2835. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/directive_comment.rb +223 -0
  2836. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/error.rb +35 -0
  2837. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ext/comment.rb +18 -0
  2838. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ext/processed_source.rb +20 -0
  2839. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ext/range.rb +15 -0
  2840. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ext/regexp_node.rb +69 -0
  2841. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/ext/regexp_parser.rb +78 -0
  2842. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/feature_loader.rb +94 -0
  2843. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/file_finder.rb +43 -0
  2844. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/file_patterns.rb +43 -0
  2845. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  2846. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/base_formatter.rb +119 -0
  2847. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/clang_style_formatter.rb +58 -0
  2848. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/colorizable.rb +41 -0
  2849. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/disabled_config_formatter.rb +297 -0
  2850. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/emacs_style_formatter.rb +39 -0
  2851. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/file_list_formatter.rb +20 -0
  2852. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/formatter_set.rb +114 -0
  2853. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
  2854. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/github_actions_formatter.rb +57 -0
  2855. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/html_formatter.rb +155 -0
  2856. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/json_formatter.rb +79 -0
  2857. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/junit_formatter.rb +143 -0
  2858. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/markdown_formatter.rb +79 -0
  2859. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/offense_count_formatter.rb +93 -0
  2860. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/pacman_formatter.rb +81 -0
  2861. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/progress_formatter.rb +62 -0
  2862. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  2863. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/simple_text_formatter.rb +172 -0
  2864. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/tap_formatter.rb +85 -0
  2865. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/text_util.rb +20 -0
  2866. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter/worst_offenders_formatter.rb +64 -0
  2867. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/formatter.rb +34 -0
  2868. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lockfile.rb +91 -0
  2869. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/diagnostic.rb +173 -0
  2870. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/disable_comment_edits.rb +135 -0
  2871. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/logger.rb +22 -0
  2872. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/routes.rb +256 -0
  2873. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/runtime.rb +79 -0
  2874. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/server.rb +70 -0
  2875. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/severity.rb +27 -0
  2876. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp/stdin_runner.rb +76 -0
  2877. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/lsp.rb +36 -0
  2878. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/magic_comment.rb +328 -0
  2879. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/name_similarity.rb +29 -0
  2880. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/options.rb +662 -0
  2881. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/path_util.rb +122 -0
  2882. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/pending_cops_reporter.rb +56 -0
  2883. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/platform.rb +11 -0
  2884. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/plugin/configuration_integrator.rb +143 -0
  2885. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/plugin/load_error.rb +26 -0
  2886. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/plugin/loader.rb +100 -0
  2887. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/plugin/not_supported_error.rb +29 -0
  2888. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/plugin.rb +46 -0
  2889. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rake_task.rb +109 -0
  2890. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/remote_config.rb +114 -0
  2891. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/result_cache.rb +247 -0
  2892. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rspec/cop_helper.rb +111 -0
  2893. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rspec/expect_offense.rb +354 -0
  2894. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rspec/parallel_formatter.rb +90 -0
  2895. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rspec/shared_contexts.rb +275 -0
  2896. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/rspec/support.rb +35 -0
  2897. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/runner.rb +529 -0
  2898. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/cache.rb +187 -0
  2899. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/cli.rb +147 -0
  2900. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/base.rb +54 -0
  2901. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/exec.rb +65 -0
  2902. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/restart.rb +25 -0
  2903. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/start.rb +58 -0
  2904. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/status.rb +28 -0
  2905. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command/stop.rb +31 -0
  2906. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/client_command.rb +26 -0
  2907. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/core.rb +116 -0
  2908. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/errors.rb +23 -0
  2909. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/helper.rb +34 -0
  2910. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/server_command/base.rb +50 -0
  2911. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/server_command/exec.rb +33 -0
  2912. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/server_command/stop.rb +24 -0
  2913. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/server_command.rb +21 -0
  2914. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server/socket_reader.rb +69 -0
  2915. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/server.rb +53 -0
  2916. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/string_interpreter.rb +60 -0
  2917. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/target_finder.rb +221 -0
  2918. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/target_ruby.rb +308 -0
  2919. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/util.rb +16 -0
  2920. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/version.rb +160 -0
  2921. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/warning.rb +11 -0
  2922. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop/yaml_duplication_checker.rb +34 -0
  2923. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/rubocop.rb +830 -0
  2924. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/ruby_lsp/rubocop/addon.rb +90 -0
  2925. data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.84.2/lib/ruby_lsp/rubocop/runtime_adapter.rb +99 -0
  2926. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/LICENSE.txt +20 -0
  2927. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/README.md +54 -0
  2928. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/builder.rb +133 -0
  2929. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/builder_prism.rb +11 -0
  2930. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/ext/range.rb +28 -0
  2931. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/alias_node.rb +24 -0
  2932. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/and_asgn_node.rb +17 -0
  2933. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/and_node.rb +29 -0
  2934. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/arg_node.rb +34 -0
  2935. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/args_node.rb +39 -0
  2936. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/array_node.rb +69 -0
  2937. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/asgn_node.rb +26 -0
  2938. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/block_node.rb +168 -0
  2939. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/break_node.rb +12 -0
  2940. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/case_match_node.rb +64 -0
  2941. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/case_node.rb +60 -0
  2942. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/casgn_node.rb +23 -0
  2943. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/class_node.rb +31 -0
  2944. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/complex_node.rb +13 -0
  2945. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/const_node.rb +10 -0
  2946. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/csend_node.rb +14 -0
  2947. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/def_node.rb +68 -0
  2948. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/defined_node.rb +19 -0
  2949. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/dstr_node.rb +16 -0
  2950. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/ensure_node.rb +53 -0
  2951. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/float_node.rb +13 -0
  2952. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/for_node.rb +53 -0
  2953. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/forward_args_node.rb +33 -0
  2954. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/hash_node.rb +122 -0
  2955. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/if_node.rb +178 -0
  2956. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/in_pattern_node.rb +38 -0
  2957. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/index_node.rb +48 -0
  2958. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/indexasgn_node.rb +50 -0
  2959. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/int_node.rb +13 -0
  2960. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/keyword_begin_node.rb +44 -0
  2961. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/keyword_splat_node.rb +53 -0
  2962. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/lambda_node.rb +65 -0
  2963. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/masgn_node.rb +63 -0
  2964. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/basic_literal_node.rb +16 -0
  2965. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/binary_operator_node.rb +43 -0
  2966. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/collection_node.rb +16 -0
  2967. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/conditional_node.rb +45 -0
  2968. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/constant_node.rb +62 -0
  2969. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/descendence.rb +117 -0
  2970. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/hash_element_node.rb +127 -0
  2971. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +287 -0
  2972. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +219 -0
  2973. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/modifier_node.rb +17 -0
  2974. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/numeric_node.rb +22 -0
  2975. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/parameterized_node.rb +126 -0
  2976. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +44 -0
  2977. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/mlhs_node.rb +29 -0
  2978. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/module_node.rb +24 -0
  2979. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/next_node.rb +12 -0
  2980. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/op_asgn_node.rb +38 -0
  2981. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/or_asgn_node.rb +17 -0
  2982. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/or_node.rb +29 -0
  2983. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/pair_node.rb +74 -0
  2984. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/procarg0_node.rb +17 -0
  2985. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/range_node.rb +18 -0
  2986. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/rational_node.rb +13 -0
  2987. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/regexp_node.rb +103 -0
  2988. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/resbody_node.rb +45 -0
  2989. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/rescue_node.rb +49 -0
  2990. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/return_node.rb +12 -0
  2991. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/self_class_node.rb +24 -0
  2992. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/send_node.rb +29 -0
  2993. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/str_node.rb +56 -0
  2994. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/super_node.rb +23 -0
  2995. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/symbol_node.rb +12 -0
  2996. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/until_node.rb +35 -0
  2997. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/var_node.rb +15 -0
  2998. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/when_node.rb +47 -0
  2999. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/while_node.rb +35 -0
  3000. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node/yield_node.rb +23 -0
  3001. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node.rb +770 -0
  3002. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/builder.rb +72 -0
  3003. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/comment.rb +45 -0
  3004. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/atom_subcompiler.rb +56 -0
  3005. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/binding.rb +84 -0
  3006. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/debug.rb +163 -0
  3007. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/node_pattern_subcompiler.rb +146 -0
  3008. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/sequence_subcompiler.rb +431 -0
  3009. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler/subcompiler.rb +57 -0
  3010. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/compiler.rb +105 -0
  3011. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/lexer.rb +70 -0
  3012. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/lexer.rex +42 -0
  3013. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/lexer.rex.rb +184 -0
  3014. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/method_definer.rb +145 -0
  3015. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/node.rb +269 -0
  3016. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/parser.racc.rb +472 -0
  3017. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/parser.rb +66 -0
  3018. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/parser.y +103 -0
  3019. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/sets.rb +37 -0
  3020. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern/with_meta.rb +110 -0
  3021. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/node_pattern.rb +127 -0
  3022. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/processed_source.rb +411 -0
  3023. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/rubocop_compatibility.rb +31 -0
  3024. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/sexp.rb +17 -0
  3025. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/token.rb +131 -0
  3026. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/traversal.rb +193 -0
  3027. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/utilities/simple_forwardable.rb +27 -0
  3028. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast/version.rb +9 -0
  3029. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop/ast.rb +105 -0
  3030. data/vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.49.1/lib/rubocop-ast.rb +3 -0
  3031. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/LICENSE.txt +20 -0
  3032. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/README.md +100 -0
  3033. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/config/default.yml +389 -0
  3034. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/config/obsoletion.yml +7 -0
  3035. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/mixin/regexp_metacharacter.rb +76 -0
  3036. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/mixin/sort_block.rb +35 -0
  3037. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/ancestors_include.rb +52 -0
  3038. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/array_semi_infinite_range_slice.rb +80 -0
  3039. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb +82 -0
  3040. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/bind_call.rb +77 -0
  3041. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/block_given_with_explicit_block.rb +60 -0
  3042. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/caller.rb +67 -0
  3043. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/case_when_splat.rb +190 -0
  3044. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/casecmp.rb +109 -0
  3045. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/chain_array_allocation.rb +83 -0
  3046. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/collection_literal_in_loop.rb +171 -0
  3047. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/compare_with_block.rb +120 -0
  3048. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/concurrent_monotonic_time.rb +42 -0
  3049. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/constant_regexp.rb +75 -0
  3050. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/count.rb +144 -0
  3051. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/delete_prefix.rb +94 -0
  3052. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/delete_suffix.rb +94 -0
  3053. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/detect.rb +137 -0
  3054. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/double_start_end_with.rb +122 -0
  3055. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/end_with.rb +82 -0
  3056. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/fixed_size.rb +99 -0
  3057. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/flat_map.rb +88 -0
  3058. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/inefficient_hash_search.rb +104 -0
  3059. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/io_readlines.rb +112 -0
  3060. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/map_compact.rb +101 -0
  3061. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/map_method_chain.rb +89 -0
  3062. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/method_object_as_block.rb +32 -0
  3063. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/open_struct.rb +50 -0
  3064. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/range_include.rb +57 -0
  3065. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_block_call.rb +107 -0
  3066. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_equality_comparison_block.rb +137 -0
  3067. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_match.rb +92 -0
  3068. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_merge.rb +195 -0
  3069. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_sort_block.rb +50 -0
  3070. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_split_regexp_argument.rb +65 -0
  3071. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/redundant_string_chars.rb +132 -0
  3072. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/regexp_match.rb +277 -0
  3073. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/reverse_each.rb +60 -0
  3074. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/reverse_first.rb +66 -0
  3075. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/select_map.rb +57 -0
  3076. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/size.rb +76 -0
  3077. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/sort_reverse.rb +55 -0
  3078. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/squeeze.rb +71 -0
  3079. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/start_with.rb +82 -0
  3080. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/string_bytesize.rb +45 -0
  3081. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/string_identifier_argument.rb +107 -0
  3082. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/string_include.rb +65 -0
  3083. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/string_replacement.rb +161 -0
  3084. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/sum.rb +271 -0
  3085. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/times_map.rb +89 -0
  3086. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/unfreeze_string.rb +70 -0
  3087. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/uri_default_parser.rb +40 -0
  3088. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance/zip_without_block.rb +57 -0
  3089. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/cop/performance_cops.rb +57 -0
  3090. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/performance/plugin.rb +31 -0
  3091. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/performance/version.rb +14 -0
  3092. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop/performance.rb +7 -0
  3093. data/vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.26.1/lib/rubocop-performance.rb +22 -0
  3094. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/LICENSE.txt +19 -0
  3095. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/README.md +131 -0
  3096. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/Rakefile +2 -0
  3097. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/base.rb +234 -0
  3098. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/calculators/length.rb +98 -0
  3099. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/bar.rb +102 -0
  3100. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/percentage.rb +27 -0
  3101. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/rate.rb +39 -0
  3102. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/time.rb +101 -0
  3103. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/components/title.rb +13 -0
  3104. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +4 -0
  3105. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/formatter.rb +27 -0
  3106. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/molecule.rb +61 -0
  3107. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/format/string.rb +38 -0
  3108. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/output.rb +71 -0
  3109. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/non_tty.rb +47 -0
  3110. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/null.rb +33 -0
  3111. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/outputs/tty.rb +32 -0
  3112. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/progress.rb +108 -0
  3113. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/projector.rb +14 -0
  3114. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/projectors/smoothed_average.rb +71 -0
  3115. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/refinements/progress_enumerator.rb +28 -0
  3116. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/refinements.rb +1 -0
  3117. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/throttle.rb +25 -0
  3118. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/time.rb +30 -0
  3119. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/timer.rb +78 -0
  3120. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar/version.rb +3 -0
  3121. data/vendor/bundle/ruby/3.2.0/gems/ruby-progressbar-1.13.0/lib/ruby-progressbar.rb +12 -0
  3122. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/LICENSE +21 -0
  3123. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/README.md +194 -0
  3124. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/agent/agent_generator.rb +36 -0
  3125. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/agent/templates/agent.rb.tt +6 -0
  3126. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/agent/templates/instructions.txt.erb.tt +0 -0
  3127. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/chat_ui_generator.rb +256 -0
  3128. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/controllers/chats_controller.rb.tt +38 -0
  3129. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/controllers/messages_controller.rb.tt +21 -0
  3130. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/controllers/models_controller.rb.tt +14 -0
  3131. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/helpers/messages_helper.rb.tt +25 -0
  3132. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/jobs/chat_response_job.rb.tt +12 -0
  3133. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/chats/_chat.html.erb.tt +16 -0
  3134. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/chats/_form.html.erb.tt +31 -0
  3135. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/chats/index.html.erb.tt +31 -0
  3136. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/chats/new.html.erb.tt +9 -0
  3137. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/chats/show.html.erb.tt +27 -0
  3138. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_assistant.html.erb.tt +14 -0
  3139. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_content.html.erb.tt +1 -0
  3140. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_error.html.erb.tt +13 -0
  3141. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_form.html.erb.tt +23 -0
  3142. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_system.html.erb.tt +10 -0
  3143. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_tool.html.erb.tt +2 -0
  3144. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_tool_calls.html.erb.tt +4 -0
  3145. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/_user.html.erb.tt +14 -0
  3146. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/tool_calls/_default.html.erb.tt +13 -0
  3147. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/messages/tool_results/_default.html.erb.tt +21 -0
  3148. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/models/_model.html.erb.tt +17 -0
  3149. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/models/index.html.erb.tt +40 -0
  3150. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/tailwind/views/models/show.html.erb.tt +27 -0
  3151. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/chats/_chat.html.erb.tt +16 -0
  3152. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/chats/_form.html.erb.tt +29 -0
  3153. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/chats/index.html.erb.tt +28 -0
  3154. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/chats/new.html.erb.tt +11 -0
  3155. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/chats/show.html.erb.tt +25 -0
  3156. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_assistant.html.erb.tt +9 -0
  3157. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_content.html.erb.tt +1 -0
  3158. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_error.html.erb.tt +8 -0
  3159. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_form.html.erb.tt +21 -0
  3160. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_system.html.erb.tt +6 -0
  3161. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_tool.html.erb.tt +2 -0
  3162. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_tool_calls.html.erb.tt +4 -0
  3163. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/_user.html.erb.tt +9 -0
  3164. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/create.turbo_stream.erb.tt +7 -0
  3165. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/tool_calls/_default.html.erb.tt +8 -0
  3166. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/messages/tool_results/_default.html.erb.tt +16 -0
  3167. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/models/_model.html.erb.tt +15 -0
  3168. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/models/index.html.erb.tt +38 -0
  3169. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/chat_ui/templates/views/models/show.html.erb.tt +17 -0
  3170. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/generator_helpers.rb +214 -0
  3171. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/install_generator.rb +110 -0
  3172. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/add_references_to_chats_tool_calls_and_messages_migration.rb.tt +9 -0
  3173. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/chat_model.rb.tt +3 -0
  3174. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/create_chats_migration.rb.tt +7 -0
  3175. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/create_messages_migration.rb.tt +19 -0
  3176. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/create_models_migration.rb.tt +39 -0
  3177. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/create_tool_calls_migration.rb.tt +21 -0
  3178. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/initializer.rb.tt +12 -0
  3179. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/message_model.rb.tt +4 -0
  3180. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/model_model.rb.tt +3 -0
  3181. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/install/templates/tool_call_model.rb.tt +3 -0
  3182. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/schema/schema_generator.rb +26 -0
  3183. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/schema/templates/schema.rb.tt +2 -0
  3184. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/tool/templates/tool.rb.tt +9 -0
  3185. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/tool/templates/tool_call.html.erb.tt +13 -0
  3186. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/tool/templates/tool_result.html.erb.tt +13 -0
  3187. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/tool/tool_generator.rb +96 -0
  3188. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_10/templates/add_v1_10_message_columns.rb.tt +19 -0
  3189. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_10/upgrade_to_v1_10_generator.rb +50 -0
  3190. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_14/templates/add_v1_14_tool_call_columns.rb.tt +7 -0
  3191. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_14/upgrade_to_v1_14_generator.rb +49 -0
  3192. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_7/templates/migration.rb.tt +145 -0
  3193. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_7/upgrade_to_v1_7_generator.rb +122 -0
  3194. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_9/templates/add_v1_9_message_columns.rb.tt +15 -0
  3195. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/generators/ruby_llm/upgrade_to_v1_9/upgrade_to_v1_9_generator.rb +49 -0
  3196. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/acts_as.rb +180 -0
  3197. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/acts_as_legacy.rb +503 -0
  3198. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/chat_methods.rb +468 -0
  3199. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/message_methods.rb +131 -0
  3200. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/model_methods.rb +84 -0
  3201. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/payload_helpers.rb +26 -0
  3202. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/active_record/tool_call_methods.rb +15 -0
  3203. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/agent.rb +365 -0
  3204. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/aliases.json +432 -0
  3205. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/aliases.rb +38 -0
  3206. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/attachment.rb +223 -0
  3207. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/chat.rb +351 -0
  3208. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/chunk.rb +6 -0
  3209. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/configuration.rb +81 -0
  3210. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/connection.rb +130 -0
  3211. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/content.rb +77 -0
  3212. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/context.rb +29 -0
  3213. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/embedding.rb +29 -0
  3214. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/error.rb +112 -0
  3215. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/image.rb +49 -0
  3216. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/message.rb +107 -0
  3217. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/mime_type.rb +71 -0
  3218. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model/info.rb +113 -0
  3219. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model/modalities.rb +22 -0
  3220. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model/pricing.rb +48 -0
  3221. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model/pricing_category.rb +46 -0
  3222. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model/pricing_tier.rb +33 -0
  3223. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/model.rb +7 -0
  3224. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/models.json +56664 -0
  3225. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/models.rb +514 -0
  3226. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/models_schema.json +168 -0
  3227. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/moderation.rb +56 -0
  3228. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/provider.rb +265 -0
  3229. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/capabilities.rb +20 -0
  3230. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/chat.rb +257 -0
  3231. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/content.rb +44 -0
  3232. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/embeddings.rb +20 -0
  3233. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/media.rb +92 -0
  3234. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/models.rb +57 -0
  3235. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/streaming.rb +69 -0
  3236. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic/tools.rb +129 -0
  3237. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/anthropic.rb +40 -0
  3238. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/azure/chat.rb +29 -0
  3239. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/azure/embeddings.rb +24 -0
  3240. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/azure/media.rb +45 -0
  3241. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/azure/models.rb +14 -0
  3242. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/azure.rb +148 -0
  3243. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock/auth.rb +122 -0
  3244. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock/chat.rb +392 -0
  3245. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock/media.rb +90 -0
  3246. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock/models.rb +143 -0
  3247. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock/streaming.rb +319 -0
  3248. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/bedrock.rb +99 -0
  3249. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/deepseek/capabilities.rb +20 -0
  3250. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/deepseek/chat.rb +16 -0
  3251. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/deepseek.rb +34 -0
  3252. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/capabilities.rb +119 -0
  3253. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/chat.rb +536 -0
  3254. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/embeddings.rb +37 -0
  3255. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/images.rb +47 -0
  3256. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/media.rb +112 -0
  3257. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/models.rb +38 -0
  3258. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/streaming.rb +93 -0
  3259. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/tools.rb +230 -0
  3260. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini/transcription.rb +116 -0
  3261. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gemini.rb +41 -0
  3262. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gpustack/capabilities.rb +20 -0
  3263. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gpustack/chat.rb +27 -0
  3264. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gpustack/media.rb +46 -0
  3265. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gpustack/models.rb +90 -0
  3266. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/gpustack.rb +42 -0
  3267. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/mistral/capabilities.rb +163 -0
  3268. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/mistral/chat.rb +82 -0
  3269. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/mistral/embeddings.rb +33 -0
  3270. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/mistral/models.rb +48 -0
  3271. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/mistral.rb +36 -0
  3272. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/ollama/capabilities.rb +20 -0
  3273. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/ollama/chat.rb +27 -0
  3274. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/ollama/media.rb +46 -0
  3275. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/ollama/models.rb +36 -0
  3276. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/ollama.rb +40 -0
  3277. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/capabilities.rb +203 -0
  3278. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/chat.rb +182 -0
  3279. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/embeddings.rb +33 -0
  3280. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/images.rb +38 -0
  3281. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/media.rb +84 -0
  3282. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/models.rb +37 -0
  3283. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/moderation.rb +34 -0
  3284. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/streaming.rb +54 -0
  3285. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/temperature.rb +28 -0
  3286. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/tools.rb +123 -0
  3287. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai/transcription.rb +70 -0
  3288. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openai.rb +54 -0
  3289. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openrouter/chat.rb +168 -0
  3290. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openrouter/images.rb +69 -0
  3291. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openrouter/models.rb +73 -0
  3292. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openrouter/streaming.rb +74 -0
  3293. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/openrouter.rb +62 -0
  3294. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/perplexity/capabilities.rb +72 -0
  3295. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/perplexity/chat.rb +16 -0
  3296. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/perplexity/models.rb +40 -0
  3297. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/perplexity.rb +52 -0
  3298. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai/chat.rb +14 -0
  3299. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai/embeddings.rb +32 -0
  3300. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai/models.rb +130 -0
  3301. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai/streaming.rb +14 -0
  3302. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai/transcription.rb +16 -0
  3303. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/vertexai.rb +71 -0
  3304. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/xai/chat.rb +15 -0
  3305. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/xai/models.rb +75 -0
  3306. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/providers/xai.rb +32 -0
  3307. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/railtie.rb +35 -0
  3308. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/stream_accumulator.rb +203 -0
  3309. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/streaming.rb +175 -0
  3310. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/thinking.rb +49 -0
  3311. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/tokens.rb +47 -0
  3312. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/tool.rb +254 -0
  3313. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/tool_call.rb +25 -0
  3314. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/transcription.rb +35 -0
  3315. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/utils.rb +91 -0
  3316. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm/version.rb +5 -0
  3317. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/ruby_llm.rb +113 -0
  3318. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/tasks/models.rake +564 -0
  3319. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/tasks/release.rake +67 -0
  3320. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/tasks/ruby_llm.rake +23 -0
  3321. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-1.14.1/lib/tasks/vcr.rake +124 -0
  3322. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/.rspec +3 -0
  3323. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/LICENSE.txt +21 -0
  3324. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/README.md +428 -0
  3325. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/RELEASE.md +8 -0
  3326. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/Rakefile +12 -0
  3327. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/dsl/complex_types.rb +32 -0
  3328. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/dsl/primitive_types.rb +29 -0
  3329. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/dsl/schema_builders.rb +191 -0
  3330. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/dsl/utilities.rb +45 -0
  3331. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/dsl.rb +17 -0
  3332. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/errors.rb +38 -0
  3333. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/helpers.rb +10 -0
  3334. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/json_output.rb +34 -0
  3335. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/validator.rb +95 -0
  3336. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema/version.rb +7 -0
  3337. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/ruby_llm/schema.rb +98 -0
  3338. data/vendor/bundle/ruby/3.2.0/gems/ruby_llm-schema-0.3.0/lib/tasks/release.rake +53 -0
  3339. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/.github/dependabot.yml +12 -0
  3340. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/.github/workflows/test.yml +24 -0
  3341. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/.github/workflows/update.yml +54 -0
  3342. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/.gitignore +11 -0
  3343. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/.standard.yml +4 -0
  3344. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/CHANGELOG.md +716 -0
  3345. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/Gemfile +16 -0
  3346. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/Gemfile.lock +89 -0
  3347. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/LICENSE.txt +24 -0
  3348. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/README.md +577 -0
  3349. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/Rakefile +13 -0
  3350. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/bin/console +10 -0
  3351. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/bin/rake +27 -0
  3352. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/bin/run +9 -0
  3353. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/bin/setup +8 -0
  3354. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/base.yml +1981 -0
  3355. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/default.yml +8 -0
  3356. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-1.8.yml +16 -0
  3357. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-1.9.yml +14 -0
  3358. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.0.yml +4 -0
  3359. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.1.yml +4 -0
  3360. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.2.yml +16 -0
  3361. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.3.yml +10 -0
  3362. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.4.yml +10 -0
  3363. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.5.yml +10 -0
  3364. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.6.yml +13 -0
  3365. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-2.7.yml +10 -0
  3366. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-3.0.yml +13 -0
  3367. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-3.1.yml +11 -0
  3368. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-3.2.yml +4 -0
  3369. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-3.3.yml +7 -0
  3370. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/config/ruby-3.4.yml +7 -0
  3371. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/docs/ARCHITECTURE.md +33 -0
  3372. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/docs/RELEASE.md +41 -0
  3373. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/docs/RUBY_VERSIONS.md +51 -0
  3374. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/docs/UPGRADING.md +31 -0
  3375. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/exe/standardrb +7 -0
  3376. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/ruby_lsp/standard/addon.rb +58 -0
  3377. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/ruby_lsp/standard/wraps_built_in_lsp_standardizer.rb +44 -0
  3378. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/base/plugin.rb +69 -0
  3379. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/base.rb +8 -0
  3380. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/builds_config.rb +36 -0
  3381. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/cli.rb +17 -0
  3382. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +10 -0
  3383. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/creates_config_store/configures_ignored_paths.rb +45 -0
  3384. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/creates_config_store/merges_user_config_extensions.rb +37 -0
  3385. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/creates_config_store/sets_target_ruby_version.rb +38 -0
  3386. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/creates_config_store.rb +28 -0
  3387. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/file_finder.rb +13 -0
  3388. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/formatter.rb +134 -0
  3389. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/loads_runner.rb +23 -0
  3390. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/loads_yaml_config.rb +67 -0
  3391. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/diagnostic.rb +174 -0
  3392. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/kills_server.rb +10 -0
  3393. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/logger.rb +21 -0
  3394. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/routes.rb +175 -0
  3395. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/server.rb +37 -0
  3396. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/standardizer.rb +34 -0
  3397. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/lsp/stdin_rubocop_runner.rb +71 -0
  3398. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/merges_settings.rb +75 -0
  3399. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/combines_plugin_configs.rb +15 -0
  3400. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/creates_runner_context.rb +15 -0
  3401. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/determines_class_constant.rb +56 -0
  3402. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/initializes_plugins.rb +23 -0
  3403. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/merges_plugins_into_rubocop_config.rb +177 -0
  3404. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin/standardizes_configured_plugins.rb +37 -0
  3405. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/plugin.rb +11 -0
  3406. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/railtie.rb +11 -0
  3407. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/rake.rb +33 -0
  3408. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/resolves_yaml_option.rb +28 -0
  3409. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/rubocop/ext.rb +25 -0
  3410. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/genignore.rb +44 -0
  3411. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/help.rb +48 -0
  3412. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/lsp.rb +11 -0
  3413. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/rubocop.rb +32 -0
  3414. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/verbose_version.rb +14 -0
  3415. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/runners/version.rb +9 -0
  3416. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard/version.rb +3 -0
  3417. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/lib/standard.rb +15 -0
  3418. data/vendor/bundle/ruby/3.2.0/gems/standard-1.54.0/standard.gemspec +32 -0
  3419. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/.standard.yml +3 -0
  3420. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/CHANGELOG.md +13 -0
  3421. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/Gemfile +7 -0
  3422. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/Gemfile.lock +68 -0
  3423. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/LICENSE.txt +25 -0
  3424. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/README.md +22 -0
  3425. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/Rakefile +12 -0
  3426. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/config/base.yml +2 -0
  3427. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/lib/standard/cop/block_single_line_braces.rb +98 -0
  3428. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/lib/standard/custom/plugin.rb +28 -0
  3429. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/lib/standard/custom/version.rb +5 -0
  3430. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/lib/standard/custom.rb +10 -0
  3431. data/vendor/bundle/ruby/3.2.0/gems/standard-custom-1.0.2/lib/standard-custom.rb +1 -0
  3432. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/.standard.yml +3 -0
  3433. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/CHANGELOG.md +62 -0
  3434. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/Gemfile +10 -0
  3435. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/Gemfile.lock +88 -0
  3436. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/LICENSE.txt +21 -0
  3437. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/README.md +21 -0
  3438. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/Rakefile +12 -0
  3439. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/base.yml +159 -0
  3440. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/ruby-1.8.yml +1 -0
  3441. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/ruby-1.9.yml +14 -0
  3442. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/ruby-2.0.yml +1 -0
  3443. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/ruby-2.1.yml +1 -0
  3444. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/config/ruby-2.2.yml +4 -0
  3445. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/docs/RELEASE.md +43 -0
  3446. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance/builds_ruleset.rb +21 -0
  3447. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance/determines_yaml_path.rb +28 -0
  3448. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance/loads_yaml_with_inheritance.rb +31 -0
  3449. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance/plugin.rb +54 -0
  3450. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance/version.rb +5 -0
  3451. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard/performance.rb +9 -0
  3452. data/vendor/bundle/ruby/3.2.0/gems/standard-performance-1.9.0/lib/standard-performance.rb +1 -0
  3453. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/.document +5 -0
  3454. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/.rdoc_options +5 -0
  3455. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/COPYING +56 -0
  3456. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/LICENSE.txt +22 -0
  3457. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/NEWS.md +326 -0
  3458. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/README.md +45 -0
  3459. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/docs/io.rb +3 -0
  3460. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio/.document +1 -0
  3461. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio/Makefile +269 -0
  3462. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio/extconf.rb +9 -0
  3463. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio/stringio.c +2110 -0
  3464. data/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/lib/stringio.so +0 -0
  3465. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/.github/dependabot.yml +6 -0
  3466. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/.github/workflows/test.yml +29 -0
  3467. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/.gitignore +8 -0
  3468. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/Gemfile +4 -0
  3469. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/LICENSE.txt +22 -0
  3470. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/README.md +72 -0
  3471. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/Rakefile +10 -0
  3472. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/bin/console +14 -0
  3473. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/bin/setup +8 -0
  3474. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/lib/tsort.rb +455 -0
  3475. data/vendor/bundle/ruby/3.2.0/gems/tsort-0.2.0/tsort.gemspec +29 -0
  3476. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/CHANGELOG.md +299 -0
  3477. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/MIT-LICENSE.txt +22 -0
  3478. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/README.md +194 -0
  3479. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/data/display_width.marshal.gz +0 -0
  3480. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb +10 -0
  3481. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb +55 -0
  3482. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/index.rb +34 -0
  3483. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/no_string_ext.rb +8 -0
  3484. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/reline_ext.rb +14 -0
  3485. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width/string_ext.rb +9 -0
  3486. data/vendor/bundle/ruby/3.2.0/gems/unicode-display_width-3.2.0/lib/unicode/display_width.rb +247 -0
  3487. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/.gitignore +3 -0
  3488. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/.rake_tasks +5 -0
  3489. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/CHANGELOG.md +202 -0
  3490. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/CODE_OF_CONDUCT.md +74 -0
  3491. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/Gemfile +9 -0
  3492. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/MIT-LICENSE.txt +20 -0
  3493. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/README.md +205 -0
  3494. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/Rakefile +46 -0
  3495. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/data/emoji.marshal.gz +0 -0
  3496. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/data/generate_constants.rb +344 -0
  3497. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/constants.rb +50 -0
  3498. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex.rb +8 -0
  3499. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_basic.rb +8 -0
  3500. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_emoji_keycap.rb +8 -0
  3501. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_include_mqe.rb +8 -0
  3502. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_include_mqe_uqe.rb +8 -0
  3503. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_include_text.rb +8 -0
  3504. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_picto.rb +8 -0
  3505. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_picto_no_emoji.rb +8 -0
  3506. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_possible.rb +8 -0
  3507. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_prop_component.rb +8 -0
  3508. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_prop_emoji.rb +8 -0
  3509. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_prop_modifier.rb +8 -0
  3510. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_prop_modifier_base.rb +8 -0
  3511. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_prop_presentation.rb +8 -0
  3512. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_text.rb +8 -0
  3513. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_text_presentation.rb +8 -0
  3514. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_valid.rb +8 -0
  3515. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_valid_include_text.rb +8 -0
  3516. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_well_formed.rb +8 -0
  3517. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated/regex_well_formed_include_text.rb +8 -0
  3518. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex.rb +8 -0
  3519. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_basic.rb +8 -0
  3520. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_emoji_keycap.rb +8 -0
  3521. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_include_mqe.rb +8 -0
  3522. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_include_mqe_uqe.rb +8 -0
  3523. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_include_text.rb +8 -0
  3524. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_picto.rb +8 -0
  3525. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_picto_no_emoji.rb +8 -0
  3526. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_possible.rb +8 -0
  3527. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_prop_component.rb +8 -0
  3528. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_prop_emoji.rb +8 -0
  3529. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_prop_modifier.rb +8 -0
  3530. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_prop_modifier_base.rb +8 -0
  3531. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_prop_presentation.rb +8 -0
  3532. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_text.rb +8 -0
  3533. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_text_presentation.rb +8 -0
  3534. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_valid.rb +8 -0
  3535. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_valid_include_text.rb +8 -0
  3536. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_well_formed.rb +8 -0
  3537. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/generated_native/regex_well_formed_include_text.rb +8 -0
  3538. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/index.rb +14 -0
  3539. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/lazy_constants.rb +56 -0
  3540. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji/list.rb +13 -0
  3541. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/lib/unicode/emoji.rb +111 -0
  3542. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/spec/data/.keep +0 -0
  3543. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/spec/emoji_test_txt_spec.rb +181 -0
  3544. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/spec/unicode_emoji_spec.rb +725 -0
  3545. data/vendor/bundle/ruby/3.2.0/gems/unicode-emoji-4.2.0/unicode-emoji.gemspec +22 -0
  3546. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/.document +5 -0
  3547. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/.rdoc_options +5 -0
  3548. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/BSDL +22 -0
  3549. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/COPYING +56 -0
  3550. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/README.md +55 -0
  3551. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/docs/kernel.rb +2 -0
  3552. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/common.rb +922 -0
  3553. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/file.rb +100 -0
  3554. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/ftp.rb +267 -0
  3555. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/generic.rb +1592 -0
  3556. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/http.rb +137 -0
  3557. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/https.rb +23 -0
  3558. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/ldap.rb +261 -0
  3559. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/ldaps.rb +22 -0
  3560. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/mailto.rb +293 -0
  3561. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/rfc2396_parser.rb +547 -0
  3562. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/rfc3986_parser.rb +206 -0
  3563. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/version.rb +6 -0
  3564. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/ws.rb +83 -0
  3565. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri/wss.rb +23 -0
  3566. data/vendor/bundle/ruby/3.2.0/gems/uri-1.1.1/lib/uri.rb +104 -0
  3567. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/MIT-LICENSE +20 -0
  3568. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/README.md +1477 -0
  3569. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/kernel.rb +64 -0
  3570. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/core_ext/module.rb +20 -0
  3571. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref/map.rb +159 -0
  3572. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/cref.rb +69 -0
  3573. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/error.rb +23 -0
  3574. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_inflector.rb +17 -0
  3575. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/gem_loader.rb +68 -0
  3576. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/inflector.rb +46 -0
  3577. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/internal.rb +13 -0
  3578. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/callbacks.rb +96 -0
  3579. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/config.rb +357 -0
  3580. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/eager_load.rb +230 -0
  3581. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/file_system.rb +165 -0
  3582. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader/helpers.rb +46 -0
  3583. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/loader.rb +643 -0
  3584. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/null_inflector.rb +6 -0
  3585. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/real_mod_name.rb +19 -0
  3586. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/autoloads.rb +38 -0
  3587. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/explicit_namespaces.rb +61 -0
  3588. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/inceptions.rb +31 -0
  3589. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry/loaders.rb +33 -0
  3590. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/registry.rb +89 -0
  3591. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk/version.rb +6 -0
  3592. data/vendor/bundle/ruby/3.2.0/gems/zeitwerk-2.7.5/lib/zeitwerk.rb +29 -0
  3593. data/vendor/bundle/ruby/3.2.0/plugins/rdoc_plugin.rb +1 -0
  3594. data/vendor/bundle/ruby/3.2.0/specifications/ast-2.4.3.gemspec +29 -0
  3595. data/vendor/bundle/ruby/3.2.0/specifications/base64-0.3.0.gemspec +23 -0
  3596. data/vendor/bundle/ruby/3.2.0/specifications/date-3.5.1.gemspec +25 -0
  3597. data/vendor/bundle/ruby/3.2.0/specifications/diff-lcs-1.6.2.gemspec +35 -0
  3598. data/vendor/bundle/ruby/3.2.0/specifications/erb-6.0.4.gemspec +27 -0
  3599. data/vendor/bundle/ruby/3.2.0/specifications/event_stream_parser-1.0.0.gemspec +23 -0
  3600. data/vendor/bundle/ruby/3.2.0/specifications/faraday-2.14.1.gemspec +0 -0
  3601. data/vendor/bundle/ruby/3.2.0/specifications/faraday-multipart-1.2.0.gemspec +26 -0
  3602. data/vendor/bundle/ruby/3.2.0/specifications/faraday-net_http-3.4.2.gemspec +26 -0
  3603. data/vendor/bundle/ruby/3.2.0/specifications/faraday-retry-2.4.0.gemspec +33 -0
  3604. data/vendor/bundle/ruby/3.2.0/specifications/io-console-0.8.2.gemspec +25 -0
  3605. data/vendor/bundle/ruby/3.2.0/specifications/irb-1.18.0.gemspec +32 -0
  3606. data/vendor/bundle/ruby/3.2.0/specifications/json-2.19.5.gemspec +0 -0
  3607. data/vendor/bundle/ruby/3.2.0/specifications/language_server-protocol-3.17.0.5.gemspec +31 -0
  3608. data/vendor/bundle/ruby/3.2.0/specifications/lint_roller-1.1.0.gemspec +22 -0
  3609. data/vendor/bundle/ruby/3.2.0/specifications/logger-1.7.0.gemspec +22 -0
  3610. data/vendor/bundle/ruby/3.2.0/specifications/marcel-1.1.0.gemspec +29 -0
  3611. data/vendor/bundle/ruby/3.2.0/specifications/multipart-post-2.4.1.gemspec +21 -0
  3612. data/vendor/bundle/ruby/3.2.0/specifications/net-http-0.9.1.gemspec +27 -0
  3613. data/vendor/bundle/ruby/3.2.0/specifications/parallel-1.28.0.gemspec +21 -0
  3614. data/vendor/bundle/ruby/3.2.0/specifications/parser-3.3.11.1.gemspec +37 -0
  3615. data/vendor/bundle/ruby/3.2.0/specifications/pp-0.6.3.gemspec +27 -0
  3616. data/vendor/bundle/ruby/3.2.0/specifications/prettyprint-0.2.0.gemspec +23 -0
  3617. data/vendor/bundle/ruby/3.2.0/specifications/prism-1.9.0.gemspec +24 -0
  3618. data/vendor/bundle/ruby/3.2.0/specifications/psych-5.3.1.gemspec +32 -0
  3619. data/vendor/bundle/ruby/3.2.0/specifications/racc-1.8.1.gemspec +28 -0
  3620. data/vendor/bundle/ruby/3.2.0/specifications/rainbow-3.1.1.gemspec +25 -0
  3621. data/vendor/bundle/ruby/3.2.0/specifications/rake-13.4.2.gemspec +26 -0
  3622. data/vendor/bundle/ruby/3.2.0/specifications/rdoc-7.2.0.gemspec +33 -0
  3623. data/vendor/bundle/ruby/3.2.0/specifications/regexp_parser-2.12.0.gemspec +22 -0
  3624. data/vendor/bundle/ruby/3.2.0/specifications/reline-0.6.3.gemspec +26 -0
  3625. data/vendor/bundle/ruby/3.2.0/specifications/rspec-3.13.2.gemspec +31 -0
  3626. data/vendor/bundle/ruby/3.2.0/specifications/rspec-core-3.13.6.gemspec +31 -0
  3627. data/vendor/bundle/ruby/3.2.0/specifications/rspec-expectations-3.13.5.gemspec +29 -0
  3628. data/vendor/bundle/ruby/3.2.0/specifications/rspec-mocks-3.13.8.gemspec +29 -0
  3629. data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.13.7.gemspec +29 -0
  3630. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.84.2.gemspec +39 -0
  3631. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-ast-1.49.1.gemspec +29 -0
  3632. data/vendor/bundle/ruby/3.2.0/specifications/rubocop-performance-1.26.1.gemspec +30 -0
  3633. data/vendor/bundle/ruby/3.2.0/specifications/ruby-progressbar-1.13.0.gemspec +29 -0
  3634. data/vendor/bundle/ruby/3.2.0/specifications/ruby_llm-1.14.1.gemspec +35 -0
  3635. data/vendor/bundle/ruby/3.2.0/specifications/ruby_llm-schema-0.3.0.gemspec +27 -0
  3636. data/vendor/bundle/ruby/3.2.0/specifications/standard-1.54.0.gemspec +31 -0
  3637. data/vendor/bundle/ruby/3.2.0/specifications/standard-custom-1.0.2.gemspec +27 -0
  3638. data/vendor/bundle/ruby/3.2.0/specifications/standard-performance-1.9.0.gemspec +27 -0
  3639. data/vendor/bundle/ruby/3.2.0/specifications/stringio-3.2.0.gemspec +26 -0
  3640. data/vendor/bundle/ruby/3.2.0/specifications/tsort-0.2.0.gemspec +23 -0
  3641. data/vendor/bundle/ruby/3.2.0/specifications/unicode-display_width-3.2.0.gemspec +30 -0
  3642. data/vendor/bundle/ruby/3.2.0/specifications/unicode-emoji-4.2.0.gemspec +22 -0
  3643. data/vendor/bundle/ruby/3.2.0/specifications/uri-1.1.1.gemspec +23 -0
  3644. data/vendor/bundle/ruby/3.2.0/specifications/zeitwerk-2.7.5.gemspec +22 -0
  3645. metadata +3720 -0
@@ -0,0 +1,2962 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is auto-generated. Instead of editing this file, please
4
+ # add MIMEs to data/custom.xml or lib/marcel/mime_type/definitions.rb.
5
+
6
+ module Marcel
7
+ # @private
8
+ # :nodoc:
9
+ EXTENSIONS = {
10
+ '123' => 'application/vnd.lotus-1-2-3',
11
+ '3dml' => 'text/vnd.in3d.3dml',
12
+ '3ds' => 'image/x-3ds',
13
+ '3fr' => 'image/x-raw-hasselblad',
14
+ '3g2' => 'video/3gpp2',
15
+ '3gp' => 'video/3gpp',
16
+ '3mf' => 'application/vnd.ms-package.3dmanufacturing-3dmodel+xml',
17
+ '4th' => 'text/x-forth',
18
+ '7z' => 'application/x-7z-compressed',
19
+ 'a' => 'application/x-archive',
20
+ 'aab' => 'application/x-authorware-bin',
21
+ 'aac' => 'audio/x-aac',
22
+ 'aam' => 'application/x-authorware-map',
23
+ 'aart' => 'text/plain',
24
+ 'aas' => 'application/x-authorware-seg',
25
+ 'abw' => 'application/x-abiword',
26
+ 'ac' => 'text/plain',
27
+ 'ac3' => 'audio/ac3',
28
+ 'acc' => 'application/vnd.americandynamics.acc',
29
+ 'accdb' => 'application/x-msaccess',
30
+ 'ace' => 'application/x-ace-compressed',
31
+ 'acfm' => 'application/x-font-adobe-metric',
32
+ 'acu' => 'application/vnd.acucobol',
33
+ 'acutc' => 'application/vnd.acucorp',
34
+ 'ad' => 'text/x-asciidoc',
35
+ 'ad.txt' => 'text/x-asciidoc',
36
+ 'ada' => 'text/x-ada',
37
+ 'adb' => 'text/x-ada',
38
+ 'adf' => 'application/x-amiga-disk-format',
39
+ 'adoc' => 'text/x-asciidoc',
40
+ 'adoc.txt' => 'text/x-asciidoc',
41
+ 'adp' => 'audio/adpcm',
42
+ 'ads' => 'text/x-ada',
43
+ 'aep' => 'application/vnd.adobe.aftereffects.project',
44
+ 'aet' => 'application/vnd.adobe.aftereffects.template',
45
+ 'afm' => 'application/x-font-adobe-metric',
46
+ 'afp' => 'application/vnd.ibm.modcap',
47
+ 'ai' => 'application/illustrator',
48
+ 'aif' => 'audio/x-aiff',
49
+ 'aifc' => 'audio/x-aiff',
50
+ 'aiff' => 'audio/x-aiff',
51
+ 'air' => 'application/vnd.adobe.air-application-installer-package+zip',
52
+ 'aj' => 'text/x-aspectj',
53
+ 'al' => 'text/x-perl',
54
+ 'am' => 'text/plain',
55
+ 'amf' => 'application/x-amf',
56
+ 'amfm' => 'application/x-font-adobe-metric',
57
+ 'ami' => 'application/vnd.amiga.ami',
58
+ 'amr' => 'audio/amr',
59
+ 'anpa' => 'text/vnd.iptc.anpa',
60
+ 'apk' => 'application/vnd.android.package-archive',
61
+ 'applescript' => 'text/x-applescript',
62
+ 'application' => 'application/x-ms-application',
63
+ 'apr' => 'application/vnd.lotus-approach',
64
+ 'apt' => 'text/plain',
65
+ 'ar' => 'application/x-archive',
66
+ 'arc' => 'application/x-internet-archive',
67
+ 'arj' => 'application/x-arj',
68
+ 'arw' => 'image/x-raw-sony',
69
+ 'as' => 'text/x-actionscript',
70
+ 'asc' => 'application/pgp-signature',
71
+ 'asciidoc' => 'text/x-asciidoc',
72
+ 'asf' => 'video/x-ms-asf',
73
+ 'asice' => 'application/vnd.etsi.asic-e+zip',
74
+ 'asics' => 'application/vnd.etsi.asic-s+zip',
75
+ 'asm' => 'text/x-assembly',
76
+ 'asnd' => 'audio/vnd.adobe.soundbooth',
77
+ 'aso' => 'application/vnd.accpac.simply.aso',
78
+ 'asp' => 'text/asp',
79
+ 'aspx' => 'text/aspdotnet',
80
+ 'asx' => 'application/x-ms-asx',
81
+ 'atc' => 'application/vnd.acucorp',
82
+ 'atom' => 'application/atom+xml',
83
+ 'atomcat' => 'application/atomcat+xml',
84
+ 'atomsvc' => 'application/atomsvc+xml',
85
+ 'atx' => 'application/vnd.antix.game-component',
86
+ 'au' => 'audio/basic',
87
+ 'avi' => 'video/x-msvideo',
88
+ 'avif' => 'image/avif',
89
+ 'aw' => 'application/applixware',
90
+ 'awk' => 'text/x-awk',
91
+ 'axx' => 'application/x-axcrypt',
92
+ 'azf' => 'application/vnd.airzip.filesecure.azf',
93
+ 'azs' => 'application/vnd.airzip.filesecure.azs',
94
+ 'azw' => 'application/vnd.amazon.ebook',
95
+ 'bas' => 'text/x-basic',
96
+ 'bash' => 'application/x-sh',
97
+ 'bat' => 'application/x-bat',
98
+ 'bau' => 'application/vnd.openofficeorg.autotext',
99
+ 'bay' => 'image/x-raw-casio',
100
+ 'bcpio' => 'application/x-bcpio',
101
+ 'bdf' => 'application/x-font-bdf',
102
+ 'bdm' => 'application/vnd.syncml.dm+wbxml',
103
+ 'bh2' => 'application/vnd.fujitsu.oasysprs',
104
+ 'bib' => 'application/x-bibtex-text-file',
105
+ 'bibtex' => 'application/x-bibtex-text-file',
106
+ 'bin' => 'application/octet-stream',
107
+ 'bmi' => 'application/vnd.bmi',
108
+ 'bmp' => 'image/bmp',
109
+ 'book' => 'application/vnd.framemaker',
110
+ 'box' => 'application/vnd.previewsystems.box',
111
+ 'boz' => 'application/x-bzip2',
112
+ 'bpg' => 'image/x-bpg',
113
+ 'bpk' => 'application/octet-stream',
114
+ 'bpm' => 'application/bizagi-modeler',
115
+ 'br' => 'application/x-brotli',
116
+ 'brotli' => 'application/x-brotli',
117
+ 'bsh' => 'text/plain',
118
+ 'btif' => 'image/prs.btif',
119
+ 'bup' => 'application/x-dvd-ifo',
120
+ 'bz' => 'application/x-bzip',
121
+ 'bz2' => 'application/x-bzip2',
122
+ 'c' => 'text/x-c++src',
123
+ 'c++' => 'text/x-c++src',
124
+ 'c4d' => 'application/vnd.clonk.c4group',
125
+ 'c4f' => 'application/vnd.clonk.c4group',
126
+ 'c4g' => 'application/vnd.clonk.c4group',
127
+ 'c4p' => 'application/vnd.clonk.c4group',
128
+ 'c4u' => 'application/vnd.clonk.c4group',
129
+ 'cab' => 'application/vnd.ms-cab-compressed',
130
+ 'caf' => 'audio/x-caf',
131
+ 'cap' => 'application/vnd.tcpdump.pcap',
132
+ 'car' => 'application/vnd.curl.car',
133
+ 'cat' => 'application/vnd.ms-pki.seccat',
134
+ 'cbl' => 'text/x-cobol',
135
+ 'cbor' => 'application/cbor',
136
+ 'cc' => 'text/x-c++src',
137
+ 'cct' => 'application/x-director',
138
+ 'ccxml' => 'application/ccxml+xml',
139
+ 'cda' => 'application/x-cdf',
140
+ 'cdbcmsg' => 'application/vnd.contact.cmsg',
141
+ 'cdf' => 'application/x-netcdf',
142
+ 'cdkey' => 'application/vnd.mediastation.cdkey',
143
+ 'cdr' => 'application/coreldraw',
144
+ 'cdx' => 'chemical/x-cdx',
145
+ 'cdxml' => 'application/vnd.chemdraw+xml',
146
+ 'cdy' => 'application/vnd.cinderella',
147
+ 'cel' => 'image/vnd.dgn',
148
+ 'cer' => 'application/pkix-cert',
149
+ 'cfc' => 'text/x-coldfusion',
150
+ 'cfg' => 'text/x-config',
151
+ 'cfm' => 'text/x-coldfusion',
152
+ 'cfml' => 'text/x-coldfusion',
153
+ 'cgi' => 'text/x-cgi',
154
+ 'cgm' => 'image/cgm',
155
+ 'chat' => 'application/x-chat',
156
+ 'chm' => 'application/vnd.ms-htmlhelp',
157
+ 'chrt' => 'application/vnd.kde.kchart',
158
+ 'cif' => 'chemical/x-cif',
159
+ 'cii' => 'application/vnd.anser-web-certificate-issue-initiation',
160
+ 'cil' => 'application/vnd.ms-artgalry',
161
+ 'cl' => 'text/x-common-lisp',
162
+ 'cla' => 'application/vnd.claymore',
163
+ 'class' => 'application/java-vm',
164
+ 'classpath' => 'text/plain',
165
+ 'clj' => 'text/x-clojure',
166
+ 'clkk' => 'application/vnd.crick.clicker.keyboard',
167
+ 'clkp' => 'application/vnd.crick.clicker.palette',
168
+ 'clkt' => 'application/vnd.crick.clicker.template',
169
+ 'clkw' => 'application/vnd.crick.clicker.wordbank',
170
+ 'clkx' => 'application/vnd.crick.clicker',
171
+ 'clp' => 'application/x-msclip',
172
+ 'cls' => 'text/x-vbasic',
173
+ 'cmc' => 'application/vnd.cosmocaller',
174
+ 'cmd' => 'application/x-bat',
175
+ 'cmdf' => 'chemical/x-cmdf',
176
+ 'cml' => 'chemical/x-cml',
177
+ 'cmp' => 'application/vnd.yellowriver-custom-menu',
178
+ 'cmx' => 'image/x-cmx',
179
+ 'cnd' => 'text/plain',
180
+ 'cob' => 'text/x-cobol',
181
+ 'cod' => 'application/vnd.rim.cod',
182
+ 'coffee' => 'text/x-coffeescript',
183
+ 'com' => 'application/x-msdownload',
184
+ 'conf' => 'text/x-config',
185
+ 'config' => 'text/x-config',
186
+ 'cpio' => 'application/x-cpio',
187
+ 'cpp' => 'text/x-c++src',
188
+ 'cpt' => 'application/mac-compactpro',
189
+ 'cr2' => 'image/x-canon-cr2',
190
+ 'cr3' => 'image/x-canon-cr3',
191
+ 'crd' => 'application/x-mscardfile',
192
+ 'crl' => 'application/pkix-crl',
193
+ 'crt' => 'application/x-x509-cert',
194
+ 'crw' => 'image/x-raw-canon',
195
+ 'crx' => 'application/x-chrome-package',
196
+ 'cs' => 'text/x-csharp',
197
+ 'csh' => 'application/x-csh',
198
+ 'csml' => 'chemical/x-csml',
199
+ 'csp' => 'application/vnd.commonspace',
200
+ 'css' => 'text/css',
201
+ 'cst' => 'application/x-director',
202
+ 'csv' => 'text/csv',
203
+ 'cu' => 'application/cu-seeme',
204
+ 'curl' => 'text/vnd.curl',
205
+ 'cwiki' => 'text/plain',
206
+ 'cwk' => 'application/x-appleworks',
207
+ 'cww' => 'application/prs.cww',
208
+ 'cxt' => 'application/x-director',
209
+ 'cxx' => 'text/x-c++src',
210
+ 'd' => 'text/x-d',
211
+ 'daf' => 'application/vnd.mobius.daf',
212
+ 'data' => 'text/plain',
213
+ 'dataless' => 'application/vnd.fdsn.seed',
214
+ 'davmount' => 'application/davmount+xml',
215
+ 'dbase' => 'application/x-dbf',
216
+ 'dbase3' => 'application/x-dbf',
217
+ 'dbf' => 'application/x-dbf',
218
+ 'dcl' => 'text/plain',
219
+ 'dcr' => 'application/x-director',
220
+ 'dcs' => 'image/x-raw-kodak',
221
+ 'dcurl' => 'text/vnd.curl.dcurl',
222
+ 'dcx' => 'image/vnd.zbrush.dcx',
223
+ 'dd2' => 'application/vnd.oma.dd2+xml',
224
+ 'ddd' => 'application/vnd.fujixerox.ddd',
225
+ 'deb' => 'application/x-debian-package',
226
+ 'def' => 'text/plain',
227
+ 'deploy' => 'application/octet-stream',
228
+ 'der' => 'application/x-x509-cert;format=der',
229
+ 'dex' => 'application/x-dex',
230
+ 'dfac' => 'application/vnd.dreamfactory',
231
+ 'dgn' => 'image/vnd.dgn',
232
+ 'dgnlib' => 'image/vnd.dgn',
233
+ 'dib' => 'image/bmp',
234
+ 'dif' => 'application/dif+xml',
235
+ 'diff' => 'text/x-diff',
236
+ 'dir' => 'application/x-director',
237
+ 'dis' => 'application/vnd.mobius.dis',
238
+ 'dist' => 'application/octet-stream',
239
+ 'distz' => 'application/octet-stream',
240
+ 'dita' => 'application/dita+xml;format=topic',
241
+ 'ditamap' => 'application/dita+xml;format=map',
242
+ 'ditaval' => 'application/dita+xml;format=val',
243
+ 'djv' => 'image/vnd.djvu',
244
+ 'djvu' => 'image/vnd.djvu',
245
+ 'dll' => 'application/x-msdownload',
246
+ 'dmg' => 'application/x-apple-diskimage',
247
+ 'dmp' => 'application/vnd.tcpdump.pcap',
248
+ 'dms' => 'application/octet-stream',
249
+ 'dna' => 'application/vnd.dna',
250
+ 'dng' => 'image/x-raw-adobe',
251
+ 'do' => 'application/x-stata-do',
252
+ 'doc' => 'application/msword',
253
+ 'docm' => 'application/vnd.ms-word.document.macroenabled.12',
254
+ 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
255
+ 'dot' => 'application/msword',
256
+ 'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
257
+ 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
258
+ 'dp' => 'application/vnd.osgi.dp',
259
+ 'dpg' => 'application/vnd.dpgraph',
260
+ 'dpr' => 'text/x-pascal',
261
+ 'dpx' => 'image/x-dpx',
262
+ 'drc' => 'video/x-dirac',
263
+ 'drf' => 'image/x-raw-kodak',
264
+ 'dsc' => 'text/prs.lines.tag',
265
+ 'dsp' => 'text/plain',
266
+ 'dsw' => 'text/plain',
267
+ 'dta' => 'application/x-stata-dta',
268
+ 'dtb' => 'application/x-dtbook+xml',
269
+ 'dtd' => 'application/xml-dtd',
270
+ 'dts' => 'audio/vnd.dts',
271
+ 'dtshd' => 'audio/vnd.dts.hd',
272
+ 'dump' => 'application/octet-stream',
273
+ 'dvi' => 'application/x-dvi',
274
+ 'dwf' => 'model/vnd.dwf',
275
+ 'dwfx' => 'model/vnd.dwfx+xps',
276
+ 'dwg' => 'image/vnd.dwg',
277
+ 'dxb' => 'image/vnd.dxb',
278
+ 'dxf' => 'image/vnd.dxf',
279
+ 'dxp' => 'application/vnd.spotfire.dxp',
280
+ 'dxr' => 'application/x-director',
281
+ 'e' => 'text/x-eiffel',
282
+ 'e57' => 'model/e57',
283
+ 'ear' => 'application/x-tika-java-enterprise-archive',
284
+ 'ecelp4800' => 'audio/vnd.nuera.ecelp4800',
285
+ 'ecelp7470' => 'audio/vnd.nuera.ecelp7470',
286
+ 'ecelp9600' => 'audio/vnd.nuera.ecelp9600',
287
+ 'ecma' => 'application/ecmascript',
288
+ 'edm' => 'application/vnd.novadigm.edm',
289
+ 'edx' => 'application/vnd.novadigm.edx',
290
+ 'efif' => 'application/vnd.picsel',
291
+ 'egrm' => 'text/plain',
292
+ 'ei6' => 'application/vnd.pg.osasli',
293
+ 'el' => 'text/x-emacs-lisp',
294
+ 'elc' => 'application/octet-stream',
295
+ 'emf' => 'image/emf',
296
+ 'eml' => 'message/rfc822',
297
+ 'emlx' => 'message/x-emlx',
298
+ 'emma' => 'application/emma+xml',
299
+ 'emz' => 'image/x-emf-compressed',
300
+ 'enr' => 'application/x-endnote-refer',
301
+ 'ens' => 'application/x-endnote-style',
302
+ 'ent' => 'text/plain',
303
+ 'enw' => 'application/x-endnote-refer',
304
+ 'eol' => 'audio/vnd.digital-winds',
305
+ 'eot' => 'application/vnd.ms-fontobject',
306
+ 'eps' => 'application/postscript',
307
+ 'epsf' => 'application/postscript',
308
+ 'epsi' => 'application/postscript',
309
+ 'epub' => 'application/epub+zip',
310
+ 'erf' => 'image/x-raw-epson',
311
+ 'erl' => 'text/x-erlang',
312
+ 'es3' => 'application/vnd.eszigno3+xml',
313
+ 'esf' => 'application/vnd.epson.esf',
314
+ 'et3' => 'application/vnd.eszigno3+xml',
315
+ 'etx' => 'text/x-setext',
316
+ 'exe' => 'application/x-dosexec',
317
+ 'exp' => 'text/x-expect',
318
+ 'exr' => 'image/aces',
319
+ 'ext' => 'application/vnd.novadigm.ext',
320
+ 'ez' => 'application/andrew-inset',
321
+ 'ez2' => 'application/vnd.ezpix-album',
322
+ 'ez3' => 'application/vnd.ezpix-package',
323
+ 'f' => 'text/x-fortran',
324
+ 'f4v' => 'video/x-f4v',
325
+ 'f77' => 'text/x-fortran',
326
+ 'f90' => 'text/x-fortran',
327
+ 'fb2' => 'application/x-fictionbook+xml',
328
+ 'fbs' => 'image/vnd.fastbidsheet',
329
+ 'fcs' => 'application/vnd.isac.fcs',
330
+ 'fdf' => 'application/vnd.fdf',
331
+ 'fe_launch' => 'application/vnd.denovo.fcselayout-link',
332
+ 'fff' => 'image/x-raw-imacon',
333
+ 'fg5' => 'application/vnd.fujitsu.oasysgp',
334
+ 'fgd' => 'application/x-director',
335
+ 'fh' => 'image/x-freehand',
336
+ 'fh10' => 'image/x-freehand',
337
+ 'fh11' => 'image/x-freehand',
338
+ 'fh12' => 'image/x-freehand',
339
+ 'fh4' => 'image/x-freehand',
340
+ 'fh40' => 'image/x-freehand',
341
+ 'fh5' => 'image/x-freehand',
342
+ 'fh50' => 'image/x-freehand',
343
+ 'fh7' => 'image/x-freehand',
344
+ 'fh8' => 'image/x-freehand',
345
+ 'fh9' => 'image/x-freehand',
346
+ 'fhc' => 'image/x-freehand',
347
+ 'fig' => 'application/x-xfig',
348
+ 'fit' => 'application/fits',
349
+ 'fits' => 'application/fits',
350
+ 'flac' => 'audio/x-flac',
351
+ 'flc' => 'video/x-flc',
352
+ 'fli' => 'video/x-fli',
353
+ 'flo' => 'application/vnd.micrografx.flo',
354
+ 'flv' => 'video/x-flv',
355
+ 'flw' => 'application/vnd.kde.kivio',
356
+ 'flx' => 'text/vnd.fmi.flexstor',
357
+ 'fly' => 'text/vnd.fly',
358
+ 'fm' => 'application/vnd.framemaker',
359
+ 'fn' => 'text/plain',
360
+ 'fnc' => 'application/vnd.frogans.fnc',
361
+ 'fo' => 'application/xslfo+xml',
362
+ 'fodp' => 'application/vnd.oasis.opendocument.flat.presentation',
363
+ 'fods' => 'application/vnd.oasis.opendocument.flat.spreadsheet',
364
+ 'fodt' => 'application/vnd.oasis.opendocument.flat.text',
365
+ 'for' => 'text/x-fortran',
366
+ 'fp7' => 'application/x-filemaker',
367
+ 'fpx' => 'image/vnd.fpx',
368
+ 'frame' => 'application/vnd.framemaker',
369
+ 'frm' => 'text/x-vbasic',
370
+ 'fsc' => 'application/vnd.fsc.weblaunch',
371
+ 'fst' => 'image/vnd.fst',
372
+ 'ft' => 'text/plain',
373
+ 'ft10' => 'image/x-freehand',
374
+ 'ft11' => 'image/x-freehand',
375
+ 'ft12' => 'image/x-freehand',
376
+ 'ft7' => 'image/x-freehand',
377
+ 'ft8' => 'image/x-freehand',
378
+ 'ft9' => 'image/x-freehand',
379
+ 'ftc' => 'application/vnd.fluxtime.clip',
380
+ 'fti' => 'application/vnd.anser-web-funds-transfer-initiation',
381
+ 'fts' => 'application/fits',
382
+ 'fv' => 'text/plain',
383
+ 'fvt' => 'video/vnd.fvt',
384
+ 'fzs' => 'application/vnd.fuzzysheet',
385
+ 'g' => 'text/plain',
386
+ 'g3' => 'image/g3fax',
387
+ 'gac' => 'application/vnd.groove-account',
388
+ 'gdl' => 'model/vnd.gdl',
389
+ 'geo' => 'application/vnd.dynageo',
390
+ 'gex' => 'application/vnd.geometry-explorer',
391
+ 'ggb' => 'application/vnd.geogebra.file',
392
+ 'ggt' => 'application/vnd.geogebra.tool',
393
+ 'ghf' => 'application/vnd.groove-help',
394
+ 'gif' => 'image/gif',
395
+ 'gim' => 'application/vnd.groove-identity-message',
396
+ 'gmx' => 'application/vnd.gmx',
397
+ 'gnucash' => 'application/x-gnucash',
398
+ 'gnumeric' => 'application/x-gnumeric',
399
+ 'go' => 'text/x-go',
400
+ 'gp4' => 'application/x-guitar-pro',
401
+ 'gpg' => 'application/pgp-encrypted',
402
+ 'gph' => 'application/vnd.flographit',
403
+ 'gpkg' => 'application/x-geopackage',
404
+ 'gqf' => 'application/vnd.grafeq',
405
+ 'gqs' => 'application/vnd.grafeq',
406
+ 'gram' => 'application/srgs',
407
+ 'grb' => 'application/x-grib',
408
+ 'grb1' => 'application/x-grib',
409
+ 'grb2' => 'application/x-grib',
410
+ 'gre' => 'application/vnd.geometry-explorer',
411
+ 'grm' => 'text/plain',
412
+ 'groovy' => 'text/x-groovy',
413
+ 'grv' => 'application/vnd.groove-injector',
414
+ 'grxml' => 'application/srgs+xml',
415
+ 'gsf' => 'application/x-font-ghostscript',
416
+ 'gslib' => 'audio/x-psf',
417
+ 'gtar' => 'application/x-gtar',
418
+ 'gtm' => 'application/vnd.groove-tool-message',
419
+ 'gtw' => 'model/vnd.gtw',
420
+ 'gv' => 'text/vnd.graphviz',
421
+ 'gz' => 'application/gzip',
422
+ 'h' => 'text/x-c++hdr',
423
+ 'h++' => 'text/x-c++hdr',
424
+ 'h261' => 'video/h261',
425
+ 'h263' => 'video/h263',
426
+ 'h264' => 'video/h264',
427
+ 'h5' => 'application/x-hdf',
428
+ 'haml' => 'text/x-haml',
429
+ 'handlers' => 'text/plain',
430
+ 'hbci' => 'application/vnd.hbci',
431
+ 'hdf' => 'application/x-hdf',
432
+ 'hdr' => 'application/envi.hdr',
433
+ 'he5' => 'application/x-hdf',
434
+ 'heic' => 'image/heic',
435
+ 'heif' => 'image/heif',
436
+ 'hfa' => 'application/x-erdas-hfa',
437
+ 'hh' => 'text/x-c++hdr',
438
+ 'hlp' => 'application/winhlp',
439
+ 'hp' => 'text/x-c++hdr',
440
+ 'hpgl' => 'application/vnd.hp-hpgl',
441
+ 'hpid' => 'application/vnd.hp-hpid',
442
+ 'hpp' => 'text/x-c++hdr',
443
+ 'hprof' => 'application/vnd.java.hprof ',
444
+ 'hprof.txt' => 'application/vnd.java.hprof.text',
445
+ 'hps' => 'application/vnd.hp-hps',
446
+ 'hqx' => 'application/mac-binhex40',
447
+ 'hs' => 'text/x-haskell',
448
+ 'htc' => 'text/plain',
449
+ 'htke' => 'application/vnd.kenameaapp',
450
+ 'htm' => 'text/html',
451
+ 'html' => 'text/html',
452
+ 'hvd' => 'application/vnd.yamaha.hv-dic',
453
+ 'hvp' => 'application/vnd.yamaha.hv-voice',
454
+ 'hvs' => 'application/vnd.yamaha.hv-script',
455
+ 'hwpx' => 'application/hwp+zip',
456
+ 'hx' => 'text/x-haxe',
457
+ 'hxx' => 'text/x-c++hdr',
458
+ 'i3' => 'text/x-modula',
459
+ 'ibooks' => 'application/x-ibooks+zip',
460
+ 'icb' => 'image/x-tga',
461
+ 'icc' => 'application/vnd.iccprofile',
462
+ 'ice' => 'x-conference/x-cooltalk',
463
+ 'icm' => 'application/vnd.iccprofile',
464
+ 'icns' => 'image/icns',
465
+ 'ico' => 'image/vnd.microsoft.icon',
466
+ 'ics' => 'text/calendar',
467
+ 'idl' => 'text/x-idl',
468
+ 'idml' => 'application/vnd.adobe.indesign-idml-package',
469
+ 'ief' => 'image/ief',
470
+ 'ifb' => 'text/calendar',
471
+ 'ifm' => 'application/vnd.shana.informed.formdata',
472
+ 'ifo' => 'application/x-dvd-ifo',
473
+ 'ig' => 'text/x-modula',
474
+ 'iges' => 'model/iges',
475
+ 'igl' => 'application/vnd.igloader',
476
+ 'igs' => 'model/iges',
477
+ 'igx' => 'application/vnd.micrografx.igx',
478
+ 'ihtml' => 'text/plain',
479
+ 'iif' => 'application/vnd.shana.informed.interchange',
480
+ 'iiq' => 'image/x-raw-phaseone',
481
+ 'imp' => 'application/vnd.accpac.simply.imp',
482
+ 'ims' => 'application/vnd.ms-ims',
483
+ 'in' => 'text/plain',
484
+ 'indd' => 'application/x-adobe-indesign',
485
+ 'ini' => 'text/x-ini',
486
+ 'inx' => 'application/x-adobe-indesign-interchange',
487
+ 'ipa' => 'application/x-itunes-ipa',
488
+ 'ipk' => 'application/vnd.shana.informed.package',
489
+ 'irm' => 'application/vnd.ibm.rights-management',
490
+ 'irp' => 'application/vnd.irepository.package+xml',
491
+ 'iso' => 'application/x-iso9660-image',
492
+ 'iso19139' => 'text/iso19139+xml',
493
+ 'itk' => 'text/x-tcl',
494
+ 'itp' => 'application/vnd.shana.informed.formtemplate',
495
+ 'ivp' => 'application/vnd.immervision-ivp',
496
+ 'ivu' => 'application/vnd.immervision-ivu',
497
+ 'j2c' => 'image/x-jp2-codestream',
498
+ 'jad' => 'text/vnd.sun.j2me.app-descriptor',
499
+ 'jam' => 'application/vnd.jam',
500
+ 'jar' => 'application/java-archive',
501
+ 'java' => 'text/x-java-source',
502
+ 'jb2' => 'image/x-jbig2',
503
+ 'jbig2' => 'image/x-jbig2',
504
+ 'jdf' => 'application/x-jeol-jdf',
505
+ 'jfi' => 'image/jpeg',
506
+ 'jfif' => 'image/jpeg',
507
+ 'jif' => 'image/jpeg',
508
+ 'jisp' => 'application/vnd.jisp',
509
+ 'jks' => 'application/x-java-keystore',
510
+ 'jl' => 'text/x-common-lisp',
511
+ 'jlt' => 'application/vnd.hp-jlyt',
512
+ 'jmx' => 'text/plain',
513
+ 'jng' => 'video/x-jng',
514
+ 'jnilib' => 'application/x-java-jnilib',
515
+ 'jnlp' => 'application/x-java-jnlp-file',
516
+ 'joda' => 'application/vnd.joost.joda-archive',
517
+ 'jp2' => 'image/jp2',
518
+ 'jpe' => 'image/jpeg',
519
+ 'jpeg' => 'image/jpeg',
520
+ 'jpf' => 'image/jpx',
521
+ 'jpg' => 'image/jpeg',
522
+ 'jpgm' => 'image/jpm',
523
+ 'jpgv' => 'video/jpeg',
524
+ 'jpm' => 'image/jpm',
525
+ 'js' => 'text/javascript',
526
+ 'json' => 'application/json',
527
+ 'jsp' => 'text/x-jsp',
528
+ 'junit' => 'text/plain',
529
+ 'jx' => 'text/plain',
530
+ 'jxl' => 'image/jxl',
531
+ 'k25' => 'image/x-raw-kodak',
532
+ 'kar' => 'audio/midi',
533
+ 'karbon' => 'application/vnd.kde.karbon',
534
+ 'kdc' => 'image/x-raw-kodak',
535
+ 'key' => 'application/vnd.apple.keynote',
536
+ 'kfo' => 'application/vnd.kde.kformula',
537
+ 'kia' => 'application/vnd.kidspiration',
538
+ 'kil' => 'application/x-killustrator',
539
+ 'kml' => 'application/vnd.google-earth.kml+xml',
540
+ 'kmz' => 'application/vnd.google-earth.kmz',
541
+ 'kne' => 'application/vnd.kinar',
542
+ 'knp' => 'application/vnd.kinar',
543
+ 'kon' => 'application/vnd.kde.kontour',
544
+ 'kpr' => 'application/vnd.kde.kpresenter',
545
+ 'kpt' => 'application/vnd.kde.kpresenter',
546
+ 'ksp' => 'application/vnd.kde.kspread',
547
+ 'ktr' => 'application/vnd.kahootz',
548
+ 'ktz' => 'application/vnd.kahootz',
549
+ 'kwd' => 'application/vnd.kde.kword',
550
+ 'kwt' => 'application/vnd.kde.kword',
551
+ 'l' => 'text/x-lex',
552
+ 'las' => 'application/x-asprs',
553
+ 'latex' => 'application/x-latex',
554
+ 'laz' => 'application/x-asprs',
555
+ 'lbd' => 'application/vnd.llamagraphics.life-balance.desktop',
556
+ 'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml',
557
+ 'les' => 'application/vnd.hhe.lesson-player',
558
+ 'less' => 'text/x-less',
559
+ 'lha' => 'application/octet-stream',
560
+ 'lhs' => 'text/x-haskell',
561
+ 'link66' => 'application/vnd.route66.link66+xml',
562
+ 'lisp' => 'text/x-common-lisp',
563
+ 'list' => 'text/plain',
564
+ 'list3820' => 'application/vnd.ibm.modcap',
565
+ 'listafp' => 'application/vnd.ibm.modcap',
566
+ 'log' => 'text/x-log',
567
+ 'lostxml' => 'application/lost+xml',
568
+ 'lrf' => 'application/octet-stream',
569
+ 'lrm' => 'application/vnd.ms-lrm',
570
+ 'lsp' => 'text/x-common-lisp',
571
+ 'ltf' => 'application/vnd.frogans.ltf',
572
+ 'lua' => 'text/x-lua',
573
+ 'lvp' => 'audio/vnd.lucent.voice',
574
+ 'lwp' => 'application/vnd.lotus-wordpro',
575
+ 'lyr' => 'application/x-esri-layer',
576
+ 'lz' => 'application/x-lzip',
577
+ 'lz4' => 'application/x-lz4',
578
+ 'lzh' => 'application/octet-stream',
579
+ 'lzma' => 'application/x-lzma',
580
+ 'm' => 'text/x-objcsrc',
581
+ 'm13' => 'application/x-msmediaview',
582
+ 'm14' => 'application/x-msmediaview',
583
+ 'm1v' => 'video/mpeg',
584
+ 'm2a' => 'audio/mpeg',
585
+ 'm2v' => 'video/mpeg',
586
+ 'm3' => 'text/x-modula',
587
+ 'm3a' => 'audio/mpeg',
588
+ 'm3u' => 'audio/x-mpegurl',
589
+ 'm3u8' => 'application/vnd.apple.mpegurl',
590
+ 'm4' => 'text/plain',
591
+ 'm4a' => 'audio/mp4',
592
+ 'm4b' => 'audio/mp4',
593
+ 'm4s' => 'video/iso.segment',
594
+ 'm4u' => 'video/vnd.mpegurl',
595
+ 'm4v' => 'video/x-m4v',
596
+ 'ma' => 'application/mathematica',
597
+ 'mag' => 'application/vnd.ecowin.chart',
598
+ 'maker' => 'application/vnd.framemaker',
599
+ 'man' => 'text/troff',
600
+ 'manifest' => 'text/plain',
601
+ 'markdown' => 'text/x-web-markdown',
602
+ 'mat' => 'application/x-matlab-data',
603
+ 'mathml' => 'application/mathml+xml',
604
+ 'mb' => 'application/mathematica',
605
+ 'mbk' => 'application/vnd.mobius.mbk',
606
+ 'mbox' => 'application/mbox',
607
+ 'mc1' => 'application/vnd.medcalcdata',
608
+ 'mcd' => 'application/vnd.mcd',
609
+ 'mcurl' => 'text/vnd.curl.mcurl',
610
+ 'md' => 'text/x-web-markdown',
611
+ 'mdb' => 'application/x-msaccess',
612
+ 'mdi' => 'image/vnd.ms-modi',
613
+ 'mdo' => 'text/plain',
614
+ 'mdtext' => 'text/x-web-markdown',
615
+ 'me' => 'text/troff',
616
+ 'mef' => 'image/x-raw-mamiya',
617
+ 'memgraph' => 'application/x-memgraph',
618
+ 'mesh' => 'model/mesh',
619
+ 'meta' => 'text/plain',
620
+ 'mf' => 'text/plain',
621
+ 'mfm' => 'application/vnd.mfmp',
622
+ 'mg' => 'text/x-modula',
623
+ 'mgz' => 'application/vnd.proteus.magazine',
624
+ 'mht' => 'multipart/related',
625
+ 'mhtml' => 'multipart/related',
626
+ 'mid' => 'audio/midi',
627
+ 'midi' => 'audio/midi',
628
+ 'mif' => 'application/vnd.mif',
629
+ 'mime' => 'message/rfc822',
630
+ 'minigsf' => 'audio/x-psf',
631
+ 'minipsf' => 'audio/x-psf',
632
+ 'minipsf1' => 'audio/x-psf',
633
+ 'mj2' => 'video/mj2',
634
+ 'mjp2' => 'video/mj2',
635
+ 'mjs' => 'text/javascript',
636
+ 'mka' => 'audio/x-matroska',
637
+ 'mkd' => 'text/x-web-markdown',
638
+ 'mkv' => 'video/x-matroska',
639
+ 'ml' => 'text/x-ml',
640
+ 'mli' => 'text/x-ocaml',
641
+ 'mlp' => 'application/vnd.dolby.mlp',
642
+ 'mmap' => 'application/vnd.mindjet.mindmanager',
643
+ 'mmas' => 'application/vnd.mindjet.mindmanager',
644
+ 'mmat' => 'application/vnd.mindjet.mindmanager',
645
+ 'mmd' => 'application/vnd.chipnuts.karaoke-mmd',
646
+ 'mmf' => 'application/vnd.smaf',
647
+ 'mmmp' => 'application/vnd.mindjet.mindmanager',
648
+ 'mmp' => 'application/vnd.mindjet.mindmanager',
649
+ 'mmpt' => 'application/vnd.mindjet.mindmanager',
650
+ 'mmr' => 'image/vnd.fujixerox.edmics-mmr',
651
+ 'mng' => 'video/x-mng',
652
+ 'mny' => 'application/x-msmoney',
653
+ 'mobi' => 'application/x-mobipocket-ebook',
654
+ 'mod' => 'audio/x-mod',
655
+ 'mos' => 'image/x-raw-leaf',
656
+ 'mov' => 'video/quicktime',
657
+ 'movie' => 'video/x-sgi-movie',
658
+ 'mp2' => 'audio/mpeg',
659
+ 'mp2a' => 'audio/mpeg',
660
+ 'mp3' => 'audio/mpeg',
661
+ 'mp4' => 'video/mp4',
662
+ 'mp4a' => 'audio/mp4',
663
+ 'mp4s' => 'application/mp4',
664
+ 'mp4v' => 'video/mp4',
665
+ 'mpc' => 'application/vnd.mophun.certificate',
666
+ 'mpd' => 'application/dash+xml',
667
+ 'mpe' => 'video/mpeg',
668
+ 'mpeg' => 'video/mpeg',
669
+ 'mpg' => 'video/mpeg',
670
+ 'mpg4' => 'video/mp4',
671
+ 'mpga' => 'audio/mpeg',
672
+ 'mpkg' => 'application/vnd.apple.installer+xml',
673
+ 'mpm' => 'application/vnd.blueice.multipass',
674
+ 'mpn' => 'application/vnd.mophun.application',
675
+ 'mpp' => 'application/vnd.ms-project',
676
+ 'mpt' => 'application/vnd.ms-project',
677
+ 'mpx' => 'application/x-project',
678
+ 'mpy' => 'application/vnd.ibm.minipay',
679
+ 'mqy' => 'application/vnd.mobius.mqy',
680
+ 'mrc' => 'application/marc',
681
+ 'mrw' => 'image/x-raw-minolta',
682
+ 'ms' => 'text/troff',
683
+ 'msa' => 'application/vnd.msa-disk-image',
684
+ 'mscml' => 'application/mediaservercontrol+xml',
685
+ 'mseed' => 'application/vnd.fdsn.mseed',
686
+ 'mseq' => 'application/vnd.mseq',
687
+ 'msf' => 'application/vnd.epson.msf',
688
+ 'msg' => 'application/vnd.ms-outlook',
689
+ 'msh' => 'model/mesh',
690
+ 'msi' => 'application/x-ms-installer',
691
+ 'msl' => 'application/vnd.mobius.msl',
692
+ 'msp' => 'application/x-ms-installer',
693
+ 'mst' => 'application/x-ms-installer',
694
+ 'msty' => 'application/vnd.muvee.style',
695
+ 'mts' => 'model/vnd.mts',
696
+ 'mus' => 'application/vnd.musician',
697
+ 'musicxml' => 'application/vnd.recordare.musicxml+xml',
698
+ 'mvb' => 'application/x-msmediaview',
699
+ 'mwf' => 'application/vnd.mfer',
700
+ 'mxf' => 'application/mxf',
701
+ 'mxl' => 'application/vnd.recordare.musicxml',
702
+ 'mxml' => 'application/xv+xml',
703
+ 'mxs' => 'application/vnd.triscape.mxs',
704
+ 'mxu' => 'video/vnd.mpegurl',
705
+ 'myd' => 'application/x-mysql-misam-data',
706
+ 'myi' => 'application/x-mysql-misam-compressed-index',
707
+ 'n-gage' => 'application/vnd.nokia.n-gage.symbian.install',
708
+ 'n3' => 'text/plain',
709
+ 'nar' => 'application/vnd.iptc.g2.newsmessage+xml',
710
+ 'nb' => 'application/mathematica',
711
+ 'nc' => 'application/x-netcdf',
712
+ 'ncx' => 'application/x-dtbncx+xml',
713
+ 'nef' => 'image/x-raw-nikon',
714
+ 'nes' => 'application/x-nesrom',
715
+ 'ngdat' => 'application/vnd.nokia.n-gage.data',
716
+ 'nitf' => 'image/nitf',
717
+ 'nlu' => 'application/vnd.neurolanguage.nlu',
718
+ 'nml' => 'application/vnd.enliven',
719
+ 'nnd' => 'application/vnd.noblenet-directory',
720
+ 'nns' => 'application/vnd.noblenet-sealer',
721
+ 'nnw' => 'application/vnd.noblenet-web',
722
+ 'npx' => 'image/vnd.net-fpx',
723
+ 'nroff' => 'text/troff',
724
+ 'nrw' => 'image/x-raw-nikon',
725
+ 'nsf' => 'application/vnd.lotus-notes',
726
+ 'ntf' => 'image/nitf',
727
+ 'numbers' => 'application/vnd.apple.numbers',
728
+ 'oa2' => 'application/vnd.fujitsu.oasys2',
729
+ 'oa3' => 'application/vnd.fujitsu.oasys3',
730
+ 'oas' => 'application/vnd.fujitsu.oasys',
731
+ 'obd' => 'application/x-msbinder',
732
+ 'ocaml' => 'text/x-ocaml',
733
+ 'oda' => 'application/oda',
734
+ 'odb' => 'application/vnd.oasis.opendocument.base',
735
+ 'odc' => 'application/vnd.oasis.opendocument.chart',
736
+ 'odf' => 'application/vnd.oasis.opendocument.formula',
737
+ 'odft' => 'application/vnd.oasis.opendocument.formula-template',
738
+ 'odg' => 'application/vnd.oasis.opendocument.graphics',
739
+ 'odi' => 'application/vnd.oasis.opendocument.image',
740
+ 'odp' => 'application/vnd.oasis.opendocument.presentation',
741
+ 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
742
+ 'odt' => 'application/vnd.oasis.opendocument.text',
743
+ 'oga' => 'audio/ogg',
744
+ 'ogg' => 'audio/vorbis',
745
+ 'ogm' => 'video/x-ogm',
746
+ 'ogv' => 'video/ogg',
747
+ 'ogx' => 'application/ogg',
748
+ 'one' => 'application/onenote;format=one',
749
+ 'onepkg' => 'application/onenote; format=package',
750
+ 'onetmp' => 'application/onenote',
751
+ 'onetoc' => 'application/onenote;format=onetoc2',
752
+ 'onetoc2' => 'application/onenote;format=onetoc2',
753
+ 'opf' => 'application/oebps-package+xml',
754
+ 'oprc' => 'application/vnd.palm',
755
+ 'opus' => 'audio/opus',
756
+ 'orf' => 'image/x-raw-olympus',
757
+ 'org' => 'application/vnd.lotus-organizer',
758
+ 'osf' => 'application/vnd.yamaha.openscoreformat',
759
+ 'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
760
+ 'ost' => 'application/vnd.ms-outlook-pst',
761
+ 'otc' => 'application/vnd.oasis.opendocument.chart-template',
762
+ 'otf' => 'application/x-font-otf',
763
+ 'otg' => 'application/vnd.oasis.opendocument.graphics-template',
764
+ 'oth' => 'application/vnd.oasis.opendocument.text-web',
765
+ 'oti' => 'application/vnd.oasis.opendocument.image-template',
766
+ 'otm' => 'application/vnd.oasis.opendocument.text-master',
767
+ 'otp' => 'application/vnd.oasis.opendocument.presentation-template',
768
+ 'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
769
+ 'ott' => 'application/vnd.oasis.opendocument.text-template',
770
+ 'owl' => 'application/rdf+xml',
771
+ 'oxps' => 'application/vnd.ms-xpsdocument',
772
+ 'oxt' => 'application/vnd.openofficeorg.extension',
773
+ 'p' => 'text/x-pascal',
774
+ 'p10' => 'application/pkcs10',
775
+ 'p12' => 'application/x-pkcs12',
776
+ 'p7b' => 'application/x-pkcs7-certificates',
777
+ 'p7c' => 'application/pkcs7-mime',
778
+ 'p7m' => 'application/pkcs7-mime',
779
+ 'p7r' => 'application/x-pkcs7-certreqresp',
780
+ 'p7s' => 'application/pkcs7-signature',
781
+ 'pack' => 'application/x-java-pack200',
782
+ 'pages' => 'application/vnd.apple.pages',
783
+ 'pam' => 'image/x-portable-arbitrarymap',
784
+ 'parquet' => 'application/x-parquet',
785
+ 'pas' => 'text/x-pascal',
786
+ 'patch' => 'text/x-diff',
787
+ 'pbd' => 'application/vnd.powerbuilder6',
788
+ 'pbm' => 'image/x-portable-bitmap',
789
+ 'pcap' => 'application/vnd.tcpdump.pcap',
790
+ 'pcapng' => 'application/vnd.tcpdump.pcapng',
791
+ 'pcf' => 'application/x-font-pcf',
792
+ 'pcl' => 'application/vnd.hp-pcl',
793
+ 'pclxl' => 'application/vnd.hp-pclxl',
794
+ 'pct' => 'image/x-pict',
795
+ 'pcurl' => 'application/vnd.curl.pcurl',
796
+ 'pcx' => 'image/vnd.zbrush.pcx',
797
+ 'pdb' => 'chemical/x-pdb',
798
+ 'pdf' => 'application/pdf',
799
+ 'pef' => 'image/x-raw-pentax',
800
+ 'pem' => 'application/x-x509-cert;format=pem',
801
+ 'pen' => 'text/plain',
802
+ 'perl' => 'text/x-perl',
803
+ 'pfa' => 'application/x-font-type1',
804
+ 'pfb' => 'application/x-font-type1',
805
+ 'pfm' => 'application/x-font-printer-metric',
806
+ 'pfr' => 'application/font-tdpfr',
807
+ 'pfx' => 'application/x-pkcs12',
808
+ 'pgm' => 'image/x-portable-graymap',
809
+ 'pgn' => 'application/x-chess-pgn',
810
+ 'pgp' => 'application/pgp-encrypted',
811
+ 'php' => 'text/x-php',
812
+ 'php3' => 'text/x-php',
813
+ 'php4' => 'text/x-php',
814
+ 'pic' => 'image/x-pict',
815
+ 'pict' => 'image/x-pict',
816
+ 'pkg' => 'application/octet-stream',
817
+ 'pki' => 'application/pkixcmp',
818
+ 'pkipath' => 'application/pkix-pkipath',
819
+ 'pl' => 'text/x-perl',
820
+ 'plb' => 'application/vnd.3gpp.pic-bw-large',
821
+ 'plc' => 'application/vnd.mobius.plc',
822
+ 'plf' => 'application/vnd.pocketlearn',
823
+ 'pls' => 'application/pls+xml',
824
+ 'pm' => 'text/x-perl',
825
+ 'pml' => 'application/vnd.ctc-posml',
826
+ 'png' => 'image/png',
827
+ 'pnm' => 'image/x-portable-anymap',
828
+ 'pod' => 'text/plain',
829
+ 'pom' => 'text/plain',
830
+ 'portpkg' => 'application/vnd.macports.portpkg',
831
+ 'pot' => 'application/vnd.ms-powerpoint',
832
+ 'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
833
+ 'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
834
+ 'pp' => 'text/x-pascal',
835
+ 'ppa' => 'application/vnd.ms-powerpoint',
836
+ 'ppam' => 'application/vnd.ms-powerpoint.addin.macroenabled.12',
837
+ 'ppd' => 'application/vnd.cups-ppd',
838
+ 'ppj' => 'image/vnd.adobe.premiere',
839
+ 'ppm' => 'image/x-portable-pixmap',
840
+ 'pps' => 'application/vnd.ms-powerpoint',
841
+ 'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
842
+ 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
843
+ 'ppt' => 'application/vnd.ms-powerpoint',
844
+ 'pptm' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
845
+ 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
846
+ 'ppz' => 'application/vnd.ms-powerpoint',
847
+ 'pqa' => 'application/vnd.palm',
848
+ 'prc' => 'application/x-mobipocket-ebook',
849
+ 'pre' => 'application/vnd.lotus-freelance',
850
+ 'prf' => 'application/pics-rules',
851
+ 'pro' => 'text/x-prolog',
852
+ 'project' => 'text/plain',
853
+ 'properties' => 'text/x-java-properties',
854
+ 'prt' => 'application/x-prt',
855
+ 'ps' => 'application/postscript',
856
+ 'psb' => 'application/vnd.3gpp.pic-bw-small',
857
+ 'psd' => 'image/vnd.adobe.photoshop',
858
+ 'psf' => 'application/x-font-linux-psf',
859
+ 'psf1' => 'audio/x-psf',
860
+ 'psflib' => 'audio/x-psf',
861
+ 'pst' => 'application/vnd.ms-outlook-pst',
862
+ 'ptid' => 'application/vnd.pvi.ptid1',
863
+ 'ptx' => 'image/x-raw-pentax',
864
+ 'pub' => 'application/x-mspublisher',
865
+ 'pvb' => 'application/vnd.3gpp.pic-bw-var',
866
+ 'pwn' => 'application/vnd.3m.post-it-notes',
867
+ 'pxn' => 'image/x-raw-logitech',
868
+ 'py' => 'text/x-python',
869
+ 'pya' => 'audio/vnd.ms-playready.media.pya',
870
+ 'pyv' => 'video/vnd.ms-playready.media.pyv',
871
+ 'qam' => 'application/vnd.epson.quickanime',
872
+ 'qbo' => 'application/vnd.intu.qbo',
873
+ 'qfx' => 'application/vnd.intu.qfx',
874
+ 'qps' => 'application/vnd.publishare-delta-tree',
875
+ 'qpw' => 'application/x-quattro-pro',
876
+ 'qt' => 'video/quicktime',
877
+ 'qwd' => 'application/vnd.quark.quarkxpress',
878
+ 'qwt' => 'application/vnd.quark.quarkxpress',
879
+ 'qxb' => 'application/vnd.quark.quarkxpress',
880
+ 'qxd' => 'application/vnd.quark.quarkxpress',
881
+ 'qxl' => 'application/vnd.quark.quarkxpress',
882
+ 'qxt' => 'application/vnd.quark.quarkxpress',
883
+ 'r' => 'text/x-rsrc',
884
+ 'r3d' => 'image/x-raw-red',
885
+ 'ra' => 'audio/x-pn-realaudio',
886
+ 'raf' => 'image/x-raw-fuji',
887
+ 'ram' => 'audio/x-pn-realaudio',
888
+ 'rar' => 'application/x-rar-compressed',
889
+ 'ras' => 'image/x-cmu-raster',
890
+ 'raw' => 'image/x-raw-panasonic',
891
+ 'rb' => 'text/x-ruby',
892
+ 'rcprofile' => 'application/vnd.ipunplugged.rcprofile',
893
+ 'rdf' => 'application/rdf+xml',
894
+ 'rdz' => 'application/vnd.data-vision.rdz',
895
+ 'rep' => 'application/vnd.businessobjects',
896
+ 'res' => 'application/x-dtbresource+xml',
897
+ 'rest' => 'text/x-rst',
898
+ 'restx' => 'text/x-rst',
899
+ 'rexx' => 'text/x-rexx',
900
+ 'rgb' => 'image/x-rgb',
901
+ 'rif' => 'application/reginfo+xml',
902
+ 'rl' => 'application/resource-lists+xml',
903
+ 'rlc' => 'image/vnd.fujixerox.edmics-rlc',
904
+ 'rld' => 'application/resource-lists-diff+xml',
905
+ 'rm' => 'application/vnd.rn-realmedia',
906
+ 'rmi' => 'audio/midi',
907
+ 'rmp' => 'audio/x-pn-realaudio-plugin',
908
+ 'rms' => 'application/vnd.jcp.javame.midlet-rms',
909
+ 'rnc' => 'application/relax-ng-compact-syntax',
910
+ 'rng' => 'text/plain',
911
+ 'rnx' => 'text/plain',
912
+ 'roff' => 'text/troff',
913
+ 'roles' => 'text/plain',
914
+ 'rpm' => 'application/x-rpm',
915
+ 'rpss' => 'application/vnd.nokia.radio-presets',
916
+ 'rpst' => 'application/vnd.nokia.radio-preset',
917
+ 'rq' => 'application/sparql-query',
918
+ 'rs' => 'application/rls-services+xml',
919
+ 'rsd' => 'application/rsd+xml',
920
+ 'rss' => 'application/rss+xml',
921
+ 'rst' => 'text/x-rst',
922
+ 'rtf' => 'application/rtf',
923
+ 'rtx' => 'text/richtext',
924
+ 'rw2' => 'image/x-raw-panasonic',
925
+ 'rwz' => 'image/x-raw-rawzor',
926
+ 's' => 'text/x-assembly',
927
+ 's7m' => 'application/x-sas-dmdb',
928
+ 'sa7' => 'application/x-sas-access',
929
+ 'saf' => 'application/vnd.yamaha.smaf-audio',
930
+ 'sap' => 'audio/x-sap',
931
+ 'sas' => 'application/x-sas',
932
+ 'sas7bacs' => 'application/x-sas-access',
933
+ 'sas7baud' => 'application/x-sas-audit',
934
+ 'sas7bbak' => 'application/x-sas-backup',
935
+ 'sas7bcat' => 'application/x-sas-catalog',
936
+ 'sas7bdat' => 'application/x-sas-data',
937
+ 'sas7bdmd' => 'application/x-sas-dmdb',
938
+ 'sas7bfdb' => 'application/x-sas-fdb',
939
+ 'sas7bitm' => 'application/x-sas-itemstor',
940
+ 'sas7bmdb' => 'application/x-sas-mddb',
941
+ 'sas7bndx' => 'application/x-sas-data-index',
942
+ 'sas7bpgm' => 'application/x-sas-program-data',
943
+ 'sas7bput' => 'application/x-sas-putility',
944
+ 'sas7butl' => 'application/x-sas-utility',
945
+ 'sas7bvew' => 'application/x-sas-view',
946
+ 'sass' => 'text/x-sass',
947
+ 'sav' => 'application/x-spss-sav',
948
+ 'sbml' => 'application/sbml+xml',
949
+ 'sc' => 'application/vnd.ibm.secure-container',
950
+ 'sc7' => 'application/x-sas-catalog',
951
+ 'scad' => 'application/x-openscad',
952
+ 'scala' => 'text/x-scala',
953
+ 'scd' => 'application/x-msschedule',
954
+ 'schemas' => 'text/plain',
955
+ 'scm' => 'text/x-scheme',
956
+ 'scq' => 'application/scvp-cv-request',
957
+ 'scs' => 'application/scvp-cv-response',
958
+ 'scss' => 'text/x-scss',
959
+ 'scurl' => 'text/vnd.curl.scurl',
960
+ 'sd2' => 'application/x-sas-data-v6',
961
+ 'sd7' => 'application/x-sas-data',
962
+ 'sda' => 'application/vnd.stardivision.draw',
963
+ 'sdc' => 'application/vnd.stardivision.calc',
964
+ 'sdd' => 'application/vnd.stardivision.impress',
965
+ 'sdkd' => 'application/vnd.solent.sdkm+xml',
966
+ 'sdkm' => 'application/vnd.solent.sdkm+xml',
967
+ 'sdp' => 'application/sdp',
968
+ 'sdw' => 'application/vnd.stardivision.writer',
969
+ 'sed' => 'text/x-sed',
970
+ 'see' => 'application/vnd.seemail',
971
+ 'seed' => 'application/vnd.fdsn.seed',
972
+ 'sema' => 'application/vnd.sema',
973
+ 'semd' => 'application/vnd.semd',
974
+ 'semf' => 'application/vnd.semf',
975
+ 'ser' => 'application/java-serialized-object',
976
+ 'setpay' => 'application/set-payment-initiation',
977
+ 'setreg' => 'application/set-registration-initiation',
978
+ 'sf7' => 'application/x-sas-fdb',
979
+ 'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data',
980
+ 'sfdu' => 'application/x-sfdu',
981
+ 'sfs' => 'application/vnd.spotfire.sfs',
982
+ 'sgl' => 'application/vnd.stardivision.writer-global',
983
+ 'sgm' => 'text/sgml',
984
+ 'sgml' => 'text/sgml',
985
+ 'sh' => 'application/x-sh',
986
+ 'shar' => 'application/x-shar',
987
+ 'shf' => 'application/shf+xml',
988
+ 'shp' => 'application/x-shapefile',
989
+ 'shw' => 'application/x-corelpresentations',
990
+ 'si7' => 'application/x-sas-data-index',
991
+ 'sib' => 'application/x-sibelius',
992
+ 'sig' => 'application/pgp-signature',
993
+ 'silo' => 'model/mesh',
994
+ 'sis' => 'application/vnd.symbian.install',
995
+ 'sisx' => 'application/vnd.symbian.install',
996
+ 'sit' => 'application/x-stuffit',
997
+ 'sitx' => 'application/x-stuffitx',
998
+ 'skd' => 'application/vnd.koan',
999
+ 'skm' => 'application/vnd.koan',
1000
+ 'skp' => 'application/vnd.koan',
1001
+ 'skt' => 'application/vnd.koan',
1002
+ 'sldasm' => 'application/sldworks',
1003
+ 'slddrw' => 'application/sldworks',
1004
+ 'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12',
1005
+ 'sldprt' => 'application/sldworks',
1006
+ 'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
1007
+ 'slt' => 'application/vnd.epson.salt',
1008
+ 'sm7' => 'application/x-sas-mddb',
1009
+ 'smf' => 'application/vnd.stardivision.math',
1010
+ 'smi' => 'application/smil+xml',
1011
+ 'smil' => 'application/smil+xml',
1012
+ 'sml' => 'application/smil+xml',
1013
+ 'snd' => 'audio/basic',
1014
+ 'snf' => 'application/x-font-snf',
1015
+ 'so' => 'application/octet-stream',
1016
+ 'sp7' => 'application/x-sas-putility',
1017
+ 'spc' => 'application/x-pkcs7-certificates',
1018
+ 'spf' => 'application/vnd.yamaha.smaf-phrase',
1019
+ 'spl' => 'application/x-futuresplash',
1020
+ 'spot' => 'text/vnd.in3d.spot',
1021
+ 'spp' => 'application/scvp-vp-response',
1022
+ 'spq' => 'application/scvp-vp-request',
1023
+ 'spx' => 'audio/speex',
1024
+ 'sql' => 'text/x-sql',
1025
+ 'sr2' => 'image/x-raw-sony',
1026
+ 'sr7' => 'application/x-sas-itemstor',
1027
+ 'src' => 'application/x-wais-source',
1028
+ 'srf' => 'image/x-raw-sony',
1029
+ 'srl' => 'application/sereal',
1030
+ 'srt' => 'application/x-subrip',
1031
+ 'srx' => 'application/sparql-results+xml',
1032
+ 'ss7' => 'application/x-sas-program-data',
1033
+ 'sse' => 'application/vnd.kodak-descriptor',
1034
+ 'ssf' => 'application/vnd.epson.ssf',
1035
+ 'ssml' => 'application/ssml+xml',
1036
+ 'st' => 'text/x-stsrc',
1037
+ 'st7' => 'application/x-sas-audit',
1038
+ 'stc' => 'application/vnd.sun.xml.calc.template',
1039
+ 'std' => 'application/vnd.sun.xml.draw.template',
1040
+ 'stf' => 'application/vnd.wt.stf',
1041
+ 'sti' => 'application/vnd.sun.xml.impress.template',
1042
+ 'stk' => 'application/hyperstudio',
1043
+ 'stl' => 'model/x.stl-binary',
1044
+ 'str' => 'application/vnd.pg.format',
1045
+ 'stw' => 'application/vnd.sun.xml.writer.template',
1046
+ 'stx' => 'application/x-sas-transport',
1047
+ 'su7' => 'application/x-sas-utility',
1048
+ 'sus' => 'application/vnd.sus-calendar',
1049
+ 'susp' => 'application/vnd.sus-calendar',
1050
+ 'sv4cpio' => 'application/x-sv4cpio',
1051
+ 'sv4crc' => 'application/x-sv4crc',
1052
+ 'sv7' => 'application/x-sas-view',
1053
+ 'svd' => 'application/vnd.svd',
1054
+ 'svg' => 'image/svg+xml',
1055
+ 'svgz' => 'image/svg+xml',
1056
+ 'swa' => 'application/x-director',
1057
+ 'swf' => 'application/x-shockwave-flash',
1058
+ 'swi' => 'application/vnd.arastra.swi',
1059
+ 'sxc' => 'application/vnd.sun.xml.calc',
1060
+ 'sxd' => 'application/vnd.sun.xml.draw',
1061
+ 'sxg' => 'application/vnd.sun.xml.writer.global',
1062
+ 'sxi' => 'application/vnd.sun.xml.impress',
1063
+ 'sxm' => 'application/vnd.sun.xml.math',
1064
+ 'sxw' => 'application/vnd.sun.xml.writer',
1065
+ 'sz' => 'application/x-snappy-framed',
1066
+ 't' => 'text/troff',
1067
+ 'tao' => 'application/vnd.tao.intent-module-archive',
1068
+ 'tar' => 'application/x-tar',
1069
+ 'tbz' => 'application/x-bzip',
1070
+ 'tbz2' => 'application/x-bzip2',
1071
+ 'tcap' => 'application/vnd.3gpp2.tcap',
1072
+ 'tcl' => 'text/x-tcl',
1073
+ 'tcsh' => 'application/x-csh',
1074
+ 'teacher' => 'application/vnd.smart.teacher',
1075
+ 'tex' => 'application/x-tex',
1076
+ 'texi' => 'application/x-texinfo',
1077
+ 'texinfo' => 'application/x-texinfo',
1078
+ 'text' => 'text/plain',
1079
+ 'tfm' => 'application/x-tex-tfm',
1080
+ 'tga' => 'image/x-tga',
1081
+ 'tgz' => 'application/gzip',
1082
+ 'thmx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
1083
+ 'tif' => 'image/tiff',
1084
+ 'tiff' => 'image/tiff',
1085
+ 'tk' => 'text/x-tcl',
1086
+ 'tld' => 'text/plain',
1087
+ 'tmo' => 'application/vnd.tmobile-livetv',
1088
+ 'tmx' => 'application/x-tmx',
1089
+ 'toast' => 'application/x-roxio-toast',
1090
+ 'torrent' => 'application/x-bittorrent',
1091
+ 'tpl' => 'application/vnd.groove-tool-template',
1092
+ 'tpt' => 'application/vnd.trid.tpt',
1093
+ 'tr' => 'text/troff',
1094
+ 'tra' => 'application/vnd.trueapp',
1095
+ 'trm' => 'application/x-msterminal',
1096
+ 'tsd' => 'application/timestamped-data',
1097
+ 'tsv' => 'text/tab-separated-values',
1098
+ 'ttc' => 'application/x-font-ttf',
1099
+ 'ttf' => 'application/x-font-ttf',
1100
+ 'ttml' => 'application/ttml+xml',
1101
+ 'twd' => 'application/vnd.simtech-mindmapper',
1102
+ 'twds' => 'application/vnd.simtech-mindmapper',
1103
+ 'txd' => 'application/vnd.genomatix.tuxedo',
1104
+ 'txf' => 'application/vnd.mobius.txf',
1105
+ 'txt' => 'text/plain',
1106
+ 'types' => 'text/plain',
1107
+ 'tzx' => 'application/x-spectrum-tzx',
1108
+ 'u32' => 'application/x-authorware-bin',
1109
+ 'uc2' => 'application/x-uc2-compressed',
1110
+ 'udeb' => 'application/x-debian-package',
1111
+ 'ufd' => 'application/vnd.ufdl',
1112
+ 'ufdl' => 'application/vnd.ufdl',
1113
+ 'umj' => 'application/vnd.umajin',
1114
+ 'unityweb' => 'application/vnd.unity',
1115
+ 'uoml' => 'application/vnd.uoml+xml',
1116
+ 'uri' => 'text/uri-list',
1117
+ 'uris' => 'text/uri-list',
1118
+ 'urls' => 'text/uri-list',
1119
+ 'ustar' => 'application/x-ustar',
1120
+ 'utz' => 'application/vnd.uiq.theme',
1121
+ 'uu' => 'text/x-uuencode',
1122
+ 'v' => 'text/x-verilog',
1123
+ 'vb' => 'text/x-vbdotnet',
1124
+ 'vbs' => 'text/x-vbscript',
1125
+ 'vcd' => 'application/x-cdlink',
1126
+ 'vcf' => 'text/x-vcard',
1127
+ 'vcg' => 'application/vnd.groove-vcard',
1128
+ 'vcs' => 'text/x-vcalendar',
1129
+ 'vcx' => 'application/vnd.vcx',
1130
+ 'vda' => 'image/x-tga',
1131
+ 'vf' => 'application/x-tex-virtual-font',
1132
+ 'vhd' => 'text/x-vhdl',
1133
+ 'vhdl' => 'text/x-vhdl',
1134
+ 'vis' => 'application/vnd.visionary',
1135
+ 'viv' => 'video/vnd.vivo',
1136
+ 'vm' => 'text/plain',
1137
+ 'vmdk' => 'application/x-vmdk',
1138
+ 'vor' => 'application/x-staroffice-template',
1139
+ 'vox' => 'application/x-authorware-bin',
1140
+ 'vrml' => 'model/vrml',
1141
+ 'vsd' => 'application/vnd.visio',
1142
+ 'vsdm' => 'application/vnd.ms-visio.drawing.macroEnabled.12',
1143
+ 'vsdx' => 'application/vnd.ms-visio.drawing',
1144
+ 'vsf' => 'application/vnd.vsf',
1145
+ 'vsl' => 'text/plain',
1146
+ 'vss' => 'application/vnd.visio',
1147
+ 'vssm' => 'application/vnd.ms-visio.stencil.macroEnabled.12',
1148
+ 'vssx' => 'application/vnd.ms-visio.stencil',
1149
+ 'vst' => 'application/vnd.visio',
1150
+ 'vstm' => 'application/vnd.ms-visio.template.macroEnabled.12',
1151
+ 'vstx' => 'application/vnd.ms-visio.template',
1152
+ 'vsw' => 'application/vnd.visio',
1153
+ 'vtt' => 'text/vtt',
1154
+ 'vtu' => 'model/vnd.vtu',
1155
+ 'vxml' => 'application/voicexml+xml',
1156
+ 'w3d' => 'application/x-director',
1157
+ 'w60' => 'application/vnd.wordperfect',
1158
+ 'wad' => 'application/x-doom',
1159
+ 'war' => 'application/x-tika-java-web-archive',
1160
+ 'warc' => 'application/warc',
1161
+ 'warc.gz' => 'application/warc+gz',
1162
+ 'wasm' => 'application/wasm',
1163
+ 'wav' => 'audio/vnd.wave',
1164
+ 'wax' => 'audio/x-ms-wax',
1165
+ 'wb1' => 'application/x-quattro-pro',
1166
+ 'wb2' => 'application/x-quattro-pro',
1167
+ 'wb3' => 'application/x-quattro-pro',
1168
+ 'wbmp' => 'image/vnd.wap.wbmp',
1169
+ 'wbs' => 'application/vnd.criticaltools.wbs+xml',
1170
+ 'wbxml' => 'application/vnd.wap.wbxml',
1171
+ 'wcm' => 'application/vnd.ms-works',
1172
+ 'wdb' => 'application/vnd.ms-works',
1173
+ 'webarchive' => 'application/x-webarchive',
1174
+ 'webm' => 'video/webm',
1175
+ 'webmanifest' => 'application/manifest+json',
1176
+ 'webp' => 'image/webp',
1177
+ 'wk1' => 'application/vnd.lotus-1-2-3',
1178
+ 'wk2' => 'application/vnd.lotus-1-2-3',
1179
+ 'wk3' => 'application/vnd.lotus-1-2-3',
1180
+ 'wk4' => 'application/vnd.lotus-1-2-3',
1181
+ 'wkq' => 'application/x-quattro-pro',
1182
+ 'wks' => 'application/vnd.ms-works',
1183
+ 'wl' => 'application/vnd.wolfram.wl',
1184
+ 'wm' => 'video/x-ms-wm',
1185
+ 'wma' => 'audio/x-ms-wma',
1186
+ 'wmd' => 'application/x-ms-wmd',
1187
+ 'wmf' => 'image/wmf',
1188
+ 'wml' => 'text/vnd.wap.wml',
1189
+ 'wmlc' => 'application/vnd.wap.wmlc',
1190
+ 'wmls' => 'text/vnd.wap.wmlscript',
1191
+ 'wmlsc' => 'application/vnd.wap.wmlscriptc',
1192
+ 'wmv' => 'video/x-ms-wmv',
1193
+ 'wmx' => 'video/x-ms-wmx',
1194
+ 'wmz' => 'application/x-ms-wmz',
1195
+ 'woff' => 'font/woff',
1196
+ 'woff2' => 'font/woff2',
1197
+ 'wp' => 'application/vnd.wordperfect',
1198
+ 'wp5' => 'application/vnd.wordperfect',
1199
+ 'wp6' => 'application/vnd.wordperfect',
1200
+ 'wp61' => 'application/vnd.wordperfect',
1201
+ 'wpd' => 'application/vnd.wordperfect',
1202
+ 'wpl' => 'application/vnd.ms-wpl',
1203
+ 'wps' => 'application/vnd.ms-works',
1204
+ 'wpt' => 'application/vnd.wordperfect',
1205
+ 'wq1' => 'application/x-quattro-pro',
1206
+ 'wq2' => 'application/x-quattro-pro',
1207
+ 'wqd' => 'application/vnd.wqd',
1208
+ 'wri' => 'application/x-mswrite',
1209
+ 'wrl' => 'model/vrml',
1210
+ 'wsdd' => 'text/plain',
1211
+ 'wsdl' => 'application/wsdl+xml',
1212
+ 'wspolicy' => 'application/wspolicy+xml',
1213
+ 'wtb' => 'application/vnd.webturbo',
1214
+ 'wvx' => 'video/x-ms-wvx',
1215
+ 'x32' => 'application/x-authorware-bin',
1216
+ 'x3d' => 'application/vnd.hzn-3d-crossword',
1217
+ 'x3f' => 'image/x-raw-sigma',
1218
+ 'xap' => 'application/x-silverlight-app',
1219
+ 'xar' => 'application/vnd.xara',
1220
+ 'xargs' => 'text/plain',
1221
+ 'xbap' => 'application/x-ms-xbap',
1222
+ 'xbd' => 'application/vnd.fujixerox.docuworks.binder',
1223
+ 'xbm' => 'image/x-xbitmap',
1224
+ 'xcat' => 'text/plain',
1225
+ 'xcf' => 'image/x-xcf',
1226
+ 'xconf' => 'text/x-config',
1227
+ 'xdm' => 'application/vnd.syncml.dm+xml',
1228
+ 'xdp' => 'application/vnd.adobe.xdp+xml',
1229
+ 'xdw' => 'application/vnd.fujixerox.docuworks',
1230
+ 'xegrm' => 'text/plain',
1231
+ 'xenc' => 'application/xenc+xml',
1232
+ 'xer' => 'application/patch-ops-error+xml',
1233
+ 'xfdf' => 'application/vnd.adobe.xfdf',
1234
+ 'xfdl' => 'application/vnd.xfdl',
1235
+ 'xgrm' => 'text/plain',
1236
+ 'xht' => 'application/xhtml+xml',
1237
+ 'xhtml' => 'application/xhtml+xml',
1238
+ 'xhtml2' => 'application/xhtml+xml',
1239
+ 'xhvml' => 'application/xv+xml',
1240
+ 'xif' => 'image/vnd.xiff',
1241
+ 'xla' => 'application/vnd.ms-excel',
1242
+ 'xlam' => 'application/vnd.ms-excel.addin.macroenabled.12',
1243
+ 'xlc' => 'application/vnd.ms-excel',
1244
+ 'xld' => 'application/vnd.ms-excel',
1245
+ 'xlex' => 'text/plain',
1246
+ 'xlf' => 'application/x-xliff+xml',
1247
+ 'xliff' => 'application/x-xliff+xml',
1248
+ 'xll' => 'application/vnd.ms-excel',
1249
+ 'xlm' => 'application/vnd.ms-excel',
1250
+ 'xlog' => 'text/plain',
1251
+ 'xlr' => 'application/x-tika-msworks-spreadsheet',
1252
+ 'xls' => 'application/vnd.ms-excel',
1253
+ 'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
1254
+ 'xlsm' => 'application/vnd.ms-excel.sheet.macroenabled.12',
1255
+ 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
1256
+ 'xlt' => 'application/vnd.ms-excel',
1257
+ 'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
1258
+ 'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
1259
+ 'xlw' => 'application/vnd.ms-excel',
1260
+ 'xlz' => 'application/x-xliff+zip',
1261
+ 'xmap' => 'text/plain',
1262
+ 'xmind' => 'application/x-xmind',
1263
+ 'xml' => 'application/xml',
1264
+ 'xmp' => 'application/rdf+xml',
1265
+ 'xo' => 'application/vnd.olpc-sugar',
1266
+ 'xop' => 'application/xop+xml',
1267
+ 'xpi' => 'application/x-xpinstall',
1268
+ 'xpm' => 'image/x-xpixmap',
1269
+ 'xport' => 'application/x-sas-xport',
1270
+ 'xpr' => 'application/vnd.is-xpr',
1271
+ 'xps' => 'application/vnd.ms-xpsdocument',
1272
+ 'xpt' => 'application/x-sas-xport',
1273
+ 'xpw' => 'application/vnd.intercon.formnet',
1274
+ 'xpx' => 'application/vnd.intercon.formnet',
1275
+ 'xq' => 'application/xquery',
1276
+ 'xquery' => 'application/xquery',
1277
+ 'xroles' => 'text/plain',
1278
+ 'xsamples' => 'text/plain',
1279
+ 'xsd' => 'application/xml',
1280
+ 'xsl' => 'application/xml',
1281
+ 'xslfo' => 'application/xslfo+xml',
1282
+ 'xslt' => 'application/xslt+xml',
1283
+ 'xsm' => 'application/vnd.syncml+xml',
1284
+ 'xsp' => 'text/plain',
1285
+ 'xspf' => 'application/xspf+xml',
1286
+ 'xtest' => 'text/plain',
1287
+ 'xul' => 'application/vnd.mozilla.xul+xml',
1288
+ 'xvm' => 'application/xv+xml',
1289
+ 'xvml' => 'application/xv+xml',
1290
+ 'xwd' => 'image/x-xwindowdump',
1291
+ 'xweb' => 'text/plain',
1292
+ 'xwelcome' => 'text/plain',
1293
+ 'xyz' => 'chemical/x-xyz',
1294
+ 'xz' => 'application/x-xz',
1295
+ 'y' => 'text/x-yacc',
1296
+ 'yaml' => 'text/x-yaml',
1297
+ 'yml' => 'text/x-yaml',
1298
+ 'z' => 'application/x-compress',
1299
+ 'zaz' => 'application/vnd.zzazz.deck+xml',
1300
+ 'zip' => 'application/zip',
1301
+ 'zipx' => 'application/zip',
1302
+ 'zir' => 'application/vnd.zul',
1303
+ 'zirz' => 'application/vnd.zul',
1304
+ 'zmm' => 'application/vnd.handheld-entertainment+xml',
1305
+ 'zoo' => 'application/x-zoo',
1306
+ 'zst' => 'application/zstd',
1307
+ }
1308
+ # @private
1309
+ # :nodoc:
1310
+ TYPE_EXTS = {
1311
+ 'application/andrew-inset' => %w(ez),
1312
+ 'application/applixware' => %w(aw),
1313
+ 'application/atom+xml' => %w(atom),
1314
+ 'application/atomcat+xml' => %w(atomcat),
1315
+ 'application/atomsvc+xml' => %w(atomsvc),
1316
+ 'application/bizagi-modeler' => %w(bpm), # BizAgi Process Modeler
1317
+ 'application/cbor' => %w(cbor), # Concise Binary Object Representation container
1318
+ 'application/ccxml+xml' => %w(ccxml),
1319
+ 'application/coreldraw' => %w(cdr), # des: CorelDraw X4 and newer
1320
+ 'application/cu-seeme' => %w(cu),
1321
+ 'application/dash+xml' => %w(mpd),
1322
+ 'application/davmount+xml' => %w(davmount),
1323
+ 'application/dif+xml' => %w(dif),
1324
+ 'application/dita+xml;format=map' => %w(ditamap), # DITA Map
1325
+ 'application/dita+xml;format=topic' => %w(dita), # DITA Topic
1326
+ 'application/dita+xml;format=val' => %w(ditaval), # DITA Conditional Processing Profile
1327
+ 'application/ecmascript' => %w(ecma),
1328
+ 'application/emma+xml' => %w(emma),
1329
+ 'application/envi.hdr' => %w(hdr),
1330
+ 'application/epub+zip' => %w(epub), # Electronic Publication
1331
+ 'application/fits' => %w(fits fit fts), # Flexible Image Transport System
1332
+ 'application/font-tdpfr' => %w(pfr),
1333
+ 'application/gzip' => %w(gz tgz), # Gzip Compressed Archive
1334
+ 'application/hwp+zip' => %w(hwpx), # Hangul Word Processor File, zip based
1335
+ 'application/hyperstudio' => %w(stk),
1336
+ 'application/illustrator' => %w(ai), # Adobe Illustrator Artwork
1337
+ 'application/java-archive' => %w(jar), # Java Archive
1338
+ 'application/java-serialized-object' => %w(ser),
1339
+ 'application/java-vm' => %w(class), # Java Class File
1340
+ 'application/json' => %w(json),
1341
+ 'application/lost+xml' => %w(lostxml),
1342
+ 'application/mac-binhex40' => %w(hqx),
1343
+ 'application/mac-compactpro' => %w(cpt),
1344
+ 'application/manifest+json' => %w(webmanifest), # Web Application Manifest file
1345
+ 'application/marc' => %w(mrc),
1346
+ 'application/mathematica' => %w(ma nb mb), # Wolfram Mathematica
1347
+ 'application/mathml+xml' => %w(mathml),
1348
+ 'application/mbox' => %w(mbox),
1349
+ 'application/mediaservercontrol+xml' => %w(mscml),
1350
+ 'application/mp4' => %w(mp4s), # MP4 container format
1351
+ 'application/msword' => %w(doc dot), # Microsoft Word Document
1352
+ 'application/mxf' => %w(mxf),
1353
+ 'application/octet-stream' => %w(bin dms lha lrf lzh so dist distz pkg bpk dump elc deploy),
1354
+ 'application/oda' => %w(oda),
1355
+ 'application/oebps-package+xml' => %w(opf),
1356
+ 'application/ogg' => %w(ogx),
1357
+ 'application/onenote' => %w(onetmp),
1358
+ 'application/onenote; format=package' => %w(onepkg), # OneNote Package
1359
+ 'application/onenote;format=one' => %w(one),
1360
+ 'application/onenote;format=onetoc2' => %w(onetoc onetoc2), # OneNote Table of Contents
1361
+ 'application/patch-ops-error+xml' => %w(xer),
1362
+ 'application/pdf' => %w(pdf), # Portable Document Format
1363
+ 'application/pgp-encrypted' => %w(pgp gpg),
1364
+ 'application/pgp-signature' => %w(asc sig),
1365
+ 'application/pics-rules' => %w(prf),
1366
+ 'application/pkcs10' => %w(p10),
1367
+ 'application/pkcs7-mime' => %w(p7m p7c),
1368
+ 'application/pkcs7-signature' => %w(p7s),
1369
+ 'application/pkix-cert' => %w(cer),
1370
+ 'application/pkix-crl' => %w(crl),
1371
+ 'application/pkix-pkipath' => %w(pkipath),
1372
+ 'application/pkixcmp' => %w(pki),
1373
+ 'application/pls+xml' => %w(pls),
1374
+ 'application/postscript' => %w(ps eps epsf epsi), # PostScript
1375
+ 'application/prs.cww' => %w(cww),
1376
+ 'application/rdf+xml' => %w(rdf owl xmp), # XML syntax for RDF graphs
1377
+ 'application/reginfo+xml' => %w(rif),
1378
+ 'application/relax-ng-compact-syntax' => %w(rnc),
1379
+ 'application/resource-lists+xml' => %w(rl),
1380
+ 'application/resource-lists-diff+xml' => %w(rld),
1381
+ 'application/rls-services+xml' => %w(rs),
1382
+ 'application/rsd+xml' => %w(rsd),
1383
+ 'application/rss+xml' => %w(rss),
1384
+ 'application/rtf' => %w(rtf), # Rich Text Format File
1385
+ 'application/sbml+xml' => %w(sbml),
1386
+ 'application/scvp-cv-request' => %w(scq),
1387
+ 'application/scvp-cv-response' => %w(scs),
1388
+ 'application/scvp-vp-request' => %w(spq),
1389
+ 'application/scvp-vp-response' => %w(spp),
1390
+ 'application/sdp' => %w(sdp),
1391
+ 'application/sereal' => %w(srl), # Sereal binary serialization format
1392
+ 'application/set-payment-initiation' => %w(setpay),
1393
+ 'application/set-registration-initiation' => %w(setreg),
1394
+ 'application/shf+xml' => %w(shf),
1395
+ 'application/sldworks' => %w(sldprt sldasm slddrw), # SolidWorks CAD program
1396
+ 'application/smil+xml' => %w(smi smil sml), # SMIL Multimedia
1397
+ 'application/sparql-query' => %w(rq),
1398
+ 'application/sparql-results+xml' => %w(srx),
1399
+ 'application/srgs' => %w(gram),
1400
+ 'application/srgs+xml' => %w(grxml),
1401
+ 'application/ssml+xml' => %w(ssml),
1402
+ 'application/timestamped-data' => %w(tsd),
1403
+ 'application/ttml+xml' => %w(ttml),
1404
+ 'application/vnd.3gpp.pic-bw-large' => %w(plb),
1405
+ 'application/vnd.3gpp.pic-bw-small' => %w(psb),
1406
+ 'application/vnd.3gpp.pic-bw-var' => %w(pvb),
1407
+ 'application/vnd.3gpp2.tcap' => %w(tcap),
1408
+ 'application/vnd.3m.post-it-notes' => %w(pwn),
1409
+ 'application/vnd.accpac.simply.aso' => %w(aso),
1410
+ 'application/vnd.accpac.simply.imp' => %w(imp),
1411
+ 'application/vnd.acucobol' => %w(acu),
1412
+ 'application/vnd.acucorp' => %w(atc acutc),
1413
+ 'application/vnd.adobe.aftereffects.project' => %w(aep),
1414
+ 'application/vnd.adobe.aftereffects.template' => %w(aet),
1415
+ 'application/vnd.adobe.air-application-installer-package+zip' => %w(air),
1416
+ 'application/vnd.adobe.indesign-idml-package' => %w(idml), # IDML
1417
+ 'application/vnd.adobe.xdp+xml' => %w(xdp),
1418
+ 'application/vnd.adobe.xfdf' => %w(xfdf),
1419
+ 'application/vnd.airzip.filesecure.azf' => %w(azf),
1420
+ 'application/vnd.airzip.filesecure.azs' => %w(azs),
1421
+ 'application/vnd.amazon.ebook' => %w(azw),
1422
+ 'application/vnd.americandynamics.acc' => %w(acc),
1423
+ 'application/vnd.amiga.ami' => %w(ami),
1424
+ 'application/vnd.android.package-archive' => %w(apk),
1425
+ 'application/vnd.anser-web-certificate-issue-initiation' => %w(cii),
1426
+ 'application/vnd.anser-web-funds-transfer-initiation' => %w(fti),
1427
+ 'application/vnd.antix.game-component' => %w(atx),
1428
+ 'application/vnd.apple.installer+xml' => %w(mpkg),
1429
+ 'application/vnd.apple.keynote' => %w(key),
1430
+ 'application/vnd.apple.mpegurl' => %w(m3u8),
1431
+ 'application/vnd.apple.numbers' => %w(numbers),
1432
+ 'application/vnd.apple.pages' => %w(pages),
1433
+ 'application/vnd.arastra.swi' => %w(swi),
1434
+ 'application/vnd.blueice.multipass' => %w(mpm),
1435
+ 'application/vnd.bmi' => %w(bmi),
1436
+ 'application/vnd.businessobjects' => %w(rep),
1437
+ 'application/vnd.chemdraw+xml' => %w(cdxml),
1438
+ 'application/vnd.chipnuts.karaoke-mmd' => %w(mmd),
1439
+ 'application/vnd.cinderella' => %w(cdy),
1440
+ 'application/vnd.claymore' => %w(cla),
1441
+ 'application/vnd.clonk.c4group' => %w(c4g c4d c4f c4p c4u),
1442
+ 'application/vnd.commonspace' => %w(csp),
1443
+ 'application/vnd.contact.cmsg' => %w(cdbcmsg),
1444
+ 'application/vnd.cosmocaller' => %w(cmc),
1445
+ 'application/vnd.crick.clicker' => %w(clkx),
1446
+ 'application/vnd.crick.clicker.keyboard' => %w(clkk),
1447
+ 'application/vnd.crick.clicker.palette' => %w(clkp),
1448
+ 'application/vnd.crick.clicker.template' => %w(clkt),
1449
+ 'application/vnd.crick.clicker.wordbank' => %w(clkw),
1450
+ 'application/vnd.criticaltools.wbs+xml' => %w(wbs),
1451
+ 'application/vnd.ctc-posml' => %w(pml),
1452
+ 'application/vnd.cups-ppd' => %w(ppd),
1453
+ 'application/vnd.curl.car' => %w(car),
1454
+ 'application/vnd.curl.pcurl' => %w(pcurl),
1455
+ 'application/vnd.data-vision.rdz' => %w(rdz),
1456
+ 'application/vnd.denovo.fcselayout-link' => %w(fe_launch),
1457
+ 'application/vnd.dna' => %w(dna),
1458
+ 'application/vnd.dolby.mlp' => %w(mlp),
1459
+ 'application/vnd.dpgraph' => %w(dpg),
1460
+ 'application/vnd.dreamfactory' => %w(dfac),
1461
+ 'application/vnd.dynageo' => %w(geo),
1462
+ 'application/vnd.ecowin.chart' => %w(mag),
1463
+ 'application/vnd.enliven' => %w(nml),
1464
+ 'application/vnd.epson.esf' => %w(esf),
1465
+ 'application/vnd.epson.msf' => %w(msf),
1466
+ 'application/vnd.epson.quickanime' => %w(qam),
1467
+ 'application/vnd.epson.salt' => %w(slt),
1468
+ 'application/vnd.epson.ssf' => %w(ssf),
1469
+ 'application/vnd.eszigno3+xml' => %w(es3 et3),
1470
+ 'application/vnd.etsi.asic-e+zip' => %w(asice), # Extended Associated Signature Container
1471
+ 'application/vnd.etsi.asic-s+zip' => %w(asics), # Simple Associated Signature Container
1472
+ 'application/vnd.ezpix-album' => %w(ez2),
1473
+ 'application/vnd.ezpix-package' => %w(ez3),
1474
+ 'application/vnd.fdf' => %w(fdf), # Forms Data Format
1475
+ 'application/vnd.fdsn.mseed' => %w(mseed),
1476
+ 'application/vnd.fdsn.seed' => %w(seed dataless),
1477
+ 'application/vnd.flographit' => %w(gph),
1478
+ 'application/vnd.fluxtime.clip' => %w(ftc),
1479
+ 'application/vnd.framemaker' => %w(fm frame maker book),
1480
+ 'application/vnd.frogans.fnc' => %w(fnc),
1481
+ 'application/vnd.frogans.ltf' => %w(ltf),
1482
+ 'application/vnd.fsc.weblaunch' => %w(fsc),
1483
+ 'application/vnd.fujitsu.oasys' => %w(oas),
1484
+ 'application/vnd.fujitsu.oasys2' => %w(oa2),
1485
+ 'application/vnd.fujitsu.oasys3' => %w(oa3),
1486
+ 'application/vnd.fujitsu.oasysgp' => %w(fg5),
1487
+ 'application/vnd.fujitsu.oasysprs' => %w(bh2),
1488
+ 'application/vnd.fujixerox.ddd' => %w(ddd),
1489
+ 'application/vnd.fujixerox.docuworks' => %w(xdw),
1490
+ 'application/vnd.fujixerox.docuworks.binder' => %w(xbd),
1491
+ 'application/vnd.fuzzysheet' => %w(fzs),
1492
+ 'application/vnd.genomatix.tuxedo' => %w(txd),
1493
+ 'application/vnd.geogebra.file' => %w(ggb),
1494
+ 'application/vnd.geogebra.tool' => %w(ggt),
1495
+ 'application/vnd.geometry-explorer' => %w(gex gre),
1496
+ 'application/vnd.gmx' => %w(gmx),
1497
+ 'application/vnd.google-earth.kml+xml' => %w(kml), # Keyhole Markup Language
1498
+ 'application/vnd.google-earth.kmz' => %w(kmz),
1499
+ 'application/vnd.grafeq' => %w(gqf gqs),
1500
+ 'application/vnd.groove-account' => %w(gac),
1501
+ 'application/vnd.groove-help' => %w(ghf),
1502
+ 'application/vnd.groove-identity-message' => %w(gim),
1503
+ 'application/vnd.groove-injector' => %w(grv),
1504
+ 'application/vnd.groove-tool-message' => %w(gtm),
1505
+ 'application/vnd.groove-tool-template' => %w(tpl),
1506
+ 'application/vnd.groove-vcard' => %w(vcg),
1507
+ 'application/vnd.handheld-entertainment+xml' => %w(zmm),
1508
+ 'application/vnd.hbci' => %w(hbci),
1509
+ 'application/vnd.hhe.lesson-player' => %w(les),
1510
+ 'application/vnd.hp-hpgl' => %w(hpgl),
1511
+ 'application/vnd.hp-hpid' => %w(hpid),
1512
+ 'application/vnd.hp-hps' => %w(hps),
1513
+ 'application/vnd.hp-jlyt' => %w(jlt),
1514
+ 'application/vnd.hp-pcl' => %w(pcl),
1515
+ 'application/vnd.hp-pclxl' => %w(pclxl),
1516
+ 'application/vnd.hydrostatix.sof-data' => %w(sfd-hdstx),
1517
+ 'application/vnd.hzn-3d-crossword' => %w(x3d),
1518
+ 'application/vnd.ibm.minipay' => %w(mpy),
1519
+ 'application/vnd.ibm.modcap' => %w(afp listafp list3820),
1520
+ 'application/vnd.ibm.rights-management' => %w(irm),
1521
+ 'application/vnd.ibm.secure-container' => %w(sc),
1522
+ 'application/vnd.iccprofile' => %w(icc icm),
1523
+ 'application/vnd.igloader' => %w(igl),
1524
+ 'application/vnd.immervision-ivp' => %w(ivp),
1525
+ 'application/vnd.immervision-ivu' => %w(ivu),
1526
+ 'application/vnd.intercon.formnet' => %w(xpw xpx),
1527
+ 'application/vnd.intu.qbo' => %w(qbo),
1528
+ 'application/vnd.intu.qfx' => %w(qfx),
1529
+ 'application/vnd.iptc.g2.newsmessage+xml' => %w(nar), # XML syntax for IPTC NewsMessages
1530
+ 'application/vnd.ipunplugged.rcprofile' => %w(rcprofile),
1531
+ 'application/vnd.irepository.package+xml' => %w(irp),
1532
+ 'application/vnd.is-xpr' => %w(xpr),
1533
+ 'application/vnd.isac.fcs' => %w(fcs), # Flow Cytometry Standard File
1534
+ 'application/vnd.jam' => %w(jam),
1535
+ 'application/vnd.java.hprof ' => %w(hprof), # Java hprof text file
1536
+ 'application/vnd.java.hprof.text' => %w(hprof.txt), # Java hprof text file
1537
+ 'application/vnd.jcp.javame.midlet-rms' => %w(rms),
1538
+ 'application/vnd.jisp' => %w(jisp),
1539
+ 'application/vnd.joost.joda-archive' => %w(joda),
1540
+ 'application/vnd.kahootz' => %w(ktz ktr),
1541
+ 'application/vnd.kde.karbon' => %w(karbon),
1542
+ 'application/vnd.kde.kchart' => %w(chrt), # KChart File
1543
+ 'application/vnd.kde.kformula' => %w(kfo),
1544
+ 'application/vnd.kde.kivio' => %w(flw),
1545
+ 'application/vnd.kde.kontour' => %w(kon),
1546
+ 'application/vnd.kde.kpresenter' => %w(kpr kpt), # KPresenter File
1547
+ 'application/vnd.kde.kspread' => %w(ksp), # KSpread File
1548
+ 'application/vnd.kde.kword' => %w(kwd kwt), # KWord File
1549
+ 'application/vnd.kenameaapp' => %w(htke),
1550
+ 'application/vnd.kidspiration' => %w(kia),
1551
+ 'application/vnd.kinar' => %w(kne knp),
1552
+ 'application/vnd.koan' => %w(skp skd skt skm), # SSEYO Koan File
1553
+ 'application/vnd.kodak-descriptor' => %w(sse),
1554
+ 'application/vnd.llamagraphics.life-balance.desktop' => %w(lbd),
1555
+ 'application/vnd.llamagraphics.life-balance.exchange+xml' => %w(lbe),
1556
+ 'application/vnd.lotus-1-2-3' => %w(wk1 wk2 wk3 wk4 123), # Lotus 1-2-3
1557
+ 'application/vnd.lotus-1-2-3;version=2' => %w(wk1 wk2), # Lotus 1-2-3, version 2
1558
+ 'application/vnd.lotus-1-2-3;version=3' => %w(wk3), # Lotus 1-2-3, version 3
1559
+ 'application/vnd.lotus-1-2-3;version=4' => %w(wk4), # Lotus 1-2-3, version 4-5
1560
+ 'application/vnd.lotus-1-2-3;version=97+9.x' => %w(123), # Lotus 1-2-3, version 97/9.x
1561
+ 'application/vnd.lotus-approach' => %w(apr),
1562
+ 'application/vnd.lotus-freelance' => %w(pre),
1563
+ 'application/vnd.lotus-notes' => %w(nsf),
1564
+ 'application/vnd.lotus-organizer' => %w(org),
1565
+ 'application/vnd.lotus-wordpro' => %w(lwp),
1566
+ 'application/vnd.macports.portpkg' => %w(portpkg),
1567
+ 'application/vnd.mcd' => %w(mcd),
1568
+ 'application/vnd.medcalcdata' => %w(mc1),
1569
+ 'application/vnd.mediastation.cdkey' => %w(cdkey),
1570
+ 'application/vnd.mfer' => %w(mwf),
1571
+ 'application/vnd.mfmp' => %w(mfm),
1572
+ 'application/vnd.micrografx.flo' => %w(flo),
1573
+ 'application/vnd.micrografx.igx' => %w(igx),
1574
+ 'application/vnd.mif' => %w(mif), # FrameMaker Interchange Format
1575
+ 'application/vnd.mindjet.mindmanager' => %w(mmp mmap mmpt mmat mmmp mmas), # MindManager
1576
+ 'application/vnd.mobius.daf' => %w(daf),
1577
+ 'application/vnd.mobius.dis' => %w(dis),
1578
+ 'application/vnd.mobius.mbk' => %w(mbk),
1579
+ 'application/vnd.mobius.mqy' => %w(mqy),
1580
+ 'application/vnd.mobius.msl' => %w(msl),
1581
+ 'application/vnd.mobius.plc' => %w(plc),
1582
+ 'application/vnd.mobius.txf' => %w(txf),
1583
+ 'application/vnd.mophun.application' => %w(mpn),
1584
+ 'application/vnd.mophun.certificate' => %w(mpc),
1585
+ 'application/vnd.mozilla.xul+xml' => %w(xul),
1586
+ 'application/vnd.ms-artgalry' => %w(cil),
1587
+ 'application/vnd.ms-cab-compressed' => %w(cab),
1588
+ 'application/vnd.ms-excel' => %w(xls xlm xla xlc xlt xlw xll xld), # Microsoft Excel Spreadsheet
1589
+ 'application/vnd.ms-excel.addin.macroenabled.12' => %w(xlam), # Office Open XML Workbook Add-in (macro-enabled)
1590
+ 'application/vnd.ms-excel.sheet.binary.macroenabled.12' => %w(xlsb), # Microsoft Excel 2007 Binary Spreadsheet
1591
+ 'application/vnd.ms-excel.sheet.macroenabled.12' => %w(xlsm), # Office Open XML Workbook (macro-enabled)
1592
+ 'application/vnd.ms-excel.template.macroenabled.12' => %w(xltm), # Office Open XML Workbook Template (macro-enabled)
1593
+ 'application/vnd.ms-fontobject' => %w(eot),
1594
+ 'application/vnd.ms-htmlhelp' => %w(chm),
1595
+ 'application/vnd.ms-ims' => %w(ims),
1596
+ 'application/vnd.ms-lrm' => %w(lrm),
1597
+ 'application/vnd.ms-outlook' => %w(msg), # Microsoft Outlook Message
1598
+ 'application/vnd.ms-outlook-pst' => %w(pst ost), # Outlook Personal Folders File Format
1599
+ 'application/vnd.ms-package.3dmanufacturing-3dmodel+xml' => %w(3mf), # 3D manufacturing format
1600
+ 'application/vnd.ms-pki.seccat' => %w(cat),
1601
+ 'application/vnd.ms-powerpoint' => %w(ppt ppz pps pot ppa), # Microsoft Powerpoint Presentation
1602
+ 'application/vnd.ms-powerpoint.addin.macroenabled.12' => %w(ppam), # Office Open XML Presentation Add-in (macro-enabled)
1603
+ 'application/vnd.ms-powerpoint.presentation.macroenabled.12' => %w(pptm), # Office Open XML Presentation (macro-enabled)
1604
+ 'application/vnd.ms-powerpoint.slide.macroenabled.12' => %w(sldm),
1605
+ 'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => %w(ppsm), # Office Open XML Presentation Slideshow (macro-enabled)
1606
+ 'application/vnd.ms-powerpoint.template.macroenabled.12' => %w(potm),
1607
+ 'application/vnd.ms-project' => %w(mpp mpt),
1608
+ 'application/vnd.ms-visio.drawing' => %w(vsdx), # Office Open XML Visio Drawing (macro-free)
1609
+ 'application/vnd.ms-visio.drawing.macroEnabled.12' => %w(vsdm), # Office Open XML Visio Drawing (macro-enabled)
1610
+ 'application/vnd.ms-visio.stencil' => %w(vssx), # Office Open XML Visio Stencil (macro-free)
1611
+ 'application/vnd.ms-visio.stencil.macroEnabled.12' => %w(vssm), # Office Open XML Visio Stencil (macro-enabled)
1612
+ 'application/vnd.ms-visio.template' => %w(vstx), # Office Open XML Visio Template (macro-free)
1613
+ 'application/vnd.ms-visio.template.macroEnabled.12' => %w(vstm), # Office Open XML Visio Template (macro-enabled)
1614
+ 'application/vnd.ms-word.document.macroenabled.12' => %w(docm), # Office Open XML Document (macro-enabled)
1615
+ 'application/vnd.ms-word.template.macroenabled.12' => %w(dotm), # Office Open XML Document Template (macro-enabled)
1616
+ 'application/vnd.ms-works' => %w(wps wks wcm wdb),
1617
+ 'application/vnd.ms-wpl' => %w(wpl),
1618
+ 'application/vnd.ms-xpsdocument' => %w(xps oxps), # Open XML Paper Specification
1619
+ 'application/vnd.msa-disk-image' => %w(msa), # Magic Shadow Archiver
1620
+ 'application/vnd.mseq' => %w(mseq),
1621
+ 'application/vnd.musician' => %w(mus),
1622
+ 'application/vnd.muvee.style' => %w(msty),
1623
+ 'application/vnd.neurolanguage.nlu' => %w(nlu),
1624
+ 'application/vnd.noblenet-directory' => %w(nnd),
1625
+ 'application/vnd.noblenet-sealer' => %w(nns),
1626
+ 'application/vnd.noblenet-web' => %w(nnw),
1627
+ 'application/vnd.nokia.n-gage.data' => %w(ngdat),
1628
+ 'application/vnd.nokia.n-gage.symbian.install' => %w(n-gage),
1629
+ 'application/vnd.nokia.radio-preset' => %w(rpst),
1630
+ 'application/vnd.nokia.radio-presets' => %w(rpss),
1631
+ 'application/vnd.novadigm.edm' => %w(edm),
1632
+ 'application/vnd.novadigm.edx' => %w(edx),
1633
+ 'application/vnd.novadigm.ext' => %w(ext),
1634
+ 'application/vnd.oasis.opendocument.base' => %w(odb),
1635
+ 'application/vnd.oasis.opendocument.chart' => %w(odc), # OpenDocument v1.0: Chart document
1636
+ 'application/vnd.oasis.opendocument.chart-template' => %w(otc), # OpenDocument v1.0: Chart document used as template
1637
+ 'application/vnd.oasis.opendocument.flat.presentation' => %w(fodp), # OpenDocument v1.0: Flat Presentation document
1638
+ 'application/vnd.oasis.opendocument.flat.spreadsheet' => %w(fods), # OpenDocument v1.0: Flat Spreadsheet document
1639
+ 'application/vnd.oasis.opendocument.flat.text' => %w(fodt), # OpenDocument v1.0: Flat Text document
1640
+ 'application/vnd.oasis.opendocument.formula' => %w(odf), # OpenDocument v1.0: Formula document
1641
+ 'application/vnd.oasis.opendocument.formula-template' => %w(odft), # OpenDocument v1.0: Formula document used as template
1642
+ 'application/vnd.oasis.opendocument.graphics' => %w(odg), # OpenDocument v1.0: Graphics document (Drawing)
1643
+ 'application/vnd.oasis.opendocument.graphics-template' => %w(otg), # OpenDocument v1.0: Graphics document used as template
1644
+ 'application/vnd.oasis.opendocument.image' => %w(odi), # OpenDocument v1.0: Image document
1645
+ 'application/vnd.oasis.opendocument.image-template' => %w(oti), # OpenDocument v1.0: Image document used as template
1646
+ 'application/vnd.oasis.opendocument.presentation' => %w(odp), # OpenDocument v1.0: Presentation document
1647
+ 'application/vnd.oasis.opendocument.presentation-template' => %w(otp), # OpenDocument v1.0: Presentation document used as template
1648
+ 'application/vnd.oasis.opendocument.spreadsheet' => %w(ods), # OpenDocument v1.0: Spreadsheet document
1649
+ 'application/vnd.oasis.opendocument.spreadsheet-template' => %w(ots), # OpenDocument v1.0: Spreadsheet document used as template
1650
+ 'application/vnd.oasis.opendocument.text' => %w(odt), # OpenDocument v1.0: Text document
1651
+ 'application/vnd.oasis.opendocument.text-master' => %w(otm), # OpenDocument v1.0: Global Text document
1652
+ 'application/vnd.oasis.opendocument.text-template' => %w(ott), # OpenDocument v1.0: Text document used as template
1653
+ 'application/vnd.oasis.opendocument.text-web' => %w(oth), # OpenDocument v1.0: Text document used as template for HTML documents
1654
+ 'application/vnd.olpc-sugar' => %w(xo),
1655
+ 'application/vnd.oma.dd2+xml' => %w(dd2),
1656
+ 'application/vnd.openofficeorg.autotext' => %w(bau),
1657
+ 'application/vnd.openofficeorg.extension' => %w(oxt),
1658
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => %w(pptx thmx), # Office Open XML Presentation
1659
+ 'application/vnd.openxmlformats-officedocument.presentationml.slide' => %w(sldx),
1660
+ 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => %w(ppsx), # Office Open XML Presentation Slideshow
1661
+ 'application/vnd.openxmlformats-officedocument.presentationml.template' => %w(potx), # Office Open XML Presentation Template
1662
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => %w(xlsx), # Office Open XML Workbook
1663
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => %w(xltx), # Office Open XML Workbook Template
1664
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => %w(docx), # Office Open XML Document
1665
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => %w(dotx), # Office Open XML Document Template
1666
+ 'application/vnd.osgi.dp' => %w(dp),
1667
+ 'application/vnd.palm' => %w(pqa oprc),
1668
+ 'application/vnd.pg.format' => %w(str),
1669
+ 'application/vnd.pg.osasli' => %w(ei6),
1670
+ 'application/vnd.picsel' => %w(efif),
1671
+ 'application/vnd.pocketlearn' => %w(plf),
1672
+ 'application/vnd.powerbuilder6' => %w(pbd),
1673
+ 'application/vnd.previewsystems.box' => %w(box),
1674
+ 'application/vnd.proteus.magazine' => %w(mgz),
1675
+ 'application/vnd.publishare-delta-tree' => %w(qps),
1676
+ 'application/vnd.pvi.ptid1' => %w(ptid),
1677
+ 'application/vnd.quark.quarkxpress' => %w(qxd qxt qwd qwt qxl qxb),
1678
+ 'application/vnd.recordare.musicxml' => %w(mxl),
1679
+ 'application/vnd.recordare.musicxml+xml' => %w(musicxml),
1680
+ 'application/vnd.rim.cod' => %w(cod),
1681
+ 'application/vnd.rn-realmedia' => %w(rm),
1682
+ 'application/vnd.route66.link66+xml' => %w(link66),
1683
+ 'application/vnd.seemail' => %w(see),
1684
+ 'application/vnd.sema' => %w(sema),
1685
+ 'application/vnd.semd' => %w(semd),
1686
+ 'application/vnd.semf' => %w(semf),
1687
+ 'application/vnd.shana.informed.formdata' => %w(ifm),
1688
+ 'application/vnd.shana.informed.formtemplate' => %w(itp),
1689
+ 'application/vnd.shana.informed.interchange' => %w(iif),
1690
+ 'application/vnd.shana.informed.package' => %w(ipk),
1691
+ 'application/vnd.simtech-mindmapper' => %w(twd twds),
1692
+ 'application/vnd.smaf' => %w(mmf),
1693
+ 'application/vnd.smart.teacher' => %w(teacher),
1694
+ 'application/vnd.solent.sdkm+xml' => %w(sdkm sdkd),
1695
+ 'application/vnd.spotfire.dxp' => %w(dxp),
1696
+ 'application/vnd.spotfire.sfs' => %w(sfs),
1697
+ 'application/vnd.stardivision.calc' => %w(sdc),
1698
+ 'application/vnd.stardivision.draw' => %w(sda),
1699
+ 'application/vnd.stardivision.impress' => %w(sdd),
1700
+ 'application/vnd.stardivision.math' => %w(smf),
1701
+ 'application/vnd.stardivision.writer' => %w(sdw),
1702
+ 'application/vnd.stardivision.writer-global' => %w(sgl),
1703
+ 'application/vnd.sun.xml.calc' => %w(sxc),
1704
+ 'application/vnd.sun.xml.calc.template' => %w(stc),
1705
+ 'application/vnd.sun.xml.draw' => %w(sxd),
1706
+ 'application/vnd.sun.xml.draw.template' => %w(std),
1707
+ 'application/vnd.sun.xml.impress' => %w(sxi),
1708
+ 'application/vnd.sun.xml.impress.template' => %w(sti),
1709
+ 'application/vnd.sun.xml.math' => %w(sxm),
1710
+ 'application/vnd.sun.xml.writer' => %w(sxw), # OpenOffice v1.0: Writer Document
1711
+ 'application/vnd.sun.xml.writer.global' => %w(sxg),
1712
+ 'application/vnd.sun.xml.writer.template' => %w(stw),
1713
+ 'application/vnd.sus-calendar' => %w(sus susp),
1714
+ 'application/vnd.svd' => %w(svd),
1715
+ 'application/vnd.symbian.install' => %w(sis sisx),
1716
+ 'application/vnd.syncml+xml' => %w(xsm),
1717
+ 'application/vnd.syncml.dm+wbxml' => %w(bdm),
1718
+ 'application/vnd.syncml.dm+xml' => %w(xdm),
1719
+ 'application/vnd.tao.intent-module-archive' => %w(tao),
1720
+ 'application/vnd.tcpdump.pcap' => %w(pcap cap dmp), # TCPDump pcap packet capture
1721
+ 'application/vnd.tcpdump.pcapng' => %w(pcapng), # TCPDump next gen pcap packet capture
1722
+ 'application/vnd.tmobile-livetv' => %w(tmo),
1723
+ 'application/vnd.trid.tpt' => %w(tpt),
1724
+ 'application/vnd.triscape.mxs' => %w(mxs),
1725
+ 'application/vnd.trueapp' => %w(tra),
1726
+ 'application/vnd.ufdl' => %w(ufd ufdl),
1727
+ 'application/vnd.uiq.theme' => %w(utz),
1728
+ 'application/vnd.umajin' => %w(umj),
1729
+ 'application/vnd.unity' => %w(unityweb),
1730
+ 'application/vnd.uoml+xml' => %w(uoml),
1731
+ 'application/vnd.vcx' => %w(vcx),
1732
+ 'application/vnd.visio' => %w(vsd vst vss vsw), # Microsoft Visio Diagram
1733
+ 'application/vnd.visionary' => %w(vis),
1734
+ 'application/vnd.vsf' => %w(vsf),
1735
+ 'application/vnd.wap.wbxml' => %w(wbxml),
1736
+ 'application/vnd.wap.wmlc' => %w(wmlc), # Compiled WML Document
1737
+ 'application/vnd.wap.wmlscriptc' => %w(wmlsc), # Compiled WML Script
1738
+ 'application/vnd.webturbo' => %w(wtb),
1739
+ 'application/vnd.wolfram.wl' => %w(wl), # Wolfram Language
1740
+ 'application/vnd.wordperfect' => %w(wpd wp wp5 wp6 w60 wp61 wpt), # WordPerfect - Corel Word Processing
1741
+ 'application/vnd.wqd' => %w(wqd),
1742
+ 'application/vnd.wt.stf' => %w(stf),
1743
+ 'application/vnd.xara' => %w(xar),
1744
+ 'application/vnd.xfdl' => %w(xfdl),
1745
+ 'application/vnd.yamaha.hv-dic' => %w(hvd),
1746
+ 'application/vnd.yamaha.hv-script' => %w(hvs),
1747
+ 'application/vnd.yamaha.hv-voice' => %w(hvp),
1748
+ 'application/vnd.yamaha.openscoreformat' => %w(osf),
1749
+ 'application/vnd.yamaha.openscoreformat.osfpvg+xml' => %w(osfpvg),
1750
+ 'application/vnd.yamaha.smaf-audio' => %w(saf),
1751
+ 'application/vnd.yamaha.smaf-phrase' => %w(spf),
1752
+ 'application/vnd.yellowriver-custom-menu' => %w(cmp),
1753
+ 'application/vnd.zul' => %w(zir zirz),
1754
+ 'application/vnd.zzazz.deck+xml' => %w(zaz),
1755
+ 'application/voicexml+xml' => %w(vxml),
1756
+ 'application/warc' => %w(warc), # WARC
1757
+ 'application/warc+gz' => %w(warc.gz), # WARC
1758
+ 'application/wasm' => %w(wasm), # Web Assembly
1759
+ 'application/winhlp' => %w(hlp),
1760
+ 'application/wsdl+xml' => %w(wsdl),
1761
+ 'application/wspolicy+xml' => %w(wspolicy),
1762
+ 'application/x-7z-compressed' => %w(7z), # 7-zip archive
1763
+ 'application/x-abiword' => %w(abw),
1764
+ 'application/x-ace-compressed' => %w(ace),
1765
+ 'application/x-adobe-indesign' => %w(indd), # Adobe InDesign document
1766
+ 'application/x-adobe-indesign-interchange' => %w(inx), # Adobe InDesign Interchange format
1767
+ 'application/x-amf' => %w(amf),
1768
+ 'application/x-amiga-disk-format' => %w(adf), # Amiga Disk File
1769
+ 'application/x-apple-diskimage' => %w(dmg),
1770
+ 'application/x-appleworks' => %w(cwk),
1771
+ 'application/x-archive' => %w(ar a),
1772
+ 'application/x-arj' => %w(arj),
1773
+ 'application/x-asprs' => %w(las laz), # ASPRS Lidar Data Exchange Format
1774
+ 'application/x-authorware-bin' => %w(aab x32 u32 vox),
1775
+ 'application/x-authorware-map' => %w(aam),
1776
+ 'application/x-authorware-seg' => %w(aas),
1777
+ 'application/x-axcrypt' => %w(axx), # AxCrypt
1778
+ 'application/x-bat' => %w(bat cmd), # Windows Batch / Command File
1779
+ 'application/x-bcpio' => %w(bcpio),
1780
+ 'application/x-bibtex-text-file' => %w(bib bibtex),
1781
+ 'application/x-bittorrent' => %w(torrent),
1782
+ 'application/x-brotli' => %w(br brotli),
1783
+ 'application/x-bzip' => %w(bz tbz),
1784
+ 'application/x-bzip2' => %w(bz2 tbz2 boz), # Bzip 2 UNIX Compressed File
1785
+ 'application/x-cdf' => %w(cda), # CD Audio
1786
+ 'application/x-cdlink' => %w(vcd), # Virtual CD-ROM CD Image File
1787
+ 'application/x-chat' => %w(chat),
1788
+ 'application/x-chess-pgn' => %w(pgn),
1789
+ 'application/x-chrome-package' => %w(crx), # Chrome Extension Package
1790
+ 'application/x-compress' => %w(z),
1791
+ 'application/x-corelpresentations' => %w(shw),
1792
+ 'application/x-cpio' => %w(cpio), # UNIX CPIO Archive
1793
+ 'application/x-csh' => %w(csh tcsh),
1794
+ 'application/x-dbf' => %w(dbf dbase dbase3),
1795
+ 'application/x-debian-package' => %w(deb udeb),
1796
+ 'application/x-dex' => %w(dex), # Dalvik Executable Format
1797
+ 'application/x-director' => %w(dir dcr dxr cst cct cxt w3d fgd swa), # Shockwave Movie
1798
+ 'application/x-doom' => %w(wad),
1799
+ 'application/x-dosexec' => %w(exe), # DOS/Windows executable (EXE)
1800
+ 'application/x-dtbncx+xml' => %w(ncx),
1801
+ 'application/x-dtbook+xml' => %w(dtb),
1802
+ 'application/x-dtbresource+xml' => %w(res),
1803
+ 'application/x-dvd-ifo' => %w(ifo bup), # DVD information file
1804
+ 'application/x-dvi' => %w(dvi), # TeX Device Independent Document
1805
+ 'application/x-elc' => %w(elc), # Emacs Lisp bytecode
1806
+ 'application/x-endnote-refer' => %w(enw enr),
1807
+ 'application/x-endnote-style' => %w(ens),
1808
+ 'application/x-erdas-hfa' => %w(hfa),
1809
+ 'application/x-esri-layer' => %w(lyr), # ESRI Layer file
1810
+ 'application/x-fictionbook+xml' => %w(fb2), # FictionBook document
1811
+ 'application/x-filemaker' => %w(fp7), # FileMaker Pro 7
1812
+ 'application/x-font-adobe-metric' => %w(afm acfm amfm), # Adobe Font Metric
1813
+ 'application/x-font-bdf' => %w(bdf),
1814
+ 'application/x-font-ghostscript' => %w(gsf),
1815
+ 'application/x-font-linux-psf' => %w(psf),
1816
+ 'application/x-font-otf' => %w(otf), # OpenType Font
1817
+ 'application/x-font-pcf' => %w(pcf),
1818
+ 'application/x-font-printer-metric' => %w(pfm), # Printer Font Metric
1819
+ 'application/x-font-snf' => %w(snf),
1820
+ 'application/x-font-ttf' => %w(ttf ttc), # TrueType Font
1821
+ 'application/x-font-type1' => %w(pfa pfb),
1822
+ 'application/x-futuresplash' => %w(spl), # Macromedia FutureSplash File
1823
+ 'application/x-geopackage' => %w(gpkg),
1824
+ 'application/x-geopackage; version=1.1Or1.0' => %w(gpkg),
1825
+ 'application/x-gnucash' => %w(gnucash),
1826
+ 'application/x-gnumeric' => %w(gnumeric),
1827
+ 'application/x-grib' => %w(grb grb1 grb2), # General Regularly-distributed Information in Binary form
1828
+ 'application/x-gtar' => %w(gtar), # GNU tar Compressed File Archive (GNU Tape Archive)
1829
+ 'application/x-guitar-pro' => %w(gp4), # Guitar Pro
1830
+ 'application/x-hdf' => %w(hdf he5 h5), # Hierarchical Data Format File
1831
+ 'application/x-ibooks+zip' => %w(ibooks), # Apple iBooks Author publication format
1832
+ 'application/x-internet-archive' => %w(arc), # ARC
1833
+ 'application/x-iso9660-image' => %w(iso), # ISO 9660 CD-ROM filesystem data
1834
+ 'application/x-itunes-ipa' => %w(ipa), # Apple iOS IPA AppStore file
1835
+ 'application/x-java-jnilib' => %w(jnilib), # Java Native Library for OSX
1836
+ 'application/x-java-jnlp-file' => %w(jnlp),
1837
+ 'application/x-java-keystore' => %w(jks), # Java Keystore
1838
+ 'application/x-java-pack200' => %w(pack),
1839
+ 'application/x-jeol-jdf' => %w(jdf), # JDF NMR Spectroscopy
1840
+ 'application/x-killustrator' => %w(kil), # KIllustrator File
1841
+ 'application/x-latex' => %w(latex), # LaTeX Source Document
1842
+ 'application/x-lz4' => %w(lz4), # Second match Legacy Frame
1843
+ 'application/x-lzip' => %w(lz), # Lzip (LZMA) compressed archive
1844
+ 'application/x-lzma' => %w(lzma), # LZMA compressed archive
1845
+ 'application/x-matlab-data' => %w(mat),
1846
+ 'application/x-memgraph' => %w(memgraph), # Apple Xcode Memgraph
1847
+ 'application/x-mobipocket-ebook' => %w(prc mobi), # Mobipocket Ebook
1848
+ 'application/x-ms-application' => %w(application),
1849
+ 'application/x-ms-asx' => %w(asx), # Windows Media Metafile
1850
+ 'application/x-ms-installer' => %w(msi msp mst), # Microsoft Windows Installer
1851
+ 'application/x-ms-wmd' => %w(wmd),
1852
+ 'application/x-ms-wmz' => %w(wmz),
1853
+ 'application/x-ms-xbap' => %w(xbap),
1854
+ 'application/x-msaccess' => %w(accdb mdb),
1855
+ 'application/x-msbinder' => %w(obd),
1856
+ 'application/x-mscardfile' => %w(crd),
1857
+ 'application/x-msclip' => %w(clp),
1858
+ 'application/x-msdownload' => %w(dll com),
1859
+ 'application/x-msmediaview' => %w(mvb m13 m14),
1860
+ 'application/x-msmoney' => %w(mny),
1861
+ 'application/x-mspublisher' => %w(pub),
1862
+ 'application/x-msschedule' => %w(scd),
1863
+ 'application/x-msterminal' => %w(trm),
1864
+ 'application/x-mswrite' => %w(wri),
1865
+ 'application/x-mysql-misam-compressed-index' => %w(myi), # MySQL MISAM Compressed Index
1866
+ 'application/x-mysql-misam-data' => %w(myd), # MySQL MISAM Data
1867
+ 'application/x-nesrom' => %w(nes), # Nintendo Entertainment System ROM
1868
+ 'application/x-netcdf' => %w(nc cdf),
1869
+ 'application/x-openscad' => %w(scad),
1870
+ 'application/x-parquet' => %w(parquet),
1871
+ 'application/x-pkcs12' => %w(p12 pfx),
1872
+ 'application/x-pkcs7-certificates' => %w(p7b spc),
1873
+ 'application/x-pkcs7-certreqresp' => %w(p7r),
1874
+ 'application/x-project' => %w(mpx),
1875
+ 'application/x-prt' => %w(prt),
1876
+ 'application/x-quattro-pro' => %w(wq1 wq2 wkq qpw wb1 wb2 wb3), # Quattro Pro - Corel Spreadsheet (part of WordPerfect Office suite)
1877
+ 'application/x-quattro-pro;version=1+5' => %w(wb1), # Quattro Pro for Windows, version 1, 5
1878
+ 'application/x-quattro-pro;version=1-4' => %w(wq1 wkq), # Quattro Pro for DOS, version 1-4
1879
+ 'application/x-quattro-pro;version=5' => %w(wq2 wkq), # Quattro Pro for DOS, version 5
1880
+ 'application/x-quattro-pro;version=6' => %w(wb2), # Quattro Pro for Windows, version 6
1881
+ 'application/x-rar-compressed' => %w(rar), # RAR archive
1882
+ 'application/x-roxio-toast' => %w(toast),
1883
+ 'application/x-rpm' => %w(rpm), # RedHat Package Manager
1884
+ 'application/x-sas' => %w(sas), # SAS Program
1885
+ 'application/x-sas-access' => %w(sa7 sas7bacs), # SAS Access Descriptor
1886
+ 'application/x-sas-audit' => %w(st7 sas7baud), # SAS Audit
1887
+ 'application/x-sas-backup' => %w(sas7bbak), # SAS Backup
1888
+ 'application/x-sas-catalog' => %w(sc7 sas7bcat), # SAS Catalog
1889
+ 'application/x-sas-data' => %w(sd7 sas7bdat), # SAS Data Set
1890
+ 'application/x-sas-data-index' => %w(si7 sas7bndx), # SAS Data Set Index
1891
+ 'application/x-sas-data-v6' => %w(sd2), # SAS v6 Data Set
1892
+ 'application/x-sas-dmdb' => %w(s7m sas7bdmd), # SAS DMDB Data Mining Database File
1893
+ 'application/x-sas-fdb' => %w(sf7 sas7bfdb), # SAS FDB Consolidation Database File
1894
+ 'application/x-sas-itemstor' => %w(sr7 sas7bitm), # SAS Item Store (ItemStor) File
1895
+ 'application/x-sas-mddb' => %w(sm7 sas7bmdb), # SAS MDDB Multi-Dimensional Database File
1896
+ 'application/x-sas-program-data' => %w(ss7 sas7bpgm), # SAS Stored Program (DATA Step)
1897
+ 'application/x-sas-putility' => %w(sp7 sas7bput), # SAS Permanent Utility
1898
+ 'application/x-sas-transport' => %w(stx), # SAS Transport File
1899
+ 'application/x-sas-utility' => %w(su7 sas7butl), # SAS Utility
1900
+ 'application/x-sas-view' => %w(sv7 sas7bvew), # SAS Data Set View
1901
+ 'application/x-sas-xport' => %w(xpt xport), # SAS XPORT Transfer File
1902
+ 'application/x-sfdu' => %w(sfdu), # Standard Formatted Data Units (SFDUs) data
1903
+ 'application/x-sh' => %w(sh bash), # UNIX/LINUX Shell Script
1904
+ 'application/x-shapefile' => %w(shp), # ESRI Shapefiles
1905
+ 'application/x-shar' => %w(shar),
1906
+ 'application/x-shockwave-flash' => %w(swf), # Adobe Flash
1907
+ 'application/x-sibelius' => %w(sib), # Sibelius
1908
+ 'application/x-silverlight-app' => %w(xap),
1909
+ 'application/x-snappy-framed' => %w(sz), # Snappy Framed
1910
+ 'application/x-spectrum-tzx' => %w(tzx), # TAP (ZX Spectrum)
1911
+ 'application/x-spss-sav' => %w(sav), # SPSS Data File
1912
+ 'application/x-staroffice-template' => %w(vor),
1913
+ 'application/x-stata-do' => %w(do), # Stata DTA Script
1914
+ 'application/x-stata-dta' => %w(dta), # Stata DTA Dataset
1915
+ 'application/x-stuffit' => %w(sit),
1916
+ 'application/x-stuffitx' => %w(sitx),
1917
+ 'application/x-subrip' => %w(srt), # SubRip (srt) subtitles
1918
+ 'application/x-sv4cpio' => %w(sv4cpio),
1919
+ 'application/x-sv4crc' => %w(sv4crc),
1920
+ 'application/x-tar' => %w(tar),
1921
+ 'application/x-tex' => %w(tex), # TeX Source
1922
+ 'application/x-tex-tfm' => %w(tfm),
1923
+ 'application/x-tex-virtual-font' => %w(vf), # TeX Virtual Font format
1924
+ 'application/x-texinfo' => %w(texinfo texi),
1925
+ 'application/x-tika-java-enterprise-archive' => %w(ear),
1926
+ 'application/x-tika-java-web-archive' => %w(war),
1927
+ 'application/x-tika-msworks-spreadsheet' => %w(xlr),
1928
+ 'application/x-tmx' => %w(tmx), # TMX Translation Memory
1929
+ 'application/x-uc2-compressed' => %w(uc2),
1930
+ 'application/x-ustar' => %w(ustar),
1931
+ 'application/x-vmdk' => %w(vmdk), # Virtual Disk Format
1932
+ 'application/x-wais-source' => %w(src),
1933
+ 'application/x-webarchive' => %w(webarchive),
1934
+ 'application/x-x509-cert' => %w(crt),
1935
+ 'application/x-x509-cert;format=der' => %w(der),
1936
+ 'application/x-x509-cert;format=pem' => %w(pem),
1937
+ 'application/x-xfig' => %w(fig),
1938
+ 'application/x-xliff+xml' => %w(xlf xliff), # XLIFF 1.2 document
1939
+ 'application/x-xliff+zip' => %w(xlz), # XLZ Archive
1940
+ 'application/x-xmind' => %w(xmind), # XMind Pro
1941
+ 'application/x-xpinstall' => %w(xpi),
1942
+ 'application/x-xz' => %w(xz),
1943
+ 'application/x-zoo' => %w(zoo),
1944
+ 'application/xenc+xml' => %w(xenc),
1945
+ 'application/xhtml+xml' => %w(xhtml xhtml2 xht),
1946
+ 'application/xml' => %w(xml xsl xsd), # Extensible Markup Language
1947
+ 'application/xml-dtd' => %w(dtd), # XML Document Type Definition
1948
+ 'application/xop+xml' => %w(xop),
1949
+ 'application/xquery' => %w(xq xquery), # XQuery source code
1950
+ 'application/xslfo+xml' => %w(xslfo fo), # XSL Format
1951
+ 'application/xslt+xml' => %w(xslt), # XSL Transformations
1952
+ 'application/xspf+xml' => %w(xspf), # XML Shareable Playlist Format
1953
+ 'application/xv+xml' => %w(mxml xhvml xvml xvm),
1954
+ 'application/zip' => %w(zip zipx), # Compressed Archive File
1955
+ 'application/zstd' => %w(zst), # https://tools.ietf.org/id/draft-kucherawy-dispatch-zstd-01.html
1956
+ 'audio/ac3' => %w(ac3), # Dolby Digital Audio Compression File
1957
+ 'audio/adpcm' => %w(adp),
1958
+ 'audio/amr' => %w(amr),
1959
+ 'audio/basic' => %w(au snd), # uLaw/AU Audio File
1960
+ 'audio/midi' => %w(mid midi kar rmi), # Musical Instrument Digital Interface
1961
+ 'audio/mp4' => %w(mp4a m4a m4b),
1962
+ 'audio/mpeg' => %w(mpga mp2 mp2a mp3 m2a m3a), # MPEG-1 Audio Layer 3
1963
+ 'audio/ogg' => %w(oga), # Ogg Vorbis Audio
1964
+ 'audio/opus' => %w(opus), # Ogg Opus Codec Compressed WAV File
1965
+ 'audio/speex' => %w(spx), # Ogg Speex Codec Compressed WAV File
1966
+ 'audio/vnd.adobe.soundbooth' => %w(asnd),
1967
+ 'audio/vnd.digital-winds' => %w(eol),
1968
+ 'audio/vnd.dts' => %w(dts),
1969
+ 'audio/vnd.dts.hd' => %w(dtshd),
1970
+ 'audio/vnd.lucent.voice' => %w(lvp),
1971
+ 'audio/vnd.ms-playready.media.pya' => %w(pya),
1972
+ 'audio/vnd.nuera.ecelp4800' => %w(ecelp4800),
1973
+ 'audio/vnd.nuera.ecelp7470' => %w(ecelp7470),
1974
+ 'audio/vnd.nuera.ecelp9600' => %w(ecelp9600),
1975
+ 'audio/vnd.wave' => %w(wav),
1976
+ 'audio/vorbis' => %w(ogg), # Ogg Vorbis Codec Compressed WAV File
1977
+ 'audio/x-aac' => %w(aac),
1978
+ 'audio/x-aiff' => %w(aif aiff aifc), # Audio Interchange File Format
1979
+ 'audio/x-caf' => %w(caf), # com.apple.coreaudio-format
1980
+ 'audio/x-flac' => %w(flac), # Free Lossless Audio Codec
1981
+ 'audio/x-matroska' => %w(mka),
1982
+ 'audio/x-mod' => %w(mod),
1983
+ 'audio/x-mpegurl' => %w(m3u), # MP3 Playlist File
1984
+ 'audio/x-ms-wax' => %w(wax),
1985
+ 'audio/x-ms-wma' => %w(wma),
1986
+ 'audio/x-pn-realaudio' => %w(ram ra), # Real Audio
1987
+ 'audio/x-pn-realaudio-plugin' => %w(rmp), # RealMedia Player Plug-in
1988
+ 'audio/x-psf' => %w(psf1 psflib minipsf minipsf1 gslib minigsf), # Portable Sound Format
1989
+ 'audio/x-sap' => %w(sap), # Slight Atari Player
1990
+ 'chemical/x-cdx' => %w(cdx),
1991
+ 'chemical/x-cif' => %w(cif),
1992
+ 'chemical/x-cmdf' => %w(cmdf),
1993
+ 'chemical/x-cml' => %w(cml),
1994
+ 'chemical/x-csml' => %w(csml),
1995
+ 'chemical/x-pdb' => %w(pdb), # Brookhaven Protein Databank File
1996
+ 'chemical/x-xyz' => %w(xyz),
1997
+ 'font/woff' => %w(woff),
1998
+ 'font/woff2' => %w(woff2),
1999
+ 'image/aces' => %w(exr), # ACES Image Container File
2000
+ 'image/avif' => %w(avif), # AV1 Image File
2001
+ 'image/bmp' => %w(bmp dib), # Windows bitmap
2002
+ 'image/cgm' => %w(cgm), # Computer Graphics Metafile
2003
+ 'image/emf' => %w(emf), # Enhanced Metafile
2004
+ 'image/g3fax' => %w(g3),
2005
+ 'image/gif' => %w(gif), # Graphics Interchange Format
2006
+ 'image/heic' => %w(heic),
2007
+ 'image/heif' => %w(heif),
2008
+ 'image/icns' => %w(icns), # Apple Icon Image Format
2009
+ 'image/ief' => %w(ief),
2010
+ 'image/jp2' => %w(jp2), # JPEG 2000 Part 1 (JP2)
2011
+ 'image/jpeg' => %w(jpg jpeg jpe jif jfif jfi), # Joint Photographic Experts Group
2012
+ 'image/jpm' => %w(jpm jpgm), # JPEG 2000 Part 6 (JPM)
2013
+ 'image/jpx' => %w(jpf), # JPEG 2000 Part 2 (JPX)
2014
+ 'image/jxl' => %w(jxl), # JPEG XL
2015
+ 'image/nitf' => %w(ntf nitf),
2016
+ 'image/png' => %w(png), # Portable Network Graphics
2017
+ 'image/prs.btif' => %w(btif),
2018
+ 'image/svg+xml' => %w(svg svgz), # Scalable Vector Graphics
2019
+ 'image/tiff' => %w(tiff tif), # Tagged Image File Format
2020
+ 'image/vnd.adobe.photoshop' => %w(psd), # Photoshop Image
2021
+ 'image/vnd.adobe.premiere' => %w(ppj),
2022
+ 'image/vnd.dgn' => %w(dgn dgnlib cel),
2023
+ 'image/vnd.djvu' => %w(djvu djv),
2024
+ 'image/vnd.dwg' => %w(dwg), # AutoCad Drawing
2025
+ 'image/vnd.dxb' => %w(dxb), # AutoCAD DXF simplified Binary
2026
+ 'image/vnd.dxf' => %w(dxf), # AutoCAD DXF
2027
+ 'image/vnd.fastbidsheet' => %w(fbs),
2028
+ 'image/vnd.fpx' => %w(fpx),
2029
+ 'image/vnd.fst' => %w(fst),
2030
+ 'image/vnd.fujixerox.edmics-mmr' => %w(mmr),
2031
+ 'image/vnd.fujixerox.edmics-rlc' => %w(rlc),
2032
+ 'image/vnd.microsoft.icon' => %w(ico),
2033
+ 'image/vnd.ms-modi' => %w(mdi), # Microsoft Document Imaging
2034
+ 'image/vnd.net-fpx' => %w(npx),
2035
+ 'image/vnd.wap.wbmp' => %w(wbmp), # Wireless Bitmap File Format
2036
+ 'image/vnd.xiff' => %w(xif),
2037
+ 'image/vnd.zbrush.dcx' => %w(dcx), # ZSoft Multi-Page Paintbrush
2038
+ 'image/vnd.zbrush.pcx' => %w(pcx), # ZSoft Paintbrush PiCture eXchange
2039
+ 'image/webp' => %w(webp),
2040
+ 'image/wmf' => %w(wmf), # Windows Metafile
2041
+ 'image/x-3ds' => %w(3ds), # 3D Studio (V1)
2042
+ 'image/x-bpg' => %w(bpg), # Better Portable Graphics
2043
+ 'image/x-canon-cr2' => %w(cr2), # Canon raw image, version 2, TIFF-based
2044
+ 'image/x-canon-cr3' => %w(cr3), # Canon raw image, version 3, Quicktime-based
2045
+ 'image/x-cmu-raster' => %w(ras),
2046
+ 'image/x-cmx' => %w(cmx),
2047
+ 'image/x-dpx' => %w(dpx), # Digital Picture Exchange from SMPTE
2048
+ 'image/x-emf-compressed' => %w(emz), # Compressed Enhanced Metafile
2049
+ 'image/x-freehand' => %w(fh fhc fh4 fh40 fh5 fh50 fh7 fh8 fh9 fh10 fh11 fh12 ft7 ft8 ft9 ft10 ft11 ft12), # FreeHand image
2050
+ 'image/x-jbig2' => %w(jb2 jbig2), # A lossless image compression standard from the Joint Bi-level Image Experts Group.
2051
+ 'image/x-jp2-codestream' => %w(j2c), # JPEG 2000 Codestream
2052
+ 'image/x-pict' => %w(pic pct pict), # Apple Macintosh QuickDraw/PICT Format
2053
+ 'image/x-portable-anymap' => %w(pnm), # Portable Any Map
2054
+ 'image/x-portable-arbitrarymap' => %w(pam), # UNIX Portable Bitmap Graphic Arbitrary Map
2055
+ 'image/x-portable-bitmap' => %w(pbm), # Portable Bit Map
2056
+ 'image/x-portable-graymap' => %w(pgm), # Portable Graymap Graphic
2057
+ 'image/x-portable-pixmap' => %w(ppm), # UNIX Portable Bitmap Graphic
2058
+ 'image/x-raw-adobe' => %w(dng), # Adobe Digital Negative
2059
+ 'image/x-raw-canon' => %w(crw), # Canon raw image
2060
+ 'image/x-raw-casio' => %w(bay), # Casio raw image
2061
+ 'image/x-raw-epson' => %w(erf), # Epson raw image
2062
+ 'image/x-raw-fuji' => %w(raf), # Fuji raw image
2063
+ 'image/x-raw-hasselblad' => %w(3fr), # Hasselblad raw image
2064
+ 'image/x-raw-imacon' => %w(fff), # Imacon raw image
2065
+ 'image/x-raw-kodak' => %w(k25 kdc dcs drf), # Kodak raw image
2066
+ 'image/x-raw-leaf' => %w(mos), # Leaf raw image
2067
+ 'image/x-raw-logitech' => %w(pxn), # Logitech raw image
2068
+ 'image/x-raw-mamiya' => %w(mef), # Mamiya raw image
2069
+ 'image/x-raw-minolta' => %w(mrw), # Minolta raw image
2070
+ 'image/x-raw-nikon' => %w(nef nrw), # Nikon raw image
2071
+ 'image/x-raw-olympus' => %w(orf), # Olympus raw image
2072
+ 'image/x-raw-panasonic' => %w(raw rw2), # Panasonic raw image
2073
+ 'image/x-raw-pentax' => %w(ptx pef), # Pentax raw image
2074
+ 'image/x-raw-phaseone' => %w(iiq), # Phase One raw image
2075
+ 'image/x-raw-rawzor' => %w(rwz), # Rawzor raw image
2076
+ 'image/x-raw-red' => %w(r3d), # Red raw image
2077
+ 'image/x-raw-sigma' => %w(x3f), # Sigma raw image
2078
+ 'image/x-raw-sony' => %w(arw srf sr2), # Sony raw image
2079
+ 'image/x-rgb' => %w(rgb), # Silicon Graphics RGB Bitmap
2080
+ 'image/x-tga' => %w(tga icb vda), # Targa image data
2081
+ 'image/x-xbitmap' => %w(xbm),
2082
+ 'image/x-xcf' => %w(xcf), # GIMP Image File
2083
+ 'image/x-xpixmap' => %w(xpm),
2084
+ 'image/x-xwindowdump' => %w(xwd), # X Windows Dump
2085
+ 'message/rfc822' => %w(eml mime),
2086
+ 'message/x-emlx' => %w(emlx),
2087
+ 'model/e57' => %w(e57), # 3d imaging data exchange
2088
+ 'model/iges' => %w(igs iges), # Initial Graphics Exchange Specification Format
2089
+ 'model/mesh' => %w(msh mesh silo),
2090
+ 'model/vnd.dwf' => %w(dwf), # AutoCAD Design Web Format
2091
+ 'model/vnd.dwfx+xps' => %w(dwfx), # AutoCAD Design Web Format
2092
+ 'model/vnd.gdl' => %w(gdl),
2093
+ 'model/vnd.gtw' => %w(gtw),
2094
+ 'model/vnd.mts' => %w(mts),
2095
+ 'model/vnd.vtu' => %w(vtu),
2096
+ 'model/vrml' => %w(wrl vrml),
2097
+ 'model/x.stl-binary' => %w(stl), # no magic available
2098
+ 'multipart/related' => %w(mht mhtml), # MIME Encapsulation of Aggregate HTML Documents
2099
+ 'text/asp' => %w(asp), # Active Server Page
2100
+ 'text/aspdotnet' => %w(aspx), # ASP .NET
2101
+ 'text/calendar' => %w(ics ifb),
2102
+ 'text/css' => %w(css), # Cascading Style Sheet
2103
+ 'text/csv' => %w(csv),
2104
+ 'text/html' => %w(html htm), # HyperText Markup Language
2105
+ 'text/iso19139+xml' => %w(iso19139),
2106
+ 'text/javascript' => %w(js mjs), # JavaScript Source Code
2107
+ 'text/plain' => %w(txt text def list in aart ac am apt bsh classpath cnd cwiki data dcl dsp dsw egrm ent ft fn fv grm g handlers htc ihtml jmx junit jx manifest m4 mf mf meta mdo n3 pen pod pom project rng rnx roles schemas tld types vm vsl wsdd xargs xcat xegrm xgrm xlex xlog xmap xroles xsamples xsp xtest xweb xwelcome),
2108
+ 'text/prs.lines.tag' => %w(dsc),
2109
+ 'text/richtext' => %w(rtx),
2110
+ 'text/sgml' => %w(sgml sgm),
2111
+ 'text/tab-separated-values' => %w(tsv),
2112
+ 'text/troff' => %w(t tr roff nroff man me ms), # Roff/nroff/troff/groff Unformatted Manual Page (UNIX)
2113
+ 'text/uri-list' => %w(uri uris urls),
2114
+ 'text/vnd.curl' => %w(curl),
2115
+ 'text/vnd.curl.dcurl' => %w(dcurl),
2116
+ 'text/vnd.curl.mcurl' => %w(mcurl),
2117
+ 'text/vnd.curl.scurl' => %w(scurl),
2118
+ 'text/vnd.fly' => %w(fly),
2119
+ 'text/vnd.fmi.flexstor' => %w(flx),
2120
+ 'text/vnd.graphviz' => %w(gv), # Graphviz Graph Visualization Software
2121
+ 'text/vnd.in3d.3dml' => %w(3dml),
2122
+ 'text/vnd.in3d.spot' => %w(spot),
2123
+ 'text/vnd.iptc.anpa' => %w(anpa), # American Newspaper Publishers Association Wire Feeds
2124
+ 'text/vnd.sun.j2me.app-descriptor' => %w(jad),
2125
+ 'text/vnd.wap.wml' => %w(wml),
2126
+ 'text/vnd.wap.wmlscript' => %w(wmls), # WML Script
2127
+ 'text/vtt' => %w(vtt), # Web Video Text Tracks Format
2128
+ 'text/x-actionscript' => %w(as), # ActionScript source code
2129
+ 'text/x-ada' => %w(ada adb ads), # Ada source code
2130
+ 'text/x-applescript' => %w(applescript), # AppleScript source code
2131
+ 'text/x-asciidoc' => %w(asciidoc adoc ad ad.txt adoc.txt), # Asciidoc source code
2132
+ 'text/x-aspectj' => %w(aj), # AspectJ source code
2133
+ 'text/x-assembly' => %w(s s asm), # Assembler source code
2134
+ 'text/x-awk' => %w(awk), # AWK script
2135
+ 'text/x-basic' => %w(bas bas bas), # Basic source code
2136
+ 'text/x-c++hdr' => %w(hpp hxx hh h h++ hp hpp), # C++ source code header
2137
+ 'text/x-c++src' => %w(cpp cxx cc c c++ cpp), # C++ source code
2138
+ 'text/x-cgi' => %w(cgi), # CGI script
2139
+ 'text/x-chdr' => %w(h), # C source code header
2140
+ 'text/x-clojure' => %w(clj), # Clojure source code
2141
+ 'text/x-cobol' => %w(cbl cbl cbl cob cob cob), # COBOL source code
2142
+ 'text/x-coffeescript' => %w(coffee), # CoffeeScript source code
2143
+ 'text/x-coldfusion' => %w(cfm cfml cfc), # ColdFusion source code
2144
+ 'text/x-common-lisp' => %w(cl jl lisp lsp), # Common Lisp source code
2145
+ 'text/x-config' => %w(config conf cfg xconf),
2146
+ 'text/x-csharp' => %w(cs), # C# source code
2147
+ 'text/x-csrc' => %w(c), # C source code
2148
+ 'text/x-d' => %w(d), # D source code
2149
+ 'text/x-diff' => %w(diff patch),
2150
+ 'text/x-eiffel' => %w(e), # Eiffel source code
2151
+ 'text/x-emacs-lisp' => %w(el), # Emacs Lisp source code
2152
+ 'text/x-erlang' => %w(erl), # Erlang source code
2153
+ 'text/x-expect' => %w(exp), # Expect Script
2154
+ 'text/x-forth' => %w(4th), # Forth source code
2155
+ 'text/x-fortran' => %w(f f for f77 f90), # Fortran source code
2156
+ 'text/x-go' => %w(go), # Go source code
2157
+ 'text/x-groovy' => %w(groovy), # Groovy source code
2158
+ 'text/x-haml' => %w(haml), # HAML source code
2159
+ 'text/x-haskell' => %w(hs lhs), # Haskell source code
2160
+ 'text/x-haxe' => %w(hx), # Haxe source code
2161
+ 'text/x-idl' => %w(idl), # Interface Definition Language
2162
+ 'text/x-ini' => %w(ini), # Configuration file
2163
+ 'text/x-java-properties' => %w(properties), # Java Properties
2164
+ 'text/x-java-source' => %w(java), # Java source code
2165
+ 'text/x-jsp' => %w(jsp), # Java Server Page
2166
+ 'text/x-less' => %w(less), # LESS source code
2167
+ 'text/x-lex' => %w(l), # Lex/Flex source code
2168
+ 'text/x-log' => %w(log), # application log
2169
+ 'text/x-lua' => %w(lua), # Lua source code
2170
+ 'text/x-ml' => %w(ml), # ML source code
2171
+ 'text/x-modula' => %w(m3 i3 mg ig), # Modula source code
2172
+ 'text/x-objcsrc' => %w(m), # Objective-C source code
2173
+ 'text/x-ocaml' => %w(ocaml mli), # Ocaml source code
2174
+ 'text/x-pascal' => %w(p pp pas pas dpr), # Pascal source code
2175
+ 'text/x-perl' => %w(pl pm al perl), # Perl script
2176
+ 'text/x-php' => %w(php php3 php4), # PHP script
2177
+ 'text/x-prolog' => %w(pro), # Prolog source code
2178
+ 'text/x-python' => %w(py), # Python script
2179
+ 'text/x-rexx' => %w(rexx), # Rexx source code
2180
+ 'text/x-rsrc' => %w(r), # R source code
2181
+ 'text/x-rst' => %w(rest rst restx), # reStructuredText source code
2182
+ 'text/x-ruby' => %w(rb), # Ruby source code
2183
+ 'text/x-sass' => %w(sass),
2184
+ 'text/x-scala' => %w(scala), # Scala source code
2185
+ 'text/x-scheme' => %w(scm), # Scheme source code
2186
+ 'text/x-scss' => %w(scss),
2187
+ 'text/x-sed' => %w(sed), # Sed code
2188
+ 'text/x-setext' => %w(etx),
2189
+ 'text/x-sql' => %w(sql), # SQL code
2190
+ 'text/x-stsrc' => %w(st), # Smalltalk source code
2191
+ 'text/x-tcl' => %w(itk tcl tk), # Tcl script
2192
+ 'text/x-uuencode' => %w(uu),
2193
+ 'text/x-vbasic' => %w(cls cls cls frm frm frm), # Visual basic source code
2194
+ 'text/x-vbdotnet' => %w(vb), # VB.NET source code
2195
+ 'text/x-vbscript' => %w(vbs), # VBScript source code
2196
+ 'text/x-vcalendar' => %w(vcs),
2197
+ 'text/x-vcard' => %w(vcf),
2198
+ 'text/x-verilog' => %w(v), # Verilog source code
2199
+ 'text/x-vhdl' => %w(vhd vhdl), # VHDL source code
2200
+ 'text/x-web-markdown' => %w(md mdtext mkd markdown), # Markdown source code
2201
+ 'text/x-yacc' => %w(y), # Yacc/Bison source code
2202
+ 'text/x-yaml' => %w(yaml yml), # YAML source code
2203
+ 'video/3gpp' => %w(3gp),
2204
+ 'video/3gpp2' => %w(3g2),
2205
+ 'video/h261' => %w(h261),
2206
+ 'video/h263' => %w(h263),
2207
+ 'video/h264' => %w(h264),
2208
+ 'video/iso.segment' => %w(m4s),
2209
+ 'video/jpeg' => %w(jpgv),
2210
+ 'video/mj2' => %w(mj2 mjp2), # JPEG 2000 Part 3 (Motion JPEG, MJ2)
2211
+ 'video/mp4' => %w(mp4 mp4v mpg4),
2212
+ 'video/mpeg' => %w(mpeg mpg mpe m1v m2v), # MPEG Movie Clip
2213
+ 'video/ogg' => %w(ogv), # Ogg Vorbis Video
2214
+ 'video/quicktime' => %w(qt mov), # QuickTime Video
2215
+ 'video/vnd.fvt' => %w(fvt),
2216
+ 'video/vnd.mpegurl' => %w(mxu m4u),
2217
+ 'video/vnd.ms-playready.media.pyv' => %w(pyv),
2218
+ 'video/vnd.vivo' => %w(viv),
2219
+ 'video/webm' => %w(webm),
2220
+ 'video/x-dirac' => %w(drc), # Ogg Packaged Dirac Video
2221
+ 'video/x-f4v' => %w(f4v),
2222
+ 'video/x-flc' => %w(flc),
2223
+ 'video/x-fli' => %w(fli),
2224
+ 'video/x-flv' => %w(flv),
2225
+ 'video/x-jng' => %w(jng),
2226
+ 'video/x-m4v' => %w(m4v),
2227
+ 'video/x-matroska' => %w(mkv),
2228
+ 'video/x-mng' => %w(mng),
2229
+ 'video/x-ms-asf' => %w(asf),
2230
+ 'video/x-ms-wm' => %w(wm),
2231
+ 'video/x-ms-wmv' => %w(wmv),
2232
+ 'video/x-ms-wmx' => %w(wmx),
2233
+ 'video/x-ms-wvx' => %w(wvx),
2234
+ 'video/x-msvideo' => %w(avi), # Audio Video Interleave File
2235
+ 'video/x-ogm' => %w(ogm), # Ogg Packaged OGM Video
2236
+ 'video/x-sgi-movie' => %w(movie),
2237
+ 'x-conference/x-cooltalk' => %w(ice), # Cooltalk Audio
2238
+ }
2239
+ TYPE_PARENTS = {
2240
+ 'application/bizagi-modeler' => %w(application/zip),
2241
+ 'application/dash+xml' => %w(application/xml),
2242
+ 'application/dif+xml' => %w(application/xml),
2243
+ 'application/dita+xml;format=map' => %w(application/dita+xml),
2244
+ 'application/dita+xml;format=topic' => %w(application/dita+xml),
2245
+ 'application/dita+xml;format=val' => %w(application/dita+xml),
2246
+ 'application/hwp+zip' => %w(application/zip),
2247
+ 'application/illustrator' => %w(application/pdf),
2248
+ 'application/java-archive' => %w(application/zip),
2249
+ 'application/json' => %w(text/javascript),
2250
+ 'application/manifest+json' => %w(application/json),
2251
+ 'application/mathematica' => %w(text/plain),
2252
+ 'application/mbox' => %w(text/x-tika-text-based-message),
2253
+ 'application/mp4' => %w(application/quicktime),
2254
+ 'application/msword' => %w(application/x-tika-msoffice),
2255
+ 'application/onenote; format=package' => %w(application/vnd.ms-cab-compressed),
2256
+ 'application/onenote;format=one' => %w(application/onenote),
2257
+ 'application/onenote;format=onetoc2' => %w(application/onenote),
2258
+ 'application/rdf+xml' => %w(application/xml),
2259
+ 'application/relax-ng-compact-syntax' => %w(text/plain),
2260
+ 'application/rtf' => %w(text/plain),
2261
+ 'application/sldworks' => %w(application/x-tika-msoffice),
2262
+ 'application/smil+xml' => %w(application/xml),
2263
+ 'application/ttml+xml' => %w(application/xml),
2264
+ 'application/vnd.adobe.indesign-idml-package' => %w(application/zip),
2265
+ 'application/vnd.adobe.xdp+xml' => %w(application/xml),
2266
+ 'application/vnd.adobe.xfdf' => %w(application/xml),
2267
+ 'application/vnd.android.package-archive' => %w(application/java-archive),
2268
+ 'application/vnd.apple.keynote' => %w(application/vnd.apple.iwork),
2269
+ 'application/vnd.apple.numbers' => %w(application/vnd.apple.iwork),
2270
+ 'application/vnd.apple.pages' => %w(application/vnd.apple.iwork),
2271
+ 'application/vnd.etsi.asic-e+zip' => %w(application/zip),
2272
+ 'application/vnd.etsi.asic-s+zip' => %w(application/zip),
2273
+ 'application/vnd.google-earth.kml+xml' => %w(application/xml),
2274
+ 'application/vnd.google-earth.kmz' => %w(application/zip),
2275
+ 'application/vnd.iptc.g2.newsmessage+xml' => %w(application/xml),
2276
+ 'application/vnd.java.hprof.text' => %w(text/plain),
2277
+ 'application/vnd.lotus-1-2-3;version=2' => %w(application/vnd.lotus-1-2-3),
2278
+ 'application/vnd.lotus-1-2-3;version=3' => %w(application/vnd.lotus-1-2-3),
2279
+ 'application/vnd.lotus-1-2-3;version=4' => %w(application/vnd.lotus-1-2-3),
2280
+ 'application/vnd.lotus-1-2-3;version=97+9.x' => %w(application/vnd.lotus-1-2-3),
2281
+ 'application/vnd.mindjet.mindmanager' => %w(application/zip),
2282
+ 'application/vnd.ms-excel' => %w(application/x-tika-msoffice),
2283
+ 'application/vnd.ms-excel.addin.macroenabled.12' => %w(application/x-tika-ooxml),
2284
+ 'application/vnd.ms-excel.sheet.binary.macroenabled.12' => %w(application/x-tika-ooxml),
2285
+ 'application/vnd.ms-excel.sheet.macroenabled.12' => %w(application/x-tika-ooxml),
2286
+ 'application/vnd.ms-excel.template.macroenabled.12' => %w(application/x-tika-ooxml),
2287
+ 'application/vnd.ms-outlook' => %w(application/x-tika-msoffice),
2288
+ 'application/vnd.ms-powerpoint' => %w(application/x-tika-msoffice),
2289
+ 'application/vnd.ms-powerpoint.addin.macroenabled.12' => %w(application/x-tika-ooxml),
2290
+ 'application/vnd.ms-powerpoint.presentation.macroenabled.12' => %w(application/x-tika-ooxml),
2291
+ 'application/vnd.ms-powerpoint.slide.macroenabled.12' => %w(application/x-tika-ooxml),
2292
+ 'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => %w(application/x-tika-ooxml),
2293
+ 'application/vnd.ms-powerpoint.template.macroenabled.12' => %w(application/x-tika-ooxml),
2294
+ 'application/vnd.ms-project' => %w(application/x-tika-msoffice),
2295
+ 'application/vnd.ms-visio.drawing' => %w(application/x-tika-visio-ooxml),
2296
+ 'application/vnd.ms-visio.drawing.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
2297
+ 'application/vnd.ms-visio.stencil' => %w(application/x-tika-visio-ooxml),
2298
+ 'application/vnd.ms-visio.stencil.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
2299
+ 'application/vnd.ms-visio.template' => %w(application/x-tika-visio-ooxml),
2300
+ 'application/vnd.ms-visio.template.macroEnabled.12' => %w(application/x-tika-visio-ooxml),
2301
+ 'application/vnd.ms-word.document.macroenabled.12' => %w(application/x-tika-ooxml),
2302
+ 'application/vnd.ms-word.template.macroenabled.12' => %w(application/x-tika-ooxml),
2303
+ 'application/vnd.ms-works' => %w(application/x-tika-msoffice),
2304
+ 'application/vnd.ms-xpsdocument' => %w(application/x-tika-ooxml),
2305
+ 'application/vnd.oasis.opendocument.chart' => %w(application/zip),
2306
+ 'application/vnd.oasis.opendocument.chart-template' => %w(application/zip),
2307
+ 'application/vnd.oasis.opendocument.flat.presentation' => %w(application/vnd.oasis.opendocument.tika.flat.document),
2308
+ 'application/vnd.oasis.opendocument.flat.spreadsheet' => %w(application/vnd.oasis.opendocument.tika.flat.document),
2309
+ 'application/vnd.oasis.opendocument.flat.text' => %w(application/vnd.oasis.opendocument.tika.flat.document),
2310
+ 'application/vnd.oasis.opendocument.formula' => %w(application/zip),
2311
+ 'application/vnd.oasis.opendocument.formula-template' => %w(application/zip),
2312
+ 'application/vnd.oasis.opendocument.graphics' => %w(application/zip),
2313
+ 'application/vnd.oasis.opendocument.graphics-template' => %w(application/zip),
2314
+ 'application/vnd.oasis.opendocument.image' => %w(application/zip),
2315
+ 'application/vnd.oasis.opendocument.image-template' => %w(application/zip),
2316
+ 'application/vnd.oasis.opendocument.presentation' => %w(application/zip),
2317
+ 'application/vnd.oasis.opendocument.presentation-template' => %w(application/zip),
2318
+ 'application/vnd.oasis.opendocument.spreadsheet' => %w(application/zip),
2319
+ 'application/vnd.oasis.opendocument.spreadsheet-template' => %w(application/zip),
2320
+ 'application/vnd.oasis.opendocument.text' => %w(application/zip),
2321
+ 'application/vnd.oasis.opendocument.text-master' => %w(application/zip),
2322
+ 'application/vnd.oasis.opendocument.text-template' => %w(application/zip),
2323
+ 'application/vnd.oasis.opendocument.text-web' => %w(application/zip),
2324
+ 'application/vnd.openofficeorg.autotext' => %w(application/zip),
2325
+ 'application/vnd.openofficeorg.extension' => %w(application/zip),
2326
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => %w(application/x-tika-ooxml),
2327
+ 'application/vnd.openxmlformats-officedocument.presentationml.slide' => %w(application/x-tika-ooxml),
2328
+ 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => %w(application/x-tika-ooxml),
2329
+ 'application/vnd.openxmlformats-officedocument.presentationml.template' => %w(application/x-tika-ooxml),
2330
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => %w(application/x-tika-ooxml),
2331
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => %w(application/x-tika-ooxml),
2332
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => %w(application/x-tika-ooxml),
2333
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => %w(application/x-tika-ooxml),
2334
+ 'application/vnd.stardivision.calc' => %w(application/x-tika-staroffice),
2335
+ 'application/vnd.stardivision.draw' => %w(application/x-tika-staroffice),
2336
+ 'application/vnd.stardivision.impress' => %w(application/x-tika-staroffice),
2337
+ 'application/vnd.stardivision.writer' => %w(application/x-tika-staroffice),
2338
+ 'application/vnd.visio' => %w(application/x-tika-msoffice),
2339
+ 'application/vnd.wolfram.wl' => %w(application/mathematica),
2340
+ 'application/x-adobe-indesign-interchange' => %w(application/xml),
2341
+ 'application/x-amf' => %w(application/xml),
2342
+ 'application/x-bat' => %w(text/plain),
2343
+ 'application/x-bibtex-text-file' => %w(text/plain),
2344
+ 'application/x-bzip2' => %w(application/x-bzip),
2345
+ 'application/x-corelpresentations' => %w(application/x-tika-msoffice),
2346
+ 'application/x-debian-package' => %w(application/x-archive),
2347
+ 'application/x-dosexec' => %w(application/x-msdownload),
2348
+ 'application/x-esri-layer' => %w(application/x-tika-msoffice),
2349
+ 'application/x-fictionbook+xml' => %w(application/xml),
2350
+ 'application/x-geopackage' => %w(application/x-sqlite3),
2351
+ 'application/x-geopackage; version=1.1Or1.0' => %w(application/x-sqlite3),
2352
+ 'application/x-gtar' => %w(application/x-tar),
2353
+ 'application/x-ibooks+zip' => %w(application/epub+zip),
2354
+ 'application/x-itunes-ipa' => %w(application/zip),
2355
+ 'application/x-java-jnilib' => %w(application/x-mach-o-universal),
2356
+ 'application/x-latex' => %w(application/x-tex),
2357
+ 'application/x-memgraph' => %w(application/x-bplist),
2358
+ 'application/x-ms-asx' => %w(application/xml),
2359
+ 'application/x-ms-installer' => %w(application/x-tika-msoffice),
2360
+ 'application/x-ms-wmz' => %w(application/gzip),
2361
+ 'application/x-mspublisher' => %w(application/x-tika-msoffice),
2362
+ 'application/x-mysql-misam-compressed-index' => %w(application/x-mysql-db),
2363
+ 'application/x-mysql-misam-data' => %w(application/x-mysql-db),
2364
+ 'application/x-openscad' => %w(text/plain),
2365
+ 'application/x-project' => %w(text/plain),
2366
+ 'application/x-quattro-pro' => %w(application/x-tika-msoffice),
2367
+ 'application/x-quattro-pro;version=1+5' => %w(application/x-quattro-pro),
2368
+ 'application/x-quattro-pro;version=1-4' => %w(application/x-quattro-pro),
2369
+ 'application/x-quattro-pro;version=5' => %w(application/x-quattro-pro),
2370
+ 'application/x-quattro-pro;version=6' => %w(application/x-quattro-pro),
2371
+ 'application/x-roxio-toast' => %w(application/x-iso9660-image),
2372
+ 'application/x-sas' => %w(text/plain),
2373
+ 'application/x-sfdu' => %w(text/plain),
2374
+ 'application/x-sh' => %w(text/plain),
2375
+ 'application/x-staroffice-template' => %w(application/x-tika-staroffice),
2376
+ 'application/x-subrip' => %w(text/plain),
2377
+ 'application/x-tex' => %w(text/plain),
2378
+ 'application/x-tika-java-enterprise-archive' => %w(application/java-archive),
2379
+ 'application/x-tika-java-web-archive' => %w(application/java-archive),
2380
+ 'application/x-tika-msworks-spreadsheet' => %w(application/vnd.ms-excel),
2381
+ 'application/x-tmx' => %w(application/xml),
2382
+ 'application/x-webarchive' => %w(application/x-bplist),
2383
+ 'application/x-x509-cert;format=der' => %w(application/x-x509-cert),
2384
+ 'application/x-x509-cert;format=pem' => %w(application/x-x509-cert),
2385
+ 'application/x-xliff+xml' => %w(application/xml),
2386
+ 'application/x-xliff+zip' => %w(application/zip),
2387
+ 'application/x-xmind' => %w(application/zip),
2388
+ 'application/xml' => %w(text/plain),
2389
+ 'application/xml-dtd' => %w(text/plain),
2390
+ 'application/xquery' => %w(text/plain),
2391
+ 'audio/mp4' => %w(video/mp4),
2392
+ 'audio/ogg' => %w(application/ogg),
2393
+ 'audio/opus' => %w(audio/ogg),
2394
+ 'audio/speex' => %w(audio/ogg),
2395
+ 'audio/vorbis' => %w(audio/ogg),
2396
+ 'audio/x-matroska' => %w(application/x-matroska),
2397
+ 'audio/x-ms-wma' => %w(video/x-ms-asf),
2398
+ 'image/jp2' => %w(image/x-jp2-container),
2399
+ 'image/jpm' => %w(image/x-jp2-container),
2400
+ 'image/jpx' => %w(image/x-jp2-container),
2401
+ 'image/svg+xml' => %w(application/xml),
2402
+ 'image/vnd.adobe.premiere' => %w(application/xml),
2403
+ 'image/x-canon-cr2' => %w(image/tiff),
2404
+ 'image/x-canon-cr3' => %w(video/quicktime),
2405
+ 'image/x-emf-compressed' => %w(application/gzip),
2406
+ 'image/x-portable-arbitrarymap' => %w(image/x-portable-anymap),
2407
+ 'image/x-portable-bitmap' => %w(image/x-portable-anymap),
2408
+ 'image/x-portable-graymap' => %w(image/x-portable-anymap),
2409
+ 'image/x-portable-pixmap' => %w(image/x-portable-anymap),
2410
+ 'image/x-xbitmap' => %w(text/x-c),
2411
+ 'message/rfc822' => %w(text/x-tika-text-based-message),
2412
+ 'message/x-emlx' => %w(text/x-tika-text-based-message),
2413
+ 'model/vnd.dwfx+xps' => %w(application/x-tika-ooxml),
2414
+ 'multipart/related' => %w(message/rfc822),
2415
+ 'text/asp' => %w(text/plain),
2416
+ 'text/aspdotnet' => %w(text/plain),
2417
+ 'text/calendar' => %w(text/plain),
2418
+ 'text/css' => %w(text/plain),
2419
+ 'text/csv' => %w(text/plain),
2420
+ 'text/iso19139+xml' => %w(application/xml),
2421
+ 'text/javascript' => %w(text/plain),
2422
+ 'text/vnd.graphviz' => %w(text/plain),
2423
+ 'text/vtt' => %w(text/plain),
2424
+ 'text/x-actionscript' => %w(text/plain),
2425
+ 'text/x-ada' => %w(text/plain),
2426
+ 'text/x-applescript' => %w(text/plain),
2427
+ 'text/x-asciidoc' => %w(text/plain),
2428
+ 'text/x-aspectj' => %w(text/plain),
2429
+ 'text/x-assembly' => %w(text/plain),
2430
+ 'text/x-awk' => %w(text/plain),
2431
+ 'text/x-basic' => %w(text/plain),
2432
+ 'text/x-c++hdr' => %w(text/plain),
2433
+ 'text/x-c++src' => %w(text/plain),
2434
+ 'text/x-cgi' => %w(text/plain),
2435
+ 'text/x-chdr' => %w(text/plain),
2436
+ 'text/x-clojure' => %w(text/plain),
2437
+ 'text/x-cobol' => %w(text/plain),
2438
+ 'text/x-coffeescript' => %w(text/plain),
2439
+ 'text/x-coldfusion' => %w(text/plain),
2440
+ 'text/x-common-lisp' => %w(text/plain),
2441
+ 'text/x-config' => %w(text/plain),
2442
+ 'text/x-csharp' => %w(text/plain),
2443
+ 'text/x-csrc' => %w(text/plain),
2444
+ 'text/x-d' => %w(text/plain),
2445
+ 'text/x-diff' => %w(text/plain),
2446
+ 'text/x-eiffel' => %w(text/plain),
2447
+ 'text/x-emacs-lisp' => %w(text/plain),
2448
+ 'text/x-erlang' => %w(text/plain),
2449
+ 'text/x-expect' => %w(text/plain),
2450
+ 'text/x-forth' => %w(text/plain),
2451
+ 'text/x-fortran' => %w(text/plain),
2452
+ 'text/x-go' => %w(text/plain),
2453
+ 'text/x-groovy' => %w(text/plain),
2454
+ 'text/x-haml' => %w(text/plain),
2455
+ 'text/x-haskell' => %w(text/plain),
2456
+ 'text/x-haxe' => %w(text/plain),
2457
+ 'text/x-idl' => %w(text/plain),
2458
+ 'text/x-ini' => %w(text/plain),
2459
+ 'text/x-java-properties' => %w(text/plain),
2460
+ 'text/x-java-source' => %w(text/plain),
2461
+ 'text/x-jsp' => %w(text/plain),
2462
+ 'text/x-less' => %w(text/plain),
2463
+ 'text/x-lex' => %w(text/plain),
2464
+ 'text/x-log' => %w(text/plain),
2465
+ 'text/x-lua' => %w(text/plain),
2466
+ 'text/x-ml' => %w(text/plain),
2467
+ 'text/x-modula' => %w(text/plain),
2468
+ 'text/x-objcsrc' => %w(text/plain),
2469
+ 'text/x-ocaml' => %w(text/plain),
2470
+ 'text/x-pascal' => %w(text/plain),
2471
+ 'text/x-perl' => %w(text/plain),
2472
+ 'text/x-php' => %w(text/plain),
2473
+ 'text/x-prolog' => %w(text/plain),
2474
+ 'text/x-python' => %w(text/plain),
2475
+ 'text/x-rexx' => %w(text/plain),
2476
+ 'text/x-rsrc' => %w(text/plain),
2477
+ 'text/x-rst' => %w(text/plain),
2478
+ 'text/x-ruby' => %w(text/plain),
2479
+ 'text/x-sass' => %w(text/plain),
2480
+ 'text/x-scala' => %w(text/plain),
2481
+ 'text/x-scheme' => %w(text/plain),
2482
+ 'text/x-scss' => %w(text/plain),
2483
+ 'text/x-sed' => %w(text/plain),
2484
+ 'text/x-setext' => %w(text/plain),
2485
+ 'text/x-sql' => %w(text/plain),
2486
+ 'text/x-stsrc' => %w(text/plain),
2487
+ 'text/x-tcl' => %w(text/plain),
2488
+ 'text/x-vbasic' => %w(text/x-basic),
2489
+ 'text/x-vbdotnet' => %w(text/x-vbasic),
2490
+ 'text/x-vbscript' => %w(text/x-vbasic),
2491
+ 'text/x-vcalendar' => %w(text/plain),
2492
+ 'text/x-vcard' => %w(text/plain),
2493
+ 'text/x-verilog' => %w(text/plain),
2494
+ 'text/x-vhdl' => %w(text/plain),
2495
+ 'text/x-web-markdown' => %w(text/plain),
2496
+ 'text/x-yacc' => %w(text/plain),
2497
+ 'text/x-yaml' => %w(text/plain),
2498
+ 'video/iso.segment' => %w(video/quicktime),
2499
+ 'video/mj2' => %w(image/x-jp2-container),
2500
+ 'video/mp4' => %w(video/quicktime),
2501
+ 'video/ogg' => %w(application/ogg),
2502
+ 'video/quicktime' => %w(application/quicktime),
2503
+ 'video/webm' => %w(application/x-matroska),
2504
+ 'video/x-dirac' => %w(video/ogg),
2505
+ 'video/x-m4v' => %w(video/mp4),
2506
+ 'video/x-matroska' => %w(application/x-matroska),
2507
+ 'video/x-ms-wmv' => %w(video/x-ms-asf),
2508
+ 'video/x-ogm' => %w(video/ogg),
2509
+ }
2510
+ b = Hash.new { |h, k| h[k] = k.b.freeze }
2511
+ # @private
2512
+ # :nodoc:
2513
+ MAGIC = [
2514
+ ['image/jpeg', [[0, b["\377\330\377"]]]],
2515
+ ['image/png', [[0, b["\211PNG\r\n\032\n"]]]],
2516
+ ['image/gif', [[0, b['GIF87a']], [0, b['GIF89a']]]],
2517
+ ['image/tiff', [[0, b["MM\000*"]], [0, b["II*\000"]], [0, b["MM\000+"]]]],
2518
+ ['image/bmp', [[0, b['BM'], [[26, b["\001\000"], [[28, b["\000\000"]], [28, b["\001\000"]], [28, b["\004\000"]], [28, b["\b\000"]], [28, b["\020\000"]], [28, b["\030\000"]], [28, b[" \000"]]]]]]]],
2519
+ ['image/vnd.adobe.photoshop', [[0, b["8BPS\000\001"]], [0, b["8BPS\000\002"]]]],
2520
+ ['image/webp', [[0, b['RIFF'], [[8, b['WEBP']]]]]],
2521
+ ['text/html', [[0, b['(?i)<(html|head|body|title|div)[ >]']], [0, b['(?i)<h[123][ >]']]]],
2522
+ ['image/svg+xml', [[0..4096, b['<svg']]]],
2523
+ ['video/x-msvideo', [[0, b['RIFF'], [[8, b['AVI ']]]], [8, b['AVI ']]]],
2524
+ ['video/x-ms-wmv', [[0..8192, b['Windows Media Video']], [0..8192, b['VC-1 Advanced Profile']], [0..8192, b['wmv2']]]],
2525
+ ['video/mp4', [[4, b['ftypmp41']], [4, b['ftypmp42']]]],
2526
+ ['audio/mp4', [[4, b['ftypM4A ']], [4, b['ftypM4B ']], [4, b['ftypF4A ']], [4, b['ftypF4B ']]]],
2527
+ ['video/quicktime', [[4, b["moov\000"]], [4, b["mdat\000"]], [4, b["free\000"]], [4, b["skip\000"]], [4, b["pnot\000"]], [4, b['ftyp']], [0, b["\000\000\000\bwide"]]]],
2528
+ ['video/mpeg', [[0, b["\000\000\001\263"]], [0, b["\000\000\001\272"]]]],
2529
+ ['video/webm', [[0, b["\032E\337\243"], [[4..4096, b["B\202"], [[4..4096, b['webm'], [[4..4096, b['V_VP8']], [4..4096, b['V_VP9']], [4..4096, b['V_AV1']]]]]]]]]],
2530
+ ['video/x-matroska', [[0, b["\032E\337\243\223B\202\210matroska"]]]],
2531
+ ['video/x-flv', [[0, b['FLV']]]],
2532
+ ['audio/mpeg', [[0, b["\377\362"]], [0, b["\377\363"]], [0, b["\377\364"]], [0, b["\377\365"]], [0, b["\377\366"]], [0, b["\377\367"]], [0, b["\377\372"]], [0, b["\377\373"]], [0, b["\377\374"]], [0, b["\377\375"]], [0, b["\377\343"]], [0, b["\377\377"]], [0, b['ID3']], [0, b["(?:\\\\015\\\\012|\\\\000{1,1024})(?:\\\\377[\\\\343\\\\362\\\\363\\\\364\\\\365\\\\366\\\\367\\\\370\\\\371\\\\372\\\\373\\\\374\\\\375\\\\376\\\\377]|ID3)"]]]],
2533
+ ['application/pdf', [[0, b['%PDF-']], [0, b["\357\273\277%PDF-"]]]],
2534
+ ['application/msword', [[2080, b['Microsoft Word 6.0 Document']], [2080, b['Documento Microsoft Word 6']], [2112, b['MSWordDoc']], [0, b["1\276\000\000"]], [0, b['PO^Q`']], [0, b["\3767\000#"]], [0, b["\333\245-\000\000\000"]], [0, b["\224\246."]], [0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000o\000r\000d\000D\000o\000c\000u\000m\000e\000n\000t"]]]]]],
2535
+ ['application/vnd.openxmlformats-officedocument.wordprocessingml.document', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['word/']]]], [30, b['_rels/.rels'], [[0..4096, b['word/']]]]]]]],
2536
+ ['application/vnd.ms-powerpoint', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["P\000o\000w\000e\000r\000P\000o\000i\000n\000t\000 D\000o\000c\000u\000m\000e\000n\000t"]]]]]],
2537
+ ['application/vnd.openxmlformats-officedocument.presentationml.presentation', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['ppt/']]]], [30, b['_rels/.rels'], [[0..4096, b['ppt/']]]]]]]],
2538
+ ['application/vnd.ms-excel', [[2080, b['Microsoft Excel 5.0 Worksheet']], [2080, b['Foglio di lavoro Microsoft Exce']], [2114, b['Biff5']], [2121, b['Biff5']], [0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000o\000r\000k\000b\000o\000o\000k"]]]]]],
2539
+ ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', [[0, b["PK\003\004"], [[30..65536, b['[Content_Types].xml'], [[0..4096, b['xl/']]]], [30, b['_rels/.rels'], [[0..4096, b['xl/']]]]]]]],
2540
+ ['image/x-tga', [[1, b["\001\001\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]], [1, b["\000\002\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]], [1, b["\000\003\000\000"], [[8, b[".*[\\\\124\\\\122\\\\125\\\\105\\\\126\\\\111\\\\123\\\\111\\\\117\\\\116\\\\055\\\\130\\\\106\\\\111\\\\114\\\\105\\\\056\\\\000]"]]]]]],
2541
+ ['application/x-endnote-refer', [[0..50, b['%A '], [[0..1000, b["\n%D "], [[0..1000, b["\n%T "]]]]]]]],
2542
+ ['application/x-ms-owner', [[0, b["(?s)^([\\\\005-\\\\017])[\\\\000\\\\040-\\\\176]{10}.{43}\\\\1\\000"]]]],
2543
+ ['application/x-tmx', [[0..256, b['<tmx']]]],
2544
+ ['application/mbox', [[0, b['From '], [[32..256, b["\nFrom: "]], [32..256, b["\nDate: "]], [32..256, b["\nSubject: "]], [32..256, b["\nDelivered-To: "]], [32..256, b["\nReceived: by "]], [32..256, b["\nReceived: via "]], [32..256, b["\nReceived: from "]], [32..256, b["\nMime-Version: "]], [32..256, b["\nX-"], [[32..8192, b["\nFrom: "]], [32..8192, b["\nDate: "]], [32..8192, b["\nSubject: "]], [32..8192, b["\nDelivered-To: "]], [32..8192, b["\nReceived: by "]], [32..8192, b["\nReceived: via "]], [32..8192, b["\nReceived: from "]], [32..8192, b["\nMime-Version: "]]]]]]]],
2545
+ ['application/x-bplist', [[0, b["bplist\000\000"]], [0, b["bplist\000\001"]], [0, b["bplist@\000"]], [0, b['bplist00']], [0, b['bplist01']], [0, b['bplist10']], [0, b['bplist15']], [0, b['bplist16']]]],
2546
+ ['application/x-dvd-ifo', [[0, b['DVDVIDEO-VTS']], [0, b['DVDVIDEO-VMG']]]],
2547
+ ['application/x-ebu-stl', [[3, b['STL'], [[8, b['.01']]]]]],
2548
+ ['application/x-ms-nls', [[0, b["(?s)^\\\\015.{51}\\\\014\\\\000\\\\015\\\\000\\\\016"]], [0, b["(?s)^\\\\104\\\\103.\\\\001"]]]],
2549
+ ['message/x-emlx', [[2..9, b["\nRelay-Version:"]], [2..9, b["\n#! rnews"]], [2..9, b["\nN#! rnews"]], [2..9, b["\nForward to"]], [2..9, b["\nPipe to"]], [2..9, b["\nReturn-Path:"]], [2..9, b["\nFrom:"]], [2..9, b["\nReceived:"]], [2..9, b["\nMessage-ID:"]], [2..9, b["\nDate:"]]]],
2550
+ ['application/cbor', [[0, b["\331\331\367"]]]],
2551
+ ['application/coreldraw', [[0, b['RIFF'], [[8, b['CDR']], [8, b['cdr']], [8, b['DES']], [8, b['des']]]]]],
2552
+ ['application/illustrator+ps', [[0..8192, b["[\\r\\n]%AI5_FileFormat [1-4][\\r\\n]"]]]],
2553
+ ['application/vnd.etsi.asic-e+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/vnd.etsi.asic-e+zip']]]]]],
2554
+ ['application/vnd.etsi.asic-s+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/vnd.etsi.asic-s+zip']]]]]],
2555
+ ['application/vnd.ms-excel.sheet.2', [[0, b["\t\000\004\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
2556
+ ['application/vnd.ms-excel.sheet.3', [[0, b["\t\002\006\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
2557
+ ['application/vnd.ms-excel.sheet.4', [[0, b["\t\004\006\000"], [[4, b["\000\000\020\000"]], [4, b["\000\000 \000"]], [4, b["\000\000@\000"]]]]]],
2558
+ ['application/vnd.ms-excel.workspace.3', [[0, b["\t\002\006\000"], [[4, b["\000\000\000\001"]]]]]],
2559
+ ['application/vnd.ms-excel.workspace.4', [[0, b["\t\004\006\000"], [[4, b["\000\000\000\001"]]]]]],
2560
+ ['application/vnd.tcpdump.pcap', [[0, b["\241\262\303\324"]], [0, b["\324\303\262\241"]]]],
2561
+ ['application/vnd.tcpdump.pcapng', [[0, b["\n\r\r\n"], [[8, b["\241\262\303\324"]], [8, b["M<+\032"]]]]]],
2562
+ ['application/warc', [[0, b['WARC/']]]],
2563
+ ['application/x-activemime', [[0, b["ActiveMime\000\000"]]]],
2564
+ ['application/x-axcrypt', [[0, b["\300\271\a.O\223\361F\240\025y,\241\331\350!"], [[17, b["\000\000\000\002"]]]]]],
2565
+ ['application/x-bentley-besqlite', [[0, b["SQLite format 3\000"], [[68, b['BeDb']]]]]],
2566
+ ['application/x-bentley-localization', [[0, b["SQLite format 3\000"], [[68, b['BeLn']]]]]],
2567
+ ['application/x-berkeley-db;format=btree;version=2', [[12, b["b1\005\000"], [[16, b["\006\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\006"]]]], [12, b["b1\005\000"], [[16, b["\006\000\000\000"]]]]]],
2568
+ ['application/x-berkeley-db;format=btree;version=3', [[12, b["b1\005\000"], [[16, b["\b\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\b"]]]], [12, b["b1\005\000"], [[16, b["\b\000\000\000"]]]]]],
2569
+ ['application/x-berkeley-db;format=btree;version=4', [[12, b["b1\005\000"], [[16, b["\t\000\000\000"]]]], [12, b["\000\0051b"], [[16, b["\000\000\000\t"]]]], [12, b["b1\005\000"], [[16, b["\t\000\000\000"]]]]]],
2570
+ ['application/x-berkeley-db;format=hash;version=2', [[12, b["a\025\006\000"], [[16, b["\005\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\005"]]]], [12, b["a\025\006\000"], [[16, b["\005\000\000\000"]]]]]],
2571
+ ['application/x-berkeley-db;format=hash;version=3', [[12, b["a\025\006\000"], [[16, b["\a\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\a"]]]], [12, b["a\025\006\000"], [[16, b["\a\000\000\000"]]]]]],
2572
+ ['application/x-berkeley-db;format=hash;version=4', [[12, b["a\025\006\000"], [[16, b["\b\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\b"]]]], [12, b["a\025\006\000"], [[16, b["\b\000\000\000"]]]]]],
2573
+ ['application/x-berkeley-db;format=hash;version=5', [[12, b["a\025\006\000"], [[16, b["\t\000\000\000"]]]], [12, b["\000\006\025a"], [[16, b["\000\000\000\t"]]]], [12, b["a\025\006\000"], [[16, b["\t\000\000\000"]]]]]],
2574
+ ['application/x-bplist', [[0, b['bplist']]]],
2575
+ ['application/x-debian-package', [[0, b["!<arch>\ndebian-binary"]], [0, b["!<arch>\ndebian-split"]]]],
2576
+ ['application/x-esri-spatially-enabled-db', [[0, b["SQLite format 3\000"], [[68, b['Esri']]]]]],
2577
+ ['application/x-font-type1', [[0, b["\200\001"], [[4, b["\000\000%!PS-AdobeFont"]]]], [0, b['%!PS-AdobeFont-1.0']]]],
2578
+ ['application/x-fossil-checkout', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\022"]]]]]],
2579
+ ['application/x-fossil-global-conf', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\023"]]]]]],
2580
+ ['application/x-fossil-repository', [[0, b["SQLite format 3\000"], [[68, b["\017\005Q\021"]]]]]],
2581
+ ['application/x-geopackage', [[0, b["SQLite format 3\000"], [[68, b['GPKG']]]]]],
2582
+ ['application/x-geopackage; version=1.1Or1.0', [[0, b["SQLite format 3\000"], [[68, b['GP10']]]]]],
2583
+ ['application/x-httpresponse', [[0, b['HTTP/'], [[0..1000, b["\nCache-Control:"]], [0..1000, b["\nContent-Type:"]], [0..1000, b["\nContent-Length:"]], [0..1000, b["\nContent-Disposition:"]], [0..1000, b["\nDate:"]], [0..1000, b["\nServer:"]]]], [0, nil]]],
2584
+ ['application/x-internet-archive', [[0, b['filedesc://']]]],
2585
+ ['application/x-lz4', [[0, b["\004\"M\030"]], [0, b["\002!L\030"]]]],
2586
+ ['application/x-mach-o-universal', [[0, b["\312\376\272\276"], [[4, b["\000\000\000\001"]], [4, b["\000\000\000\002"]], [4, b["\000\000\000\003"]], [4, b["\000\000\000\004"]], [4, b["\000\000\000\005"]], [4, b["\000\000\000\006"]], [4, b["\000\000\000\a"]], [4, b["\000\000\000\b"]], [4, b["\000\000\000\t"]], [4, b["\000\000\000\n"]], [4, b["\000\000\000\v"]], [4, b["\000\000\000\f"]], [4, b["\000\000\000\r"]], [4, b["\000\000\000\016"]], [4, b["\000\000\000\017"]], [4, b["\000\000\000\020"]], [4, b["\000\000\000\021"]], [4, b["\000\000\000\022"]], [4, b["\000\000\000\023"]]]], [0, b["\276\272\376\312"], [[4, b["\001\000\000\000"]], [4, b["\002\000\000\000"]], [4, b["\003\000\000\000"]], [4, b["\004\000\000\000"]], [4, b["\005\000\000\000"]], [4, b["\006\000\000\000"]], [4, b["\a\000\000\000"]], [4, b["\b\000\000\000"]], [4, b["\t\000\000\000"]], [4, b["\n\000\000\000"]], [4, b["\v\000\000\000"]], [4, b["\f\000\000\000"]], [4, b["\r\000\000\000"]], [4, b["\016\000\000\000"]], [4, b["\017\000\000\000"]], [4, b["\020\000\000\000"]], [4, b["\021\000\000\000"]], [4, b["\022\000\000\000"]], [4, b["\023\000\000\000"]]]], [0, b["\312\376\272\277"], [[4, b["\000\000\000\001"]], [4, b["\000\000\000\002"]], [4, b["\000\000\000\003"]], [4, b["\000\000\000\004"]], [4, b["\000\000\000\005"]], [4, b["\000\000\000\006"]], [4, b["\000\000\000\a"]], [4, b["\000\000\000\b"]], [4, b["\000\000\000\t"]], [4, b["\000\000\000\n"]], [4, b["\000\000\000\v"]], [4, b["\000\000\000\f"]], [4, b["\000\000\000\r"]], [4, b["\000\000\000\016"]], [4, b["\000\000\000\017"]], [4, b["\000\000\000\020"]], [4, b["\000\000\000\021"]], [4, b["\000\000\000\022"]], [4, b["\000\000\000\023"]]]], [0, b["\277\272\376\312"], [[4, b["\001\000\000\000"]], [4, b["\002\000\000\000"]], [4, b["\003\000\000\000"]], [4, b["\004\000\000\000"]], [4, b["\005\000\000\000"]], [4, b["\006\000\000\000"]], [4, b["\a\000\000\000"]], [4, b["\b\000\000\000"]], [4, b["\t\000\000\000"]], [4, b["\n\000\000\000"]], [4, b["\v\000\000\000"]], [4, b["\f\000\000\000"]], [4, b["\r\000\000\000"]], [4, b["\016\000\000\000"]], [4, b["\017\000\000\000"]], [4, b["\020\000\000\000"]], [4, b["\021\000\000\000"]], [4, b["\022\000\000\000"]], [4, b["\023\000\000\000"]]]]]],
2587
+ ['application/x-mbtiles', [[0, b["SQLite format 3\000"], [[68, b['MPBX']]]]]],
2588
+ ['application/x-mobipocket-ebook', [[0..60, b['BOOKMOBI']]]],
2589
+ ['application/x-monotone-source-repo', [[0, b["SQLite format 3\000"], [[68, b['_MTN']]]]]],
2590
+ ['application/x-msaccess', [[0, b["\000\001\000\000Stan"]]]],
2591
+ ['application/x-msdownload;format=pe-arm7', [[128, b["pe\000\000"], [[132, b["\304\001"]]]], [240, b["pe\000\000"], [[244, b["\304\001"]]]]]],
2592
+ ['application/x-msdownload;format=pe-armLE', [[128, b["pe\000\000"], [[132, b["\300\001"]]]], [240, b["pe\000\000"], [[244, b["\300\001"]]]]]],
2593
+ ['application/x-msdownload;format=pe-itanium', [[128, b["PE\000\000"], [[132, b["\000\002"]]]], [240, b["PE\000\000"], [[244, b["\000\002"]]]]]],
2594
+ ['application/x-msdownload;format=pe32', [[128, b["PE\000\000"], [[132, b["L\001"]]]], [240, b["PE\000\000"], [[244, b["L\001"]]]]]],
2595
+ ['application/x-msdownload;format=pe64', [[128, b["PE\000\000"], [[132, b["d\206"]]]], [240, b["PE\000\000"], [[244, b["d\206"]]]]]],
2596
+ ['application/x-msmoney', [[0, b["\000\001\000\000MSISAM Database"]]]],
2597
+ ['application/x-rar-compressed;version=4', [[0, b["Rar!\032\a\000"]]]],
2598
+ ['application/x-rar-compressed;version=5', [[0, b["Rar!\032\a\001\000"]]]],
2599
+ ['application/x-shapefile', [[0, b["\000\000'\n"]]]],
2600
+ ['application/x-stata-dta;version=10', [[0, b['<stata_dta><header><release>114</release>']]]],
2601
+ ['application/x-stata-dta;version=12', [[0, b['<stata_dta><header><release>115</release>']]]],
2602
+ ['application/x-stata-dta;version=13', [[0, b['<stata_dta><header><release>117</release>']]]],
2603
+ ['application/x-stata-dta;version=14', [[0, b['<stata_dta><header><release>118</release>']]]],
2604
+ ['application/x-stata-dta;version=8', [[0, b['<stata_dta><header><release>113</release>']]]],
2605
+ ['application/x-texnicard', [[0, b["SQLite format 3\000"], [[68, b["j\003WD"]]]]]],
2606
+ ['application/x-tika-msworks-spreadsheet', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["W\000k\000s\000S\000S\000W\000o\000r\000k\000B\000o\000o\000k"]]]]]],
2607
+ ['audio/opus', [[0, b['OggS'], [[29, b['pusHead']]]]]],
2608
+ ['audio/speex', [[0, b['OggS'], [[29, b['peex ']]]]]],
2609
+ ['audio/vorbis', [[0, b['OggS'], [[29, b['vorbis']]]]]],
2610
+ ['audio/x-caf', [[0, b["caff\000\000"]], [0, b["caff\000\001"]], [0, b["caff\000\002"]], [0, b["caff@\000"]], [0, b["caff\200\000"]]]],
2611
+ ['audio/x-oggflac', [[0, b['OggS'], [[29, b['LAC']]]]]],
2612
+ ['audio/x-oggpcm', [[0, b['OggS'], [[29, b['CM ']]]]]],
2613
+ ['image/avif', [[4, b['ftypavif']]]],
2614
+ ['image/heic', [[4, b['ftypheic']], [4, b['ftypheix']]]],
2615
+ ['image/heic-sequence', [[4, b['ftyphevc']], [4, b['ftyphevx']]]],
2616
+ ['image/heif', [[4, b['ftypmif1']]]],
2617
+ ['image/heif-sequence', [[4, b['ftypmsf1']]]],
2618
+ ['image/x-canon-cr2', [[0, b["MM\000*"], [[8, b['CR']]]], [0, b["II*\000"], [[8, b['CR']]]], [0, b["MM\000+"], [[8, b['CR']]]]]],
2619
+ ['image/x-canon-cr3', [[4, b['ftypcrx ']]]],
2620
+ ['message/news', [[0, b['Path:']], [0, b['Xref:']]]],
2621
+ ['model/e57', [[0, b['ASTM-E57']]]],
2622
+ ['model/vnd.dwf;version=2', [[0, b['(DWF V00.22)']]]],
2623
+ ['model/vnd.dwf;version=5', [[0, b['(DWF V00.55)']]]],
2624
+ ['model/vnd.dwf;version=6', [[0, b['(DWF V06.'], [[11, b[')PK']]]]]],
2625
+ ['model/x.stl-ascii', [[0, b['solid '], [[7..256, b['facet ']]]]]],
2626
+ ['multipart/related', [[0, b['From: <Saved by Windows Internet Explorer 8>']], [0, b["From: \"Saved by Internet Explorer 11\""]], [0, b['MIME-Version: 1.0'], [[16..512, b["\nContent-Type: multipart/related"]]]]]],
2627
+ ['video/3gpp', [[4, b['ftyp3ge6']], [4, b['ftyp3ge7']], [4, b['ftyp3gg6']], [4, b['ftyp3gp1']], [4, b['ftyp3gp2']], [4, b['ftyp3gp3']], [4, b['ftyp3gp4']], [4, b['ftyp3gp5']], [4, b['ftyp3gp6']], [4, b['ftyp3gs7']]]],
2628
+ ['video/3gpp2', [[4, b['ftyp3g2a']], [4, b['ftyp3g2b']], [4, b['ftyp3g2c']]]],
2629
+ ['video/daala', [[0, b['OggS'], [[29, b['daala']]]]]],
2630
+ ['video/theora', [[0, b['OggS'], [[29, b['theora']]]]]],
2631
+ ['video/x-dirac', [[0, b['OggS'], [[29, b['BCD']]]]]],
2632
+ ['video/x-m4v', [[4, b['ftypM4V ']], [4, b['ftypM4VH']], [4, b['ftypM4VP']]]],
2633
+ ['video/x-oggrgb', [[0, b['OggS'], [[29, b['RGB']]]]]],
2634
+ ['video/x-ogguvs', [[0, b['OggS'], [[29, b['VS ']]]]]],
2635
+ ['video/x-oggyuv', [[0, b['OggS'], [[29, b['YUV']]]]]],
2636
+ ['video/x-ogm', [[0, b['OggS'], [[29, b['ideo']]]]]],
2637
+ ['application/x-mach-o-bundle', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\b"]]]], [0, b["\316\372\355\376"], [[12, b["\b\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\b"]]]], [0, b["\317\372\355\376"], [[12, b["\b\000\000\000"]]]]]],
2638
+ ['application/x-mach-o-core', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\004"]]]], [0, b["\316\372\355\376"], [[12, b["\004\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\004"]]]], [0, b["\317\372\355\376"], [[12, b["\004\000\000\000"]]]]]],
2639
+ ['application/x-mach-o-dsym', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\n"]]]], [0, b["\316\372\355\376"], [[12, b["\n\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\n"]]]], [0, b["\317\372\355\376"], [[12, b["\n\000\000\000"]]]]]],
2640
+ ['application/x-mach-o-dylib', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\006"]]]], [0, b["\316\372\355\376"], [[12, b["\006\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\006"]]]], [0, b["\317\372\355\376"], [[12, b["\006\000\000\000"]]]]]],
2641
+ ['application/x-mach-o-dylib-stub', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\t"]]]], [0, b["\316\372\355\376"], [[12, b["\t\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\t"]]]], [0, b["\317\372\355\376"], [[12, b["\t\000\000\000"]]]]]],
2642
+ ['application/x-mach-o-dylinker', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\a"]]]], [0, b["\316\372\355\376"], [[12, b["\a\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\a"]]]], [0, b["\317\372\355\376"], [[12, b["\a\000\000\000"]]]]]],
2643
+ ['application/x-mach-o-executable', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\002"]]]], [0, b["\316\372\355\376"], [[12, b["\002\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\002"]]]], [0, b["\317\372\355\376"], [[12, b["\002\000\000\000"]]]]]],
2644
+ ['application/x-mach-o-fvmlib', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\003"]]]], [0, b["\316\372\355\376"], [[12, b["\003\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\003"]]]], [0, b["\317\372\355\376"], [[12, b["\003\000\000\000"]]]]]],
2645
+ ['application/x-mach-o-kext-bundle', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\v"]]]], [0, b["\316\372\355\376"], [[12, b["\v\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\v"]]]], [0, b["\317\372\355\376"], [[12, b["\v\000\000\000"]]]]]],
2646
+ ['application/x-mach-o-object', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\001"]]]], [0, b["\316\372\355\376"], [[12, b["\001\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\001"]]]], [0, b['0xCFFAEDFE'], [[12, b["\001\000\000\000"]]]]]],
2647
+ ['application/x-mach-o-preload', [[0, b["\376\355\372\316"], [[12, b["\000\000\000\005"]]]], [0, b["\316\372\355\376"], [[12, b["\005\000\000\000"]]]], [0, b["\376\355\372\317"], [[12, b["\000\000\000\005"]]]], [0, b["\317\372\355\376"], [[12, b["\005\000\000\000"]]]]]],
2648
+ ['application/x-msdownload;format=pe', [[0, b['MZ'], [[128, b["PE\000\000"]], [176, b["PE\000\000"]], [208, b["PE\000\000"]], [240, b["PE\000\000"]]]]]],
2649
+ ['text/x-robots', [[0, nil, [[0, b['user-agent:']], [0, b['allow:']], [0, b['disallow:']], [0, b['sitemap:']], [0..1000, b["\nuser-agent:"]], [0..1000, b["\nallow:"]], [0..1000, b["\ndisallow:"]], [0..1000, b["\nsitemap:"]]]]]],
2650
+ ['application/applefile', [[0, b["\000\005\026\000"]]]],
2651
+ ['application/dash+xml', [[0, b['<MPD']]]],
2652
+ ['application/dicom', [[128, b['DICM']]]],
2653
+ ['application/epub+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/epub+zip']]]]]],
2654
+ ['application/fits', [[0, b['SIMPLE = T']], [0, b['SIMPLE = T']]]],
2655
+ ['application/java-vm', [[0, b["\312\376\272\276"]]]],
2656
+ ['application/mac-binhex40', [[11, b['must be converted with BinHex']]]],
2657
+ ['application/marc', [[0, b['[0-9]{5,5}'], [[20, b['45'], [[5, b['[acdnp][acdefgijkmoprt][abcdims]']], [5, b['[acdnosx]z']], [5, b['[cdn][uvxy]']], [5, b['[acdn]w']], [5, b['[cdn]q']]]]]]]],
2658
+ ['application/mathematica', [[0, b['(**']], [0, b['(* ']]]],
2659
+ ['application/msword', [[0..8, b["\320\317\021\340\241\261\032\341"], [[546, b['jbjb']], [546, b['bjbj']]]]]],
2660
+ ['application/msword2', [[0, b["\233\245"]], [0, b["\333\245"]]]],
2661
+ ['application/msword5', [[0, b["\3767"]]]],
2662
+ ['application/octet-stream', [[10, b['# This is a shell archive']], [0, b["\037\036"]], [0, b["\037\037"]], [0, b["\377\037"]], [0, b["\377\037"]], [0, b["\005\313"]]]],
2663
+ ['application/ogg', [[0, b['OggS']]]],
2664
+ ['application/onenote;format=one', [[0, b["\344R\\{"], [[4, b["\214\330"], [[6, b["\247M"], [[8, b['0xAEB15378D02996D3']]]]]]]]]],
2665
+ ['application/onenote;format=onetoc2', [[0, b["\241/\377C"], [[4, b["\331\357"], [[6, b['vL'], [[8, b['0x9EE210EA5722765F']]]]]]]]]],
2666
+ ['application/pgp-encrypted', [[0, b["\205"], [[3, b["\003"]]]]]],
2667
+ ['application/pkcs7-signature', [[0, b['-----BEGIN PKCS7']], [0, b['0x3080'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3081'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3082'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3083'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]], [0, b['0x3084'], [[0, b["\006\t*\206H\206\367\r\001\a"], [[11, b["\240"]]]]]]]],
2668
+ ['application/postscript', [[0, b['%!']], [0, b["\004%!"]], [0, b["\305\320\323\306"]], [0, b['%!PS-Adobe-3.0 EPSF-3.0']]]],
2669
+ ['application/rtf', [[0, b["{\\rtf"]]]],
2670
+ ['application/sereal;version=1', [[0, b['=srl']]]],
2671
+ ['application/sereal;version=2', [[0, b['=srl']]]],
2672
+ ['application/sereal;version=3', [[0, b["=\363rl"]]]],
2673
+ ['application/timestamped-data', [[0, b["0\200\006\v*\206H\206\367"]]]],
2674
+ ['application/vnd.apple.mpegurl', [[0, b['#EXTM3U']]]],
2675
+ ['application/vnd.digilite.prolights', [[0, b["\177\fD+"]]]],
2676
+ ['application/vnd.fdf', [[0, b['%FDF-']]]],
2677
+ ['application/vnd.iccprofile', [[36, b['acsp']]]],
2678
+ ['application/vnd.isac.fcs', [[0, b["FCS[1-3]\\\\.[0-9] "]]]],
2679
+ ['application/vnd.java.hprof ', [[0, b["JAVA PROFILE \\\\d\\\\.\\\\d\\\\.\\\\d\\\\u0000"]]]],
2680
+ ['application/vnd.java.hprof.text', [[0, b["JAVA PROFILE \\\\d\\\\.\\\\d\\\\.\\\\d,"]]]],
2681
+ ['application/vnd.lotus-1-2-3;version=1', [[0, b["\000\000\002\000\004\004"]]]],
2682
+ ['application/vnd.lotus-1-2-3;version=2', [[0, b["\000\000\002\000\006\004\006\000\b\000"]]]],
2683
+ ['application/vnd.lotus-1-2-3;version=3', [[0, b["\000\000\032\000\000\020\004\000"]]]],
2684
+ ['application/vnd.lotus-1-2-3;version=4', [[0, b["\000\000\032\000\002\020\004\000"]]]],
2685
+ ['application/vnd.lotus-1-2-3;version=97+9.x', [[0, b["\000\000\032\000\003\020\004\000"]]]],
2686
+ ['application/vnd.lotus-wordpro', [[0, b["WordPro\000"]], [0, b["WordPro\r\373"]]]],
2687
+ ['application/vnd.mif', [[0, b['<MakerFile']], [0, b['<MIFFile']], [0, b['<MakerDictionary']], [0, b['<MakerScreenFont']], [0, b['<MML']], [0, b['<Book']], [0, b['<Maker']]]],
2688
+ ['application/vnd.ms-cab-compressed', [[0, b["MSCF\000\000\000\000"]]]],
2689
+ ['application/vnd.ms-cab-compressed', [[0, b['MSCF']]]],
2690
+ ['application/vnd.ms-fontobject', [[8, b["\002\000\002\000"], [[34, b['LP']]]]]],
2691
+ ['application/vnd.ms-htmlhelp', [[0, b['ITSF']]]],
2692
+ ['application/vnd.ms-outlook-pst', [[0, b['!BDN'], [[8, b['SM']]]]]],
2693
+ ['application/vnd.ms-tnef', [[0, b["x\237>\""]]]],
2694
+ ['application/vnd.ms-works', [[0..8, b["\320\317\021\340\241\261\032\341"], [[1152..4096, b["M\000a\000t\000O\000S\000T"]]]]]],
2695
+ ['application/vnd.oasis.opendocument.chart', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.chart']]]]]],
2696
+ ['application/vnd.oasis.opendocument.chart-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.chart-template']]]]]],
2697
+ ['application/vnd.oasis.opendocument.formula', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.formula']]]]]],
2698
+ ['application/vnd.oasis.opendocument.formula-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.formula-template']]]]]],
2699
+ ['application/vnd.oasis.opendocument.graphics', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.graphics']]]]]],
2700
+ ['application/vnd.oasis.opendocument.graphics-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.graphics-template']]]]]],
2701
+ ['application/vnd.oasis.opendocument.image', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.image']]]]]],
2702
+ ['application/vnd.oasis.opendocument.image-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.image-template']]]]]],
2703
+ ['application/vnd.oasis.opendocument.presentation', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.presentation']]]]]],
2704
+ ['application/vnd.oasis.opendocument.presentation-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.presentation-template']]]]]],
2705
+ ['application/vnd.oasis.opendocument.spreadsheet', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.spreadsheet']]]]]],
2706
+ ['application/vnd.oasis.opendocument.spreadsheet-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.spreadsheet-template']]]]]],
2707
+ ['application/vnd.oasis.opendocument.text', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text']]]]]],
2708
+ ['application/vnd.oasis.opendocument.text-master', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-master']]]]]],
2709
+ ['application/vnd.oasis.opendocument.text-template', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-template']]]]]],
2710
+ ['application/vnd.oasis.opendocument.text-web', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.oasis.opendocument.text-web']]]]]],
2711
+ ['application/vnd.rn-realmedia', [[0, b['.RMF']]]],
2712
+ ['application/vnd.stardivision.calc', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarCalc']]]]]],
2713
+ ['application/vnd.stardivision.draw', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarDraw']]]]]],
2714
+ ['application/vnd.stardivision.impress', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarImpress']]]]]],
2715
+ ['application/vnd.stardivision.writer', [[0..8, b["\320\317\021\340\241\261\032\341"], [[2048..2207, b['StarWriter']]]]]],
2716
+ ['application/vnd.sun.xml.writer', [[0, b['PK'], [[30, b['mimetypeapplication/vnd.sun.xml.writer']]]]]],
2717
+ ['application/vnd.symbian.install', [[8, b["\031\004\000\020"]]]],
2718
+ ['application/vnd.wolfram.wl', [[0, b['#!/usr/bin/env wolframscript']]]],
2719
+ ['application/vnd.wordperfect', [[0, b['application/vnd.wordperfect;']]]],
2720
+ ['application/vnd.wordperfect;version=4.2', [[0, b["\313\n\001"], [[5, b["\313"]]]]]],
2721
+ ['application/vnd.wordperfect;version=5.0', [[0, b["\377WPC"], [[10, b["\000\000"]]]]]],
2722
+ ['application/vnd.wordperfect;version=5.1', [[0, b["\377WPC"], [[10, b["\000\001"]]]]]],
2723
+ ['application/vnd.wordperfect;version=6.x', [[0, b["\377WPC"], [[10, b["\002\001"]]]]]],
2724
+ ['application/vnd.xara', [[0, b['xar!']]]],
2725
+ ['application/wasm', [[0, b["\000asm"]], [0, b["msa\000"]]]],
2726
+ ['application/x-7z-compressed', [[0..1, b['7z'], [[2..5, b["\274\257'\034"]]]]]],
2727
+ ['application/x-adobe-indesign', [[0, b["\006\006\355\365\330\035F\345\2751\357\347\376t\267\035"]]]],
2728
+ ['application/x-adobe-indesign-interchange', [[0..100, b['<?aid']]]],
2729
+ ['application/x-amiga-disk-format', [[0, b['DOS'], [[4, b["\000"]], [4, b["\001"]], [4, b["\002"]], [4, b["\003"]], [4, b["\004"]], [4, b["\005"]], [4, b["\006"]], [4, b["\a"]]]]]],
2730
+ ['application/x-archive', [[0, b['=<ar>']], [0, b["!<arch>\n"]]]],
2731
+ ['application/x-arj', [[0, b["`\352"]]]],
2732
+ ['application/x-asprs', [[0, b['LASF'], [[24, b["\001\001"]], [24, b["\001\002"]]]]]],
2733
+ ['application/x-atari-floppy-disk-image', [[0, b['0x9602'], [[4, b['0x8000'], [[11, b['0x00000000']]]], [4, b['0x0001'], [[11, b['0x00000000']]]]]]]],
2734
+ ['application/x-bat', [[0, b['@echo off']], [0, b['rem ']]]],
2735
+ ['application/x-berkeley-db;format=btree', [[0, b["b1\005\000"]], [0, b["\000\0051b"]], [0, b["b1\005\000"]], [12, b["b1\005\000"]], [12, b["\000\0051b"]], [12, b["b1\005\000"]]]],
2736
+ ['application/x-berkeley-db;format=hash', [[0, b["a\025\006\000"]], [0, b["\000\006\025a"]], [0, b["a\025\006\000"]], [12, b["a\025\006\000"]], [12, b["\000\006\025a"]], [12, b["a\025\006\000"]]]],
2737
+ ['application/x-berkeley-db;format=log', [[12, b["\210\t\004\000"]], [12, b["\210\t\004\000"]], [12, b["\000\004\t\210"]]]],
2738
+ ['application/x-berkeley-db;format=queue', [[12, b["S\"\004\000"]], [12, b["\000\004\"S"]], [12, b["S\"\004\000"]]]],
2739
+ ['application/x-bibtex-text-file', [[0, b['% BibTeX `']], [73, b['%%% ']], [0, b['% BibTeX standard bibliography ']], [73, b['%%% @BibTeX-style-file{']], [0, b['@article{']], [0, b['@book{']], [0, b['@inbook{']], [0, b['@incollection{']], [0, b['@inproceedings{']], [0, b['@manual{']], [0, b['@misc{']], [0, b['@preamble{']], [0, b['@phdthesis{']], [0, b['@string{']], [0, b['@techreport{']], [0, b['@unpublished{']]]],
2740
+ ['application/x-bittorrent', [[0, b['d8:announce']]]],
2741
+ ['application/x-cdf', [[0, b["RIFF$\000\000\000CDDAfmt \030"]], [0, nil]]],
2742
+ ['application/x-chrome-package', [[0, b['Cr24']]]],
2743
+ ['application/x-compress', [[0, b["\037\235"]]]],
2744
+ ['application/x-coredump', [[0, b["\177ELF"], [[16, b["\004\000"]], [16, b["\000\004"]]]]]],
2745
+ ['application/x-cpio', [[0, b["\307q"]], [0, b["q\307"]], [0, b['070707']], [0, b['070701']], [0, b['070702']]]],
2746
+ ['application/x-dex', [[0, b["dex\n"], [[7, b["\000"]]]]]],
2747
+ ['application/x-dvi', [[0, b["\367\002"]], [0, b["\367\002"]], [14, b["\e TeX output "]]]],
2748
+ ['application/x-elc', [[0, b["\n("]], [0, b[";ELC\023\000\000\000"]]]],
2749
+ ['application/x-elf', [[0, b["\177ELF"]]]],
2750
+ ['application/x-endnote-style', [[0, b["\000\b"], [[4, b["\000\000"], [[8, b['RSFTSTYL']], [8, b['ENDNENFT']]]]]]]],
2751
+ ['application/x-erdas-hfa', [[0, b['EHFA_HEADER_TAG']]]],
2752
+ ['application/x-executable', [[0, b["\177ELF"], [[16, b["\002\000"]], [16, b["\000\002"]]]]]],
2753
+ ['application/x-fat-diskimage', [[0, b["\\353"], [[2, b["\\220"], [[14, b["(\\001|\\002|\\004|\\010|\\020|\\040\\100|x80)"]]]]]]]],
2754
+ ['application/x-filemaker', [[14, b["\300HBAM7"], [[525, b["HBAM2101OCT99\301\002H\aPro 7.0\300\300"]]]]]],
2755
+ ['application/x-foxmail', [[0, b["\020\020\020\020\020\020\020\021\021\021\021\021\021S"]]]],
2756
+ ['application/x-gnumeric', [[39, b['=<gmr:Workbook']]]],
2757
+ ['application/x-grib', [[0, b['GRIB']]]],
2758
+ ['application/x-gtar', [[257, b["ustar \000"]]]],
2759
+ ['application/x-guitar-pro', [[1, b['FICHIER GUITARE PRO ']], [1, b['FICHIER GUITAR PRO ']]]],
2760
+ ['application/x-hdf', [[0, b["\016\003\023\001"]], [0, b["\211HDF\r\n\032"]]]],
2761
+ ['application/x-hwp', [[0, b['HWP Document File V']]]],
2762
+ ['application/x-ibooks+zip', [[0, b["PK\003\004"], [[30, b['mimetypeapplication/x-ibooks+zip']]]]]],
2763
+ ['application/x-idl-save-file', [[0, b["SR\000\004\000\000\000\n\000\000\004"]]]],
2764
+ ['application/x-isatab', [[1, b['Source Name']]]],
2765
+ ['application/x-isatab-assay', [[1, b['Sample Name']]]],
2766
+ ['application/x-isatab-investigation', [[0, b['ONTOLOGY SOURCE REFERENCE']]]],
2767
+ ['application/x-iso9660-image', [[32769, b['CD001']], [34817, b['CD001']], [36865, b['CD001']]]],
2768
+ ['application/x-java-keystore', [[0..4, b["\376\355\376\355"]]]],
2769
+ ['application/x-jeol-jdf', [[0, b['JEOL.NMR']], [0, b['RMN.LOEJ']]]],
2770
+ ['application/x-jigdo', [[0, b['JigsawDownload template']]]],
2771
+ ['application/x-kdelnk', [[0, b['[KDE Desktop Entry]']], [0, b['# KDE Config File']]]],
2772
+ ['application/x-latex', [[0, b['% -*-latex-*-']]]],
2773
+ ['application/x-lha', [[2, b['-lzs-']], [2, b['-lh -']], [2, b['-lhd-']], [2, b['-lh2-']], [2, b['-lh3-']], [2, b['-lh4-']], [2, b['-lh5-']], [2, b['-lh6-']], [2, b['-lh7-']]]],
2774
+ ['application/x-lharc', [[2, b['-lh0-']], [2, b['-lh1-']], [2, b['-lz4-']], [2, b['-lz5-']]]],
2775
+ ['application/x-lzip', [[0, b['LZIP']]]],
2776
+ ['application/x-mach-o', [[0, b["\376\355\372\316"]], [0, b["\316\372\355\376"]], [0, b["\376\355\372\317"]], [0, b["\317\372\355\376"]]]],
2777
+ ['application/x-matlab-data', [[0, b['MATLAB']]]],
2778
+ ['application/x-mmm-digisonde', [[0, b["\t<\000"], [[24, b["\000\000"]]]]]],
2779
+ ['application/x-ms-compress-szdd', [[0, b['0x535A444488F0273341']]]],
2780
+ ['application/x-msdownload', [[0, b['MZ']]]],
2781
+ ['application/x-mswrite', [[0, b["1\276\000\000"]], [0, b["2\276\000\000"]]]],
2782
+ ['application/x-nesrom', [[0, b["NES\032"]]]],
2783
+ ['application/x-netcdf', [[0, b["CDF\001"]], [0, b["CDF\002"]], [0, b["CDF\001"]]]],
2784
+ ['application/x-object', [[0, b["\177ELF"], [[16, b["\001\000"]], [16, b["\000\001"]]]]]],
2785
+ ['application/x-ole-storage', [[0..8, b["\320\317\021\340\241\261\032\341"]]]],
2786
+ ['application/x-parquet', [[0, b['PAR1']]]],
2787
+ ['application/x-pds', [[0, b['PDS_VERSION_ID']]]],
2788
+ ['application/x-project', [[0, b['MPX,Microsoft Project for Windows,']]]],
2789
+ ['application/x-prt', [[8, b['0M3C']]]],
2790
+ ['application/x-quattro-pro;version=1+5', [[0, b["\000\000\002\000\001\020"]]]],
2791
+ ['application/x-quattro-pro;version=1-4', [[0, b["\000\000\002\000 Q"]]]],
2792
+ ['application/x-quattro-pro;version=5', [[0, b["\000\000\002\000!Q"]]]],
2793
+ ['application/x-quattro-pro;version=6', [[0, b["\000\000\002\000\002\020"]]]],
2794
+ ['application/x-rar-compressed', [[0, b['Rar!']], [0, b["Rar!\032"]]]],
2795
+ ['application/x-rpm', [[0, b["\355\253\356\333"]]]],
2796
+ ['application/x-sc', [[38, b['Spreadsheet']]]],
2797
+ ['application/x-sh', [[0, b['#!/']], [0, b['#! /']], [0, b["#!\t/"]], [0, b["eval \"exec"]]]],
2798
+ ['application/x-sharedlib', [[0, b["\177ELF"], [[16, b["\003\000"]], [16, b["\000\003"]]]]]],
2799
+ ['application/x-shockwave-flash', [[0, b['FWS']], [0, b['CWS']]]],
2800
+ ['application/x-sibelius', [[0, b["\017SIBELIUS"]]]],
2801
+ ['application/x-snappy-framed', [[0, b['sNaPpY']]]],
2802
+ ['application/x-spectrum-tzx', [[0, b["ZXTape!\032"]]]],
2803
+ ['application/x-spss-sav', [[0, b['$FL2@(#)']]]],
2804
+ ['application/x-sqlite3', [[0, b["SQLite format 3\000"]]]],
2805
+ ['application/x-stata-dta', [[0, b['<stata_dta><header><release>']]]],
2806
+ ['application/x-stuffit', [[0, b['StuffIt']]]],
2807
+ ['application/x-subrip', [[0, b["1\n00"]], [0, b["1\r00"]], [0, b["1\r\n\023\003\000"]], [0, b["\357\273\2771\n00"]], [0, b["\357\273\2771\r00"]], [0, b["\357\273\2771\r\n\023\003\000"]]]],
2808
+ ['application/x-tex', [[0, b["\\input"]], [0, b["\\section"]], [0, b["\\setlength"]], [0, b["\\documentstyle"]], [0, b["\\chapter"]], [0, b["\\documentclass"]], [0, b["\\relax"]], [0, b["\\contentsline"]]]],
2809
+ ['application/x-tex-virtual-font', [[0, b["\367\312"], [[11, b["\363\000"], [[17, b["\000\020"]]]]]]]],
2810
+ ['application/x-texinfo', [[0, b["\\input texinfo"]]]],
2811
+ ['application/x-tika-ooxml', [[0, b["PK\003\004"], [[30, b['[Content_Types].xml']], [30, b['_rels/.rels']]]]]],
2812
+ ['application/x-touhou', [[0, b['t1'], [[3, b["[\\162|\\063|\\066|\\065]"], [[5, b['0x00000000000000']]]]]]]],
2813
+ ['application/x-uc2-compressed', [[0, b["UC2\032"]]]],
2814
+ ['application/x-vhd', [[0, b['conectix']]]],
2815
+ ['application/x-x509-cert;format=der', []],
2816
+ ['application/x-x509-cert;format=pem', [[0, b['-----BEGIN CERTIFICATE-----']]]],
2817
+ ['application/x-x509-dsa-parameters', [[0, b['-----BEGIN DSA PARAMETERS-----']]]],
2818
+ ['application/x-x509-ec-parameters', [[0, b['-----BEGIN EC PARAMETERS-----']]]],
2819
+ ['application/x-x509-key;format=pem', [[0, b['-----BEGIN PRIVATE KEY-----']], [0, b['-----BEGIN PUBLIC KEY-----']], [0, b['-----BEGIN KEY-----']], [0, b['-----BEGIN RSA KEY-----']], [0, b['-----BEGIN RSA PRIVATE KEY-----']], [0, b['-----BEGIN DSA KEY-----']], [0, b['-----BEGIN DSA PRIVATE KEY-----']]]],
2820
+ ['application/x-xz', [[0, b["\3757zXZ\000"]]]],
2821
+ ['application/x-zim', [[0, b['0x5A494D04']]]],
2822
+ ['application/x-zoo', [[20, b["\334\247\304\375"]]]],
2823
+ ['application/xml', [[0, b['<?xml']], [0, b['<?XML']], [0, b["\357\273\277<?xml"]], [0, b["\377\376<\000?\000x\000m\000l\000"]], [0, b["\376\377\000<\000?\000x\000m\000l"]]]],
2824
+ ['application/zip', [[0, b["PK\003\004"]], [0, b["PK\005\006"]], [0, b["PK\a\b"]]]],
2825
+ ['application/zstd', [[0, b["(\265/\375"]]]],
2826
+ ['audio/ac3', [[0, b["\vw"]]]],
2827
+ ['audio/amr-wb', [[0, b["#!AMR-WB\n"]]]],
2828
+ ['audio/eac3', [[0, b["\vw"]]]],
2829
+ ['audio/prs.sid', [[0, b['PSID']]]],
2830
+ ['audio/webm', [[0, b["\032E\337\243"], [[4..4096, b["B\202"], [[4..4096, b['webm'], [[4..4096, b['A_VORBIS']], [4..4096, b['A_OPUS']]]]]]]]]],
2831
+ ['audio/x-flac', [[0, b['fLaC']]]],
2832
+ ['audio/x-mod', [[0, b['Extended Module:']], [21, b['BMOD2STM']], [1080, b['M.K.']], [1080, b['M!K!']], [1080, b['FLT4']], [1080, b['FLT8']], [1080, b['4CHN']], [1080, b['6CHN']], [1080, b['8CHN']], [1080, b['CD81']], [1080, b['OKTA']], [1080, b['16CN']], [1080, b['32CN']], [0, b['IMPM']]]],
2833
+ ['audio/x-mpegurl', [[0, b["#EXTM3U\r\n"]]]],
2834
+ ['audio/x-ms-wma', [[0..8192, b['Windows Media Audio']]]],
2835
+ ['audio/x-pn-realaudio', [[0, b[".ra\375"]]]],
2836
+ ['audio/x-psf', [[0, b['PSF'], [[3, b["\001"]], [3, b["\002"]], [3, b["\021"]], [3, b["\022"]], [3, b["\023"]], [3, b['!']], [3, b["\""]], [3, b['#']], [3, b['A']]]]]],
2837
+ ['audio/x-sap', [[0, b["SAP\r\n"]]]],
2838
+ ['chemical/x-cdx', [[0, b['VjCD0100']]]],
2839
+ ['font/woff', [[0, b['wOFF']]]],
2840
+ ['font/woff2', [[0, b['wOF2']]]],
2841
+ ['image/aces', [[0, b["v/1\001\002\000\000\000"]], [0, b["v/1\001\002\004\000\000"]]]],
2842
+ ['image/cgm', [[0, b['BEGMF']]]],
2843
+ ['image/emf', [[0, b["\001\000\000\000"], [[40, b[' EMF']]]]]],
2844
+ ['image/fits', [[0, b['SIMPLE = ']]]],
2845
+ ['image/heic', [[4, b['ftypheic']], [4, b['ftypheix']]]],
2846
+ ['image/heic-sequence', [[4, b['ftyphevc']], [4, b['ftyphevx']]]],
2847
+ ['image/heif', [[4, b['ftypmif1']]]],
2848
+ ['image/heif-sequence', [[4, b['ftypmsf1']]]],
2849
+ ['image/icns', [[0, b['icns']]]],
2850
+ ['image/jp2', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jp2 ']]]]]],
2851
+ ['image/jpm', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jpm ']]]]]],
2852
+ ['image/jpx', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['jpx ']]]]]],
2853
+ ['image/jxl', [[0, b["\377\n"]], [0, b["\000\000\000\fJXL \r\n\207\n"]]]],
2854
+ ['image/nitf', [[0, b['NITF01.10']], [0, b['NITF02.000']], [0, b['NITF02.100']]]],
2855
+ ['image/svg+xml', [[0, b['<svg'], [[5..256, b['http://www.w3.org/2000/svg']]]]]],
2856
+ ['image/vnd.dgn;version=7', []],
2857
+ ['image/vnd.djvu', [[0, b['AT&TFORM']]]],
2858
+ ['image/vnd.dwg', [[0, b['MC0.0']], [0, b['AC1.2']], [0, b['AC1.40']], [0, b['AC1.50']], [0, b['AC2.10']], [0, b['AC2.21']], [0, b['AC2.22']]]],
2859
+ ['image/vnd.dxb', [[0, b["AutoCAD DXB 1.0\r\n0x1A00"]]]],
2860
+ ['image/vnd.dxf;format=ascii', [[0..32, b["(999\\r?\\n[^\\r\\n]{0,64}\\\\s+)?0\\r?\\nSECTION\\r?\\n"], [[12..60, b["2\\r?\\n(?:HEADER|ENTITIES)\\r?\\n"]]]]]],
2861
+ ['image/vnd.dxf;format=binary', [[0, b["AutoCAD Binary DXF\r\n0x1A00"]]]],
2862
+ ['image/vnd.microsoft.icon', [[0, b["BA(\000\000\000.\000\000\000\000\000\000\000"]], [0, b["\000\000\001\000"]]]],
2863
+ ['image/vnd.ms-modi', [[0, b["EP*\000"]]]],
2864
+ ['image/vnd.zbrush.dcx', [[0, b["\261h\336:"]]]],
2865
+ ['image/wmf', [[0, b["\327\315\306\232\000\000"]], [0, b["\001\000\t\000\000\003"]]]],
2866
+ ['image/x-3ds', [[0, b['MM'], [[6, b["\002\000\n\000\000\000"], [[16, b['==']]]]]]]],
2867
+ ['image/x-bpg', [[0, b["BPG\373"]]]],
2868
+ ['image/x-dpx', [[0, b['SDPX']], [0, b['XPDS']]]],
2869
+ ['image/x-freehand', [[0, b['AGD2']], [0, b['AGD3']], [0, b['AGD4']], [0..24, b['FreeHand10']], [0..24, b['FreeHand11']], [0..24, b['FreeHand12']]]],
2870
+ ['image/x-jbig2', [[0, b["\227JB2\r\n\032\n"]]]],
2871
+ ['image/x-jp2-container', [[0, b["\000\000\000\fjP \r\n\207\n"]]]],
2872
+ ['image/x-niff', [[0, b['IIN1']]]],
2873
+ ['image/x-os2-graphics; charset=binary', [[0, b['BA'], [[14, b['BM']], [14, b['CI']], [14, b['IC']], [14, b['CP']], [14, b['PT']]]]]],
2874
+ ['image/x-pict', [[522, b["\000\021\002\377\f\000"]]]],
2875
+ ['image/x-portable-arbitrarymap', [[0, b['P7'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
2876
+ ['image/x-portable-bitmap', [[0, b['P1'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P4'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
2877
+ ['image/x-portable-graymap', [[0, b['P2'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P5'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
2878
+ ['image/x-portable-pixmap', [[0, b['P3'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]], [0, b['P6'], [[2, b["\n"]], [2, b["\r"]], [2, b[' ']]]]]],
2879
+ ['image/x-raw-canon', [[0, b["II\032\000\000\000HEAPCCDR"]]]],
2880
+ ['image/x-raw-olympus', [[0, b['IIRO']]]],
2881
+ ['image/x-rgb', [[0, b["\001\332\001\001\000\003"]]]],
2882
+ ['image/x-xbitmap', [[0, b['/* XPM']]]],
2883
+ ['image/x-xcf', [[0, b['gimp xcf ']]]],
2884
+ ['message/news', [[0, b['Article']]]],
2885
+ ['message/rfc822', [[0, b['Relay-Version:']], [0, b['#! rnews']], [0, b['N#! rnews']], [0, b['Forward to']], [0, b['Pipe to']], [0, b['Return-Path:']], [0, b['Message-ID:']], [0, b['X-Mailer:']], [0, b['X-Notes-Item:'], [[0..8192, b['Message-ID:']]]], [0, b['(X|DKIM|ARC)-'], [[0..8192, b["\nDate:"]], [0..8192, b["\nDelivered-To:"]], [0..8192, b["\nFrom:"]], [0..8192, b["\nMessage-ID:"]], [0..8192, b["\nMIME-Version:"]], [0..8192, b["\nReceived:"]], [0..8192, b["\nRelay-Version:"]], [0..8192, b["\nReturn-Path:"]], [0..8192, b["\nStatus:"]], [0..8192, b["\nUser-Agent:"]], [0..8192, b["\nX-Mailer:"]], [0..8192, b["\nX-Originating-IP:"]]]]]],
2886
+ ['model/vnd.dwf', [[0, b['(DWF V'], [[8, b['.'], [[11, b[')']]]]]]]],
2887
+ ['multipart/appledouble', [[0, b["\000\005\026\a"]]]],
2888
+ ['text/calendar', [[0, b['BEGIN:VCALENDAR'], [[15..360, b["\nVERSION:2.0"]]]]]],
2889
+ ['text/javascript', [[0, b['/* jQuery ']], [0, b['/*! jQuery ']], [0, b['/*!'], [[4..8, b['* jQuery ']]]], [0, b['(function(e,undefined){']], [0, b['!function(window,undefined){']], [0, b['/* Prototype JavaScript ']], [0, b['var Prototype={']], [0, b['function $w(t){']], [0, b['/** @license React']], [0, b['/**'], [[4..8, b['* React ']]]]]],
2890
+ ['text/troff', [[0, b[".\\\""]], [0, b["'\\\""]], [0, b["'.\\\""]], [0, b["\\\""]], [0, b["'''"]]]],
2891
+ ['text/vnd.graphviz', [[0, b["(?s)^\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]], [0, b["(?s)^(?:\\\\s*//[^\\\\n]*\\n){1,10}\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]], [0, b["(?s)^\\\\s*/\\\\*.{0,1024}?\\\\*/\\\\s*(?:strict\\\\s+)?(?:di)?graph\\\\b"]]]],
2892
+ ['text/vnd.iptc.anpa', [[0, b["\026\026\001"]]]],
2893
+ ['text/x-awk', [[0, b['#!/bin/gawk']], [0, b['#! /bin/gawk']], [0, b['#!/usr/bin/gawk']], [0, b['#! /usr/bin/gawk']], [0, b['#!/usr/local/bin/gawk']], [0, b['#! /usr/local/bin/gawk']], [0, b['#!/bin/awk']], [0, b['#! /bin/awk']], [0, b['#!/usr/bin/awk']], [0, b['#! /usr/bin/awk']]]],
2894
+ ['text/x-diff', [[0, b['diff ']], [0, b['*** ']], [0, b['Only in ']], [0, b['Common subdirectories: ']], [0, b['Index:']]]],
2895
+ ['text/x-jsp', [[0, b['<%@']], [0, b['<%--']]]],
2896
+ ['text/x-matlab', [[0, b['function [']]]],
2897
+ ['text/x-perl', [[0, b["eval \"exec /usr/local/bin/perl"]], [0, b['#!/bin/perl']], [0, b['#!/bin/env perl']], [0, b['#!/usr/bin/perl']], [0, b['#!/usr/local/bin/perl']]]],
2898
+ ['text/x-php', [[0, b['<?php']]]],
2899
+ ['text/x-python', [[0, b['#!/bin/python']], [0, b['#! /bin/python']], [0, b["eval \"exec /bin/python"]], [0, b['#!/usr/bin/python']], [0, b['#! /usr/bin/python']], [0, b["eval \"exec /usr/bin/python"]], [0, b['#!/usr/local/bin/python']], [0, b['#! /usr/local/bin/python']], [0, b["eval \"exec /usr/local/bin/python"]], [1, b['/bin/env python']]]],
2900
+ ['text/x-vcalendar', [[0, b['BEGIN:VCALENDAR'], [[15..30, b['VERSION:1.0']]]]]],
2901
+ ['text/x-vcard', [[0, b['BEGIN:VCARD']]]],
2902
+ ['video/mj2', [[0, b["\000\000\000\fjP \r\n\207\n"], [[20, b['mjp2']]]]]],
2903
+ ['video/x-jng', [[0, b["\213JNG"]]]],
2904
+ ['video/x-mng', [[0, b["\212MNG"]]]],
2905
+ ['video/x-ms-asf', [[0, b["0&\262u"]]]],
2906
+ ['video/x-sgi-movie', [[0, b["MOVI\000"]], [0, b["MOVI\001"]], [0, b["MOVI\002"]], [0, b["MOVI\376"]], [0, b["MOVI\377"]]]],
2907
+ ['application/gzip', [[0, b["\037\213"]], [0, b["\037\213"]]]],
2908
+ ['application/zlib', [[0, b["x\001"]], [0, b['x^']], [0, b["x\234"]], [0, b["x\332"]]]],
2909
+ ['message/rfc822', [[0, nil, [[0, nil, [[0, b['Content-ID:']], [0, b['Content-Location:']], [0, b['Content-Transfer-Encoding:']], [0, b['Content-Type:']], [0, b['Date:']], [0, b['Delivered-To:']], [0, b['From:']], [0, b['Message-ID:']], [0, b['MIME-Version:']], [0, b['Received:']], [0, b['Relay-Version:']], [0, b['Return-Path:']], [0, b['Sent:']], [0, b['Status:']], [0, b['Subject:']], [0, b['To:']], [0, b['User-Agent:']], [0, b['X-Mailer:']], [0, b['X-Originating-IP:']], [0, b["\357\273\277"], [[3, b['Content-ID:']], [3, b['Content-Location:']], [3, b['Content-Transfer-Encoding:']], [3, b['Content-Type:']], [3, b['Date:']], [3, b['Delivered-To:']], [3, b['From:']], [3, b['Message-ID:']], [3, b['MIME-Version:']], [3, b['Received:']], [3, b['Relay-Version:']], [3, b['Return-Path:']], [3, b['Sent:']], [3, b['Status:']], [3, b['Subject:']], [3, b['To:']], [3, b['User-Agent:']], [3, b['X-Mailer:']], [3, b['X-Originating-IP:']]]]]], [0, nil, [[0..1024, b["\nContent-ID:"]], [0..1024, b["\nContent-Location:"]], [0..1024, b["\nContent-Transfer-Encoding:"]], [0..1024, b["\nContent-Type:"]], [0..1024, b["\nDate:"]], [0..1024, b["\nDelivered-To:"]], [0..1024, b["\nFrom:"]], [0..1024, b["\nMIME-Version:"]], [0..1024, b["\nReceived:"]], [0..1024, b["\nRelay-Version:"]], [0..1024, b["\nReturn-Path:"]], [0..1024, b["\nSent:"]], [0..1024, b["\nStatus:"]], [0..1024, b["\nSubject:"]], [0..1024, b["\nTo:"]], [0..1024, b["\nUser-Agent:"]], [0..1024, b["\nX-Mailer:"]], [0..1024, b["\nX-Originating-IP:"]], [0..1024, b["\nDKIM-"]], [0..1024, b["\nARC-"]]]]]]]],
2910
+ ['application/pdf', [[0..128, b['%%'], [[1..512, b['%PDF-1.']]]], [0..128, b['%%'], [[1..512, b['%PDF-2.']]]]]],
2911
+ ['application/vnd.wordperfect', [[0, b["\377WPC"]]]],
2912
+ ['application/x-bzip', [[0, b['BZ0']]]],
2913
+ ['application/x-bzip2', [[0, b['BZh[1-9]']]]],
2914
+ ['application/x-dbf', [[0, b["(?s)^[\\\\002\\\\003\\\\060\\\\061\\\\062\\\\103\\\\143\\\\203\\\\213\\\\313\\\\365\\\\345\\\\373].[\\\\001-\\\\014][\\\\001-\\\\037].{4}(?:.[^\\\\000]|[\\\\101-\\\\377].)(?:[^\\\\000\\\\001].|.[^\\\\000]).{31}(?<=[\\\\000][^\\\\000]{0,10})[A-Z@+]"]]]],
2915
+ ['application/x-font-adobe-metric', [[0, b['StartFontMetrics']]]],
2916
+ ['application/x-font-otf', [[0, b["OTTO\000"]]]],
2917
+ ['application/x-font-printer-metric', [[0, b["\000\001"], [[4, b["\000\000Copyr"]]]]]],
2918
+ ['application/x-font-ttf', [[0, b["\000\001\000\000"]]]],
2919
+ ['application/x-matroska', [[0, b["\032E\337\243"]]]],
2920
+ ['application/x-mysql-misam-compressed-index', [[0, b["\376\376\006"]], [0, b["\376\376\a"]]]],
2921
+ ['application/x-mysql-misam-index', [[0, b["\376\376\003"]], [0, b["\376\376\005"]]]],
2922
+ ['application/x-mysql-table-definition', [[0, b["\376\001\a"]], [0, b["\376\001\b"]], [0, b["\376\001\t"]], [0, b["\376\001\n"]], [0, b["\376\001\v"]], [0, b["\376\001\f"]]]],
2923
+ ['application/x-sas-data', [[84, b['SAS FILE']]]],
2924
+ ['application/x-sas-data-v6', [[0, b['SAS 6.']], [0, b['SAS 7.']], [0, b['SAS 8.0']], [0, b['SAS 9.0']]]],
2925
+ ['application/x-sas-xport', [[0, b['HEADER RECORD*******LIBRARY HEADER RECORD!!!!!!!']]]],
2926
+ ['application/x-stata-dta', [[0, b['<stata_dta>']]]],
2927
+ ['application/x-tar', [[257, b["ustar\000"]]]],
2928
+ ['application/x-tika-msoffice', [[0..8, b["\320\317\021\340\241\261\032\341"]]]],
2929
+ ['application/x-x509-key;format=der', []],
2930
+ ['application/xhtml+xml', [[0..8192, b['<html xmlns=']]]],
2931
+ ['audio/ac3', [[0, b["\vw"]]]],
2932
+ ['audio/amr', [[0, b["#!AMR\n"]], [0, b['#!AMR']]]],
2933
+ ['audio/x-aac', [[0, b['ID3'], [[512..2048, b["\\\\377(\\\\360|\\\\361|\\\\370|\\\\371)(\\\\100|\\\\101|\\\\104|\\\\105|\\\\110|\\\\111|\\\\114|\\\\115|\\\\120|\\\\121|\\\\124|\\\\125|\\\\130|\\\\131|\\\\134|\\\\135|\\\\140|\\\\141|\\\\144|\\\\145|\\\\150|\\\\151|\\\\154|\\\\155|\\\\160|\\\\161|\\\\200|\\\\201|\\\\204|\\\\205|\\\\210|\\\\211|\\\\214|\\\\215|\\\\220|\\\\221|\\\\224|\\\\225|\\\\230|\\\\231|\\\\234|\\\\235|\\\\240|\\\\241|\\\\244|\\\\245|\\\\250|\\\\251|\\\\254|\\\\255|\\\\260|\\\\261)(\\\\000|\\\\001|\\\\040|\\\\100|\\\\101|\\\\140|\\\\200|\\\\201|\\\\140|\\\\240|\\\\300|\\\\301|\\\\340)"]]]]]],
2934
+ ['image/vnd.zbrush.pcx', [[0, b["\n"], [[1, b["\000"]], [1, b["\002"]], [1, b["\003"]], [1, b["\004"]], [1, b["\005"]]]]]],
2935
+ ['message/rfc822', [[0..1000, b["\nMessage-ID:"]]]],
2936
+ ['text/html', [[0..64, b['<!DOCTYPE HTML']], [0..64, b['<!DOCTYPE html']], [0..64, b['<!doctype HTML']], [0..64, b['<!doctype html']], [0..64, b['<HEAD']], [0..64, b['<head']], [0..64, b['<TITLE']], [0..64, b['<title']], [0..64, b['<HTML']], [0..128, b['<html']]]],
2937
+ ['text/vtt', [[0, b["WEBVTT\r"]], [0, b["WEBVTT\n"]], [0, b['0xfeff'], [[2, b["WEBVTT\r"]], [2, b["WEBVTT\n"]]]], [0, b['0xfeff'], [[2, b["WEBVTT\r"]], [2, b["WEBVTT\n"]]]], [0, b['0xefbbbf'], [[3, b["WEBVTT\r"]], [3, b["WEBVTT\n"]]]], [0, b["WEBVTT FILE\r"]], [0, b["WEBVTT FILE\n"]]]],
2938
+ ['text/x-matlab', [[0, b["function [a-zA-Z][A-Za-z0-9_]{0,62}\\\\s*="]]]],
2939
+ ['text/x-matlab', [[0, b["function [a-zA-Z][A-Za-z0-9_]{0,62}[\\\\r\\\\n]"]]]],
2940
+ ['application/inf', [[0, b['[version]']], [0, b['[strings]']]]],
2941
+ ['application/x-bibtex-text-file', [[0, b['%'], [[2..128, b["\n@article{"]], [2..128, b["\n@book{"]], [2..128, b["\n@inbook{"]], [2..128, b["\n@incollection{"]], [2..128, b["\n@inproceedings{"]], [2..128, b["\n@manual{"]], [2..128, b["\n@misc{"]], [2..128, b["\n@preamble{"]], [2..128, b["\n@phdthesis{"]], [2..128, b["\n@string{"]], [2..128, b["\n@techreport{"]], [2..128, b["\n@unpublished{"]]]]]],
2942
+ ['application/xml', [[0, b['<!--']]]],
2943
+ ['audio/x-aac', [[0, b["\\\\377(\\\\360|\\\\361|\\\\370|\\\\371)(\\\\100|\\\\101|\\\\104|\\\\105|\\\\110|\\\\111|\\\\114|\\\\115|\\\\120|\\\\121|\\\\124|\\\\125|\\\\130|\\\\131|\\\\134|\\\\135|\\\\140|\\\\141|\\\\144|\\\\145|\\\\150|\\\\151|\\\\154|\\\\155|\\\\160|\\\\161|\\\\200|\\\\201|\\\\204|\\\\205|\\\\210|\\\\211|\\\\214|\\\\215|\\\\220|\\\\221|\\\\224|\\\\225|\\\\230|\\\\231|\\\\234|\\\\235|\\\\240|\\\\241|\\\\244|\\\\245|\\\\250|\\\\251|\\\\254|\\\\255|\\\\260|\\\\261)(\\\\000|\\\\001|\\\\040|\\\\100|\\\\101|\\\\140|\\\\200|\\\\201|\\\\140|\\\\240|\\\\300|\\\\301|\\\\340)"]]]],
2944
+ ['text/vtt', [[0, b['WEBVTT '], [[10..50, b["\n\n"]]]], [0, b['WEBVTT '], [[10..50, b["\r\r"]]]], [0, b['WEBVTT '], [[10..50, b["\r\n\r\n"]]]]]],
2945
+ ['text/x-chdr', [[0, b['#ifndef ']]]],
2946
+ ['text/x-csrc', [[0, b['#include ']]]],
2947
+ ['image/x-jp2-codestream', [[0, b["\377O\377Q"]]]],
2948
+ ['text/x-matlab', [[0, b['%'], [[2..120, b["\n%"]]]], [0, b['%'], [[2..120, b["\r%"]]]], [0, b['%%']]]],
2949
+ ['application/pdf', [[1..512, b['%PDF-1.']], [1..512, b['%PDF-2.']]]],
2950
+ ['application/vnd.msa-disk-image', [[0, b["\016\017"]]]],
2951
+ ['audio/basic', [[0, b['.snd'], [[12, b["\000\000\000\001"]], [12, b["\000\000\000\002"]], [12, b["\000\000\000\003"]], [12, b["\000\000\000\004"]], [12, b["\000\000\000\005"]], [12, b["\000\000\000\006"]], [12, b["\000\000\000\a"]]]], [0, b[".snd\000\000\000"]]]],
2952
+ ['audio/midi', [[0, b['MThd']]]],
2953
+ ['audio/vnd.wave', [[0, b['RIFF'], [[8, b['WAVE']]]]]],
2954
+ ['audio/x-adpcm', [[0, b['.snd'], [[12, b["\000\000\000\027"]]]]]],
2955
+ ['audio/x-aiff', [[0, b['FORM'], [[8, b['AIFF']]]], [0, b['FORM'], [[8, b['AIFC']]]], [0, b['FORM'], [[8, b['8SVX']]]], [0, b["FORM\000"]]]],
2956
+ ['audio/x-dec-adpcm', [[0, b["\000ds."], [[12, b["\000\000\000\027"]]]]]],
2957
+ ['audio/x-dec-basic', [[0, b["\000ds."], [[12, b["\000\000\000\001"]], [12, b["\000\000\000\002"]], [12, b["\000\000\000\003"]], [12, b["\000\000\000\004"]], [12, b["\000\000\000\005"]], [12, b["\000\000\000\006"]], [12, b["\000\000\000\a"]]]]]],
2958
+ ['text/html', [[128..8192, b['<html']]]],
2959
+ ['text/plain', [[0, b['This is TeX,']], [0, b['This is METAFONT,']], [0, b['/*']], [0, b['//']], [0, b[';;']], [0, b["\376\377"]], [0, b["\377\376"]], [0, b["\357\273\277"]]]],
2960
+ ['text/x-makefile', [[0, b['# Makefile.in generated by']], [0, b['#!make']], [0, b['#!/usr/bin/make']], [0, b['#!/usr/local/bin/make']], [0, b['#!/usr/bin/env make']]]],
2961
+ ]
2962
+ end