@heal-dev/heal-playwright-tracer 1.0.0 → 1.0.8

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 (704) hide show
  1. package/README.md +94 -116
  2. package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
  3. package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
  4. package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
  5. package/dist/application/heal-config/index.d.ts +1 -1
  6. package/dist/application/heal-config/registry.js +2 -1
  7. package/dist/application/heal-config/types.d.ts +187 -6
  8. package/dist/application/playwright-fixture/index.js +247 -48
  9. package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
  10. package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
  11. package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
  12. package/dist/application/trace-event-recorder-runtime/index.js +11 -1
  13. package/dist/bin/heal-tracer.d.ts +7 -0
  14. package/dist/bin/heal-tracer.js +16 -0
  15. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
  16. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
  17. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
  18. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
  19. package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
  20. package/dist/domain/persistence/execution-history-schema.js +10 -0
  21. package/dist/domain/persistence/index.d.ts +7 -0
  22. package/dist/domain/persistence/index.js +10 -0
  23. package/dist/domain/persistence/test-status.d.ts +6 -0
  24. package/dist/domain/persistence/test-status.js +7 -0
  25. package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
  26. package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
  27. package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
  28. package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
  29. package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
  30. package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
  31. package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
  32. package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
  33. package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
  34. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
  35. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
  36. package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
  37. package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
  38. package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
  39. package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
  40. package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
  41. package/dist/index.d.ts +1 -1
  42. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
  43. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
  44. package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
  45. package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
  46. package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
  47. package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
  48. package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
  49. package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
  50. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
  51. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
  52. package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
  53. package/dist/infrastructure/heal-reporter/index.js +23 -0
  54. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
  55. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
  56. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
  57. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
  58. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
  59. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
  60. package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
  61. package/dist/infrastructure/heal-traces-layout/index.js +14 -0
  62. package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
  63. package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
  64. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
  65. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
  66. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
  67. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
  68. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
  69. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
  70. package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
  71. package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
  72. package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
  73. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
  74. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
  75. package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
  76. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
  77. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
  78. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
  79. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
  80. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
  81. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
  82. package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
  83. package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
  84. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
  85. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
  86. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
  87. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
  88. package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
  89. package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
  90. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
  91. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
  92. package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
  93. package/dist/util/logger.d.ts +17 -0
  94. package/dist/util/logger.js +60 -0
  95. package/dist/util/with-timeout.d.ts +6 -0
  96. package/dist/util/with-timeout.js +33 -0
  97. package/package.json +20 -3
  98. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
  99. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
  100. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
  101. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
  102. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
  103. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
  104. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
  105. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
  106. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
  107. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
  108. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
  109. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
  110. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
  111. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
  112. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
  113. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
  114. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
  115. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
  116. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
  117. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
  118. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
  119. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
  120. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
  121. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
  122. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
  123. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
  124. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
  125. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
  126. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
  127. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
  128. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
  129. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
  130. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
  131. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
  132. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
  133. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
  134. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
  135. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
  136. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
  137. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
  138. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
  139. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
  140. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
  141. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
  142. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
  143. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
  144. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
  145. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
  146. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
  147. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
  148. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
  149. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
  150. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
  151. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
  152. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
  153. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
  154. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
  155. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
  156. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
  157. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
  158. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
  159. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
  160. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
  161. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
  162. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
  163. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
  164. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
  165. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
  166. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
  167. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
  168. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
  169. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
  170. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
  171. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
  172. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
  173. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
  174. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
  175. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
  176. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
  177. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
  178. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
  179. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
  180. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
  181. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
  182. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
  183. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
  184. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
  185. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
  186. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
  187. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
  188. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
  189. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
  190. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
  191. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
  192. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
  193. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
  194. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
  195. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
  196. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
  197. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
  198. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
  199. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
  200. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
  201. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
  202. package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
  203. package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
  204. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
  205. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
  206. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
  207. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
  208. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
  209. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
  210. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
  211. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
  212. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
  213. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
  214. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
  215. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
  216. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
  217. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
  218. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
  219. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
  220. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
  221. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
  222. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
  223. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
  224. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
  225. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
  226. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
  227. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
  228. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
  229. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
  230. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
  231. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
  232. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
  233. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
  234. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
  235. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
  236. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
  237. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
  238. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
  239. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
  240. package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
  241. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
  242. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
  243. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
  244. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
  245. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
  246. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
  247. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
  248. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
  249. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
  250. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
  251. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
  252. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
  253. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
  254. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
  255. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
  256. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
  257. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
  258. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
  259. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
  260. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
  261. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
  262. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
  263. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
  264. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
  265. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
  266. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
  267. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
  268. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
  269. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
  270. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
  271. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
  272. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
  273. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
  274. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
  275. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
  276. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
  277. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
  278. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
  279. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
  280. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
  281. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
  282. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
  283. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
  284. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
  285. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
  286. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
  287. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
  288. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
  289. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
  290. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
  291. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
  292. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
  293. package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
  294. package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
  295. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
  296. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
  297. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
  298. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
  299. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
  300. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
  301. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
  302. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
  303. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
  304. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
  305. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
  306. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
  307. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
  308. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
  309. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
  310. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
  311. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
  312. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
  313. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
  314. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
  315. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
  316. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
  317. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
  318. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
  319. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
  320. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
  321. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
  322. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
  323. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
  324. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
  325. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
  326. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
  327. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
  328. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
  329. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
  330. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
  331. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
  332. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
  333. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
  334. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
  335. package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
  336. package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
  337. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
  338. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
  339. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
  340. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
  341. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
  342. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
  343. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
  344. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
  345. package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
  346. package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
  347. package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
  348. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
  349. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
  350. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
  351. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
  352. package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
  353. package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
  354. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
  355. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
  356. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
  357. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
  358. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
  359. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
  360. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
  361. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
  362. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
  363. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
  364. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
  365. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
  366. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
  367. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
  368. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
  369. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
  370. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
  371. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
  372. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
  373. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
  374. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
  375. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
  376. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
  377. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
  378. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
  379. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
  380. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
  381. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
  382. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
  383. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
  384. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
  385. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
  386. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
  387. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
  388. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
  389. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
  390. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
  391. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
  392. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
  393. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
  394. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
  395. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
  396. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
  397. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
  398. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
  399. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
  400. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
  401. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
  402. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
  403. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
  404. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
  405. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
  406. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
  407. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
  408. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
  409. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
  410. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
  411. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
  412. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
  413. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
  414. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
  415. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
  416. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
  417. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
  418. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
  419. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
  420. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
  421. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
  422. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
  423. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
  424. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
  425. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
  426. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
  427. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
  428. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
  429. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
  430. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
  431. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
  432. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
  433. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
  434. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
  435. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
  436. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
  437. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
  438. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
  439. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
  440. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
  441. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
  442. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
  443. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
  444. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
  445. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
  446. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
  447. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
  448. package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
  449. package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
  450. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
  451. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
  452. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
  453. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
  454. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
  455. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
  456. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
  457. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
  458. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
  459. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
  460. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
  461. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
  462. package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
  463. package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
  464. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
  465. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
  466. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
  467. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
  468. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
  469. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
  470. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
  471. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
  472. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
  473. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
  474. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
  475. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
  476. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
  477. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
  478. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
  479. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
  480. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
  481. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
  482. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
  483. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
  484. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
  485. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
  486. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
  487. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
  488. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
  489. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
  490. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
  491. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
  492. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
  493. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
  494. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
  495. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
  496. package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
  497. package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
  498. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
  499. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
  500. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
  501. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
  502. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
  503. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
  504. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
  505. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
  506. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
  507. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
  508. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
  509. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
  510. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
  511. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
  512. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
  513. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
  514. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
  515. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
  516. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
  517. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
  518. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
  519. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
  520. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
  521. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
  522. package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
  523. package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
  524. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
  525. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
  526. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
  527. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
  528. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
  529. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
  530. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
  531. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
  532. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
  533. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
  534. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
  535. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
  536. package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
  537. package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
  538. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
  539. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
  540. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
  541. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
  542. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
  543. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
  544. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
  545. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
  546. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
  547. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
  548. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
  549. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
  550. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
  551. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
  552. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
  553. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
  554. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
  555. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
  556. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
  557. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
  558. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
  559. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
  560. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
  561. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
  562. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
  563. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
  564. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
  565. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
  566. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
  567. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
  568. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
  569. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
  570. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
  571. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
  572. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
  573. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
  574. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
  575. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
  576. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
  577. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
  578. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
  579. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
  580. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
  581. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
  582. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
  583. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
  584. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
  585. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
  586. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
  587. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
  588. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
  589. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
  590. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
  591. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
  592. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
  593. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
  594. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
  595. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
  596. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
  597. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
  598. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
  599. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
  600. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
  601. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
  602. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
  603. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
  604. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
  605. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
  606. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
  607. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
  608. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
  609. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
  610. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
  611. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
  612. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
  613. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
  614. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
  615. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
  616. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
  617. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
  618. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
  619. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
  620. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
  621. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
  622. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
  623. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
  624. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
  625. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
  626. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
  627. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
  628. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
  629. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
  630. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
  631. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
  632. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
  633. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
  634. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
  635. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
  636. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
  637. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
  638. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
  639. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
  640. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
  641. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
  642. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
  643. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
  644. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
  645. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
  646. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
  647. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
  648. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
  649. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
  650. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
  651. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
  652. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
  653. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
  654. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
  655. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
  656. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
  657. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
  658. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
  659. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
  660. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
  661. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
  662. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
  663. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
  664. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
  665. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
  666. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
  667. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
  668. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
  669. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
  670. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
  671. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
  672. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
  673. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
  674. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
  675. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
  676. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
  677. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
  678. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
  679. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
  680. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
  681. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
  682. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
  683. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
  684. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
  685. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
  686. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
  687. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
  688. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
  689. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
  690. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
  691. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
  692. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
  693. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
  694. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
  695. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
  696. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
  697. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
  698. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
  699. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
  700. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
  701. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
  702. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
  703. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
  704. package/tracer-viewer-bundle/index.html +25 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"slack-ochin-DqwNpetd.js","sources":["../../../../node_modules/@shikijs/themes/dist/slack-ochin.mjs"],"sourcesContent":["/* Theme: slack-ochin */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#161F26\\\",\\\"activityBar.dropBackground\\\":\\\"#FFF\\\",\\\"activityBar.foreground\\\":\\\"#FFF\\\",\\\"activityBarBadge.background\\\":\\\"#8AE773\\\",\\\"activityBarBadge.foreground\\\":\\\"#FFF\\\",\\\"badge.background\\\":\\\"#8AE773\\\",\\\"breadcrumb.focusForeground\\\":\\\"#475663\\\",\\\"breadcrumb.foreground\\\":\\\"#161F26\\\",\\\"button.background\\\":\\\"#475663\\\",\\\"button.foreground\\\":\\\"#FFF\\\",\\\"button.hoverBackground\\\":\\\"#161F26\\\",\\\"debugExceptionWidget.background\\\":\\\"#AED4FB\\\",\\\"debugExceptionWidget.border\\\":\\\"#161F26\\\",\\\"debugToolBar.background\\\":\\\"#161F26\\\",\\\"dropdown.background\\\":\\\"#FFF\\\",\\\"dropdown.border\\\":\\\"#DCDEDF\\\",\\\"dropdown.foreground\\\":\\\"#DCDEDF\\\",\\\"dropdown.listBackground\\\":\\\"#FFF\\\",\\\"editor.background\\\":\\\"#FFF\\\",\\\"editor.findMatchBackground\\\":\\\"#AED4FB\\\",\\\"editor.foreground\\\":\\\"#000\\\",\\\"editor.lineHighlightBackground\\\":\\\"#EEEEEE\\\",\\\"editor.selectionBackground\\\":\\\"#AED4FB\\\",\\\"editor.wordHighlightBackground\\\":\\\"#AED4FB\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#EEEEEE\\\",\\\"editorActiveLineNumber.foreground\\\":\\\"#475663\\\",\\\"editorGroup.emptyBackground\\\":\\\"#2D3E4C\\\",\\\"editorGroup.focusedEmptyBorder\\\":\\\"#2D3E4C\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#2D3E4C\\\",\\\"editorHint.border\\\":\\\"#F9F9F9\\\",\\\"editorHint.foreground\\\":\\\"#F9F9F9\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#dbdbdb\\\",\\\"editorIndentGuide.background\\\":\\\"#F3F3F3\\\",\\\"editorLineNumber.foreground\\\":\\\"#b9b9b9\\\",\\\"editorMarkerNavigation.background\\\":\\\"#F9F9F9\\\",\\\"editorMarkerNavigationError.background\\\":\\\"#F44C5E\\\",\\\"editorMarkerNavigationInfo.background\\\":\\\"#6182b8\\\",\\\"editorMarkerNavigationWarning.background\\\":\\\"#F6B555\\\",\\\"editorPane.background\\\":\\\"#2D3E4C\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#2D3E4C\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#2D3E4C\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#b9b9b9\\\",\\\"editorWidget.background\\\":\\\"#F9F9F9\\\",\\\"editorWidget.border\\\":\\\"#dbdbdb\\\",\\\"extensionButton.prominentBackground\\\":\\\"#475663\\\",\\\"extensionButton.prominentForeground\\\":\\\"#F6F6F6\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#161F26\\\",\\\"focusBorder\\\":\\\"#161F26\\\",\\\"foreground\\\":\\\"#616161\\\",\\\"gitDecoration.addedResourceForeground\\\":\\\"#ECB22E\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#FFF\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#FFF\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#877583\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#ECB22E\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#ECB22E\\\",\\\"input.background\\\":\\\"#FFF\\\",\\\"input.border\\\":\\\"#161F26\\\",\\\"input.foreground\\\":\\\"#000\\\",\\\"input.placeholderForeground\\\":\\\"#a0a0a0\\\",\\\"inputOption.activeBorder\\\":\\\"#3E313C\\\",\\\"inputValidation.errorBackground\\\":\\\"#F44C5E\\\",\\\"inputValidation.errorForeground\\\":\\\"#FFF\\\",\\\"inputValidation.infoBackground\\\":\\\"#6182b8\\\",\\\"inputValidation.infoForeground\\\":\\\"#FFF\\\",\\\"inputValidation.warningBackground\\\":\\\"#F6B555\\\",\\\"inputValidation.warningForeground\\\":\\\"#000\\\",\\\"list.activeSelectionBackground\\\":\\\"#5899C5\\\",\\\"list.activeSelectionForeground\\\":\\\"#fff\\\",\\\"list.focusBackground\\\":\\\"#d5e1ea\\\",\\\"list.focusForeground\\\":\\\"#fff\\\",\\\"list.highlightForeground\\\":\\\"#2D3E4C\\\",\\\"list.hoverBackground\\\":\\\"#d5e1ea\\\",\\\"list.hoverForeground\\\":\\\"#fff\\\",\\\"list.inactiveFocusBackground\\\":\\\"#161F26\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#5899C5\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#fff\\\",\\\"list.invalidItemForeground\\\":\\\"#fff\\\",\\\"menu.background\\\":\\\"#161F26\\\",\\\"menu.foreground\\\":\\\"#F9FAFA\\\",\\\"menu.separatorBackground\\\":\\\"#F9FAFA\\\",\\\"notificationCenter.border\\\":\\\"#161F26\\\",\\\"notificationCenterHeader.foreground\\\":\\\"#FFF\\\",\\\"notificationLink.foreground\\\":\\\"#FFF\\\",\\\"notificationToast.border\\\":\\\"#161F26\\\",\\\"notifications.background\\\":\\\"#161F26\\\",\\\"notifications.border\\\":\\\"#161F26\\\",\\\"notifications.foreground\\\":\\\"#FFF\\\",\\\"panel.border\\\":\\\"#2D3E4C\\\",\\\"panelTitle.activeForeground\\\":\\\"#161F26\\\",\\\"progressBar.background\\\":\\\"#8AE773\\\",\\\"scrollbar.shadow\\\":\\\"#ffffff00\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#161F267e\\\",\\\"scrollbarSlider.background\\\":\\\"#161F267e\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#161F267e\\\",\\\"settings.dropdownBorder\\\":\\\"#161F26\\\",\\\"settings.dropdownForeground\\\":\\\"#161F26\\\",\\\"settings.headerForeground\\\":\\\"#161F26\\\",\\\"sideBar.background\\\":\\\"#2D3E4C\\\",\\\"sideBar.foreground\\\":\\\"#DCDEDF\\\",\\\"sideBarSectionHeader.background\\\":\\\"#161F26\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#FFF\\\",\\\"sideBarTitle.foreground\\\":\\\"#FFF\\\",\\\"statusBar.background\\\":\\\"#5899C5\\\",\\\"statusBar.debuggingBackground\\\":\\\"#8AE773\\\",\\\"statusBar.foreground\\\":\\\"#FFF\\\",\\\"statusBar.noFolderBackground\\\":\\\"#161F26\\\",\\\"tab.activeBackground\\\":\\\"#FFF\\\",\\\"tab.activeForeground\\\":\\\"#000\\\",\\\"tab.border\\\":\\\"#F3F3F3\\\",\\\"tab.inactiveBackground\\\":\\\"#F3F3F3\\\",\\\"tab.inactiveForeground\\\":\\\"#686868\\\",\\\"terminal.ansiBlack\\\":\\\"#000000\\\",\\\"terminal.ansiBlue\\\":\\\"#6182b8\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#90a4ae\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#6182b8\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#39adb5\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#91b859\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#7c4dff\\\",\\\"terminal.ansiBrightRed\\\":\\\"#e53935\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#ffb62c\\\",\\\"terminal.ansiCyan\\\":\\\"#39adb5\\\",\\\"terminal.ansiGreen\\\":\\\"#91b859\\\",\\\"terminal.ansiMagenta\\\":\\\"#7c4dff\\\",\\\"terminal.ansiRed\\\":\\\"#e53935\\\",\\\"terminal.ansiWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiYellow\\\":\\\"#ffb62c\\\",\\\"terminal.border\\\":\\\"#2D3E4C\\\",\\\"terminal.foreground\\\":\\\"#161F26\\\",\\\"terminal.selectionBackground\\\":\\\"#0006\\\",\\\"textPreformat.foreground\\\":\\\"#161F26\\\",\\\"titleBar.activeBackground\\\":\\\"#2D3E4C\\\",\\\"titleBar.activeForeground\\\":\\\"#FFF\\\",\\\"titleBar.border\\\":\\\"#2D3E4C\\\",\\\"titleBar.inactiveBackground\\\":\\\"#161F26\\\",\\\"titleBar.inactiveForeground\\\":\\\"#685C66\\\",\\\"welcomePage.buttonBackground\\\":\\\"#F3F3F3\\\",\\\"welcomePage.buttonHoverBackground\\\":\\\"#ECECEC\\\",\\\"widget.shadow\\\":\\\"#161F2694\\\"},\\\"displayName\\\":\\\"Slack Ochin\\\",\\\"name\\\":\\\"slack-ochin\\\",\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#002339\\\"}},{\\\"scope\\\":[\\\"meta.paragraph.markdown\\\",\\\"string.other.link.description.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#110000\\\"}},{\\\"scope\\\":[\\\"entity.name.section.markdown\\\",\\\"punctuation.definition.heading.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#034c7c\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.string.begin.markdown\\\",\\\"punctuation.definition.string.end.markdown\\\",\\\"markup.quote.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#00AC8F\\\"}},{\\\"scope\\\":[\\\"markup.quote.markdown\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#003494\\\"}},{\\\"scope\\\":[\\\"markup.bold.markdown\\\",\\\"punctuation.definition.bold.markdown\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#4e76b5\\\"}},{\\\"scope\\\":[\\\"markup.italic.markdown\\\",\\\"punctuation.definition.italic.markdown\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":[\\\"markup.inline.raw.string.markdown\\\",\\\"markup.fenced_code.block.markdown\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#0460b1\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.metadata.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#00AC8F\\\"}},{\\\"scope\\\":[\\\"markup.underline.link.image.markdown\\\",\\\"markup.underline.link.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#924205\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#357b42\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#a44185\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":\\\"constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":\\\"language.method\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":[\\\"constant.character\\\",\\\"constant.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":\\\"variable\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#2f86d2\\\"}},{\\\"scope\\\":\\\"variable.language.this\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#000000\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#7b30d0\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#da5221\\\"}},{\\\"scope\\\":\\\"storage.type\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#0991b6\\\"}},{\\\"scope\\\":\\\"entity.name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#1172c7\\\"}},{\\\"scope\\\":\\\"entity.other.inherited-class\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#b02767\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#7eb233\\\"}},{\\\"scope\\\":\\\"variable.parameter\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#b1108e\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#0444ac\\\"}},{\\\"scope\\\":\\\"text.html.basic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#0071ce\\\"}},{\\\"scope\\\":\\\"entity.name.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#0444ac\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#df8618\\\"}},{\\\"scope\\\":\\\"support.function\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#1ab394\\\"}},{\\\"scope\\\":\\\"support.constant\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":[\\\"support.type\\\",\\\"support.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#dc3eb7\\\"}},{\\\"scope\\\":\\\"support.other.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#224555\\\"}},{\\\"scope\\\":\\\"invalid\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\" italic bold underline\\\",\\\"foreground\\\":\\\"#207bb8\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\" bold italic underline\\\",\\\"foreground\\\":\\\"#207bb8\\\"}},{\\\"scope\\\":\\\"source.json support\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6dbdfa\\\"}},{\\\"scope\\\":[\\\"source.json string\\\",\\\"source.json punctuation.definition.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#00820f\\\"}},{\\\"scope\\\":\\\"markup.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#207bb8\\\"}},{\\\"scope\\\":[\\\"markup.heading punctuation.definition.heading\\\",\\\"entity.name.section\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#4FB4D8\\\"}},{\\\"scope\\\":[\\\"text.html.markdown meta.paragraph meta.link.inline\\\",\\\"text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.begin.markdown\\\",\\\"text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.end.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#87429A\\\"}},{\\\"scope\\\":\\\"markup.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#87429A\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#08134A\\\"}},{\\\"scope\\\":[\\\"markup.italic\\\",\\\"punctuation.definition.italic\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#174781\\\"}},{\\\"scope\\\":\\\"meta.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#87429A\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["slackOchin"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,6pSAAuwU,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const a = Object.freeze(
7
+ JSON.parse(
8
+ `{"displayName":"Smalltalk","fileTypes":["st"],"foldingStartMarker":"\\\\[","foldingStopMarker":"^(?:\\\\s*|\\\\s)]","name":"smalltalk","patterns":[{"match":"\\\\^","name":"keyword.control.flow.return.smalltalk"},{"captures":{"1":{"name":"punctuation.definition.method.begin.smalltalk"},"2":{"name":"entity.name.type.class.smalltalk"},"3":{"name":"keyword.declaration.method.smalltalk"},"4":{"name":"string.quoted.single.protocol.smalltalk"},"5":{"name":"string.quoted.single.protocol.smalltalk"},"6":{"name":"keyword.declaration.method.stamp.smalltalk"},"7":{"name":"string.quoted.single.stamp.smalltalk"},"8":{"name":"string.quoted.single.stamp.smalltalk"},"9":{"name":"punctuation.definition.method.end.smalltalk"}},"match":"^(!)\\\\s*([A-Z_a-z][0-9A-Z_a-z]*)\\\\s+(methodsFor:)\\\\s*('([^']*)')(?:\\\\s+(stamp:)\\\\s*('([^']*)'))?\\\\s*(!?)$","name":"meta.method.definition.header.smalltalk"},{"match":"^! !$","name":"punctuation.definition.method.end.smalltalk"},{"match":"\\\\$.","name":"constant.character.smalltalk"},{"match":"\\\\b(class)\\\\b","name":"storage.type.$1.smalltalk"},{"match":"\\\\b(extend|super|self)\\\\b","name":"storage.modifier.$1.smalltalk"},{"match":"\\\\b(yourself|new|Smalltalk)\\\\b","name":"keyword.control.$1.smalltalk"},{"match":"/^:\\\\w*\\\\s*\\\\|/","name":"constant.other.block.smalltalk"},{"captures":{"1":{"name":"punctuation.definition.variable.begin.smalltalk"},"2":{"patterns":[{"match":"\\\\b[A-Z_a-z][0-9A-Z_a-z]*\\\\b","name":"variable.other.local.smalltalk"}]},"3":{"name":"punctuation.definition.variable.end.smalltalk"}},"match":"(\\\\|)(\\\\s*[A-Z_a-z][0-9A-Z_a-z]*(?:\\\\s+[A-Z_a-z][0-9A-Z_a-z]*)*\\\\s*)(\\\\|)"},{"begin":"\\\\[","beginCaptures":{"0":{"name":"punctuation.definition.block.begin.smalltalk"}},"end":"]","endCaptures":{"0":{"name":"punctuation.definition.block.end.smalltalk"}},"name":"meta.block.smalltalk","patterns":[{"captures":{"1":{"patterns":[{"match":":[A-Z_a-z][0-9A-Z_a-z]*","name":"variable.parameter.block.smalltalk"}]},"2":{"name":"punctuation.separator.arguments.block.smalltalk"}},"match":"((?:\\\\s*:[A-Z_a-z][0-9A-Z_a-z]*)+)\\\\s*(\\\\|)","name":"meta.block.arguments.smalltalk"},{"include":"$self"}]},{"include":"#numeric"},{"match":";","name":"punctuation.separator.cascade.smalltalk"},{"match":"\\\\.","name":"punctuation.terminator.statement.smalltalk"},{"match":":=","name":"keyword.operator.assignment.smalltalk"},{"match":"<(?![<=])|>(?![<=>])|<=|>=|==??|~=|~~|>>","name":"keyword.operator.comparison.smalltalk"},{"match":"([-*+/\\\\\\\\])","name":"keyword.operator.arithmetic.smalltalk"},{"match":"(?<=[\\\\t ])!+|\\\\bnot\\\\b|&|\\\\band\\\\b|\\\\||\\\\bor\\\\b","name":"keyword.operator.logical.smalltalk"},{"match":"->|[,@]","name":"keyword.operator.misc.smalltalk"},{"match":"(?<!\\\\.)\\\\b(ensure|resume|retry|signal)\\\\b(?![!?])","name":"keyword.control.smalltalk"},{"match":"\\\\b((?:ifCurtailed|ifTrue|ifFalse|whileFalse|whileTrue):)\\\\b","name":"keyword.control.conditionals.smalltalk"},{"match":"\\\\b(to:do:|do:|timesRepeat:|even|collect:|select:|reject:)\\\\b","name":"keyword.control.loop.smalltalk"},{"match":"\\\\b(initialize|show:|cr|printString|space|new:|at:|at:put:|size|value:??|nextPut:)\\\\b","name":"support.function.smalltalk"},{"begin":"^\\\\s*([A-Z_a-z][0-9A-Z_a-z]*)\\\\s+(subclass:)\\\\s*('#?([A-Z_a-z][0-9A-Z_a-z]*)')","beginCaptures":{"1":{"name":"entity.other.inherited-class.smalltalk"},"2":{"name":"keyword.declaration.class.smalltalk"},"3":{"name":"entity.name.type.class.smalltalk"},"4":{"name":"entity.name.type.class.smalltalk"}},"end":"(?=^\\\\s*!)","name":"meta.class.definition.smalltalk","patterns":[{"match":"\\\\b(instanceVariableNames:|classVariableNames:|poolDictionaries:|category:)\\\\b","name":"keyword.declaration.class.variables.smalltalk"},{"include":"#string_single_quoted"},{"include":"#comment_block"}]},{"begin":"\\"","beginCaptures":[{"name":"punctuation.definition.comment.begin.smalltalk"}],"end":"\\"","endCaptures":[{"name":"punctuation.definition.comment.end.smalltalk"}],"name":"comment.block.smalltalk"},{"match":"\\\\b(true|false)\\\\b","name":"constant.language.boolean.smalltalk"},{"match":"\\\\b(nil)\\\\b","name":"constant.language.nil.smalltalk"},{"captures":{"1":{"name":"punctuation.definition.constant.smalltalk"}},"match":"(#)[A-Z_a-z][0-:A-Z_a-z]*","name":"constant.other.symbol.smalltalk"},{"begin":"#\\\\[","beginCaptures":[{"name":"punctuation.definition.constant.begin.smalltalk"}],"end":"]","endCaptures":[{"name":"punctuation.definition.constant.end.smalltalk"}],"name":"meta.array.byte.smalltalk","patterns":[{"match":"[0-9]+(r[0-9A-Za-z]+)?","name":"constant.numeric.integer.smalltalk"},{"match":"[^]\\\\s]+","name":"invalid.illegal.character-not-allowed-here.smalltalk"}]},{"begin":"#\\\\(","beginCaptures":{"0":{"name":"punctuation.definition.constant.array.begin.smalltalk"}},"end":"\\\\)","endCaptures":{"0":{"name":"punctuation.definition.constant.array.end.smalltalk"}},"name":"constant.other.array.literal.smalltalk","patterns":[{"include":"#numeric"},{"include":"#string_single_quoted"},{"include":"#symbol"},{"include":"#comment_block"},{"include":"$self"}]},{"begin":"'","beginCaptures":[{"name":"punctuation.definition.string.begin.smalltalk"}],"end":"'","endCaptures":[{"name":"punctuation.definition.string.end.smalltalk"}],"name":"string.quoted.single.smalltalk"},{"match":"\\\\b[A-Z]\\\\w*\\\\b","name":"entity.name.type.class.smalltalk"}],"repository":{"comment_block":{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.definition.comment.begin.smalltalk"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.comment.end.smalltalk"}},"name":"comment.block.smalltalk"},"numeric":{"patterns":[{"match":"(?<!\\\\w)[0-9]+\\\\.[0-9]+s[0-9]*","name":"constant.numeric.float.scaled.smalltalk"},{"match":"(?<!\\\\w)[0-9]+\\\\.[0-9]+([deq]-?[0-9]+)?","name":"constant.numeric.float.smalltalk"},{"match":"(?<!\\\\w)-?[0-9]+r[0-9A-Za-z]+","name":"constant.numeric.integer.radix.smalltalk"},{"match":"(?<!\\\\w)-?[0-9]+([deq]-?[0-9]+)?","name":"constant.numeric.integer.smalltalk"}]},"string_single_quoted":{"begin":"'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.smalltalk"}},"end":"'","endCaptures":{"0":{"name":"punctuation.definition.string.end.smalltalk"}},"name":"string.quoted.single.smalltalk"},"symbol":{"captures":{"1":{"name":"punctuation.definition.constant.symbol.smalltalk"}},"match":"(#)[A-Z_a-z][0-:A-Z_a-z]*","name":"constant.other.symbol.smalltalk"}},"scopeName":"source.smalltalk"}`,
9
+ ),
10
+ ),
11
+ t = [a];
12
+ export { t as default };
13
+ //# sourceMappingURL=smalltalk-BERRCDM3.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"smalltalk-BERRCDM3.js","sources":["../../../../node_modules/@shikijs/langs/dist/smalltalk.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Smalltalk\\\",\\\"fileTypes\\\":[\\\"st\\\"],\\\"foldingStartMarker\\\":\\\"\\\\\\\\[\\\",\\\"foldingStopMarker\\\":\\\"^(?:\\\\\\\\s*|\\\\\\\\s)]\\\",\\\"name\\\":\\\"smalltalk\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\^\\\",\\\"name\\\":\\\"keyword.control.flow.return.smalltalk\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.method.begin.smalltalk\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.class.smalltalk\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.declaration.method.smalltalk\\\"},\\\"4\\\":{\\\"name\\\":\\\"string.quoted.single.protocol.smalltalk\\\"},\\\"5\\\":{\\\"name\\\":\\\"string.quoted.single.protocol.smalltalk\\\"},\\\"6\\\":{\\\"name\\\":\\\"keyword.declaration.method.stamp.smalltalk\\\"},\\\"7\\\":{\\\"name\\\":\\\"string.quoted.single.stamp.smalltalk\\\"},\\\"8\\\":{\\\"name\\\":\\\"string.quoted.single.stamp.smalltalk\\\"},\\\"9\\\":{\\\"name\\\":\\\"punctuation.definition.method.end.smalltalk\\\"}},\\\"match\\\":\\\"^(!)\\\\\\\\s*([A-Z_a-z][0-9A-Z_a-z]*)\\\\\\\\s+(methodsFor:)\\\\\\\\s*('([^']*)')(?:\\\\\\\\s+(stamp:)\\\\\\\\s*('([^']*)'))?\\\\\\\\s*(!?)$\\\",\\\"name\\\":\\\"meta.method.definition.header.smalltalk\\\"},{\\\"match\\\":\\\"^! !$\\\",\\\"name\\\":\\\"punctuation.definition.method.end.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\$.\\\",\\\"name\\\":\\\"constant.character.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(class)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.$1.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(extend|super|self)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.modifier.$1.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(yourself|new|Smalltalk)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.$1.smalltalk\\\"},{\\\"match\\\":\\\"/^:\\\\\\\\w*\\\\\\\\s*\\\\\\\\|/\\\",\\\"name\\\":\\\"constant.other.block.smalltalk\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.begin.smalltalk\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b[A-Z_a-z][0-9A-Z_a-z]*\\\\\\\\b\\\",\\\"name\\\":\\\"variable.other.local.smalltalk\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.variable.end.smalltalk\\\"}},\\\"match\\\":\\\"(\\\\\\\\|)(\\\\\\\\s*[A-Z_a-z][0-9A-Z_a-z]*(?:\\\\\\\\s+[A-Z_a-z][0-9A-Z_a-z]*)*\\\\\\\\s*)(\\\\\\\\|)\\\"},{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.begin.smalltalk\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.end.smalltalk\\\"}},\\\"name\\\":\\\"meta.block.smalltalk\\\",\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\":[A-Z_a-z][0-9A-Z_a-z]*\\\",\\\"name\\\":\\\"variable.parameter.block.smalltalk\\\"}]},\\\"2\\\":{\\\"name\\\":\\\"punctuation.separator.arguments.block.smalltalk\\\"}},\\\"match\\\":\\\"((?:\\\\\\\\s*:[A-Z_a-z][0-9A-Z_a-z]*)+)\\\\\\\\s*(\\\\\\\\|)\\\",\\\"name\\\":\\\"meta.block.arguments.smalltalk\\\"},{\\\"include\\\":\\\"$self\\\"}]},{\\\"include\\\":\\\"#numeric\\\"},{\\\"match\\\":\\\";\\\",\\\"name\\\":\\\"punctuation.separator.cascade.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\.\\\",\\\"name\\\":\\\"punctuation.terminator.statement.smalltalk\\\"},{\\\"match\\\":\\\":=\\\",\\\"name\\\":\\\"keyword.operator.assignment.smalltalk\\\"},{\\\"match\\\":\\\"<(?![<=])|>(?![<=>])|<=|>=|==??|~=|~~|>>\\\",\\\"name\\\":\\\"keyword.operator.comparison.smalltalk\\\"},{\\\"match\\\":\\\"([-*+/\\\\\\\\\\\\\\\\])\\\",\\\"name\\\":\\\"keyword.operator.arithmetic.smalltalk\\\"},{\\\"match\\\":\\\"(?<=[\\\\\\\\t ])!+|\\\\\\\\bnot\\\\\\\\b|&|\\\\\\\\band\\\\\\\\b|\\\\\\\\||\\\\\\\\bor\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.operator.logical.smalltalk\\\"},{\\\"match\\\":\\\"->|[,@]\\\",\\\"name\\\":\\\"keyword.operator.misc.smalltalk\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\.)\\\\\\\\b(ensure|resume|retry|signal)\\\\\\\\b(?![!?])\\\",\\\"name\\\":\\\"keyword.control.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b((?:ifCurtailed|ifTrue|ifFalse|whileFalse|whileTrue):)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.conditionals.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(to:do:|do:|timesRepeat:|even|collect:|select:|reject:)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.loop.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(initialize|show:|cr|printString|space|new:|at:|at:put:|size|value:??|nextPut:)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.smalltalk\\\"},{\\\"begin\\\":\\\"^\\\\\\\\s*([A-Z_a-z][0-9A-Z_a-z]*)\\\\\\\\s+(subclass:)\\\\\\\\s*('#?([A-Z_a-z][0-9A-Z_a-z]*)')\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.other.inherited-class.smalltalk\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.declaration.class.smalltalk\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.class.smalltalk\\\"},\\\"4\\\":{\\\"name\\\":\\\"entity.name.type.class.smalltalk\\\"}},\\\"end\\\":\\\"(?=^\\\\\\\\s*!)\\\",\\\"name\\\":\\\"meta.class.definition.smalltalk\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(instanceVariableNames:|classVariableNames:|poolDictionaries:|category:)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.declaration.class.variables.smalltalk\\\"},{\\\"include\\\":\\\"#string_single_quoted\\\"},{\\\"include\\\":\\\"#comment_block\\\"}]},{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"beginCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.comment.begin.smalltalk\\\"}],\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.comment.end.smalltalk\\\"}],\\\"name\\\":\\\"comment.block.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(true|false)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.boolean.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b(nil)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.nil.smalltalk\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.constant.smalltalk\\\"}},\\\"match\\\":\\\"(#)[A-Z_a-z][0-:A-Z_a-z]*\\\",\\\"name\\\":\\\"constant.other.symbol.smalltalk\\\"},{\\\"begin\\\":\\\"#\\\\\\\\[\\\",\\\"beginCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.constant.begin.smalltalk\\\"}],\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.constant.end.smalltalk\\\"}],\\\"name\\\":\\\"meta.array.byte.smalltalk\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"[0-9]+(r[0-9A-Za-z]+)?\\\",\\\"name\\\":\\\"constant.numeric.integer.smalltalk\\\"},{\\\"match\\\":\\\"[^]\\\\\\\\s]+\\\",\\\"name\\\":\\\"invalid.illegal.character-not-allowed-here.smalltalk\\\"}]},{\\\"begin\\\":\\\"#\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.constant.array.begin.smalltalk\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.constant.array.end.smalltalk\\\"}},\\\"name\\\":\\\"constant.other.array.literal.smalltalk\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#numeric\\\"},{\\\"include\\\":\\\"#string_single_quoted\\\"},{\\\"include\\\":\\\"#symbol\\\"},{\\\"include\\\":\\\"#comment_block\\\"},{\\\"include\\\":\\\"$self\\\"}]},{\\\"begin\\\":\\\"'\\\",\\\"beginCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.string.begin.smalltalk\\\"}],\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":[{\\\"name\\\":\\\"punctuation.definition.string.end.smalltalk\\\"}],\\\"name\\\":\\\"string.quoted.single.smalltalk\\\"},{\\\"match\\\":\\\"\\\\\\\\b[A-Z]\\\\\\\\w*\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.class.smalltalk\\\"}],\\\"repository\\\":{\\\"comment_block\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.begin.smalltalk\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.end.smalltalk\\\"}},\\\"name\\\":\\\"comment.block.smalltalk\\\"},\\\"numeric\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"(?<!\\\\\\\\w)[0-9]+\\\\\\\\.[0-9]+s[0-9]*\\\",\\\"name\\\":\\\"constant.numeric.float.scaled.smalltalk\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)[0-9]+\\\\\\\\.[0-9]+([deq]-?[0-9]+)?\\\",\\\"name\\\":\\\"constant.numeric.float.smalltalk\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)-?[0-9]+r[0-9A-Za-z]+\\\",\\\"name\\\":\\\"constant.numeric.integer.radix.smalltalk\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)-?[0-9]+([deq]-?[0-9]+)?\\\",\\\"name\\\":\\\"constant.numeric.integer.smalltalk\\\"}]},\\\"string_single_quoted\\\":{\\\"begin\\\":\\\"'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.smalltalk\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.smalltalk\\\"}},\\\"name\\\":\\\"string.quoted.single.smalltalk\\\"},\\\"symbol\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.constant.symbol.smalltalk\\\"}},\\\"match\\\":\\\"(#)[A-Z_a-z][0-:A-Z_a-z]*\\\",\\\"name\\\":\\\"constant.other.symbol.smalltalk\\\"}},\\\"scopeName\\\":\\\"source.smalltalk\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","smalltalk"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,23MAAyiO,CAAC,EAEhlOC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"colors":{"activityBar.background":"#E7E8E6","activityBar.foreground":"#2DAE58","activityBar.inactiveForeground":"#68696888","activityBarBadge.background":"#09A1ED","badge.background":"#09A1ED","badge.foreground":"#ffffff","button.background":"#2DAE58","debugExceptionWidget.background":"#FFAEAC33","debugExceptionWidget.border":"#FF5C57","debugToolBar.border":"#E9EAEB","diffEditor.insertedTextBackground":"#2DAE5824","diffEditor.removedTextBackground":"#FFAEAC44","dropdown.border":"#E9EAEB","editor.background":"#FAFBFC","editor.findMatchBackground":"#00E6E06A","editor.findMatchHighlightBackground":"#00E6E02A","editor.findRangeHighlightBackground":"#F5B90011","editor.focusedStackFrameHighlightBackground":"#2DAE5822","editor.foreground":"#565869","editor.hoverHighlightBackground":"#00E6E018","editor.rangeHighlightBackground":"#F5B90033","editor.selectionBackground":"#2DAE5822","editor.snippetTabstopHighlightBackground":"#ADB1C23A","editor.stackFrameHighlightBackground":"#F5B90033","editor.wordHighlightBackground":"#ADB1C23A","editorError.foreground":"#FF5C56","editorGroup.emptyBackground":"#F3F4F5","editorGutter.addedBackground":"#2DAE58","editorGutter.deletedBackground":"#FF5C57","editorGutter.modifiedBackground":"#00A39FAA","editorInlayHint.background":"#E9EAEB","editorInlayHint.foreground":"#565869","editorLineNumber.activeForeground":"#35CF68","editorLineNumber.foreground":"#9194A2aa","editorLink.activeForeground":"#35CF68","editorOverviewRuler.addedForeground":"#2DAE58","editorOverviewRuler.deletedForeground":"#FF5C57","editorOverviewRuler.errorForeground":"#FF5C56","editorOverviewRuler.findMatchForeground":"#13BBB7AA","editorOverviewRuler.modifiedForeground":"#00A39FAA","editorOverviewRuler.warningForeground":"#CF9C00","editorOverviewRuler.wordHighlightForeground":"#ADB1C288","editorOverviewRuler.wordHighlightStrongForeground":"#35CF68","editorWarning.foreground":"#CF9C00","editorWhitespace.foreground":"#ADB1C255","extensionButton.prominentBackground":"#2DAE58","extensionButton.prominentHoverBackground":"#238744","focusBorder":"#09A1ED","foreground":"#686968","gitDecoration.modifiedResourceForeground":"#00A39F","gitDecoration.untrackedResourceForeground":"#2DAE58","input.border":"#E9EAEB","list.activeSelectionBackground":"#09A1ED","list.activeSelectionForeground":"#ffffff","list.errorForeground":"#FF5C56","list.focusBackground":"#BCE7FC99","list.focusForeground":"#11658F","list.hoverBackground":"#E9EAEB","list.inactiveSelectionBackground":"#89B5CB33","list.warningForeground":"#B38700","menu.background":"#FAFBFC","menu.selectionBackground":"#E9EAEB","menu.selectionForeground":"#686968","menubar.selectionBackground":"#E9EAEB","menubar.selectionForeground":"#686968","merge.currentContentBackground":"#35CF6833","merge.currentHeaderBackground":"#35CF6866","merge.incomingContentBackground":"#14B1FF33","merge.incomingHeaderBackground":"#14B1FF77","peekView.border":"#09A1ED","peekViewEditor.background":"#14B1FF08","peekViewEditor.matchHighlightBackground":"#F5B90088","peekViewEditor.matchHighlightBorder":"#F5B900","peekViewEditorStickyScroll.background":"#EDF4FB","peekViewResult.matchHighlightBackground":"#F5B90088","peekViewResult.selectionBackground":"#09A1ED","peekViewResult.selectionForeground":"#FFFFFF","peekViewTitle.background":"#09A1ED11","selection.background":"#2DAE5844","settings.modifiedItemIndicator":"#13BBB7","sideBar.background":"#F3F4F5","sideBar.border":"#DEDFE0","sideBarSectionHeader.background":"#E9EAEB","sideBarSectionHeader.border":"#DEDFE0","statusBar.background":"#2DAE58","statusBar.debuggingBackground":"#13BBB7","statusBar.debuggingBorder":"#00A39F","statusBar.noFolderBackground":"#565869","statusBarItem.remoteBackground":"#238744","tab.activeBorderTop":"#2DAE58","terminal.ansiBlack":"#565869","terminal.ansiBlue":"#09A1ED","terminal.ansiBrightBlack":"#75798F","terminal.ansiBrightBlue":"#14B1FF","terminal.ansiBrightCyan":"#13BBB7","terminal.ansiBrightGreen":"#35CF68","terminal.ansiBrightMagenta":"#FF94D2","terminal.ansiBrightRed":"#FFAEAC","terminal.ansiBrightWhite":"#FFFFFF","terminal.ansiBrightYellow":"#F5B900","terminal.ansiCyan":"#13BBB7","terminal.ansiGreen":"#2DAE58","terminal.ansiMagenta":"#F767BB","terminal.ansiRed":"#FF5C57","terminal.ansiWhite":"#FAFBF9","terminal.ansiYellow":"#CF9C00","titleBar.activeBackground":"#F3F4F5"},"displayName":"Snazzy Light","name":"snazzy-light","tokenColors":[{"scope":"invalid.illegal","settings":{"foreground":"#FF5C56"}},{"scope":["meta.object-literal.key","meta.object-literal.key constant.character.escape","meta.object-literal string","meta.object-literal string constant.character.escape","support.type.property-name","support.type.property-name constant.character.escape"],"settings":{"foreground":"#11658F"}},{"scope":["keyword","storage","meta.class storage.type","keyword.operator.expression.import","keyword.operator.new","keyword.operator.expression.delete"],"settings":{"foreground":"#F767BB"}},{"scope":["support.type","meta.type.annotation entity.name.type","new.expr meta.type.parameters entity.name.type","storage.type.primitive","storage.type.built-in.primitive","meta.function.parameter storage.type"],"settings":{"foreground":"#2DAE58"}},{"scope":["storage.type.annotation"],"settings":{"foreground":"#C25193"}},{"scope":"keyword.other.unit","settings":{"foreground":"#FF5C57CC"}},{"scope":["constant.language","support.constant","variable.language"],"settings":{"foreground":"#2DAE58"}},{"scope":["variable","support.variable"],"settings":{"foreground":"#565869"}},{"scope":"variable.language.this","settings":{"foreground":"#13BBB7"}},{"scope":["entity.name.function","support.function"],"settings":{"foreground":"#09A1ED"}},{"scope":["entity.name.function.decorator"],"settings":{"foreground":"#11658F"}},{"scope":["meta.class entity.name.type","new.expr entity.name.type","entity.other.inherited-class","support.class"],"settings":{"foreground":"#13BBB7"}},{"scope":["keyword.preprocessor.pragma","keyword.control.directive.include","keyword.other.preprocessor"],"settings":{"foreground":"#11658F"}},{"scope":"entity.name.exception","settings":{"foreground":"#FF5C56"}},{"scope":"entity.name.section","settings":{}},{"scope":["constant.numeric"],"settings":{"foreground":"#FF5C57"}},{"scope":["constant","constant.character"],"settings":{"foreground":"#2DAE58"}},{"scope":"string","settings":{"foreground":"#CF9C00"}},{"scope":"string","settings":{"foreground":"#CF9C00"}},{"scope":"constant.character.escape","settings":{"foreground":"#F5B900"}},{"scope":["string.regexp","string.regexp constant.character.escape"],"settings":{"foreground":"#13BBB7"}},{"scope":["keyword.operator.quantifier.regexp","keyword.operator.negation.regexp","keyword.operator.or.regexp","string.regexp punctuation","string.regexp keyword","string.regexp keyword.control","string.regexp constant","variable.other.regexp"],"settings":{"foreground":"#00A39F"}},{"scope":["string.regexp keyword.other"],"settings":{"foreground":"#00A39F88"}},{"scope":"constant.other.symbol","settings":{"foreground":"#CF9C00"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#ADB1C2"}},{"scope":"comment.block.preprocessor","settings":{"fontStyle":"","foreground":"#9194A2"}},{"scope":"comment.block.documentation entity.name.type","settings":{"foreground":"#2DAE58"}},{"scope":["comment.block.documentation storage","comment.block.documentation keyword.other","meta.class comment.block.documentation storage.type"],"settings":{"foreground":"#9194A2"}},{"scope":["comment.block.documentation variable"],"settings":{"foreground":"#C25193"}},{"scope":["punctuation"],"settings":{"foreground":"#ADB1C2"}},{"scope":["keyword.operator","keyword.other.arrow","keyword.control.@"],"settings":{"foreground":"#ADB1C2"}},{"scope":["meta.tag.metadata.doctype.html entity.name.tag","meta.tag.metadata.doctype.html entity.other.attribute-name.html","meta.tag.sgml.doctype","meta.tag.sgml.doctype string","meta.tag.sgml.doctype entity.name.tag","meta.tag.sgml punctuation.definition.tag.html"],"settings":{"foreground":"#9194A2"}},{"scope":["meta.tag","punctuation.definition.tag.html","punctuation.definition.tag.begin.html","punctuation.definition.tag.end.html"],"settings":{"foreground":"#ADB1C2"}},{"scope":["entity.name.tag"],"settings":{"foreground":"#13BBB7"}},{"scope":["meta.tag entity.other.attribute-name","entity.other.attribute-name.html"],"settings":{"foreground":"#FF8380"}},{"scope":["constant.character.entity","punctuation.definition.entity"],"settings":{"foreground":"#CF9C00"}},{"scope":["source.css"],"settings":{"foreground":"#ADB1C2"}},{"scope":["meta.selector","meta.selector entity","meta.selector entity punctuation","source.css entity.name.tag"],"settings":{"foreground":"#F767BB"}},{"scope":["keyword.control.at-rule","keyword.control.at-rule punctuation.definition.keyword"],"settings":{"foreground":"#C25193"}},{"scope":"source.css variable","settings":{"foreground":"#11658F"}},{"scope":["source.css meta.property-name","source.css support.type.property-name"],"settings":{"foreground":"#565869"}},{"scope":["source.css support.type.vendored.property-name"],"settings":{"foreground":"#565869AA"}},{"scope":["meta.property-value","support.constant.property-value"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.css support.constant"],"settings":{"foreground":"#2DAE58"}},{"scope":["punctuation.definition.entity.css","keyword.operator.combinator.css"],"settings":{"foreground":"#FF82CBBB"}},{"scope":["source.css support.function"],"settings":{"foreground":"#09A1ED"}},{"scope":"keyword.other.important","settings":{"foreground":"#238744"}},{"scope":["source.css.scss"],"settings":{"foreground":"#F767BB"}},{"scope":["source.css.scss entity.other.attribute-name.class.css","source.css.scss entity.other.attribute-name.id.css"],"settings":{"foreground":"#F767BB"}},{"scope":["entity.name.tag.reference.scss"],"settings":{"foreground":"#C25193"}},{"scope":["source.css.scss meta.at-rule keyword","source.css.scss meta.at-rule keyword punctuation","source.css.scss meta.at-rule operator.logical","keyword.control.content.scss","keyword.control.return.scss","keyword.control.return.scss punctuation.definition.keyword"],"settings":{"foreground":"#C25193"}},{"scope":["meta.at-rule.mixin.scss","meta.at-rule.include.scss","source.css.scss meta.at-rule.if","source.css.scss meta.at-rule.else","source.css.scss meta.at-rule.each","source.css.scss meta.at-rule variable.parameter"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.css.less entity.other.attribute-name.class.css"],"settings":{"foreground":"#F767BB"}},{"scope":"source.stylus meta.brace.curly.css","settings":{"foreground":"#ADB1C2"}},{"scope":["source.stylus entity.other.attribute-name.class","source.stylus entity.other.attribute-name.id","source.stylus entity.name.tag"],"settings":{"foreground":"#F767BB"}},{"scope":["source.stylus support.type.property-name"],"settings":{"foreground":"#565869"}},{"scope":["source.stylus variable"],"settings":{"foreground":"#11658F"}},{"scope":"markup.changed","settings":{"foreground":"#888888"}},{"scope":"markup.deleted","settings":{"foreground":"#888888"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.error","settings":{"foreground":"#FF5C56"}},{"scope":"markup.inserted","settings":{"foreground":"#888888"}},{"scope":"meta.link","settings":{"foreground":"#CF9C00"}},{"scope":"string.other.link.title.markdown","settings":{"foreground":"#09A1ED"}},{"scope":["markup.output","markup.raw"],"settings":{"foreground":"#999999"}},{"scope":"markup.prompt","settings":{"foreground":"#999999"}},{"scope":"markup.heading","settings":{"foreground":"#2DAE58"}},{"scope":"markup.bold","settings":{"fontStyle":"bold"}},{"scope":"markup.traceback","settings":{"foreground":"#FF5C56"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"markup.quote","settings":{"foreground":"#777985"}},{"scope":["markup.bold","markup.italic"],"settings":{"foreground":"#13BBB7"}},{"scope":"markup.inline.raw","settings":{"fontStyle":"","foreground":"#F767BB"}},{"scope":["meta.brace.round","meta.brace.square","storage.type.function.arrow"],"settings":{"foreground":"#ADB1C2"}},{"scope":["constant.language.import-export-all","meta.import keyword.control.default"],"settings":{"foreground":"#C25193"}},{"scope":["support.function.js"],"settings":{"foreground":"#11658F"}},{"scope":"string.regexp.js","settings":{"foreground":"#13BBB7"}},{"scope":["variable.language.super","support.type.object.module.js"],"settings":{"foreground":"#F767BB"}},{"scope":"meta.jsx.children","settings":{"foreground":"#686968"}},{"scope":"entity.name.tag.yaml","settings":{"foreground":"#11658F"}},{"scope":"variable.other.alias.yaml","settings":{"foreground":"#2DAE58"}},{"scope":["punctuation.section.embedded.begin.php","punctuation.section.embedded.end.php"],"settings":{"foreground":"#75798F"}},{"scope":["meta.use.php entity.other.alias.php"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.php support.function.construct","source.php support.function.var"],"settings":{"foreground":"#11658F"}},{"scope":["storage.modifier.extends.php","source.php keyword.other","storage.modifier.php"],"settings":{"foreground":"#F767BB"}},{"scope":["meta.class.body.php storage.type.php"],"settings":{"foreground":"#F767BB"}},{"scope":["storage.type.php","meta.class.body.php meta.function-call.php storage.type.php","meta.class.body.php meta.function.php storage.type.php"],"settings":{"foreground":"#2DAE58"}},{"scope":["source.php keyword.other.DML"],"settings":{"foreground":"#D94E4A"}},{"scope":["source.sql.embedded.php keyword.operator"],"settings":{"foreground":"#2DAE58"}},{"scope":["source.ini keyword","source.toml keyword","source.env variable"],"settings":{"foreground":"#11658F"}},{"scope":["source.ini entity.name.section","source.toml entity.other.attribute-name"],"settings":{"foreground":"#F767BB"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#2DAE58"}},{"scope":["keyword.import.go","keyword.package.go"],"settings":{"foreground":"#FF5C56"}},{"scope":["source.reason variable.language string"],"settings":{"foreground":"#565869"}},{"scope":["source.reason support.type","source.reason constant.language","source.reason constant.language constant.numeric","source.reason support.type string.regexp"],"settings":{"foreground":"#2DAE58"}},{"scope":["source.reason keyword.operator keyword.control","source.reason keyword.control.less","source.reason keyword.control.flow"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.reason string.regexp"],"settings":{"foreground":"#CF9C00"}},{"scope":["source.reason support.property-value"],"settings":{"foreground":"#11658F"}},{"scope":["source.rust support.function.core.rust"],"settings":{"foreground":"#11658F"}},{"scope":["source.rust storage.type.core.rust","source.rust storage.class.std"],"settings":{"foreground":"#2DAE58"}},{"scope":["source.rust entity.name.type.rust"],"settings":{"foreground":"#13BBB7"}},{"scope":["storage.type.function.coffee"],"settings":{"foreground":"#ADB1C2"}},{"scope":["keyword.type.cs","storage.type.cs"],"settings":{"foreground":"#2DAE58"}},{"scope":["entity.name.type.namespace.cs"],"settings":{"foreground":"#13BBB7"}},{"scope":"meta.diff.header","settings":{"foreground":"#11658F"}},{"scope":["markup.inserted.diff"],"settings":{"foreground":"#2DAE58"}},{"scope":["markup.deleted.diff"],"settings":{"foreground":"#FF5C56"}},{"scope":["meta.diff.range","meta.diff.index","meta.separator"],"settings":{"foreground":"#09A1ED"}},{"scope":"source.makefile variable","settings":{"foreground":"#11658F"}},{"scope":["keyword.control.protocol-specification.objc"],"settings":{"foreground":"#F767BB"}},{"scope":["meta.parens storage.type.objc","meta.return-type.objc support.class","meta.return-type.objc storage.type.objc"],"settings":{"foreground":"#2DAE58"}},{"scope":["source.sql keyword"],"settings":{"foreground":"#11658F"}},{"scope":["keyword.other.special-method.dockerfile"],"settings":{"foreground":"#09A1ED"}},{"scope":"constant.other.symbol.elixir","settings":{"foreground":"#11658F"}},{"scope":["storage.type.elm","support.module.elm"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.elm keyword.other"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.erlang entity.name.type.class"],"settings":{"foreground":"#13BBB7"}},{"scope":["variable.other.field.erlang"],"settings":{"foreground":"#11658F"}},{"scope":["source.erlang constant.other.symbol"],"settings":{"foreground":"#2DAE58"}},{"scope":["storage.type.haskell"],"settings":{"foreground":"#2DAE58"}},{"scope":["meta.declaration.class.haskell storage.type.haskell","meta.declaration.instance.haskell storage.type.haskell"],"settings":{"foreground":"#13BBB7"}},{"scope":["meta.preprocessor.haskell"],"settings":{"foreground":"#75798F"}},{"scope":["source.haskell keyword.control"],"settings":{"foreground":"#F767BB"}},{"scope":["tag.end.latte","tag.begin.latte"],"settings":{"foreground":"#ADB1C2"}},{"scope":"source.po keyword.control","settings":{"foreground":"#11658F"}},{"scope":"source.po storage.type","settings":{"foreground":"#9194A2"}},{"scope":"constant.language.po","settings":{"foreground":"#13BBB7"}},{"scope":"meta.header.po string","settings":{"foreground":"#FF8380"}},{"scope":"source.po meta.header.po","settings":{"foreground":"#ADB1C2"}},{"scope":["source.ocaml markup.underline"],"settings":{"fontStyle":""}},{"scope":["source.ocaml punctuation.definition.tag emphasis","source.ocaml entity.name.class constant.numeric","source.ocaml support.type"],"settings":{"foreground":"#F767BB"}},{"scope":["source.ocaml constant.numeric entity.other.attribute-name"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.ocaml comment meta.separator"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.ocaml support.type strong","source.ocaml keyword.control strong"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.ocaml support.constant.property-value"],"settings":{"foreground":"#11658F"}},{"scope":["source.scala entity.name.class"],"settings":{"foreground":"#13BBB7"}},{"scope":["storage.type.scala"],"settings":{"foreground":"#2DAE58"}},{"scope":["variable.parameter.scala"],"settings":{"foreground":"#11658F"}},{"scope":["meta.bracket.scala","meta.colon.scala"],"settings":{"foreground":"#ADB1C2"}},{"scope":["meta.metadata.simple.clojure"],"settings":{"foreground":"#ADB1C2"}},{"scope":["meta.metadata.simple.clojure meta.symbol"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.r keyword.other"],"settings":{"foreground":"#ADB1C2"}},{"scope":["source.svelte meta.block.ts entity.name.label"],"settings":{"foreground":"#11658F"}},{"scope":["keyword.operator.word.applescript"],"settings":{"foreground":"#F767BB"}},{"scope":["meta.function-call.livescript"],"settings":{"foreground":"#09A1ED"}},{"scope":["variable.language.self.lua"],"settings":{"foreground":"#13BBB7"}},{"scope":["entity.name.type.class.swift","meta.inheritance-clause.swift","meta.import.swift entity.name.type"],"settings":{"foreground":"#13BBB7"}},{"scope":["source.swift punctuation.section.embedded"],"settings":{"foreground":"#B38700"}},{"scope":["variable.parameter.function.swift entity.name.function.swift"],"settings":{"foreground":"#565869"}},{"scope":"meta.function-call.twig","settings":{"foreground":"#565869"}},{"scope":"string.unquoted.tag-string.django","settings":{"foreground":"#565869"}},{"scope":["entity.tag.tagbraces.django","entity.tag.filter-pipe.django"],"settings":{"foreground":"#ADB1C2"}},{"scope":["meta.section.attributes.haml constant.language","meta.section.attributes.plain.haml constant.other.symbol"],"settings":{"foreground":"#FF8380"}},{"scope":["meta.prolog.haml"],"settings":{"foreground":"#9194A2"}},{"scope":["support.constant.handlebars"],"settings":{"foreground":"#ADB1C2"}},{"scope":"text.log log.constant","settings":{"foreground":"#C25193"}},{"scope":["source.c string constant.other.placeholder","source.cpp string constant.other.placeholder"],"settings":{"foreground":"#B38700"}},{"scope":"constant.other.key.groovy","settings":{"foreground":"#11658F"}},{"scope":"storage.type.groovy","settings":{"foreground":"#13BBB7"}},{"scope":"meta.definition.variable.groovy storage.type.groovy","settings":{"foreground":"#2DAE58"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#CF9C00"}},{"scope":["entity.other.attribute-name.class.pug","entity.other.attribute-name.id.pug"],"settings":{"foreground":"#13BBB7"}},{"scope":["constant.name.attribute.tag.pug"],"settings":{"foreground":"#ADB1C2"}},{"scope":"entity.name.tag.style.html","settings":{"foreground":"#13BBB7"}},{"scope":"entity.name.type.wasm","settings":{"foreground":"#2DAE58"}}],"type":"light"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=snazzy-light-Bw305WKR.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"snazzy-light-Bw305WKR.js","sources":["../../../../node_modules/@shikijs/themes/dist/snazzy-light.mjs"],"sourcesContent":["/* Theme: snazzy-light */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#E7E8E6\\\",\\\"activityBar.foreground\\\":\\\"#2DAE58\\\",\\\"activityBar.inactiveForeground\\\":\\\"#68696888\\\",\\\"activityBarBadge.background\\\":\\\"#09A1ED\\\",\\\"badge.background\\\":\\\"#09A1ED\\\",\\\"badge.foreground\\\":\\\"#ffffff\\\",\\\"button.background\\\":\\\"#2DAE58\\\",\\\"debugExceptionWidget.background\\\":\\\"#FFAEAC33\\\",\\\"debugExceptionWidget.border\\\":\\\"#FF5C57\\\",\\\"debugToolBar.border\\\":\\\"#E9EAEB\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#2DAE5824\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#FFAEAC44\\\",\\\"dropdown.border\\\":\\\"#E9EAEB\\\",\\\"editor.background\\\":\\\"#FAFBFC\\\",\\\"editor.findMatchBackground\\\":\\\"#00E6E06A\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#00E6E02A\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#F5B90011\\\",\\\"editor.focusedStackFrameHighlightBackground\\\":\\\"#2DAE5822\\\",\\\"editor.foreground\\\":\\\"#565869\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#00E6E018\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#F5B90033\\\",\\\"editor.selectionBackground\\\":\\\"#2DAE5822\\\",\\\"editor.snippetTabstopHighlightBackground\\\":\\\"#ADB1C23A\\\",\\\"editor.stackFrameHighlightBackground\\\":\\\"#F5B90033\\\",\\\"editor.wordHighlightBackground\\\":\\\"#ADB1C23A\\\",\\\"editorError.foreground\\\":\\\"#FF5C56\\\",\\\"editorGroup.emptyBackground\\\":\\\"#F3F4F5\\\",\\\"editorGutter.addedBackground\\\":\\\"#2DAE58\\\",\\\"editorGutter.deletedBackground\\\":\\\"#FF5C57\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#00A39FAA\\\",\\\"editorInlayHint.background\\\":\\\"#E9EAEB\\\",\\\"editorInlayHint.foreground\\\":\\\"#565869\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#35CF68\\\",\\\"editorLineNumber.foreground\\\":\\\"#9194A2aa\\\",\\\"editorLink.activeForeground\\\":\\\"#35CF68\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#2DAE58\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#FF5C57\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#FF5C56\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#13BBB7AA\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#00A39FAA\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#CF9C00\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#ADB1C288\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#35CF68\\\",\\\"editorWarning.foreground\\\":\\\"#CF9C00\\\",\\\"editorWhitespace.foreground\\\":\\\"#ADB1C255\\\",\\\"extensionButton.prominentBackground\\\":\\\"#2DAE58\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#238744\\\",\\\"focusBorder\\\":\\\"#09A1ED\\\",\\\"foreground\\\":\\\"#686968\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#00A39F\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#2DAE58\\\",\\\"input.border\\\":\\\"#E9EAEB\\\",\\\"list.activeSelectionBackground\\\":\\\"#09A1ED\\\",\\\"list.activeSelectionForeground\\\":\\\"#ffffff\\\",\\\"list.errorForeground\\\":\\\"#FF5C56\\\",\\\"list.focusBackground\\\":\\\"#BCE7FC99\\\",\\\"list.focusForeground\\\":\\\"#11658F\\\",\\\"list.hoverBackground\\\":\\\"#E9EAEB\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#89B5CB33\\\",\\\"list.warningForeground\\\":\\\"#B38700\\\",\\\"menu.background\\\":\\\"#FAFBFC\\\",\\\"menu.selectionBackground\\\":\\\"#E9EAEB\\\",\\\"menu.selectionForeground\\\":\\\"#686968\\\",\\\"menubar.selectionBackground\\\":\\\"#E9EAEB\\\",\\\"menubar.selectionForeground\\\":\\\"#686968\\\",\\\"merge.currentContentBackground\\\":\\\"#35CF6833\\\",\\\"merge.currentHeaderBackground\\\":\\\"#35CF6866\\\",\\\"merge.incomingContentBackground\\\":\\\"#14B1FF33\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#14B1FF77\\\",\\\"peekView.border\\\":\\\"#09A1ED\\\",\\\"peekViewEditor.background\\\":\\\"#14B1FF08\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#F5B90088\\\",\\\"peekViewEditor.matchHighlightBorder\\\":\\\"#F5B900\\\",\\\"peekViewEditorStickyScroll.background\\\":\\\"#EDF4FB\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#F5B90088\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#09A1ED\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#FFFFFF\\\",\\\"peekViewTitle.background\\\":\\\"#09A1ED11\\\",\\\"selection.background\\\":\\\"#2DAE5844\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#13BBB7\\\",\\\"sideBar.background\\\":\\\"#F3F4F5\\\",\\\"sideBar.border\\\":\\\"#DEDFE0\\\",\\\"sideBarSectionHeader.background\\\":\\\"#E9EAEB\\\",\\\"sideBarSectionHeader.border\\\":\\\"#DEDFE0\\\",\\\"statusBar.background\\\":\\\"#2DAE58\\\",\\\"statusBar.debuggingBackground\\\":\\\"#13BBB7\\\",\\\"statusBar.debuggingBorder\\\":\\\"#00A39F\\\",\\\"statusBar.noFolderBackground\\\":\\\"#565869\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#238744\\\",\\\"tab.activeBorderTop\\\":\\\"#2DAE58\\\",\\\"terminal.ansiBlack\\\":\\\"#565869\\\",\\\"terminal.ansiBlue\\\":\\\"#09A1ED\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#75798F\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#14B1FF\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#13BBB7\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#35CF68\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#FF94D2\\\",\\\"terminal.ansiBrightRed\\\":\\\"#FFAEAC\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#FFFFFF\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#F5B900\\\",\\\"terminal.ansiCyan\\\":\\\"#13BBB7\\\",\\\"terminal.ansiGreen\\\":\\\"#2DAE58\\\",\\\"terminal.ansiMagenta\\\":\\\"#F767BB\\\",\\\"terminal.ansiRed\\\":\\\"#FF5C57\\\",\\\"terminal.ansiWhite\\\":\\\"#FAFBF9\\\",\\\"terminal.ansiYellow\\\":\\\"#CF9C00\\\",\\\"titleBar.activeBackground\\\":\\\"#F3F4F5\\\"},\\\"displayName\\\":\\\"Snazzy Light\\\",\\\"name\\\":\\\"snazzy-light\\\",\\\"tokenColors\\\":[{\\\"scope\\\":\\\"invalid.illegal\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":[\\\"meta.object-literal.key\\\",\\\"meta.object-literal.key constant.character.escape\\\",\\\"meta.object-literal string\\\",\\\"meta.object-literal string constant.character.escape\\\",\\\"support.type.property-name\\\",\\\"support.type.property-name constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"keyword\\\",\\\"storage\\\",\\\"meta.class storage.type\\\",\\\"keyword.operator.expression.import\\\",\\\"keyword.operator.new\\\",\\\"keyword.operator.expression.delete\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"support.type\\\",\\\"meta.type.annotation entity.name.type\\\",\\\"new.expr meta.type.parameters entity.name.type\\\",\\\"storage.type.primitive\\\",\\\"storage.type.built-in.primitive\\\",\\\"meta.function.parameter storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"storage.type.annotation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C57CC\\\"}},{\\\"scope\\\":[\\\"constant.language\\\",\\\"support.constant\\\",\\\"variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"variable\\\",\\\"support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":\\\"variable.language.this\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"entity.name.function\\\",\\\"support.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":[\\\"entity.name.function.decorator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"meta.class entity.name.type\\\",\\\"new.expr entity.name.type\\\",\\\"entity.other.inherited-class\\\",\\\"support.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"keyword.preprocessor.pragma\\\",\\\"keyword.control.directive.include\\\",\\\"keyword.other.preprocessor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"entity.name.exception\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":\\\"entity.name.section\\\",\\\"settings\\\":{}},{\\\"scope\\\":[\\\"constant.numeric\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C57\\\"}},{\\\"scope\\\":[\\\"constant\\\",\\\"constant.character\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":\\\"constant.character.escape\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F5B900\\\"}},{\\\"scope\\\":[\\\"string.regexp\\\",\\\"string.regexp constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"keyword.operator.quantifier.regexp\\\",\\\"keyword.operator.negation.regexp\\\",\\\"keyword.operator.or.regexp\\\",\\\"string.regexp punctuation\\\",\\\"string.regexp keyword\\\",\\\"string.regexp keyword.control\\\",\\\"string.regexp constant\\\",\\\"variable.other.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#00A39F\\\"}},{\\\"scope\\\":[\\\"string.regexp keyword.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#00A39F88\\\"}},{\\\"scope\\\":\\\"constant.other.symbol\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":\\\"comment.block.preprocessor\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#9194A2\\\"}},{\\\"scope\\\":\\\"comment.block.documentation entity.name.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"comment.block.documentation storage\\\",\\\"comment.block.documentation keyword.other\\\",\\\"meta.class comment.block.documentation storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9194A2\\\"}},{\\\"scope\\\":[\\\"comment.block.documentation variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":[\\\"punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"keyword.operator\\\",\\\"keyword.other.arrow\\\",\\\"keyword.control.@\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"meta.tag.metadata.doctype.html entity.name.tag\\\",\\\"meta.tag.metadata.doctype.html entity.other.attribute-name.html\\\",\\\"meta.tag.sgml.doctype\\\",\\\"meta.tag.sgml.doctype string\\\",\\\"meta.tag.sgml.doctype entity.name.tag\\\",\\\"meta.tag.sgml punctuation.definition.tag.html\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9194A2\\\"}},{\\\"scope\\\":[\\\"meta.tag\\\",\\\"punctuation.definition.tag.html\\\",\\\"punctuation.definition.tag.begin.html\\\",\\\"punctuation.definition.tag.end.html\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"meta.tag entity.other.attribute-name\\\",\\\"entity.other.attribute-name.html\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF8380\\\"}},{\\\"scope\\\":[\\\"constant.character.entity\\\",\\\"punctuation.definition.entity\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":[\\\"source.css\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"meta.selector\\\",\\\"meta.selector entity\\\",\\\"meta.selector entity punctuation\\\",\\\"source.css entity.name.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"keyword.control.at-rule\\\",\\\"keyword.control.at-rule punctuation.definition.keyword\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":\\\"source.css variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.css meta.property-name\\\",\\\"source.css support.type.property-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":[\\\"source.css support.type.vendored.property-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869AA\\\"}},{\\\"scope\\\":[\\\"meta.property-value\\\",\\\"support.constant.property-value\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.css support.constant\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.entity.css\\\",\\\"keyword.operator.combinator.css\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF82CBBB\\\"}},{\\\"scope\\\":[\\\"source.css support.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":\\\"keyword.other.important\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#238744\\\"}},{\\\"scope\\\":[\\\"source.css.scss\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"source.css.scss entity.other.attribute-name.class.css\\\",\\\"source.css.scss entity.other.attribute-name.id.css\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"entity.name.tag.reference.scss\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":[\\\"source.css.scss meta.at-rule keyword\\\",\\\"source.css.scss meta.at-rule keyword punctuation\\\",\\\"source.css.scss meta.at-rule operator.logical\\\",\\\"keyword.control.content.scss\\\",\\\"keyword.control.return.scss\\\",\\\"keyword.control.return.scss punctuation.definition.keyword\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":[\\\"meta.at-rule.mixin.scss\\\",\\\"meta.at-rule.include.scss\\\",\\\"source.css.scss meta.at-rule.if\\\",\\\"source.css.scss meta.at-rule.else\\\",\\\"source.css.scss meta.at-rule.each\\\",\\\"source.css.scss meta.at-rule variable.parameter\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.css.less entity.other.attribute-name.class.css\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":\\\"source.stylus meta.brace.curly.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.stylus entity.other.attribute-name.class\\\",\\\"source.stylus entity.other.attribute-name.id\\\",\\\"source.stylus entity.name.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"source.stylus support.type.property-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":[\\\"source.stylus variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#888888\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#888888\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.error\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#888888\\\"}},{\\\"scope\\\":\\\"meta.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":[\\\"markup.output\\\",\\\"markup.raw\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#999999\\\"}},{\\\"scope\\\":\\\"markup.prompt\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#999999\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"markup.traceback\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":\\\"markup.underline\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":\\\"markup.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#777985\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.italic\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":\\\"markup.inline.raw\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"meta.brace.round\\\",\\\"meta.brace.square\\\",\\\"storage.type.function.arrow\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"constant.language.import-export-all\\\",\\\"meta.import keyword.control.default\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":[\\\"support.function.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"string.regexp.js\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"variable.language.super\\\",\\\"support.type.object.module.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":\\\"meta.jsx.children\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#686968\\\"}},{\\\"scope\\\":\\\"entity.name.tag.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"variable.other.alias.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#75798F\\\"}},{\\\"scope\\\":[\\\"meta.use.php entity.other.alias.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.php support.function.construct\\\",\\\"source.php support.function.var\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"storage.modifier.extends.php\\\",\\\"source.php keyword.other\\\",\\\"storage.modifier.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"meta.class.body.php storage.type.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"storage.type.php\\\",\\\"meta.class.body.php meta.function-call.php storage.type.php\\\",\\\"meta.class.body.php meta.function.php storage.type.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"source.php keyword.other.DML\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D94E4A\\\"}},{\\\"scope\\\":[\\\"source.sql.embedded.php keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"source.ini keyword\\\",\\\"source.toml keyword\\\",\\\"source.env variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.ini entity.name.section\\\",\\\"source.toml entity.other.attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"source.go storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"keyword.import.go\\\",\\\"keyword.package.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":[\\\"source.reason variable.language string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":[\\\"source.reason support.type\\\",\\\"source.reason constant.language\\\",\\\"source.reason constant.language constant.numeric\\\",\\\"source.reason support.type string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"source.reason keyword.operator keyword.control\\\",\\\"source.reason keyword.control.less\\\",\\\"source.reason keyword.control.flow\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.reason string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":[\\\"source.reason support.property-value\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.rust support.function.core.rust\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.rust storage.type.core.rust\\\",\\\"source.rust storage.class.std\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"source.rust entity.name.type.rust\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"storage.type.function.coffee\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"keyword.type.cs\\\",\\\"storage.type.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"entity.name.type.namespace.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":\\\"meta.diff.header\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"markup.inserted.diff\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"markup.deleted.diff\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5C56\\\"}},{\\\"scope\\\":[\\\"meta.diff.range\\\",\\\"meta.diff.index\\\",\\\"meta.separator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":\\\"source.makefile variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"keyword.control.protocol-specification.objc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"meta.parens storage.type.objc\\\",\\\"meta.return-type.objc support.class\\\",\\\"meta.return-type.objc storage.type.objc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"source.sql keyword\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"keyword.other.special-method.dockerfile\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":\\\"constant.other.symbol.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"storage.type.elm\\\",\\\"support.module.elm\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.elm keyword.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.erlang entity.name.type.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"variable.other.field.erlang\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.erlang constant.other.symbol\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"storage.type.haskell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"meta.declaration.class.haskell storage.type.haskell\\\",\\\"meta.declaration.instance.haskell storage.type.haskell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"meta.preprocessor.haskell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#75798F\\\"}},{\\\"scope\\\":[\\\"source.haskell keyword.control\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"tag.end.latte\\\",\\\"tag.begin.latte\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":\\\"source.po keyword.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"source.po storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#9194A2\\\"}},{\\\"scope\\\":\\\"constant.language.po\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":\\\"meta.header.po string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF8380\\\"}},{\\\"scope\\\":\\\"source.po meta.header.po\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.ocaml markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"}},{\\\"scope\\\":[\\\"source.ocaml punctuation.definition.tag emphasis\\\",\\\"source.ocaml entity.name.class constant.numeric\\\",\\\"source.ocaml support.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"source.ocaml constant.numeric entity.other.attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.ocaml comment meta.separator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.ocaml support.type strong\\\",\\\"source.ocaml keyword.control strong\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.ocaml support.constant.property-value\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"source.scala entity.name.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"storage.type.scala\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":[\\\"variable.parameter.scala\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"meta.bracket.scala\\\",\\\"meta.colon.scala\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"meta.metadata.simple.clojure\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"meta.metadata.simple.clojure meta.symbol\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.r keyword.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"source.svelte meta.block.ts entity.name.label\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":[\\\"keyword.operator.word.applescript\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F767BB\\\"}},{\\\"scope\\\":[\\\"meta.function-call.livescript\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#09A1ED\\\"}},{\\\"scope\\\":[\\\"variable.language.self.lua\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"entity.name.type.class.swift\\\",\\\"meta.inheritance-clause.swift\\\",\\\"meta.import.swift entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"source.swift punctuation.section.embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B38700\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.swift entity.name.function.swift\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":\\\"meta.function-call.twig\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":\\\"string.unquoted.tag-string.django\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#565869\\\"}},{\\\"scope\\\":[\\\"entity.tag.tagbraces.django\\\",\\\"entity.tag.filter-pipe.django\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":[\\\"meta.section.attributes.haml constant.language\\\",\\\"meta.section.attributes.plain.haml constant.other.symbol\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF8380\\\"}},{\\\"scope\\\":[\\\"meta.prolog.haml\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9194A2\\\"}},{\\\"scope\\\":[\\\"support.constant.handlebars\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":\\\"text.log log.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C25193\\\"}},{\\\"scope\\\":[\\\"source.c string constant.other.placeholder\\\",\\\"source.cpp string constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B38700\\\"}},{\\\"scope\\\":\\\"constant.other.key.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#11658F\\\"}},{\\\"scope\\\":\\\"storage.type.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":\\\"meta.definition.variable.groovy storage.type.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}},{\\\"scope\\\":\\\"storage.modifier.import.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CF9C00\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name.class.pug\\\",\\\"entity.other.attribute-name.id.pug\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":[\\\"constant.name.attribute.tag.pug\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ADB1C2\\\"}},{\\\"scope\\\":\\\"entity.name.tag.style.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#13BBB7\\\"}},{\\\"scope\\\":\\\"entity.name.type.wasm\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2DAE58\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["snazzyLight"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,2uoBAAq/sB,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"colors":{"activityBar.background":"#003847","badge.background":"#047aa6","button.background":"#2AA19899","debugExceptionWidget.background":"#00212B","debugExceptionWidget.border":"#AB395B","debugToolBar.background":"#00212B","dropdown.background":"#00212B","dropdown.border":"#2AA19899","editor.background":"#002B36","editor.foreground":"#839496","editor.lineHighlightBackground":"#073642","editor.selectionBackground":"#274642","editor.selectionHighlightBackground":"#005A6FAA","editor.wordHighlightBackground":"#004454AA","editor.wordHighlightStrongBackground":"#005A6FAA","editorBracketHighlight.foreground1":"#cdcdcdff","editorBracketHighlight.foreground2":"#b58900ff","editorBracketHighlight.foreground3":"#d33682ff","editorCursor.foreground":"#D30102","editorGroup.border":"#00212B","editorGroup.dropBackground":"#2AA19844","editorGroupHeader.tabsBackground":"#004052","editorHoverWidget.background":"#004052","editorIndentGuide.activeBackground":"#C3E1E180","editorIndentGuide.background":"#93A1A180","editorLineNumber.activeForeground":"#949494","editorMarkerNavigationError.background":"#AB395B","editorMarkerNavigationWarning.background":"#5B7E7A","editorWhitespace.foreground":"#93A1A180","editorWidget.background":"#00212B","errorForeground":"#ffeaea","focusBorder":"#2AA19899","input.background":"#003847","input.foreground":"#93A1A1","input.placeholderForeground":"#93A1A1AA","inputOption.activeBorder":"#2AA19899","inputValidation.errorBackground":"#571b26","inputValidation.errorBorder":"#a92049","inputValidation.infoBackground":"#052730","inputValidation.infoBorder":"#363b5f","inputValidation.warningBackground":"#5d5938","inputValidation.warningBorder":"#9d8a5e","list.activeSelectionBackground":"#005A6F","list.dropBackground":"#00445488","list.highlightForeground":"#1ebcc5","list.hoverBackground":"#004454AA","list.inactiveSelectionBackground":"#00445488","minimap.selectionHighlight":"#274642","panel.border":"#2b2b4a","peekView.border":"#2b2b4a","peekViewEditor.background":"#10192c","peekViewEditor.matchHighlightBackground":"#7744AA40","peekViewResult.background":"#00212B","peekViewTitle.background":"#00212B","pickerGroup.border":"#2AA19899","pickerGroup.foreground":"#2AA19899","ports.iconRunningProcessForeground":"#369432","progressBar.background":"#047aa6","quickInputList.focusBackground":"#005A6F","selection.background":"#2AA19899","sideBar.background":"#00212B","sideBarTitle.foreground":"#93A1A1","statusBar.background":"#00212B","statusBar.debuggingBackground":"#00212B","statusBar.foreground":"#93A1A1","statusBar.noFolderBackground":"#00212B","statusBarItem.prominentBackground":"#003847","statusBarItem.prominentHoverBackground":"#003847","statusBarItem.remoteBackground":"#2AA19899","tab.activeBackground":"#002B37","tab.activeForeground":"#d6dbdb","tab.border":"#003847","tab.inactiveBackground":"#004052","tab.inactiveForeground":"#93A1A1","tab.lastPinnedBorder":"#2AA19844","terminal.ansiBlack":"#073642","terminal.ansiBlue":"#268bd2","terminal.ansiBrightBlack":"#002b36","terminal.ansiBrightBlue":"#839496","terminal.ansiBrightCyan":"#93a1a1","terminal.ansiBrightGreen":"#586e75","terminal.ansiBrightMagenta":"#6c71c4","terminal.ansiBrightRed":"#cb4b16","terminal.ansiBrightWhite":"#fdf6e3","terminal.ansiBrightYellow":"#657b83","terminal.ansiCyan":"#2aa198","terminal.ansiGreen":"#859900","terminal.ansiMagenta":"#d33682","terminal.ansiRed":"#dc322f","terminal.ansiWhite":"#eee8d5","terminal.ansiYellow":"#b58900","titleBar.activeBackground":"#002C39"},"displayName":"Solarized Dark","name":"solarized-dark","semanticHighlighting":true,"tokenColors":[{"settings":{"foreground":"#839496"}},{"scope":["meta.embedded","source.groovy.embedded","string meta.image.inline.markdown","variable.legacy.builtin.python"],"settings":{"foreground":"#839496"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#586E75"}},{"scope":"string","settings":{"foreground":"#2AA198"}},{"scope":"string.regexp","settings":{"foreground":"#DC322F"}},{"scope":"constant.numeric","settings":{"foreground":"#D33682"}},{"scope":["variable.language","variable.other"],"settings":{"foreground":"#268BD2"}},{"scope":"keyword","settings":{"foreground":"#859900"}},{"scope":"storage","settings":{"fontStyle":"bold","foreground":"#93A1A1"}},{"scope":["entity.name.class","entity.name.type","entity.name.namespace","entity.name.scope-resolution"],"settings":{"fontStyle":"","foreground":"#CB4B16"}},{"scope":"entity.name.function","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.definition.variable","settings":{"foreground":"#859900"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#DC322F"}},{"scope":["constant.language","meta.preprocessor"],"settings":{"foreground":"#B58900"}},{"scope":["support.function.construct","keyword.other.new"],"settings":{"foreground":"#CB4B16"}},{"scope":["constant.character","constant.other"],"settings":{"foreground":"#CB4B16"}},{"scope":["entity.other.inherited-class","punctuation.separator.namespace.ruby"],"settings":{"foreground":"#6C71C4"}},{"scope":"variable.parameter","settings":{}},{"scope":"entity.name.tag","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.definition.tag","settings":{"foreground":"#586E75"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#93A1A1"}},{"scope":"support.function","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.separator.continuation","settings":{"foreground":"#DC322F"}},{"scope":["support.constant","support.variable"],"settings":{}},{"scope":["support.type","support.class"],"settings":{"foreground":"#859900"}},{"scope":"support.type.exception","settings":{"foreground":"#CB4B16"}},{"scope":"support.other.variable","settings":{}},{"scope":"invalid","settings":{"foreground":"#DC322F"}},{"scope":["meta.diff","meta.diff.header"],"settings":{"fontStyle":"italic","foreground":"#268BD2"}},{"scope":"markup.deleted","settings":{"fontStyle":"","foreground":"#DC322F"}},{"scope":"markup.changed","settings":{"fontStyle":"","foreground":"#CB4B16"}},{"scope":"markup.inserted","settings":{"foreground":"#859900"}},{"scope":"markup.quote","settings":{"foreground":"#859900"}},{"scope":"markup.list","settings":{"foreground":"#B58900"}},{"scope":["markup.bold","markup.italic"],"settings":{"foreground":"#D33682"}},{"scope":"markup.bold","settings":{"fontStyle":"bold"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inline.raw","settings":{"fontStyle":"","foreground":"#2AA198"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#268BD2"}},{"scope":"markup.heading.setext","settings":{"fontStyle":"","foreground":"#268BD2"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=solarized-dark-DXbdFlpD.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"solarized-dark-DXbdFlpD.js","sources":["../../../../node_modules/@shikijs/themes/dist/solarized-dark.mjs"],"sourcesContent":["/* Theme: solarized-dark */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#003847\\\",\\\"badge.background\\\":\\\"#047aa6\\\",\\\"button.background\\\":\\\"#2AA19899\\\",\\\"debugExceptionWidget.background\\\":\\\"#00212B\\\",\\\"debugExceptionWidget.border\\\":\\\"#AB395B\\\",\\\"debugToolBar.background\\\":\\\"#00212B\\\",\\\"dropdown.background\\\":\\\"#00212B\\\",\\\"dropdown.border\\\":\\\"#2AA19899\\\",\\\"editor.background\\\":\\\"#002B36\\\",\\\"editor.foreground\\\":\\\"#839496\\\",\\\"editor.lineHighlightBackground\\\":\\\"#073642\\\",\\\"editor.selectionBackground\\\":\\\"#274642\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#005A6FAA\\\",\\\"editor.wordHighlightBackground\\\":\\\"#004454AA\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#005A6FAA\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#cdcdcdff\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#b58900ff\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#d33682ff\\\",\\\"editorCursor.foreground\\\":\\\"#D30102\\\",\\\"editorGroup.border\\\":\\\"#00212B\\\",\\\"editorGroup.dropBackground\\\":\\\"#2AA19844\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#004052\\\",\\\"editorHoverWidget.background\\\":\\\"#004052\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#C3E1E180\\\",\\\"editorIndentGuide.background\\\":\\\"#93A1A180\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#949494\\\",\\\"editorMarkerNavigationError.background\\\":\\\"#AB395B\\\",\\\"editorMarkerNavigationWarning.background\\\":\\\"#5B7E7A\\\",\\\"editorWhitespace.foreground\\\":\\\"#93A1A180\\\",\\\"editorWidget.background\\\":\\\"#00212B\\\",\\\"errorForeground\\\":\\\"#ffeaea\\\",\\\"focusBorder\\\":\\\"#2AA19899\\\",\\\"input.background\\\":\\\"#003847\\\",\\\"input.foreground\\\":\\\"#93A1A1\\\",\\\"input.placeholderForeground\\\":\\\"#93A1A1AA\\\",\\\"inputOption.activeBorder\\\":\\\"#2AA19899\\\",\\\"inputValidation.errorBackground\\\":\\\"#571b26\\\",\\\"inputValidation.errorBorder\\\":\\\"#a92049\\\",\\\"inputValidation.infoBackground\\\":\\\"#052730\\\",\\\"inputValidation.infoBorder\\\":\\\"#363b5f\\\",\\\"inputValidation.warningBackground\\\":\\\"#5d5938\\\",\\\"inputValidation.warningBorder\\\":\\\"#9d8a5e\\\",\\\"list.activeSelectionBackground\\\":\\\"#005A6F\\\",\\\"list.dropBackground\\\":\\\"#00445488\\\",\\\"list.highlightForeground\\\":\\\"#1ebcc5\\\",\\\"list.hoverBackground\\\":\\\"#004454AA\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#00445488\\\",\\\"minimap.selectionHighlight\\\":\\\"#274642\\\",\\\"panel.border\\\":\\\"#2b2b4a\\\",\\\"peekView.border\\\":\\\"#2b2b4a\\\",\\\"peekViewEditor.background\\\":\\\"#10192c\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#7744AA40\\\",\\\"peekViewResult.background\\\":\\\"#00212B\\\",\\\"peekViewTitle.background\\\":\\\"#00212B\\\",\\\"pickerGroup.border\\\":\\\"#2AA19899\\\",\\\"pickerGroup.foreground\\\":\\\"#2AA19899\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#369432\\\",\\\"progressBar.background\\\":\\\"#047aa6\\\",\\\"quickInputList.focusBackground\\\":\\\"#005A6F\\\",\\\"selection.background\\\":\\\"#2AA19899\\\",\\\"sideBar.background\\\":\\\"#00212B\\\",\\\"sideBarTitle.foreground\\\":\\\"#93A1A1\\\",\\\"statusBar.background\\\":\\\"#00212B\\\",\\\"statusBar.debuggingBackground\\\":\\\"#00212B\\\",\\\"statusBar.foreground\\\":\\\"#93A1A1\\\",\\\"statusBar.noFolderBackground\\\":\\\"#00212B\\\",\\\"statusBarItem.prominentBackground\\\":\\\"#003847\\\",\\\"statusBarItem.prominentHoverBackground\\\":\\\"#003847\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#2AA19899\\\",\\\"tab.activeBackground\\\":\\\"#002B37\\\",\\\"tab.activeForeground\\\":\\\"#d6dbdb\\\",\\\"tab.border\\\":\\\"#003847\\\",\\\"tab.inactiveBackground\\\":\\\"#004052\\\",\\\"tab.inactiveForeground\\\":\\\"#93A1A1\\\",\\\"tab.lastPinnedBorder\\\":\\\"#2AA19844\\\",\\\"terminal.ansiBlack\\\":\\\"#073642\\\",\\\"terminal.ansiBlue\\\":\\\"#268bd2\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#002b36\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#839496\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#93a1a1\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#586e75\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#6c71c4\\\",\\\"terminal.ansiBrightRed\\\":\\\"#cb4b16\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#fdf6e3\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#657b83\\\",\\\"terminal.ansiCyan\\\":\\\"#2aa198\\\",\\\"terminal.ansiGreen\\\":\\\"#859900\\\",\\\"terminal.ansiMagenta\\\":\\\"#d33682\\\",\\\"terminal.ansiRed\\\":\\\"#dc322f\\\",\\\"terminal.ansiWhite\\\":\\\"#eee8d5\\\",\\\"terminal.ansiYellow\\\":\\\"#b58900\\\",\\\"titleBar.activeBackground\\\":\\\"#002C39\\\"},\\\"displayName\\\":\\\"Solarized Dark\\\",\\\"name\\\":\\\"solarized-dark\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#839496\\\"}},{\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\",\\\"string meta.image.inline.markdown\\\",\\\"variable.legacy.builtin.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#839496\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#586E75\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2AA198\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D33682\\\"}},{\\\"scope\\\":[\\\"variable.language\\\",\\\"variable.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#93A1A1\\\"}},{\\\"scope\\\":[\\\"entity.name.class\\\",\\\"entity.name.type\\\",\\\"entity.name.namespace\\\",\\\"entity.name.scope-resolution\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded.begin\\\",\\\"punctuation.section.embedded.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"constant.language\\\",\\\"meta.preprocessor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B58900\\\"}},{\\\"scope\\\":[\\\"support.function.construct\\\",\\\"keyword.other.new\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":[\\\"constant.character\\\",\\\"constant.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":[\\\"entity.other.inherited-class\\\",\\\"punctuation.separator.namespace.ruby\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6C71C4\\\"}},{\\\"scope\\\":\\\"variable.parameter\\\",\\\"settings\\\":{}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#586E75\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#93A1A1\\\"}},{\\\"scope\\\":\\\"support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.separator.continuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"support.constant\\\",\\\"support.variable\\\"],\\\"settings\\\":{}},{\\\"scope\\\":[\\\"support.type\\\",\\\"support.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"support.type.exception\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"support.other.variable\\\",\\\"settings\\\":{}},{\\\"scope\\\":\\\"invalid\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"meta.diff\\\",\\\"meta.diff.header\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"markup.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"markup.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B58900\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.italic\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D33682\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.strikethrough\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"strikethrough\\\"}},{\\\"scope\\\":\\\"markup.inline.raw\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#2AA198\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"markup.heading.setext\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#268BD2\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["solarizedDark"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,ooNAAo9O,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"colors":{"activityBar.background":"#DDD6C1","activityBar.foreground":"#584c27","activityBarBadge.background":"#B58900","badge.background":"#B58900AA","button.background":"#AC9D57","debugExceptionWidget.background":"#DDD6C1","debugExceptionWidget.border":"#AB395B","debugToolBar.background":"#DDD6C1","dropdown.background":"#EEE8D5","dropdown.border":"#D3AF86","editor.background":"#FDF6E3","editor.foreground":"#657B83","editor.lineHighlightBackground":"#EEE8D5","editor.selectionBackground":"#EEE8D5","editorCursor.foreground":"#657B83","editorGroup.border":"#DDD6C1","editorGroup.dropBackground":"#DDD6C1AA","editorGroupHeader.tabsBackground":"#D9D2C2","editorHoverWidget.background":"#CCC4B0","editorIndentGuide.activeBackground":"#081E2580","editorIndentGuide.background":"#586E7580","editorLineNumber.activeForeground":"#567983","editorWhitespace.foreground":"#586E7580","editorWidget.background":"#EEE8D5","extensionButton.prominentBackground":"#b58900","extensionButton.prominentHoverBackground":"#584c27aa","focusBorder":"#b49471","input.background":"#DDD6C1","input.foreground":"#586E75","input.placeholderForeground":"#586E75AA","inputOption.activeBorder":"#D3AF86","list.activeSelectionBackground":"#DFCA88","list.activeSelectionForeground":"#6C6C6C","list.highlightForeground":"#B58900","list.hoverBackground":"#DFCA8844","list.inactiveSelectionBackground":"#D1CBB8","minimap.selectionHighlight":"#EEE8D5","notebook.cellEditorBackground":"#F7F0E0","panel.border":"#DDD6C1","peekView.border":"#B58900","peekViewEditor.background":"#FFFBF2","peekViewEditor.matchHighlightBackground":"#7744AA40","peekViewResult.background":"#EEE8D5","peekViewTitle.background":"#EEE8D5","pickerGroup.border":"#2AA19899","pickerGroup.foreground":"#2AA19899","ports.iconRunningProcessForeground":"#2AA19899","progressBar.background":"#B58900","quickInputList.focusBackground":"#DFCA8866","selection.background":"#878b9180","sideBar.background":"#EEE8D5","sideBarTitle.foreground":"#586E75","statusBar.background":"#EEE8D5","statusBar.debuggingBackground":"#EEE8D5","statusBar.foreground":"#586E75","statusBar.noFolderBackground":"#EEE8D5","statusBarItem.prominentBackground":"#DDD6C1","statusBarItem.prominentHoverBackground":"#DDD6C199","statusBarItem.remoteBackground":"#AC9D57","tab.activeBackground":"#FDF6E3","tab.activeModifiedBorder":"#cb4b16","tab.border":"#DDD6C1","tab.inactiveBackground":"#D3CBB7","tab.inactiveForeground":"#586E75","tab.lastPinnedBorder":"#FDF6E3","terminal.ansiBlack":"#073642","terminal.ansiBlue":"#268bd2","terminal.ansiBrightBlack":"#002b36","terminal.ansiBrightBlue":"#839496","terminal.ansiBrightCyan":"#93a1a1","terminal.ansiBrightGreen":"#586e75","terminal.ansiBrightMagenta":"#6c71c4","terminal.ansiBrightRed":"#cb4b16","terminal.ansiBrightWhite":"#fdf6e3","terminal.ansiBrightYellow":"#657b83","terminal.ansiCyan":"#2aa198","terminal.ansiGreen":"#859900","terminal.ansiMagenta":"#d33682","terminal.ansiRed":"#dc322f","terminal.ansiWhite":"#eee8d5","terminal.ansiYellow":"#b58900","terminal.background":"#FDF6E3","titleBar.activeBackground":"#EEE8D5","walkThrough.embeddedEditorBackground":"#00000014"},"displayName":"Solarized Light","name":"solarized-light","semanticHighlighting":true,"tokenColors":[{"settings":{"foreground":"#657B83"}},{"scope":["meta.embedded","source.groovy.embedded","string meta.image.inline.markdown","variable.legacy.builtin.python"],"settings":{"foreground":"#657B83"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#93A1A1"}},{"scope":"string","settings":{"foreground":"#2AA198"}},{"scope":"string.regexp","settings":{"foreground":"#DC322F"}},{"scope":"constant.numeric","settings":{"foreground":"#D33682"}},{"scope":["variable.language","variable.other"],"settings":{"foreground":"#268BD2"}},{"scope":"keyword","settings":{"foreground":"#859900"}},{"scope":"storage","settings":{"fontStyle":"bold","foreground":"#586E75"}},{"scope":["entity.name.class","entity.name.type","entity.name.namespace","entity.name.scope-resolution"],"settings":{"fontStyle":"","foreground":"#CB4B16"}},{"scope":"entity.name.function","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.definition.variable","settings":{"foreground":"#859900"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#DC322F"}},{"scope":["constant.language","meta.preprocessor"],"settings":{"foreground":"#B58900"}},{"scope":["support.function.construct","keyword.other.new"],"settings":{"foreground":"#CB4B16"}},{"scope":["constant.character","constant.other"],"settings":{"foreground":"#CB4B16"}},{"scope":["entity.other.inherited-class","punctuation.separator.namespace.ruby"],"settings":{"foreground":"#6C71C4"}},{"scope":"variable.parameter","settings":{}},{"scope":"entity.name.tag","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.definition.tag","settings":{"foreground":"#93A1A1"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#93A1A1"}},{"scope":"support.function","settings":{"foreground":"#268BD2"}},{"scope":"punctuation.separator.continuation","settings":{"foreground":"#DC322F"}},{"scope":["support.constant","support.variable"],"settings":{}},{"scope":["support.type","support.class"],"settings":{"foreground":"#859900"}},{"scope":"support.type.exception","settings":{"foreground":"#CB4B16"}},{"scope":"support.other.variable","settings":{}},{"scope":"invalid","settings":{"foreground":"#DC322F"}},{"scope":["meta.diff","meta.diff.header"],"settings":{"fontStyle":"italic","foreground":"#268BD2"}},{"scope":"markup.deleted","settings":{"fontStyle":"","foreground":"#DC322F"}},{"scope":"markup.changed","settings":{"fontStyle":"","foreground":"#CB4B16"}},{"scope":"markup.inserted","settings":{"foreground":"#859900"}},{"scope":"markup.quote","settings":{"foreground":"#859900"}},{"scope":"markup.list","settings":{"foreground":"#B58900"}},{"scope":["markup.bold","markup.italic"],"settings":{"foreground":"#D33682"}},{"scope":"markup.bold","settings":{"fontStyle":"bold"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inline.raw","settings":{"fontStyle":"","foreground":"#2AA198"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#268BD2"}},{"scope":"markup.heading.setext","settings":{"fontStyle":"","foreground":"#268BD2"}}],"type":"light"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=solarized-light-L9t79GZl.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"solarized-light-L9t79GZl.js","sources":["../../../../node_modules/@shikijs/themes/dist/solarized-light.mjs"],"sourcesContent":["/* Theme: solarized-light */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#DDD6C1\\\",\\\"activityBar.foreground\\\":\\\"#584c27\\\",\\\"activityBarBadge.background\\\":\\\"#B58900\\\",\\\"badge.background\\\":\\\"#B58900AA\\\",\\\"button.background\\\":\\\"#AC9D57\\\",\\\"debugExceptionWidget.background\\\":\\\"#DDD6C1\\\",\\\"debugExceptionWidget.border\\\":\\\"#AB395B\\\",\\\"debugToolBar.background\\\":\\\"#DDD6C1\\\",\\\"dropdown.background\\\":\\\"#EEE8D5\\\",\\\"dropdown.border\\\":\\\"#D3AF86\\\",\\\"editor.background\\\":\\\"#FDF6E3\\\",\\\"editor.foreground\\\":\\\"#657B83\\\",\\\"editor.lineHighlightBackground\\\":\\\"#EEE8D5\\\",\\\"editor.selectionBackground\\\":\\\"#EEE8D5\\\",\\\"editorCursor.foreground\\\":\\\"#657B83\\\",\\\"editorGroup.border\\\":\\\"#DDD6C1\\\",\\\"editorGroup.dropBackground\\\":\\\"#DDD6C1AA\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#D9D2C2\\\",\\\"editorHoverWidget.background\\\":\\\"#CCC4B0\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#081E2580\\\",\\\"editorIndentGuide.background\\\":\\\"#586E7580\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#567983\\\",\\\"editorWhitespace.foreground\\\":\\\"#586E7580\\\",\\\"editorWidget.background\\\":\\\"#EEE8D5\\\",\\\"extensionButton.prominentBackground\\\":\\\"#b58900\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#584c27aa\\\",\\\"focusBorder\\\":\\\"#b49471\\\",\\\"input.background\\\":\\\"#DDD6C1\\\",\\\"input.foreground\\\":\\\"#586E75\\\",\\\"input.placeholderForeground\\\":\\\"#586E75AA\\\",\\\"inputOption.activeBorder\\\":\\\"#D3AF86\\\",\\\"list.activeSelectionBackground\\\":\\\"#DFCA88\\\",\\\"list.activeSelectionForeground\\\":\\\"#6C6C6C\\\",\\\"list.highlightForeground\\\":\\\"#B58900\\\",\\\"list.hoverBackground\\\":\\\"#DFCA8844\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#D1CBB8\\\",\\\"minimap.selectionHighlight\\\":\\\"#EEE8D5\\\",\\\"notebook.cellEditorBackground\\\":\\\"#F7F0E0\\\",\\\"panel.border\\\":\\\"#DDD6C1\\\",\\\"peekView.border\\\":\\\"#B58900\\\",\\\"peekViewEditor.background\\\":\\\"#FFFBF2\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#7744AA40\\\",\\\"peekViewResult.background\\\":\\\"#EEE8D5\\\",\\\"peekViewTitle.background\\\":\\\"#EEE8D5\\\",\\\"pickerGroup.border\\\":\\\"#2AA19899\\\",\\\"pickerGroup.foreground\\\":\\\"#2AA19899\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#2AA19899\\\",\\\"progressBar.background\\\":\\\"#B58900\\\",\\\"quickInputList.focusBackground\\\":\\\"#DFCA8866\\\",\\\"selection.background\\\":\\\"#878b9180\\\",\\\"sideBar.background\\\":\\\"#EEE8D5\\\",\\\"sideBarTitle.foreground\\\":\\\"#586E75\\\",\\\"statusBar.background\\\":\\\"#EEE8D5\\\",\\\"statusBar.debuggingBackground\\\":\\\"#EEE8D5\\\",\\\"statusBar.foreground\\\":\\\"#586E75\\\",\\\"statusBar.noFolderBackground\\\":\\\"#EEE8D5\\\",\\\"statusBarItem.prominentBackground\\\":\\\"#DDD6C1\\\",\\\"statusBarItem.prominentHoverBackground\\\":\\\"#DDD6C199\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#AC9D57\\\",\\\"tab.activeBackground\\\":\\\"#FDF6E3\\\",\\\"tab.activeModifiedBorder\\\":\\\"#cb4b16\\\",\\\"tab.border\\\":\\\"#DDD6C1\\\",\\\"tab.inactiveBackground\\\":\\\"#D3CBB7\\\",\\\"tab.inactiveForeground\\\":\\\"#586E75\\\",\\\"tab.lastPinnedBorder\\\":\\\"#FDF6E3\\\",\\\"terminal.ansiBlack\\\":\\\"#073642\\\",\\\"terminal.ansiBlue\\\":\\\"#268bd2\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#002b36\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#839496\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#93a1a1\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#586e75\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#6c71c4\\\",\\\"terminal.ansiBrightRed\\\":\\\"#cb4b16\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#fdf6e3\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#657b83\\\",\\\"terminal.ansiCyan\\\":\\\"#2aa198\\\",\\\"terminal.ansiGreen\\\":\\\"#859900\\\",\\\"terminal.ansiMagenta\\\":\\\"#d33682\\\",\\\"terminal.ansiRed\\\":\\\"#dc322f\\\",\\\"terminal.ansiWhite\\\":\\\"#eee8d5\\\",\\\"terminal.ansiYellow\\\":\\\"#b58900\\\",\\\"terminal.background\\\":\\\"#FDF6E3\\\",\\\"titleBar.activeBackground\\\":\\\"#EEE8D5\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#00000014\\\"},\\\"displayName\\\":\\\"Solarized Light\\\",\\\"name\\\":\\\"solarized-light\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#657B83\\\"}},{\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\",\\\"string meta.image.inline.markdown\\\",\\\"variable.legacy.builtin.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#657B83\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#93A1A1\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#2AA198\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D33682\\\"}},{\\\"scope\\\":[\\\"variable.language\\\",\\\"variable.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#586E75\\\"}},{\\\"scope\\\":[\\\"entity.name.class\\\",\\\"entity.name.type\\\",\\\"entity.name.namespace\\\",\\\"entity.name.scope-resolution\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded.begin\\\",\\\"punctuation.section.embedded.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"constant.language\\\",\\\"meta.preprocessor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B58900\\\"}},{\\\"scope\\\":[\\\"support.function.construct\\\",\\\"keyword.other.new\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":[\\\"constant.character\\\",\\\"constant.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":[\\\"entity.other.inherited-class\\\",\\\"punctuation.separator.namespace.ruby\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6C71C4\\\"}},{\\\"scope\\\":\\\"variable.parameter\\\",\\\"settings\\\":{}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#93A1A1\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#93A1A1\\\"}},{\\\"scope\\\":\\\"support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"punctuation.separator.continuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"support.constant\\\",\\\"support.variable\\\"],\\\"settings\\\":{}},{\\\"scope\\\":[\\\"support.type\\\",\\\"support.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"support.type.exception\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"support.other.variable\\\",\\\"settings\\\":{}},{\\\"scope\\\":\\\"invalid\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":[\\\"meta.diff\\\",\\\"meta.diff.header\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#DC322F\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#CB4B16\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"markup.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#859900\\\"}},{\\\"scope\\\":\\\"markup.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B58900\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.italic\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D33682\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.strikethrough\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"strikethrough\\\"}},{\\\"scope\\\":\\\"markup.inline.raw\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#2AA198\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#268BD2\\\"}},{\\\"scope\\\":\\\"markup.heading.setext\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#268BD2\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["solarizedLight"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,sxMAAskO,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ `{"displayName":"Solidity","fileTypes":["sol"],"name":"solidity","patterns":[{"include":"#natspec"},{"include":"#declaration-userType"},{"include":"#comment"},{"include":"#operator"},{"include":"#global"},{"include":"#control"},{"include":"#constant"},{"include":"#primitive"},{"include":"#type-primitive"},{"include":"#type-modifier-extended-scope"},{"include":"#declaration"},{"include":"#function-call"},{"include":"#assembly"},{"include":"#punctuation"}],"repository":{"assembly":{"patterns":[{"match":"\\\\b(assembly)\\\\b","name":"keyword.control.assembly"},{"match":"\\\\b(let)\\\\b","name":"storage.type.assembly"}]},"comment":{"patterns":[{"include":"#comment-line"},{"include":"#comment-block"}]},"comment-block":{"begin":"/\\\\*","end":"\\\\*/","name":"comment.block","patterns":[{"include":"#comment-todo"}]},"comment-line":{"begin":"(?<!tp:)//","end":"$","name":"comment.line","patterns":[{"include":"#comment-todo"}]},"comment-todo":{"match":"(?i)\\\\b(FIXME|TODO|CHANGED|XXX|IDEA|HACK|NOTE|REVIEW|NB|BUG|QUESTION|COMBAK|TEMP|SUPPRESS|LINT|\\\\w+-disable|\\\\w+-suppress)\\\\b(?-i)","name":"keyword.comment.todo"},"constant":{"patterns":[{"include":"#constant-boolean"},{"include":"#constant-time"},{"include":"#constant-currency"}]},"constant-boolean":{"match":"\\\\b(true|false)\\\\b","name":"constant.language.boolean"},"constant-currency":{"match":"\\\\b(ether|wei|gwei|finney|szabo)\\\\b","name":"constant.language.currency"},"constant-time":{"match":"\\\\b((?:second|minute|hour|day|week|year)s)\\\\b","name":"constant.language.time"},"control":{"patterns":[{"include":"#control-flow"},{"include":"#control-using"},{"include":"#control-import"},{"include":"#control-pragma"},{"include":"#control-underscore"},{"include":"#control-unchecked"},{"include":"#control-other"}]},"control-flow":{"patterns":[{"match":"\\\\b(if|else|for|while|do|break|continue|try|catch|finally|throw|return|global)\\\\b","name":"keyword.control.flow"},{"begin":"\\\\b(returns)\\\\b","beginCaptures":{"1":{"name":"keyword.control.flow.return"}},"end":"(?=\\\\))","patterns":[{"include":"#declaration-function-parameters"}]}]},"control-import":{"patterns":[{"begin":"\\\\b(import)\\\\b","beginCaptures":{"1":{"name":"keyword.control.import"}},"end":"(?=;)","patterns":[{"begin":"((?=\\\\{))","end":"((?=}))","patterns":[{"match":"\\\\b(\\\\w+)\\\\b","name":"entity.name.type.interface"}]},{"match":"\\\\b(from)\\\\b","name":"keyword.control.import.from"},{"include":"#string"},{"include":"#punctuation"}]},{"match":"\\\\b(import)\\\\b","name":"keyword.control.import"}]},"control-other":{"match":"\\\\b(new|delete|emit)\\\\b","name":"keyword.control"},"control-pragma":{"captures":{"1":{"name":"keyword.control.pragma"},"2":{"name":"entity.name.tag.pragma"},"3":{"name":"constant.other.pragma"}},"match":"\\\\b(pragma)(?:\\\\s+([A-Z_a-z]\\\\w+)\\\\s+(\\\\S+))?\\\\b"},"control-unchecked":{"match":"\\\\b(unchecked)\\\\b","name":"keyword.control.unchecked"},"control-underscore":{"match":"\\\\b(_)\\\\b","name":"constant.other.underscore"},"control-using":{"patterns":[{"captures":{"1":{"name":"keyword.control.using"},"2":{"name":"entity.name.type.library"},"3":{"name":"keyword.control.for"},"4":{"name":"entity.name.type"}},"match":"\\\\b(using)\\\\b\\\\s+\\\\b([A-Z_a-z\\\\d]+)\\\\b\\\\s+\\\\b(for)\\\\b\\\\s+\\\\b([A-Z_a-z\\\\d]+)"},{"match":"\\\\b(using)\\\\b","name":"keyword.control.using"}]},"declaration":{"patterns":[{"include":"#declaration-contract"},{"include":"#declaration-userType"},{"include":"#declaration-interface"},{"include":"#declaration-library"},{"include":"#declaration-function"},{"include":"#declaration-modifier"},{"include":"#declaration-constructor"},{"include":"#declaration-event"},{"include":"#declaration-storage"},{"include":"#declaration-error"}]},"declaration-constructor":{"patterns":[{"begin":"\\\\b(constructor)\\\\b","beginCaptures":{"1":{"name":"storage.type.constructor"}},"end":"(?=\\\\{)","patterns":[{"begin":"\\\\G\\\\s*(?=\\\\()","end":"(?=\\\\))","patterns":[{"include":"#declaration-function-parameters"}]},{"begin":"(?<=\\\\))","end":"(?=\\\\{)","patterns":[{"include":"#type-modifier-access"},{"include":"#function-call"}]}]},{"captures":{"1":{"name":"storage.type.constructor"}},"match":"\\\\b(constructor)\\\\b"}]},"declaration-contract":{"patterns":[{"begin":"\\\\b(contract)\\\\b\\\\s+(\\\\w+)\\\\b\\\\s+\\\\b(is)\\\\b\\\\s+","beginCaptures":{"1":{"name":"storage.type.contract"},"2":{"name":"entity.name.type.contract"},"3":{"name":"storage.modifier.is"}},"end":"(?=\\\\{)","patterns":[{"match":"\\\\b(\\\\w+)\\\\b","name":"entity.name.type.contract.extend"}]},{"captures":{"1":{"name":"storage.type.contract"},"2":{"name":"entity.name.type.contract"}},"match":"\\\\b(contract)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"}]},"declaration-enum":{"patterns":[{"begin":"\\\\b(enum)\\\\s+(\\\\w+)\\\\b","beginCaptures":{"1":{"name":"storage.type.enum"},"2":{"name":"entity.name.type.enum"}},"end":"(?=})","patterns":[{"match":"\\\\b(\\\\w+)\\\\b","name":"variable.other.enummember"},{"include":"#punctuation"},{"include":"#comment"}]},{"captures":{"1":{"name":"storage.type.enum"},"3":{"name":"entity.name.type.enum"}},"match":"\\\\b(enum)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"}]},"declaration-error":{"captures":{"1":{"name":"storage.type.error"},"3":{"name":"entity.name.type.error"}},"match":"\\\\b(error)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"},"declaration-event":{"patterns":[{"begin":"\\\\b(event)\\\\b(?:\\\\s+(\\\\w+)\\\\b)?","beginCaptures":{"1":{"name":"storage.type.event"},"2":{"name":"entity.name.type.event"}},"end":"(?=\\\\))","patterns":[{"include":"#type-primitive"},{"captures":{"1":{"name":"storage.type.modifier.indexed"},"2":{"name":"variable.parameter.event"}},"match":"\\\\b(?:(indexed)\\\\s)?(\\\\w+)(?:,\\\\s*|)"},{"include":"#punctuation"}]},{"captures":{"1":{"name":"storage.type.event"},"3":{"name":"entity.name.type.event"}},"match":"\\\\b(event)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"}]},"declaration-function":{"patterns":[{"begin":"\\\\b(function)\\\\s+(\\\\w+)\\\\b","beginCaptures":{"1":{"name":"storage.type.function"},"2":{"name":"entity.name.function"}},"end":"(?=[;{])","patterns":[{"include":"#natspec"},{"include":"#global"},{"include":"#declaration-function-parameters"},{"include":"#type-modifier-access"},{"include":"#type-modifier-payable"},{"include":"#type-modifier-immutable"},{"include":"#type-modifier-extended-scope"},{"include":"#control-flow"},{"include":"#function-call"},{"include":"#modifier-call"},{"include":"#punctuation"}]},{"captures":{"1":{"name":"storage.type.function"},"2":{"name":"entity.name.function"}},"match":"\\\\b(function)\\\\s+([A-Z_a-z]\\\\w*)\\\\b"}]},"declaration-function-parameters":{"begin":"\\\\G\\\\s*(?=\\\\()","end":"(?=\\\\))","patterns":[{"include":"#type-primitive"},{"include":"#type-modifier-extended-scope"},{"captures":{"1":{"name":"storage.type.struct"}},"match":"\\\\b([A-Z]\\\\w*)\\\\b"},{"include":"#variable"},{"include":"#punctuation"},{"include":"#comment"}]},"declaration-interface":{"patterns":[{"begin":"\\\\b(interface)\\\\b\\\\s+(\\\\w+)\\\\b\\\\s+\\\\b(is)\\\\b\\\\s+","beginCaptures":{"1":{"name":"storage.type.interface"},"2":{"name":"entity.name.type.interface"},"3":{"name":"storage.modifier.is"}},"end":"(?=\\\\{)","patterns":[{"match":"\\\\b(\\\\w+)\\\\b","name":"entity.name.type.interface.extend"}]},{"captures":{"1":{"name":"storage.type.interface"},"2":{"name":"entity.name.type.interface"}},"match":"\\\\b(interface)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"}]},"declaration-library":{"captures":{"1":{"name":"storage.type.library"},"3":{"name":"entity.name.type.library"}},"match":"\\\\b(library)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"},"declaration-modifier":{"patterns":[{"begin":"\\\\b(modifier)\\\\b\\\\s*(\\\\w+)","beginCaptures":{"1":{"name":"storage.type.function.modifier"},"2":{"name":"entity.name.function.modifier"}},"end":"(?=\\\\{)","patterns":[{"include":"#declaration-function-parameters"},{"begin":"(?<=\\\\))","end":"(?=\\\\{)","patterns":[{"include":"#declaration-function-parameters"},{"include":"#type-modifier-access"},{"include":"#type-modifier-payable"},{"include":"#type-modifier-immutable"},{"include":"#type-modifier-extended-scope"},{"include":"#function-call"},{"include":"#modifier-call"},{"include":"#control-flow"}]}]},{"captures":{"1":{"name":"storage.type.modifier"},"3":{"name":"entity.name.function"}},"match":"\\\\b(modifier)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"}]},"declaration-storage":{"patterns":[{"include":"#declaration-storage-mapping"},{"include":"#declaration-struct"},{"include":"#declaration-enum"},{"include":"#declaration-storage-field"}]},"declaration-storage-field":{"patterns":[{"include":"#comment"},{"include":"#control"},{"include":"#type-primitive"},{"include":"#type-modifier-access"},{"include":"#type-modifier-immutable"},{"include":"#type-modifier-transient"},{"include":"#type-modifier-payable"},{"include":"#type-modifier-constant"},{"include":"#primitive"},{"include":"#constant"},{"include":"#operator"},{"include":"#punctuation"}]},"declaration-storage-mapping":{"patterns":[{"begin":"\\\\b(mapping)\\\\b","beginCaptures":{"1":{"name":"storage.type.mapping"}},"end":"(?=\\\\))","patterns":[{"include":"#declaration-storage-mapping"},{"include":"#type-primitive"},{"include":"#punctuation"},{"include":"#operator"}]},{"match":"\\\\b(mapping)\\\\b","name":"storage.type.mapping"}]},"declaration-struct":{"patterns":[{"captures":{"1":{"name":"storage.type.struct"},"3":{"name":"entity.name.type.struct"}},"match":"\\\\b(struct)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"},{"begin":"\\\\b(struct)\\\\b\\\\s*(\\\\w+)?\\\\b\\\\s*(?=\\\\{)","beginCaptures":{"1":{"name":"storage.type.struct"},"2":{"name":"entity.name.type.struct"}},"end":"(?=})","patterns":[{"include":"#type-primitive"},{"include":"#variable"},{"include":"#punctuation"},{"include":"#comment"}]}]},"declaration-userType":{"captures":{"1":{"name":"storage.type.userType"},"2":{"name":"entity.name.type.userType"},"3":{"name":"storage.modifier.is"}},"match":"\\\\b(type)\\\\b\\\\s+(\\\\w+)\\\\b\\\\s+\\\\b(is)\\\\b"},"function-call":{"captures":{"1":{"name":"entity.name.function"},"2":{"name":"punctuation.parameters.begin"}},"match":"\\\\b([A-Z_a-z]\\\\w*)\\\\s*(\\\\()"},"global":{"patterns":[{"include":"#global-variables"},{"include":"#global-functions"}]},"global-functions":{"patterns":[{"match":"\\\\b(require|assert|revert)\\\\b","name":"keyword.control.exceptions"},{"match":"\\\\b(s(?:elfdestruct|uicide))\\\\b","name":"keyword.control.contract"},{"match":"\\\\b(addmod|mulmod|keccak256|sha256|sha3|ripemd160|ecrecover)\\\\b","name":"support.function.math"},{"match":"\\\\b(unicode)\\\\b","name":"support.function.string"},{"match":"\\\\b(blockhash|gasleft)\\\\b","name":"variable.language.transaction"},{"match":"\\\\b(type)\\\\b","name":"variable.language.type"}]},"global-variables":{"patterns":[{"match":"\\\\b(this)\\\\b","name":"variable.language.this"},{"match":"\\\\b(super)\\\\b","name":"variable.language.super"},{"match":"\\\\b(abi)\\\\b","name":"variable.language.builtin.abi"},{"match":"\\\\b(msg\\\\.sender|msg|block|tx|now)\\\\b","name":"variable.language.transaction"},{"match":"\\\\b(tx\\\\.origin|tx\\\\.gasprice|msg\\\\.data|msg\\\\.sig|msg\\\\.value)\\\\b","name":"variable.language.transaction"}]},"modifier-call":{"patterns":[{"include":"#function-call"},{"match":"\\\\b(\\\\w+)\\\\b","name":"entity.name.function.modifier"}]},"natspec":{"patterns":[{"begin":"/\\\\*\\\\*","end":"\\\\*/","name":"comment.block.documentation","patterns":[{"include":"#natspec-tags"}]},{"begin":"///","end":"$","name":"comment.block.documentation","patterns":[{"include":"#natspec-tags"}]}]},"natspec-tag-author":{"match":"(@author)\\\\b","name":"storage.type.author.natspec"},"natspec-tag-custom":{"match":"(@custom:\\\\w*)\\\\b","name":"storage.type.dev.natspec"},"natspec-tag-dev":{"match":"(@dev)\\\\b","name":"storage.type.dev.natspec"},"natspec-tag-inheritdoc":{"match":"(@inheritdoc)\\\\b","name":"storage.type.author.natspec"},"natspec-tag-notice":{"match":"(@notice)\\\\b","name":"storage.type.dev.natspec"},"natspec-tag-param":{"captures":{"1":{"name":"storage.type.param.natspec"},"3":{"name":"variable.other.natspec"}},"match":"(@param)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"},"natspec-tag-return":{"captures":{"1":{"name":"storage.type.return.natspec"},"3":{"name":"variable.other.natspec"}},"match":"(@return)(\\\\s+([A-Z_a-z]\\\\w*))?\\\\b"},"natspec-tag-title":{"match":"(@title)\\\\b","name":"storage.type.title.natspec"},"natspec-tags":{"patterns":[{"include":"#comment-todo"},{"include":"#natspec-tag-title"},{"include":"#natspec-tag-author"},{"include":"#natspec-tag-notice"},{"include":"#natspec-tag-dev"},{"include":"#natspec-tag-param"},{"include":"#natspec-tag-return"},{"include":"#natspec-tag-custom"},{"include":"#natspec-tag-inheritdoc"}]},"number-decimal":{"match":"\\\\b([0-9_]+(\\\\.[0-9_]+)?)\\\\b","name":"constant.numeric.decimal"},"number-hex":{"match":"\\\\b(0[Xx]\\\\h+)\\\\b","name":"constant.numeric.hexadecimal"},"number-scientific":{"match":"\\\\b(?:0\\\\.(?:0[0-9]|[0-9][0-9_]?)|[0-9][0-9_]*(?:\\\\.\\\\d{1,2})?)(?:e[-+]?[0-9_]+)?","name":"constant.numeric.scientific"},"operator":{"patterns":[{"include":"#operator-logic"},{"include":"#operator-mapping"},{"include":"#operator-arithmetic"},{"include":"#operator-binary"},{"include":"#operator-assignment"}]},"operator-arithmetic":{"match":"([-*+/])","name":"keyword.operator.arithmetic"},"operator-assignment":{"match":"(:?=)","name":"keyword.operator.assignment"},"operator-binary":{"match":"([\\\\&^|]|<<|>>)","name":"keyword.operator.binary"},"operator-logic":{"match":"(==|!=|<(?!<)|<=|>(?!>)|>=|&&|\\\\|\\\\||:(?!=)|[!?])","name":"keyword.operator.logic"},"operator-mapping":{"match":"(=>)","name":"keyword.operator.mapping"},"primitive":{"patterns":[{"include":"#number-decimal"},{"include":"#number-hex"},{"include":"#number-scientific"},{"include":"#string"}]},"punctuation":{"patterns":[{"match":";","name":"punctuation.terminator.statement"},{"match":"\\\\.","name":"punctuation.accessor"},{"match":",","name":"punctuation.separator"},{"match":"\\\\{","name":"punctuation.brace.curly.begin"},{"match":"}","name":"punctuation.brace.curly.end"},{"match":"\\\\[","name":"punctuation.brace.square.begin"},{"match":"]","name":"punctuation.brace.square.end"},{"match":"\\\\(","name":"punctuation.parameters.begin"},{"match":"\\\\)","name":"punctuation.parameters.end"}]},"string":{"patterns":[{"match":"\\"(?:\\\\\\\\\\"|[^\\"])*\\"","name":"string.quoted.double"},{"match":"'(?:\\\\\\\\'|[^'])*'","name":"string.quoted.single"}]},"type-modifier-access":{"match":"\\\\b(internal|external|private|public)\\\\b","name":"storage.type.modifier.access"},"type-modifier-constant":{"match":"\\\\b(constant)\\\\b","name":"storage.type.modifier.readonly"},"type-modifier-extended-scope":{"match":"\\\\b(pure|view|inherited|indexed|storage|memory|virtual|calldata|override|abstract)\\\\b","name":"storage.type.modifier.extendedscope"},"type-modifier-immutable":{"match":"\\\\b(immutable)\\\\b","name":"storage.type.modifier.readonly"},"type-modifier-payable":{"match":"\\\\b((?:non|)payable)\\\\b","name":"storage.type.modifier.payable"},"type-modifier-transient":{"match":"\\\\b(transient)\\\\b","name":"storage.type.modifier.readonly"},"type-primitive":{"patterns":[{"begin":"\\\\b(address|string\\\\d*|bytes\\\\d*|int\\\\d*|uint\\\\d*|bool\\\\d*)\\\\b\\\\[](\\\\()","beginCaptures":{"1":{"name":"support.type.primitive"}},"end":"(\\\\))","patterns":[{"include":"#primitive"},{"include":"#punctuation"},{"include":"#global"},{"include":"#variable"}]},{"match":"\\\\b(address|string\\\\d*|bytes\\\\d*|int\\\\d*|uint\\\\d*|bool\\\\d*)\\\\b","name":"support.type.primitive"}]},"variable":{"patterns":[{"captures":{"1":{"name":"variable.parameter.function"}},"match":"\\\\b(_\\\\w+)\\\\b"},{"captures":{"1":{"name":"support.variable.property"}},"match":"\\\\.(\\\\w+)\\\\b"},{"captures":{"1":{"name":"variable.parameter.other"}},"match":"\\\\b(\\\\w+)\\\\b"}]}},"scopeName":"source.solidity"}`,
9
+ ),
10
+ ),
11
+ t = [e];
12
+ export { t as default };
13
+ //# sourceMappingURL=solidity-rGO070M0.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"solidity-rGO070M0.js","sources":["../../../../node_modules/@shikijs/langs/dist/solidity.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Solidity\\\",\\\"fileTypes\\\":[\\\"sol\\\"],\\\"name\\\":\\\"solidity\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#natspec\\\"},{\\\"include\\\":\\\"#declaration-userType\\\"},{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#operator\\\"},{\\\"include\\\":\\\"#global\\\"},{\\\"include\\\":\\\"#control\\\"},{\\\"include\\\":\\\"#constant\\\"},{\\\"include\\\":\\\"#primitive\\\"},{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"include\\\":\\\"#type-modifier-extended-scope\\\"},{\\\"include\\\":\\\"#declaration\\\"},{\\\"include\\\":\\\"#function-call\\\"},{\\\"include\\\":\\\"#assembly\\\"},{\\\"include\\\":\\\"#punctuation\\\"}],\\\"repository\\\":{\\\"assembly\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(assembly)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.assembly\\\"},{\\\"match\\\":\\\"\\\\\\\\b(let)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.assembly\\\"}]},\\\"comment\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comment-line\\\"},{\\\"include\\\":\\\"#comment-block\\\"}]},\\\"comment-block\\\":{\\\"begin\\\":\\\"/\\\\\\\\*\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comment-todo\\\"}]},\\\"comment-line\\\":{\\\"begin\\\":\\\"(?<!tp:)//\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"comment.line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comment-todo\\\"}]},\\\"comment-todo\\\":{\\\"match\\\":\\\"(?i)\\\\\\\\b(FIXME|TODO|CHANGED|XXX|IDEA|HACK|NOTE|REVIEW|NB|BUG|QUESTION|COMBAK|TEMP|SUPPRESS|LINT|\\\\\\\\w+-disable|\\\\\\\\w+-suppress)\\\\\\\\b(?-i)\\\",\\\"name\\\":\\\"keyword.comment.todo\\\"},\\\"constant\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#constant-boolean\\\"},{\\\"include\\\":\\\"#constant-time\\\"},{\\\"include\\\":\\\"#constant-currency\\\"}]},\\\"constant-boolean\\\":{\\\"match\\\":\\\"\\\\\\\\b(true|false)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.boolean\\\"},\\\"constant-currency\\\":{\\\"match\\\":\\\"\\\\\\\\b(ether|wei|gwei|finney|szabo)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.currency\\\"},\\\"constant-time\\\":{\\\"match\\\":\\\"\\\\\\\\b((?:second|minute|hour|day|week|year)s)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.time\\\"},\\\"control\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#control-flow\\\"},{\\\"include\\\":\\\"#control-using\\\"},{\\\"include\\\":\\\"#control-import\\\"},{\\\"include\\\":\\\"#control-pragma\\\"},{\\\"include\\\":\\\"#control-underscore\\\"},{\\\"include\\\":\\\"#control-unchecked\\\"},{\\\"include\\\":\\\"#control-other\\\"}]},\\\"control-flow\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(if|else|for|while|do|break|continue|try|catch|finally|throw|return|global)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.flow\\\"},{\\\"begin\\\":\\\"\\\\\\\\b(returns)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.flow.return\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-function-parameters\\\"}]}]},\\\"control-import\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(import)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.import\\\"}},\\\"end\\\":\\\"(?=;)\\\",\\\"patterns\\\":[{\\\"begin\\\":\\\"((?=\\\\\\\\{))\\\",\\\"end\\\":\\\"((?=}))\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.interface\\\"}]},{\\\"match\\\":\\\"\\\\\\\\b(from)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.import.from\\\"},{\\\"include\\\":\\\"#string\\\"},{\\\"include\\\":\\\"#punctuation\\\"}]},{\\\"match\\\":\\\"\\\\\\\\b(import)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.import\\\"}]},\\\"control-other\\\":{\\\"match\\\":\\\"\\\\\\\\b(new|delete|emit)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control\\\"},\\\"control-pragma\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.pragma\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.tag.pragma\\\"},\\\"3\\\":{\\\"name\\\":\\\"constant.other.pragma\\\"}},\\\"match\\\":\\\"\\\\\\\\b(pragma)(?:\\\\\\\\s+([A-Z_a-z]\\\\\\\\w+)\\\\\\\\s+(\\\\\\\\S+))?\\\\\\\\b\\\"},\\\"control-unchecked\\\":{\\\"match\\\":\\\"\\\\\\\\b(unchecked)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.unchecked\\\"},\\\"control-underscore\\\":{\\\"match\\\":\\\"\\\\\\\\b(_)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.other.underscore\\\"},\\\"control-using\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.using\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.library\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.control.for\\\"},\\\"4\\\":{\\\"name\\\":\\\"entity.name.type\\\"}},\\\"match\\\":\\\"\\\\\\\\b(using)\\\\\\\\b\\\\\\\\s+\\\\\\\\b([A-Z_a-z\\\\\\\\d]+)\\\\\\\\b\\\\\\\\s+\\\\\\\\b(for)\\\\\\\\b\\\\\\\\s+\\\\\\\\b([A-Z_a-z\\\\\\\\d]+)\\\"},{\\\"match\\\":\\\"\\\\\\\\b(using)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.using\\\"}]},\\\"declaration\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-contract\\\"},{\\\"include\\\":\\\"#declaration-userType\\\"},{\\\"include\\\":\\\"#declaration-interface\\\"},{\\\"include\\\":\\\"#declaration-library\\\"},{\\\"include\\\":\\\"#declaration-function\\\"},{\\\"include\\\":\\\"#declaration-modifier\\\"},{\\\"include\\\":\\\"#declaration-constructor\\\"},{\\\"include\\\":\\\"#declaration-event\\\"},{\\\"include\\\":\\\"#declaration-storage\\\"},{\\\"include\\\":\\\"#declaration-error\\\"}]},\\\"declaration-constructor\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(constructor)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.constructor\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\G\\\\\\\\s*(?=\\\\\\\\()\\\",\\\"end\\\":\\\"(?=\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-function-parameters\\\"}]},{\\\"begin\\\":\\\"(?<=\\\\\\\\))\\\",\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-modifier-access\\\"},{\\\"include\\\":\\\"#function-call\\\"}]}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.constructor\\\"}},\\\"match\\\":\\\"\\\\\\\\b(constructor)\\\\\\\\b\\\"}]},\\\"declaration-contract\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(contract)\\\\\\\\b\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\\\\\\s+\\\\\\\\b(is)\\\\\\\\b\\\\\\\\s+\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.contract\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.contract\\\"},\\\"3\\\":{\\\"name\\\":\\\"storage.modifier.is\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.contract.extend\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.contract\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.contract\\\"}},\\\"match\\\":\\\"\\\\\\\\b(contract)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"}]},\\\"declaration-enum\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(enum)\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.enum\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.enum\\\"}},\\\"end\\\":\\\"(?=})\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.other.enummember\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#comment\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.enum\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.enum\\\"}},\\\"match\\\":\\\"\\\\\\\\b(enum)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"}]},\\\"declaration-error\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.error\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.error\\\"}},\\\"match\\\":\\\"\\\\\\\\b(error)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"},\\\"declaration-event\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(event)\\\\\\\\b(?:\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b)?\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.event\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.event\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.modifier.indexed\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.parameter.event\\\"}},\\\"match\\\":\\\"\\\\\\\\b(?:(indexed)\\\\\\\\s)?(\\\\\\\\w+)(?:,\\\\\\\\s*|)\\\"},{\\\"include\\\":\\\"#punctuation\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.event\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.event\\\"}},\\\"match\\\":\\\"\\\\\\\\b(event)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"}]},\\\"declaration-function\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(function)\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.function\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function\\\"}},\\\"end\\\":\\\"(?=[;{])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#natspec\\\"},{\\\"include\\\":\\\"#global\\\"},{\\\"include\\\":\\\"#declaration-function-parameters\\\"},{\\\"include\\\":\\\"#type-modifier-access\\\"},{\\\"include\\\":\\\"#type-modifier-payable\\\"},{\\\"include\\\":\\\"#type-modifier-immutable\\\"},{\\\"include\\\":\\\"#type-modifier-extended-scope\\\"},{\\\"include\\\":\\\"#control-flow\\\"},{\\\"include\\\":\\\"#function-call\\\"},{\\\"include\\\":\\\"#modifier-call\\\"},{\\\"include\\\":\\\"#punctuation\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.function\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function\\\"}},\\\"match\\\":\\\"\\\\\\\\b(function)\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*)\\\\\\\\b\\\"}]},\\\"declaration-function-parameters\\\":{\\\"begin\\\":\\\"\\\\\\\\G\\\\\\\\s*(?=\\\\\\\\()\\\",\\\"end\\\":\\\"(?=\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"include\\\":\\\"#type-modifier-extended-scope\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.struct\\\"}},\\\"match\\\":\\\"\\\\\\\\b([A-Z]\\\\\\\\w*)\\\\\\\\b\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#comment\\\"}]},\\\"declaration-interface\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(interface)\\\\\\\\b\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\\\\\\s+\\\\\\\\b(is)\\\\\\\\b\\\\\\\\s+\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.interface\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.interface\\\"},\\\"3\\\":{\\\"name\\\":\\\"storage.modifier.is\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.interface.extend\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.interface\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.interface\\\"}},\\\"match\\\":\\\"\\\\\\\\b(interface)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"}]},\\\"declaration-library\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.library\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.library\\\"}},\\\"match\\\":\\\"\\\\\\\\b(library)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"},\\\"declaration-modifier\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(modifier)\\\\\\\\b\\\\\\\\s*(\\\\\\\\w+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.function.modifier\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function.modifier\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-function-parameters\\\"},{\\\"begin\\\":\\\"(?<=\\\\\\\\))\\\",\\\"end\\\":\\\"(?=\\\\\\\\{)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-function-parameters\\\"},{\\\"include\\\":\\\"#type-modifier-access\\\"},{\\\"include\\\":\\\"#type-modifier-payable\\\"},{\\\"include\\\":\\\"#type-modifier-immutable\\\"},{\\\"include\\\":\\\"#type-modifier-extended-scope\\\"},{\\\"include\\\":\\\"#function-call\\\"},{\\\"include\\\":\\\"#modifier-call\\\"},{\\\"include\\\":\\\"#control-flow\\\"}]}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.modifier\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.function\\\"}},\\\"match\\\":\\\"\\\\\\\\b(modifier)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"}]},\\\"declaration-storage\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-storage-mapping\\\"},{\\\"include\\\":\\\"#declaration-struct\\\"},{\\\"include\\\":\\\"#declaration-enum\\\"},{\\\"include\\\":\\\"#declaration-storage-field\\\"}]},\\\"declaration-storage-field\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#control\\\"},{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"include\\\":\\\"#type-modifier-access\\\"},{\\\"include\\\":\\\"#type-modifier-immutable\\\"},{\\\"include\\\":\\\"#type-modifier-transient\\\"},{\\\"include\\\":\\\"#type-modifier-payable\\\"},{\\\"include\\\":\\\"#type-modifier-constant\\\"},{\\\"include\\\":\\\"#primitive\\\"},{\\\"include\\\":\\\"#constant\\\"},{\\\"include\\\":\\\"#operator\\\"},{\\\"include\\\":\\\"#punctuation\\\"}]},\\\"declaration-storage-mapping\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(mapping)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.mapping\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#declaration-storage-mapping\\\"},{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#operator\\\"}]},{\\\"match\\\":\\\"\\\\\\\\b(mapping)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.mapping\\\"}]},\\\"declaration-struct\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.struct\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.type.struct\\\"}},\\\"match\\\":\\\"\\\\\\\\b(struct)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"},{\\\"begin\\\":\\\"\\\\\\\\b(struct)\\\\\\\\b\\\\\\\\s*(\\\\\\\\w+)?\\\\\\\\b\\\\\\\\s*(?=\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.struct\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.struct\\\"}},\\\"end\\\":\\\"(?=})\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-primitive\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#comment\\\"}]}]},\\\"declaration-userType\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.userType\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.userType\\\"},\\\"3\\\":{\\\"name\\\":\\\"storage.modifier.is\\\"}},\\\"match\\\":\\\"\\\\\\\\b(type)\\\\\\\\b\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\\\\\\s+\\\\\\\\b(is)\\\\\\\\b\\\"},\\\"function-call\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.function\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.parameters.begin\\\"}},\\\"match\\\":\\\"\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(\\\\\\\\()\\\"},\\\"global\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#global-variables\\\"},{\\\"include\\\":\\\"#global-functions\\\"}]},\\\"global-functions\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(require|assert|revert)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.exceptions\\\"},{\\\"match\\\":\\\"\\\\\\\\b(s(?:elfdestruct|uicide))\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.contract\\\"},{\\\"match\\\":\\\"\\\\\\\\b(addmod|mulmod|keccak256|sha256|sha3|ripemd160|ecrecover)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.math\\\"},{\\\"match\\\":\\\"\\\\\\\\b(unicode)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.string\\\"},{\\\"match\\\":\\\"\\\\\\\\b(blockhash|gasleft)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.transaction\\\"},{\\\"match\\\":\\\"\\\\\\\\b(type)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.type\\\"}]},\\\"global-variables\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(this)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.this\\\"},{\\\"match\\\":\\\"\\\\\\\\b(super)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.super\\\"},{\\\"match\\\":\\\"\\\\\\\\b(abi)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.builtin.abi\\\"},{\\\"match\\\":\\\"\\\\\\\\b(msg\\\\\\\\.sender|msg|block|tx|now)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.transaction\\\"},{\\\"match\\\":\\\"\\\\\\\\b(tx\\\\\\\\.origin|tx\\\\\\\\.gasprice|msg\\\\\\\\.data|msg\\\\\\\\.sig|msg\\\\\\\\.value)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.transaction\\\"}]},\\\"modifier-call\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#function-call\\\"},{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.function.modifier\\\"}]},\\\"natspec\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"/\\\\\\\\*\\\\\\\\*\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block.documentation\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#natspec-tags\\\"}]},{\\\"begin\\\":\\\"///\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"comment.block.documentation\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#natspec-tags\\\"}]}]},\\\"natspec-tag-author\\\":{\\\"match\\\":\\\"(@author)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.author.natspec\\\"},\\\"natspec-tag-custom\\\":{\\\"match\\\":\\\"(@custom:\\\\\\\\w*)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.dev.natspec\\\"},\\\"natspec-tag-dev\\\":{\\\"match\\\":\\\"(@dev)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.dev.natspec\\\"},\\\"natspec-tag-inheritdoc\\\":{\\\"match\\\":\\\"(@inheritdoc)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.author.natspec\\\"},\\\"natspec-tag-notice\\\":{\\\"match\\\":\\\"(@notice)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.dev.natspec\\\"},\\\"natspec-tag-param\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.param.natspec\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.other.natspec\\\"}},\\\"match\\\":\\\"(@param)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"},\\\"natspec-tag-return\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.return.natspec\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.other.natspec\\\"}},\\\"match\\\":\\\"(@return)(\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*))?\\\\\\\\b\\\"},\\\"natspec-tag-title\\\":{\\\"match\\\":\\\"(@title)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.title.natspec\\\"},\\\"natspec-tags\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comment-todo\\\"},{\\\"include\\\":\\\"#natspec-tag-title\\\"},{\\\"include\\\":\\\"#natspec-tag-author\\\"},{\\\"include\\\":\\\"#natspec-tag-notice\\\"},{\\\"include\\\":\\\"#natspec-tag-dev\\\"},{\\\"include\\\":\\\"#natspec-tag-param\\\"},{\\\"include\\\":\\\"#natspec-tag-return\\\"},{\\\"include\\\":\\\"#natspec-tag-custom\\\"},{\\\"include\\\":\\\"#natspec-tag-inheritdoc\\\"}]},\\\"number-decimal\\\":{\\\"match\\\":\\\"\\\\\\\\b([0-9_]+(\\\\\\\\.[0-9_]+)?)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.decimal\\\"},\\\"number-hex\\\":{\\\"match\\\":\\\"\\\\\\\\b(0[Xx]\\\\\\\\h+)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.hexadecimal\\\"},\\\"number-scientific\\\":{\\\"match\\\":\\\"\\\\\\\\b(?:0\\\\\\\\.(?:0[0-9]|[0-9][0-9_]?)|[0-9][0-9_]*(?:\\\\\\\\.\\\\\\\\d{1,2})?)(?:e[-+]?[0-9_]+)?\\\",\\\"name\\\":\\\"constant.numeric.scientific\\\"},\\\"operator\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#operator-logic\\\"},{\\\"include\\\":\\\"#operator-mapping\\\"},{\\\"include\\\":\\\"#operator-arithmetic\\\"},{\\\"include\\\":\\\"#operator-binary\\\"},{\\\"include\\\":\\\"#operator-assignment\\\"}]},\\\"operator-arithmetic\\\":{\\\"match\\\":\\\"([-*+/])\\\",\\\"name\\\":\\\"keyword.operator.arithmetic\\\"},\\\"operator-assignment\\\":{\\\"match\\\":\\\"(:?=)\\\",\\\"name\\\":\\\"keyword.operator.assignment\\\"},\\\"operator-binary\\\":{\\\"match\\\":\\\"([\\\\\\\\&^|]|<<|>>)\\\",\\\"name\\\":\\\"keyword.operator.binary\\\"},\\\"operator-logic\\\":{\\\"match\\\":\\\"(==|!=|<(?!<)|<=|>(?!>)|>=|&&|\\\\\\\\|\\\\\\\\||:(?!=)|[!?])\\\",\\\"name\\\":\\\"keyword.operator.logic\\\"},\\\"operator-mapping\\\":{\\\"match\\\":\\\"(=>)\\\",\\\"name\\\":\\\"keyword.operator.mapping\\\"},\\\"primitive\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#number-decimal\\\"},{\\\"include\\\":\\\"#number-hex\\\"},{\\\"include\\\":\\\"#number-scientific\\\"},{\\\"include\\\":\\\"#string\\\"}]},\\\"punctuation\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\";\\\",\\\"name\\\":\\\"punctuation.terminator.statement\\\"},{\\\"match\\\":\\\"\\\\\\\\.\\\",\\\"name\\\":\\\"punctuation.accessor\\\"},{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"punctuation.separator\\\"},{\\\"match\\\":\\\"\\\\\\\\{\\\",\\\"name\\\":\\\"punctuation.brace.curly.begin\\\"},{\\\"match\\\":\\\"}\\\",\\\"name\\\":\\\"punctuation.brace.curly.end\\\"},{\\\"match\\\":\\\"\\\\\\\\[\\\",\\\"name\\\":\\\"punctuation.brace.square.begin\\\"},{\\\"match\\\":\\\"]\\\",\\\"name\\\":\\\"punctuation.brace.square.end\\\"},{\\\"match\\\":\\\"\\\\\\\\(\\\",\\\"name\\\":\\\"punctuation.parameters.begin\\\"},{\\\"match\\\":\\\"\\\\\\\\)\\\",\\\"name\\\":\\\"punctuation.parameters.end\\\"}]},\\\"string\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\"(?:\\\\\\\\\\\\\\\\\\\\\\\"|[^\\\\\\\"])*\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double\\\"},{\\\"match\\\":\\\"'(?:\\\\\\\\\\\\\\\\'|[^'])*'\\\",\\\"name\\\":\\\"string.quoted.single\\\"}]},\\\"type-modifier-access\\\":{\\\"match\\\":\\\"\\\\\\\\b(internal|external|private|public)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.access\\\"},\\\"type-modifier-constant\\\":{\\\"match\\\":\\\"\\\\\\\\b(constant)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.readonly\\\"},\\\"type-modifier-extended-scope\\\":{\\\"match\\\":\\\"\\\\\\\\b(pure|view|inherited|indexed|storage|memory|virtual|calldata|override|abstract)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.extendedscope\\\"},\\\"type-modifier-immutable\\\":{\\\"match\\\":\\\"\\\\\\\\b(immutable)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.readonly\\\"},\\\"type-modifier-payable\\\":{\\\"match\\\":\\\"\\\\\\\\b((?:non|)payable)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.payable\\\"},\\\"type-modifier-transient\\\":{\\\"match\\\":\\\"\\\\\\\\b(transient)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.modifier.readonly\\\"},\\\"type-primitive\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(address|string\\\\\\\\d*|bytes\\\\\\\\d*|int\\\\\\\\d*|uint\\\\\\\\d*|bool\\\\\\\\d*)\\\\\\\\b\\\\\\\\[](\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.primitive\\\"}},\\\"end\\\":\\\"(\\\\\\\\))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#primitive\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#global\\\"},{\\\"include\\\":\\\"#variable\\\"}]},{\\\"match\\\":\\\"\\\\\\\\b(address|string\\\\\\\\d*|bytes\\\\\\\\d*|int\\\\\\\\d*|uint\\\\\\\\d*|bool\\\\\\\\d*)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive\\\"}]},\\\"variable\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.parameter.function\\\"}},\\\"match\\\":\\\"\\\\\\\\b(_\\\\\\\\w+)\\\\\\\\b\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.variable.property\\\"}},\\\"match\\\":\\\"\\\\\\\\.(\\\\\\\\w+)\\\\\\\\b\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.parameter.other\\\"}},\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\"}]}},\\\"scopeName\\\":\\\"source.solidity\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","solidity"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,0ofAAojjB,CAAC,EAE3ljBC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}