immosquare-cleaner 0.1.62 → 0.1.63

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 (1407) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +48 -18
  4. data/linters/erb-lint-3.4.1.yml +14 -0
  5. data/linters/rubocop-3.4.1.yml +2 -0
  6. data/node_modules/@eslint/config-array/README.md +3 -3
  7. data/node_modules/@eslint/config-array/dist/cjs/index.d.cts +1 -1
  8. data/node_modules/@eslint/config-array/package.json +3 -3
  9. data/node_modules/@eslint/core/README.md +3 -3
  10. data/node_modules/@eslint/core/dist/cjs/types.d.cts +102 -23
  11. data/node_modules/@eslint/core/dist/esm/types.d.ts +102 -23
  12. data/node_modules/@eslint/core/package.json +1 -1
  13. data/node_modules/@eslint/eslintrc/conf/environments.js +1 -1
  14. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +21 -12
  15. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
  16. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +59 -34
  17. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
  18. data/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
  19. data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +6 -4
  20. data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +2 -0
  21. data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +5 -5
  22. data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +2 -2
  23. data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +6 -5
  24. data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +7 -5
  25. data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +13 -6
  26. data/node_modules/@eslint/eslintrc/lib/flat-compat.js +4 -3
  27. data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +1 -1
  28. data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +2 -2
  29. data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +17 -8
  30. data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +1 -1
  31. data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +2 -1
  32. data/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
  33. data/node_modules/@eslint/eslintrc/package.json +11 -9
  34. data/node_modules/@eslint/eslintrc/universal.js +2 -1
  35. data/node_modules/@eslint/js/package.json +1 -1
  36. data/node_modules/@eslint/js/src/index.js +2 -2
  37. data/node_modules/@eslint/object-schema/README.md +3 -3
  38. data/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +2 -2
  39. data/node_modules/@eslint/object-schema/package.json +2 -2
  40. data/node_modules/@eslint/plugin-kit/README.md +3 -3
  41. data/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +2 -2
  42. data/node_modules/@eslint/plugin-kit/package.json +9 -8
  43. data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +7 -7
  44. data/node_modules/@humanwhocodes/retry/dist/retrier.js +7 -7
  45. data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
  46. data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +7 -7
  47. data/node_modules/@humanwhocodes/retry/package.json +1 -1
  48. data/node_modules/eslint/README.md +36 -16
  49. data/node_modules/eslint/conf/rule-type-list.json +82 -18
  50. data/node_modules/eslint/lib/cli.js +34 -4
  51. data/node_modules/eslint/lib/config/config-loader.js +43 -26
  52. data/node_modules/eslint/lib/config/config.js +6 -1
  53. data/node_modules/eslint/lib/config/flat-config-schema.js +16 -1
  54. data/node_modules/eslint/lib/config/rule-validator.js +12 -2
  55. data/node_modules/eslint/lib/eslint/eslint.js +10 -7
  56. data/node_modules/eslint/lib/linter/linter.js +98 -8
  57. data/node_modules/eslint/lib/options.js +19 -0
  58. data/node_modules/eslint/lib/rules/array-bracket-newline.js +20 -2
  59. data/node_modules/eslint/lib/rules/array-bracket-spacing.js +20 -2
  60. data/node_modules/eslint/lib/rules/array-element-newline.js +20 -2
  61. data/node_modules/eslint/lib/rules/arrow-body-style.js +2 -1
  62. data/node_modules/eslint/lib/rules/arrow-parens.js +20 -2
  63. data/node_modules/eslint/lib/rules/arrow-spacing.js +20 -2
  64. data/node_modules/eslint/lib/rules/block-spacing.js +20 -2
  65. data/node_modules/eslint/lib/rules/brace-style.js +20 -2
  66. data/node_modules/eslint/lib/rules/callback-return.js +19 -3
  67. data/node_modules/eslint/lib/rules/camelcase.js +1 -0
  68. data/node_modules/eslint/lib/rules/capitalized-comments.js +1 -0
  69. data/node_modules/eslint/lib/rules/comma-dangle.js +20 -2
  70. data/node_modules/eslint/lib/rules/comma-spacing.js +20 -2
  71. data/node_modules/eslint/lib/rules/comma-style.js +20 -2
  72. data/node_modules/eslint/lib/rules/computed-property-spacing.js +20 -2
  73. data/node_modules/eslint/lib/rules/consistent-this.js +10 -0
  74. data/node_modules/eslint/lib/rules/curly.js +1 -0
  75. data/node_modules/eslint/lib/rules/default-case-last.js +2 -2
  76. data/node_modules/eslint/lib/rules/default-param-last.js +1 -0
  77. data/node_modules/eslint/lib/rules/dot-location.js +20 -2
  78. data/node_modules/eslint/lib/rules/dot-notation.js +1 -0
  79. data/node_modules/eslint/lib/rules/eol-last.js +20 -2
  80. data/node_modules/eslint/lib/rules/func-call-spacing.js +20 -2
  81. data/node_modules/eslint/lib/rules/func-name-matching.js +1 -0
  82. data/node_modules/eslint/lib/rules/func-style.js +1 -0
  83. data/node_modules/eslint/lib/rules/function-call-argument-newline.js +20 -2
  84. data/node_modules/eslint/lib/rules/function-paren-newline.js +20 -2
  85. data/node_modules/eslint/lib/rules/generator-star-spacing.js +20 -2
  86. data/node_modules/eslint/lib/rules/global-require.js +19 -3
  87. data/node_modules/eslint/lib/rules/handle-callback-err.js +19 -3
  88. data/node_modules/eslint/lib/rules/id-blacklist.js +14 -2
  89. data/node_modules/eslint/lib/rules/id-denylist.js +1 -0
  90. data/node_modules/eslint/lib/rules/id-length.js +1 -0
  91. data/node_modules/eslint/lib/rules/id-match.js +1 -0
  92. data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +20 -2
  93. data/node_modules/eslint/lib/rules/indent-legacy.js +19 -3
  94. data/node_modules/eslint/lib/rules/indent.js +20 -2
  95. data/node_modules/eslint/lib/rules/init-declarations.js +1 -0
  96. data/node_modules/eslint/lib/rules/jsx-quotes.js +20 -2
  97. data/node_modules/eslint/lib/rules/key-spacing.js +20 -2
  98. data/node_modules/eslint/lib/rules/keyword-spacing.js +20 -2
  99. data/node_modules/eslint/lib/rules/line-comment-position.js +20 -2
  100. data/node_modules/eslint/lib/rules/linebreak-style.js +20 -2
  101. data/node_modules/eslint/lib/rules/lines-around-comment.js +20 -2
  102. data/node_modules/eslint/lib/rules/lines-around-directive.js +20 -2
  103. data/node_modules/eslint/lib/rules/lines-between-class-members.js +20 -2
  104. data/node_modules/eslint/lib/rules/logical-assignment-operators.js +1 -0
  105. data/node_modules/eslint/lib/rules/max-len.js +20 -2
  106. data/node_modules/eslint/lib/rules/max-statements-per-line.js +20 -2
  107. data/node_modules/eslint/lib/rules/multiline-comment-style.js +20 -2
  108. data/node_modules/eslint/lib/rules/multiline-ternary.js +20 -2
  109. data/node_modules/eslint/lib/rules/new-parens.js +20 -2
  110. data/node_modules/eslint/lib/rules/newline-after-var.js +20 -3
  111. data/node_modules/eslint/lib/rules/newline-before-return.js +20 -2
  112. data/node_modules/eslint/lib/rules/newline-per-chained-call.js +20 -2
  113. data/node_modules/eslint/lib/rules/no-buffer-constructor.js +19 -3
  114. data/node_modules/eslint/lib/rules/no-catch-shadow.js +14 -3
  115. data/node_modules/eslint/lib/rules/no-confusing-arrow.js +20 -2
  116. data/node_modules/eslint/lib/rules/no-console.js +3 -1
  117. data/node_modules/eslint/lib/rules/no-continue.js +1 -0
  118. data/node_modules/eslint/lib/rules/no-div-regex.js +1 -0
  119. data/node_modules/eslint/lib/rules/no-else-return.js +1 -0
  120. data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +1 -0
  121. data/node_modules/eslint/lib/rules/no-extra-label.js +1 -0
  122. data/node_modules/eslint/lib/rules/no-extra-parens.js +20 -2
  123. data/node_modules/eslint/lib/rules/no-extra-semi.js +20 -2
  124. data/node_modules/eslint/lib/rules/no-floating-decimal.js +20 -2
  125. data/node_modules/eslint/lib/rules/no-implicit-coercion.js +1 -0
  126. data/node_modules/eslint/lib/rules/no-inline-comments.js +1 -0
  127. data/node_modules/eslint/lib/rules/no-label-var.js +1 -0
  128. data/node_modules/eslint/lib/rules/no-labels.js +1 -0
  129. data/node_modules/eslint/lib/rules/no-lonely-if.js +1 -0
  130. data/node_modules/eslint/lib/rules/no-magic-numbers.js +1 -0
  131. data/node_modules/eslint/lib/rules/no-mixed-operators.js +20 -2
  132. data/node_modules/eslint/lib/rules/no-mixed-requires.js +19 -3
  133. data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +20 -2
  134. data/node_modules/eslint/lib/rules/no-multi-spaces.js +20 -2
  135. data/node_modules/eslint/lib/rules/no-multi-str.js +1 -0
  136. data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +20 -2
  137. data/node_modules/eslint/lib/rules/no-native-reassign.js +14 -3
  138. data/node_modules/eslint/lib/rules/no-negated-condition.js +1 -0
  139. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +14 -3
  140. data/node_modules/eslint/lib/rules/no-nested-ternary.js +1 -0
  141. data/node_modules/eslint/lib/rules/no-new-object.js +14 -5
  142. data/node_modules/eslint/lib/rules/no-new-require.js +19 -3
  143. data/node_modules/eslint/lib/rules/no-new-symbol.js +14 -5
  144. data/node_modules/eslint/lib/rules/no-path-concat.js +19 -3
  145. data/node_modules/eslint/lib/rules/no-plusplus.js +1 -0
  146. data/node_modules/eslint/lib/rules/no-process-env.js +19 -3
  147. data/node_modules/eslint/lib/rules/no-process-exit.js +19 -3
  148. data/node_modules/eslint/lib/rules/no-restricted-modules.js +19 -3
  149. data/node_modules/eslint/lib/rules/no-return-await.js +7 -3
  150. data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +17 -7
  151. data/node_modules/eslint/lib/rules/no-spaced-func.js +20 -3
  152. data/node_modules/eslint/lib/rules/no-sync.js +19 -3
  153. data/node_modules/eslint/lib/rules/no-tabs.js +20 -2
  154. data/node_modules/eslint/lib/rules/no-ternary.js +1 -0
  155. data/node_modules/eslint/lib/rules/no-trailing-spaces.js +20 -2
  156. data/node_modules/eslint/lib/rules/no-undef-init.js +1 -0
  157. data/node_modules/eslint/lib/rules/no-undefined.js +1 -0
  158. data/node_modules/eslint/lib/rules/no-underscore-dangle.js +1 -0
  159. data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -0
  160. data/node_modules/eslint/lib/rules/no-useless-computed-key.js +1 -0
  161. data/node_modules/eslint/lib/rules/no-useless-concat.js +1 -0
  162. data/node_modules/eslint/lib/rules/no-void.js +1 -0
  163. data/node_modules/eslint/lib/rules/no-warning-comments.js +1 -0
  164. data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +20 -2
  165. data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +20 -2
  166. data/node_modules/eslint/lib/rules/object-curly-newline.js +20 -2
  167. data/node_modules/eslint/lib/rules/object-curly-spacing.js +20 -2
  168. data/node_modules/eslint/lib/rules/object-property-newline.js +20 -2
  169. data/node_modules/eslint/lib/rules/object-shorthand.js +1 -0
  170. data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +20 -2
  171. data/node_modules/eslint/lib/rules/one-var.js +1 -0
  172. data/node_modules/eslint/lib/rules/operator-assignment.js +1 -0
  173. data/node_modules/eslint/lib/rules/operator-linebreak.js +20 -2
  174. data/node_modules/eslint/lib/rules/padded-blocks.js +20 -2
  175. data/node_modules/eslint/lib/rules/padding-line-between-statements.js +20 -2
  176. data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +1 -0
  177. data/node_modules/eslint/lib/rules/prefer-destructuring.js +1 -0
  178. data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +1 -0
  179. data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +1 -0
  180. data/node_modules/eslint/lib/rules/prefer-object-spread.js +1 -0
  181. data/node_modules/eslint/lib/rules/prefer-reflect.js +7 -3
  182. data/node_modules/eslint/lib/rules/prefer-spread.js +1 -0
  183. data/node_modules/eslint/lib/rules/prefer-template.js +1 -0
  184. data/node_modules/eslint/lib/rules/quote-props.js +20 -2
  185. data/node_modules/eslint/lib/rules/quotes.js +20 -2
  186. data/node_modules/eslint/lib/rules/rest-spread-spacing.js +20 -2
  187. data/node_modules/eslint/lib/rules/semi-spacing.js +20 -2
  188. data/node_modules/eslint/lib/rules/semi-style.js +20 -2
  189. data/node_modules/eslint/lib/rules/semi.js +20 -2
  190. data/node_modules/eslint/lib/rules/sort-imports.js +3 -2
  191. data/node_modules/eslint/lib/rules/sort-keys.js +1 -0
  192. data/node_modules/eslint/lib/rules/sort-vars.js +1 -0
  193. data/node_modules/eslint/lib/rules/space-before-blocks.js +20 -2
  194. data/node_modules/eslint/lib/rules/space-before-function-paren.js +20 -2
  195. data/node_modules/eslint/lib/rules/space-in-parens.js +20 -2
  196. data/node_modules/eslint/lib/rules/space-infix-ops.js +20 -2
  197. data/node_modules/eslint/lib/rules/space-unary-ops.js +20 -2
  198. data/node_modules/eslint/lib/rules/spaced-comment.js +20 -2
  199. data/node_modules/eslint/lib/rules/switch-colon-spacing.js +20 -2
  200. data/node_modules/eslint/lib/rules/template-curly-spacing.js +20 -2
  201. data/node_modules/eslint/lib/rules/template-tag-spacing.js +20 -2
  202. data/node_modules/eslint/lib/rules/vars-on-top.js +1 -0
  203. data/node_modules/eslint/lib/rules/wrap-iife.js +20 -2
  204. data/node_modules/eslint/lib/rules/wrap-regex.js +20 -2
  205. data/node_modules/eslint/lib/rules/yield-star-spacing.js +20 -2
  206. data/node_modules/eslint/lib/rules/yoda.js +1 -0
  207. data/node_modules/eslint/lib/shared/flags.js +44 -6
  208. data/node_modules/eslint/lib/shared/option-utils.js +56 -0
  209. data/node_modules/eslint/lib/shared/types.js +19 -1
  210. data/node_modules/eslint/lib/types/index.d.ts +82 -64
  211. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +109 -95
  212. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +32 -15
  213. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +39 -39
  214. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +23 -12
  215. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +86 -54
  216. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +1 -1
  217. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +105 -99
  218. data/node_modules/eslint/lib/types/rules/variables.d.ts +12 -12
  219. data/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  220. data/node_modules/eslint/messages/config-serialize-function.js +28 -0
  221. data/node_modules/eslint/messages/eslintrc-plugins.js +6 -2
  222. data/node_modules/eslint/package.json +11 -9
  223. data/node_modules/eslint-plugin-sonarjs/README.md +2 -2
  224. data/node_modules/eslint-plugin-sonarjs/cjs/S100/generated-meta.js +1 -1
  225. data/node_modules/eslint-plugin-sonarjs/cjs/S100/index.js +1 -1
  226. data/node_modules/eslint-plugin-sonarjs/cjs/S100/meta.js +1 -1
  227. data/node_modules/eslint-plugin-sonarjs/cjs/S100/rule.js +1 -1
  228. data/node_modules/eslint-plugin-sonarjs/cjs/S101/generated-meta.js +1 -1
  229. data/node_modules/eslint-plugin-sonarjs/cjs/S101/index.js +1 -1
  230. data/node_modules/eslint-plugin-sonarjs/cjs/S101/meta.js +1 -1
  231. data/node_modules/eslint-plugin-sonarjs/cjs/S101/rule.js +1 -1
  232. data/node_modules/eslint-plugin-sonarjs/cjs/S104/generated-meta.js +1 -1
  233. data/node_modules/eslint-plugin-sonarjs/cjs/S104/index.js +1 -1
  234. data/node_modules/eslint-plugin-sonarjs/cjs/S104/meta.js +1 -1
  235. data/node_modules/eslint-plugin-sonarjs/cjs/S104/rule.js +1 -1
  236. data/node_modules/eslint-plugin-sonarjs/cjs/S105/generated-meta.js +1 -1
  237. data/node_modules/eslint-plugin-sonarjs/cjs/S105/index.js +1 -1
  238. data/node_modules/eslint-plugin-sonarjs/cjs/S105/meta.js +1 -1
  239. data/node_modules/eslint-plugin-sonarjs/cjs/S105/rule.js +1 -1
  240. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/generated-meta.js +1 -1
  241. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/index.js +1 -1
  242. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/meta.js +1 -1
  243. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/rule.js +1 -1
  244. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/generated-meta.js +1 -1
  245. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/index.js +1 -1
  246. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/meta.js +1 -1
  247. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/rule.js +1 -1
  248. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/generated-meta.js +1 -1
  249. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/index.js +1 -1
  250. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/meta.js +1 -1
  251. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/rule.js +1 -1
  252. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/generated-meta.js +1 -1
  253. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/index.js +1 -1
  254. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/meta.js +1 -1
  255. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/rule.js +1 -1
  256. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/generated-meta.js +1 -1
  257. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/index.js +1 -1
  258. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/meta.js +1 -1
  259. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/rule.js +1 -1
  260. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/generated-meta.js +1 -1
  261. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/index.js +1 -1
  262. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/meta.js +1 -1
  263. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/rule.js +1 -1
  264. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/generated-meta.js +1 -1
  265. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/index.js +1 -1
  266. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/meta.js +1 -1
  267. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/generated-meta.js +1 -1
  268. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/index.js +1 -1
  269. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/meta.js +1 -1
  270. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/rule.js +1 -1
  271. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/generated-meta.js +1 -1
  272. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/index.js +1 -1
  273. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/meta.js +1 -1
  274. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/rule.js +1 -1
  275. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/generated-meta.js +1 -1
  276. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/index.js +1 -1
  277. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/meta.js +1 -1
  278. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/rule.js +1 -1
  279. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/generated-meta.js +1 -1
  280. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/index.js +1 -1
  281. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/meta.js +1 -1
  282. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/rule.js +1 -1
  283. data/node_modules/eslint-plugin-sonarjs/cjs/S117/generated-meta.js +1 -1
  284. data/node_modules/eslint-plugin-sonarjs/cjs/S117/index.js +1 -1
  285. data/node_modules/eslint-plugin-sonarjs/cjs/S117/meta.js +1 -1
  286. data/node_modules/eslint-plugin-sonarjs/cjs/S117/rule.js +1 -1
  287. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/generated-meta.js +1 -1
  288. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/index.js +1 -1
  289. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/meta.js +1 -1
  290. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/rule.js +1 -1
  291. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/generated-meta.js +1 -1
  292. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/index.js +1 -1
  293. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/meta.js +1 -1
  294. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/rule.js +1 -1
  295. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/generated-meta.js +1 -1
  296. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/index.js +1 -1
  297. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/meta.js +1 -1
  298. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/rule.js +1 -1
  299. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/generated-meta.js +1 -1
  300. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/index.js +1 -1
  301. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/meta.js +1 -1
  302. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/rule.js +1 -1
  303. data/node_modules/eslint-plugin-sonarjs/cjs/S124/generated-meta.js +1 -1
  304. data/node_modules/eslint-plugin-sonarjs/cjs/S124/index.js +1 -1
  305. data/node_modules/eslint-plugin-sonarjs/cjs/S124/meta.js +1 -1
  306. data/node_modules/eslint-plugin-sonarjs/cjs/S124/rule.js +1 -1
  307. data/node_modules/eslint-plugin-sonarjs/cjs/S125/generated-meta.js +1 -1
  308. data/node_modules/eslint-plugin-sonarjs/cjs/S125/index.js +1 -1
  309. data/node_modules/eslint-plugin-sonarjs/cjs/S125/meta.js +1 -1
  310. data/node_modules/eslint-plugin-sonarjs/cjs/S125/rule.js +15 -35
  311. data/node_modules/eslint-plugin-sonarjs/cjs/S126/generated-meta.js +1 -1
  312. data/node_modules/eslint-plugin-sonarjs/cjs/S126/index.js +1 -1
  313. data/node_modules/eslint-plugin-sonarjs/cjs/S126/meta.js +1 -1
  314. data/node_modules/eslint-plugin-sonarjs/cjs/S126/rule.js +1 -1
  315. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/generated-meta.js +1 -1
  316. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/index.js +1 -1
  317. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/meta.js +1 -1
  318. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/rule.js +1 -1
  319. data/node_modules/eslint-plugin-sonarjs/cjs/S128/generated-meta.js +1 -1
  320. data/node_modules/eslint-plugin-sonarjs/cjs/S128/index.js +1 -1
  321. data/node_modules/eslint-plugin-sonarjs/cjs/S128/meta.js +1 -1
  322. data/node_modules/eslint-plugin-sonarjs/cjs/S128/rule.js +2 -5
  323. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/generated-meta.js +1 -1
  324. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/index.js +1 -1
  325. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/meta.js +1 -1
  326. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/rule.js +1 -1
  327. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/generated-meta.js +1 -1
  328. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/index.js +1 -1
  329. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/meta.js +1 -1
  330. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/rule.js +1 -1
  331. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/generated-meta.js +1 -1
  332. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/index.js +1 -1
  333. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/meta.js +1 -1
  334. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/rule.js +1 -1
  335. data/node_modules/eslint-plugin-sonarjs/cjs/S134/generated-meta.js +1 -1
  336. data/node_modules/eslint-plugin-sonarjs/cjs/S134/index.js +1 -1
  337. data/node_modules/eslint-plugin-sonarjs/cjs/S134/meta.js +1 -1
  338. data/node_modules/eslint-plugin-sonarjs/cjs/S134/rule.js +1 -1
  339. data/node_modules/eslint-plugin-sonarjs/cjs/S135/generated-meta.js +1 -1
  340. data/node_modules/eslint-plugin-sonarjs/cjs/S135/index.js +1 -1
  341. data/node_modules/eslint-plugin-sonarjs/cjs/S135/meta.js +1 -1
  342. data/node_modules/eslint-plugin-sonarjs/cjs/S135/rule.js +1 -1
  343. data/node_modules/eslint-plugin-sonarjs/cjs/S138/generated-meta.js +1 -1
  344. data/node_modules/eslint-plugin-sonarjs/cjs/S138/index.js +1 -1
  345. data/node_modules/eslint-plugin-sonarjs/cjs/S138/meta.js +1 -1
  346. data/node_modules/eslint-plugin-sonarjs/cjs/S138/rule.js +1 -1
  347. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/generated-meta.js +1 -1
  348. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/index.js +1 -1
  349. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/meta.js +1 -1
  350. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/rule.js +1 -1
  351. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/generated-meta.js +1 -1
  352. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/index.js +1 -1
  353. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/meta.js +1 -1
  354. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/rule.js +1 -1
  355. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/generated-meta.js +1 -1
  356. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/index.js +1 -1
  357. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/meta.js +1 -1
  358. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/rule.js +1 -1
  359. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/generated-meta.js +1 -1
  360. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/index.js +1 -1
  361. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/meta.js +1 -1
  362. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/rule.js +1 -1
  363. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/generated-meta.js +1 -1
  364. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/index.js +1 -1
  365. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/meta.js +1 -1
  366. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/rule.js +1 -1
  367. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/generated-meta.js +1 -1
  368. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/index.js +1 -1
  369. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/meta.js +1 -1
  370. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/rule.js +1 -1
  371. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/generated-meta.js +1 -1
  372. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/index.js +1 -1
  373. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/meta.js +1 -1
  374. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/rule.js +1 -1
  375. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/generated-meta.js +1 -1
  376. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/index.js +1 -1
  377. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/meta.js +1 -1
  378. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/rule.js +1 -1
  379. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/generated-meta.js +1 -1
  380. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/index.js +1 -1
  381. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/meta.js +1 -1
  382. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/rule.js +1 -1
  383. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/generated-meta.js +1 -1
  384. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/index.js +1 -1
  385. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/meta.js +1 -1
  386. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/rule.js +1 -1
  387. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/generated-meta.js +1 -1
  388. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/index.js +1 -1
  389. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/meta.js +1 -1
  390. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/rule.js +1 -1
  391. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/generated-meta.js +1 -1
  392. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/index.js +1 -1
  393. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/meta.js +1 -1
  394. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/generated-meta.js +1 -1
  395. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/index.js +1 -1
  396. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/meta.js +1 -1
  397. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/rule.js +1 -1
  398. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/generated-meta.js +1 -1
  399. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/index.js +1 -1
  400. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/meta.js +1 -1
  401. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/rule.js +1 -1
  402. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/generated-meta.js +1 -1
  403. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/index.js +1 -1
  404. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/meta.js +1 -1
  405. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/rule.js +1 -1
  406. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/generated-meta.js +1 -1
  407. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/index.js +1 -1
  408. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/meta.js +1 -1
  409. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/rule.js +1 -1
  410. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/generated-meta.js +1 -1
  411. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/index.js +1 -1
  412. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/meta.js +1 -1
  413. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/rule.js +1 -1
  414. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/generated-meta.js +1 -1
  415. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/index.js +1 -1
  416. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/meta.js +1 -1
  417. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/rule.js +1 -1
  418. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/generated-meta.js +1 -1
  419. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/index.js +1 -1
  420. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/meta.js +1 -1
  421. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/rule.js +1 -1
  422. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/generated-meta.js +1 -1
  423. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/index.js +1 -1
  424. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/meta.js +1 -1
  425. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/rule.js +1 -1
  426. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/generated-meta.js +1 -1
  427. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/index.js +1 -1
  428. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/meta.js +1 -1
  429. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/rule.js +1 -1
  430. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/generated-meta.js +1 -1
  431. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/index.js +1 -1
  432. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/meta.js +1 -1
  433. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/rule.js +1 -1
  434. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/generated-meta.js +1 -1
  435. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/index.js +1 -1
  436. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/meta.js +1 -1
  437. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/rule.js +1 -1
  438. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/generated-meta.js +1 -1
  439. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/index.js +1 -1
  440. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/meta.js +1 -1
  441. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/rule.js +1 -1
  442. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/generated-meta.js +1 -1
  443. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/index.js +1 -1
  444. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/meta.js +1 -1
  445. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/rule.js +1 -1
  446. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/generated-meta.js +1 -1
  447. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/index.js +1 -1
  448. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/meta.js +1 -1
  449. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/rule.js +1 -1
  450. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/generated-meta.js +1 -1
  451. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/index.js +1 -1
  452. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/meta.js +1 -1
  453. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/rule.js +1 -1
  454. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/generated-meta.js +1 -1
  455. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/index.js +1 -1
  456. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/meta.js +1 -1
  457. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/rule.js +1 -1
  458. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/generated-meta.js +1 -1
  459. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/index.js +1 -1
  460. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/meta.js +1 -1
  461. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/rule.js +1 -1
  462. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/generated-meta.js +1 -1
  463. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/index.js +1 -1
  464. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/meta.js +1 -1
  465. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/rule.js +1 -1
  466. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/generated-meta.js +1 -1
  467. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/index.js +1 -1
  468. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/meta.js +1 -1
  469. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/rule.js +1 -1
  470. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/generated-meta.js +1 -1
  471. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/index.js +1 -1
  472. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/meta.js +1 -1
  473. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/rule.js +1 -1
  474. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/generated-meta.js +1 -1
  475. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/index.js +1 -1
  476. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/meta.js +1 -1
  477. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/rule.js +1 -1
  478. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/generated-meta.js +1 -1
  479. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/index.js +1 -1
  480. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/meta.js +1 -1
  481. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/rule.js +1 -1
  482. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/generated-meta.js +1 -1
  483. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/index.js +1 -1
  484. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/meta.js +1 -1
  485. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/rule.js +1 -1
  486. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/generated-meta.js +1 -1
  487. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/index.js +1 -1
  488. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/meta.js +1 -1
  489. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/rule.js +1 -1
  490. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/generated-meta.js +1 -1
  491. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/index.js +1 -1
  492. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/meta.js +1 -1
  493. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/rule.js +1 -1
  494. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/generated-meta.js +1 -1
  495. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/index.js +1 -1
  496. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/meta.js +1 -1
  497. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/rule.js +1 -1
  498. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/generated-meta.js +1 -1
  499. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/index.js +1 -1
  500. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/meta.js +1 -1
  501. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/rule.js +1 -1
  502. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/generated-meta.js +1 -1
  503. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/index.js +1 -1
  504. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/meta.js +1 -1
  505. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/rule.js +1 -1
  506. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/generated-meta.js +1 -1
  507. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/index.js +1 -1
  508. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/meta.js +1 -1
  509. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/rule.js +1 -1
  510. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/generated-meta.js +1 -1
  511. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/index.js +1 -1
  512. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/meta.js +1 -1
  513. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/rule.js +1 -1
  514. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/generated-meta.js +1 -1
  515. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/index.js +1 -1
  516. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/meta.js +1 -1
  517. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/rule.js +1 -1
  518. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/generated-meta.js +1 -1
  519. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/index.js +1 -1
  520. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/meta.js +1 -1
  521. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/rule.js +1 -1
  522. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/generated-meta.js +1 -1
  523. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/index.js +1 -1
  524. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/meta.js +1 -1
  525. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/rule.js +1 -1
  526. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/generated-meta.js +1 -1
  527. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/index.js +1 -1
  528. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/meta.js +1 -1
  529. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/rule.js +1 -1
  530. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/generated-meta.js +1 -1
  531. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/index.js +1 -1
  532. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/meta.js +1 -1
  533. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/rule.js +1 -1
  534. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/generated-meta.js +1 -1
  535. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/index.js +1 -1
  536. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/meta.js +1 -1
  537. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/rule.js +1 -1
  538. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/generated-meta.js +1 -1
  539. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/index.js +1 -1
  540. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/meta.js +1 -1
  541. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/rule.js +1 -1
  542. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/generated-meta.js +1 -1
  543. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/index.js +1 -1
  544. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/meta.js +1 -1
  545. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/rule.js +1 -1
  546. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/generated-meta.js +1 -1
  547. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/index.js +1 -1
  548. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/meta.js +1 -1
  549. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/rule.js +1 -1
  550. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/generated-meta.js +1 -1
  551. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/index.js +1 -1
  552. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/meta.js +1 -1
  553. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/rule.js +1 -1
  554. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/generated-meta.js +1 -1
  555. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/index.js +1 -1
  556. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/meta.js +1 -1
  557. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/rule.js +1 -1
  558. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/generated-meta.js +1 -1
  559. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/index.js +1 -1
  560. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/meta.js +1 -1
  561. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/rule.js +1 -1
  562. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/generated-meta.js +1 -1
  563. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/index.js +1 -1
  564. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/meta.js +1 -1
  565. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/rule.js +1 -1
  566. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/generated-meta.js +1 -1
  567. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/index.js +1 -1
  568. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/meta.js +1 -1
  569. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/generated-meta.js +1 -1
  570. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/index.js +1 -1
  571. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/meta.js +1 -1
  572. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/rule.js +1 -1
  573. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/generated-meta.js +1 -1
  574. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/index.js +1 -1
  575. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/meta.js +1 -1
  576. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/rule.js +1 -1
  577. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/generated-meta.js +1 -1
  578. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/index.js +1 -1
  579. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/meta.js +1 -1
  580. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/rule.js +1 -1
  581. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/generated-meta.js +1 -1
  582. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/index.js +1 -1
  583. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/meta.js +1 -1
  584. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/rule.js +1 -1
  585. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/generated-meta.js +1 -1
  586. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/index.js +1 -1
  587. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/meta.js +1 -1
  588. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/rule.js +1 -1
  589. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/generated-meta.js +1 -1
  590. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/index.js +1 -1
  591. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/meta.js +1 -1
  592. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/rule.js +1 -1
  593. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/generated-meta.js +1 -1
  594. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/index.js +1 -1
  595. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/meta.js +1 -1
  596. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/rule.js +1 -1
  597. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/generated-meta.js +1 -1
  598. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/index.js +1 -1
  599. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/meta.js +1 -1
  600. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/rule.js +1 -1
  601. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/generated-meta.js +1 -1
  602. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/index.js +1 -1
  603. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/meta.js +1 -1
  604. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/rule.js +1 -1
  605. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/generated-meta.js +1 -1
  606. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/index.js +1 -1
  607. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/meta.js +1 -1
  608. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/rule.js +1 -1
  609. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/generated-meta.js +1 -1
  610. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/index.js +1 -1
  611. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/meta.js +1 -1
  612. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/rule.js +1 -1
  613. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/generated-meta.js +1 -1
  614. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/index.js +1 -1
  615. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/meta.js +1 -1
  616. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/rule.js +1 -1
  617. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/generated-meta.js +1 -1
  618. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/index.js +1 -1
  619. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/meta.js +1 -1
  620. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/rule.js +1 -1
  621. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/generated-meta.js +1 -1
  622. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/index.js +1 -1
  623. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/meta.js +1 -1
  624. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/rule.js +1 -1
  625. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/generated-meta.js +1 -1
  626. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/index.js +1 -1
  627. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/meta.js +1 -1
  628. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/rule.js +1 -1
  629. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/generated-meta.js +1 -1
  630. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/index.js +1 -1
  631. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/meta.js +1 -1
  632. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/rule.js +1 -1
  633. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/generated-meta.js +1 -1
  634. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/index.js +1 -1
  635. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/meta.js +1 -1
  636. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/rule.js +1 -1
  637. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/generated-meta.js +1 -1
  638. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/index.js +1 -1
  639. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/meta.js +1 -1
  640. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/rule.js +1 -1
  641. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/generated-meta.js +1 -1
  642. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/index.js +1 -1
  643. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/meta.js +1 -1
  644. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/rule.js +1 -1
  645. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/generated-meta.js +1 -1
  646. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/index.js +1 -1
  647. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/meta.js +1 -1
  648. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/rule.js +1 -1
  649. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/generated-meta.js +1 -1
  650. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/index.js +1 -1
  651. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/meta.js +1 -1
  652. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/rule.js +1 -1
  653. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/generated-meta.js +1 -1
  654. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/index.js +1 -1
  655. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/meta.js +1 -1
  656. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/rule.js +1 -1
  657. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/generated-meta.js +1 -1
  658. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/index.js +1 -1
  659. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/meta.js +1 -1
  660. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/rule.js +1 -1
  661. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/generated-meta.js +1 -1
  662. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/index.js +1 -1
  663. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/meta.js +1 -1
  664. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/rule.js +1 -1
  665. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/generated-meta.js +1 -1
  666. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/index.js +1 -1
  667. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/meta.js +1 -1
  668. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/rule.js +1 -1
  669. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/generated-meta.js +1 -1
  670. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/index.js +1 -1
  671. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/meta.js +1 -1
  672. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/rule.js +1 -1
  673. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/generated-meta.js +1 -1
  674. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/index.js +1 -1
  675. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/meta.js +1 -1
  676. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/rule.js +1 -1
  677. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/generated-meta.js +1 -1
  678. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/index.js +1 -1
  679. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/meta.js +1 -1
  680. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/rule.js +1 -1
  681. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/generated-meta.js +1 -1
  682. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/index.js +1 -1
  683. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/meta.js +1 -1
  684. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/rule.js +1 -1
  685. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/generated-meta.js +1 -1
  686. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/index.js +1 -1
  687. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/meta.js +1 -1
  688. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/rule.js +1 -1
  689. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/generated-meta.js +1 -1
  690. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/index.js +1 -1
  691. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/meta.js +1 -1
  692. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/rule.js +1 -1
  693. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/generated-meta.js +1 -1
  694. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/index.js +1 -1
  695. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/meta.js +1 -1
  696. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/rule.js +1 -1
  697. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/generated-meta.js +1 -1
  698. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/index.js +1 -1
  699. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/meta.js +1 -1
  700. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/rule.js +1 -1
  701. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/generated-meta.js +1 -1
  702. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/index.js +1 -1
  703. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/meta.js +1 -1
  704. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/rule.js +1 -1
  705. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/generated-meta.js +1 -1
  706. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/index.js +1 -1
  707. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/meta.js +1 -1
  708. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/rule.js +1 -1
  709. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/generated-meta.js +1 -1
  710. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/index.js +1 -1
  711. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/meta.js +1 -1
  712. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/rule.js +1 -1
  713. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/generated-meta.js +1 -1
  714. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/index.js +1 -1
  715. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/meta.js +1 -1
  716. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/rule.js +1 -1
  717. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/generated-meta.js +1 -1
  718. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/index.js +1 -1
  719. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/meta.js +1 -1
  720. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/rule.js +1 -1
  721. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/generated-meta.js +2 -2
  722. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/index.js +1 -1
  723. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/meta.js +1 -1
  724. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/rule.js +3 -2
  725. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/generated-meta.js +1 -1
  726. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/index.js +1 -1
  727. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/meta.js +1 -1
  728. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/rule.js +1 -1
  729. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/generated-meta.js +1 -1
  730. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/index.js +1 -1
  731. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/meta.js +1 -1
  732. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/rule.js +1 -1
  733. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/generated-meta.js +1 -1
  734. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/index.js +1 -1
  735. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/meta.js +1 -1
  736. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/rule.js +1 -1
  737. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/generated-meta.js +1 -1
  738. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/index.js +1 -1
  739. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/meta.js +1 -1
  740. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/generated-meta.js +1 -1
  741. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/index.js +1 -1
  742. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/meta.js +1 -1
  743. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/rule.js +1 -1
  744. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/generated-meta.js +1 -1
  745. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/index.js +1 -1
  746. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/meta.js +1 -1
  747. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/rule.js +21 -2
  748. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/generated-meta.js +1 -1
  749. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/index.js +1 -1
  750. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/meta.js +1 -1
  751. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/generated-meta.js +1 -1
  752. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/index.js +1 -1
  753. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/meta.js +1 -1
  754. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/rule.js +1 -1
  755. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/generated-meta.js +1 -1
  756. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/index.js +1 -1
  757. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/meta.js +1 -1
  758. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/rule.js +1 -1
  759. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/generated-meta.js +1 -1
  760. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/index.js +1 -1
  761. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/meta.js +1 -1
  762. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/rule.js +1 -1
  763. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/generated-meta.js +1 -1
  764. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/index.js +1 -1
  765. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/meta.js +1 -1
  766. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/rule.js +1 -1
  767. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/generated-meta.js +1 -1
  768. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/index.js +1 -1
  769. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/meta.js +1 -1
  770. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/rule.js +1 -1
  771. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/generated-meta.js +1 -1
  772. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/index.js +1 -1
  773. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/meta.js +1 -1
  774. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/rule.js +1 -1
  775. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/generated-meta.js +1 -1
  776. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/index.js +1 -1
  777. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/meta.js +1 -1
  778. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/rule.js +1 -1
  779. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/generated-meta.js +1 -1
  780. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/index.js +1 -1
  781. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/meta.js +1 -1
  782. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/rule.js +1 -1
  783. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/generated-meta.js +1 -1
  784. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/index.js +1 -1
  785. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/meta.js +1 -1
  786. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/rule.js +1 -1
  787. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/generated-meta.js +1 -1
  788. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/index.js +1 -1
  789. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/meta.js +1 -1
  790. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/rule.js +1 -1
  791. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/generated-meta.js +1 -1
  792. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/index.js +1 -1
  793. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/meta.js +1 -1
  794. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/rule.js +1 -1
  795. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/generated-meta.js +1 -1
  796. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/index.js +1 -1
  797. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/meta.js +1 -1
  798. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/rule.js +1 -1
  799. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/generated-meta.js +1 -1
  800. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/index.js +1 -1
  801. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/meta.js +1 -1
  802. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/rule.js +1 -1
  803. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/generated-meta.js +1 -1
  804. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/index.js +1 -1
  805. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/meta.js +1 -1
  806. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/rule.js +1 -1
  807. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/generated-meta.js +1 -1
  808. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/index.js +1 -1
  809. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/meta.js +1 -1
  810. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/rule.js +1 -1
  811. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/generated-meta.js +1 -1
  812. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/index.js +1 -1
  813. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/meta.js +1 -1
  814. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/rule.js +1 -1
  815. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/generated-meta.js +1 -1
  816. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/index.js +1 -1
  817. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/meta.js +1 -1
  818. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/rule.js +1 -1
  819. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/generated-meta.js +1 -1
  820. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/index.js +1 -1
  821. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/meta.js +1 -1
  822. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/rule.js +1 -1
  823. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/generated-meta.js +1 -1
  824. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/index.js +1 -1
  825. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/meta.js +1 -1
  826. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/rule.js +1 -1
  827. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/generated-meta.js +1 -1
  828. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/index.js +1 -1
  829. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/meta.js +1 -1
  830. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/rule.js +1 -1
  831. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/generated-meta.js +1 -1
  832. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/index.js +1 -1
  833. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/meta.js +1 -1
  834. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.aws.js +1 -1
  835. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.js +1 -1
  836. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.lib.js +1 -1
  837. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/generated-meta.js +1 -1
  838. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/index.js +1 -1
  839. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/meta.js +1 -1
  840. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/rule.js +1 -1
  841. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/generated-meta.js +1 -1
  842. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/index.js +1 -1
  843. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/meta.js +1 -1
  844. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/rule.js +1 -1
  845. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/generated-meta.js +1 -1
  846. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/index.js +1 -1
  847. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/meta.js +1 -1
  848. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/rule.js +1 -1
  849. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/generated-meta.js +1 -1
  850. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/index.js +1 -1
  851. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/meta.js +1 -1
  852. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/rule.js +1 -1
  853. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/generated-meta.js +1 -1
  854. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/index.js +1 -1
  855. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/meta.js +1 -1
  856. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/rule.js +1 -1
  857. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/generated-meta.js +1 -1
  858. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/index.js +1 -1
  859. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/meta.js +1 -1
  860. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/rule.js +1 -1
  861. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/generated-meta.js +1 -1
  862. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/index.js +1 -1
  863. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/meta.js +1 -1
  864. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/rule.js +1 -1
  865. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/generated-meta.js +1 -1
  866. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/index.js +1 -1
  867. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/meta.js +1 -1
  868. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/rule.js +1 -1
  869. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/generated-meta.js +1 -1
  870. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/index.js +1 -1
  871. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/meta.js +1 -1
  872. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/rule.js +1 -1
  873. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/generated-meta.js +1 -1
  874. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/index.js +1 -1
  875. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/meta.js +1 -1
  876. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/rule.js +1 -1
  877. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/generated-meta.js +1 -1
  878. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/index.js +1 -1
  879. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/meta.js +1 -1
  880. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/rule.js +1 -1
  881. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/generated-meta.js +1 -1
  882. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/index.js +1 -1
  883. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/meta.js +1 -1
  884. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/rule.js +1 -1
  885. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/generated-meta.js +1 -1
  886. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/index.js +1 -1
  887. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/meta.js +1 -1
  888. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/rule.js +1 -1
  889. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/generated-meta.js +1 -1
  890. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/index.js +1 -1
  891. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/meta.js +1 -1
  892. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/rule.js +1 -1
  893. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/generated-meta.js +1 -1
  894. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/index.js +1 -1
  895. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/meta.js +1 -1
  896. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/rule.js +1 -1
  897. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/generated-meta.js +1 -1
  898. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/index.js +1 -1
  899. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/meta.js +1 -1
  900. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/rule.js +1 -1
  901. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/generated-meta.js +1 -1
  902. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/index.js +1 -1
  903. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/meta.js +1 -1
  904. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/rule.js +1 -1
  905. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/generated-meta.js +1 -1
  906. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/index.js +1 -1
  907. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/meta.js +1 -1
  908. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/rule.js +1 -1
  909. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/generated-meta.js +1 -1
  910. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/index.js +1 -1
  911. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/meta.js +1 -1
  912. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/rule.js +1 -1
  913. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/generated-meta.js +1 -1
  914. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/index.js +1 -1
  915. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/meta.js +1 -1
  916. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/rule.js +1 -1
  917. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/generated-meta.js +1 -1
  918. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/index.js +1 -1
  919. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/meta.js +1 -1
  920. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/rule.js +1 -1
  921. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/generated-meta.js +1 -1
  922. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/index.js +1 -1
  923. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/meta.js +1 -1
  924. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/rule.js +1 -1
  925. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/generated-meta.js +1 -1
  926. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/index.js +1 -1
  927. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/meta.js +1 -1
  928. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/rule.js +1 -1
  929. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/generated-meta.js +1 -1
  930. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/index.js +1 -1
  931. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/meta.js +1 -1
  932. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/rule.js +1 -1
  933. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/generated-meta.js +1 -1
  934. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/index.js +1 -1
  935. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/meta.js +1 -1
  936. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/rule.js +1 -1
  937. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/generated-meta.js +1 -1
  938. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/index.js +1 -1
  939. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/meta.js +1 -1
  940. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/rule.js +1 -1
  941. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/generated-meta.js +1 -1
  942. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/index.js +1 -1
  943. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/meta.js +1 -1
  944. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/rule.js +1 -1
  945. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/generated-meta.js +1 -1
  946. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/index.js +1 -1
  947. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/meta.js +1 -1
  948. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/rule.js +1 -1
  949. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/generated-meta.js +1 -1
  950. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/index.js +1 -1
  951. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/meta.js +1 -1
  952. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/rule.js +1 -1
  953. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/generated-meta.js +1 -1
  954. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/index.js +1 -1
  955. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/meta.js +1 -1
  956. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/rule.js +1 -1
  957. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/generated-meta.js +1 -1
  958. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/index.js +1 -1
  959. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/meta.js +1 -1
  960. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.aws.js +1 -1
  961. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.js +1 -1
  962. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.lib.js +1 -1
  963. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/generated-meta.js +1 -1
  964. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/index.js +1 -1
  965. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/meta.js +1 -1
  966. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/rule.js +1 -1
  967. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/generated-meta.js +1 -1
  968. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/index.js +1 -1
  969. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/meta.js +1 -1
  970. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/rule.js +1 -1
  971. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/generated-meta.js +1 -1
  972. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/index.js +1 -1
  973. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/meta.js +1 -1
  974. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/rule.js +1 -1
  975. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/generated-meta.js +1 -1
  976. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/index.js +1 -1
  977. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/meta.js +1 -1
  978. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/rule.js +1 -1
  979. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/generated-meta.js +1 -1
  980. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/index.js +1 -1
  981. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/meta.js +1 -1
  982. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/rule.js +1 -1
  983. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/generated-meta.js +1 -1
  984. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/index.js +1 -1
  985. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/meta.js +1 -1
  986. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/rule.js +1 -1
  987. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/generated-meta.js +1 -1
  988. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/index.js +1 -1
  989. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/meta.js +1 -1
  990. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/rule.js +1 -1
  991. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/generated-meta.js +1 -1
  992. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/index.js +1 -1
  993. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/meta.js +1 -1
  994. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/rule.js +1 -1
  995. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/generated-meta.js +1 -1
  996. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/index.js +1 -1
  997. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/meta.js +1 -1
  998. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/rule.js +1 -1
  999. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/generated-meta.js +1 -1
  1000. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/index.js +1 -1
  1001. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/meta.js +1 -1
  1002. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/rule.js +1 -1
  1003. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/generated-meta.js +1 -1
  1004. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/index.js +1 -1
  1005. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/meta.js +1 -1
  1006. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/rule.js +1 -1
  1007. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/generated-meta.js +1 -1
  1008. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/index.js +1 -1
  1009. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/meta.js +1 -1
  1010. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/rule.js +1 -1
  1011. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/generated-meta.js +1 -1
  1012. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/index.js +1 -1
  1013. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/meta.js +1 -1
  1014. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/rule.js +1 -1
  1015. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/generated-meta.js +1 -1
  1016. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/index.js +1 -1
  1017. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/meta.js +1 -1
  1018. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/rule.js +1 -1
  1019. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/generated-meta.js +1 -1
  1020. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/index.js +1 -1
  1021. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/meta.js +1 -1
  1022. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/rule.js +1 -1
  1023. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/generated-meta.js +1 -1
  1024. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/index.js +1 -1
  1025. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/meta.js +1 -1
  1026. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/rule.js +1 -1
  1027. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/generated-meta.js +3 -3
  1028. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/index.js +1 -1
  1029. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/meta.js +1 -1
  1030. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/rule.js +1 -1
  1031. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/generated-meta.js +1 -1
  1032. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/index.js +1 -1
  1033. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/meta.js +1 -1
  1034. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/rule.js +1 -1
  1035. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/generated-meta.js +1 -1
  1036. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/index.js +1 -1
  1037. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/meta.js +1 -1
  1038. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/rule.js +1 -1
  1039. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/generated-meta.js +1 -1
  1040. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/index.js +1 -1
  1041. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/meta.js +1 -1
  1042. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/rule.js +1 -1
  1043. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/generated-meta.js +1 -1
  1044. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/index.js +1 -1
  1045. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/meta.js +1 -1
  1046. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/rule.js +1 -1
  1047. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/generated-meta.js +1 -1
  1048. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/index.js +1 -1
  1049. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/meta.js +1 -1
  1050. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/rule.js +1 -1
  1051. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/generated-meta.js +1 -1
  1052. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/index.js +1 -1
  1053. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/meta.js +1 -1
  1054. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/rule.js +1 -1
  1055. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/generated-meta.js +1 -1
  1056. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/index.js +1 -1
  1057. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/meta.js +1 -1
  1058. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/rule.js +1 -1
  1059. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/generated-meta.js +1 -1
  1060. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/index.js +1 -1
  1061. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/meta.js +1 -1
  1062. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/rule.js +1 -1
  1063. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/generated-meta.js +1 -1
  1064. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/index.js +1 -1
  1065. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/meta.js +1 -1
  1066. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/rule.js +1 -1
  1067. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/generated-meta.js +1 -1
  1068. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/index.js +1 -1
  1069. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/meta.js +1 -1
  1070. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/rule.js +1 -1
  1071. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/generated-meta.js +1 -1
  1072. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/index.js +1 -1
  1073. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/meta.js +1 -1
  1074. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/rule.js +1 -1
  1075. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/generated-meta.js +1 -1
  1076. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/index.js +1 -1
  1077. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/meta.js +1 -1
  1078. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/rule.js +1 -1
  1079. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/generated-meta.js +1 -1
  1080. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/index.js +1 -1
  1081. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/meta.js +1 -1
  1082. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/rule.js +1 -1
  1083. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/generated-meta.js +1 -1
  1084. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/index.js +1 -1
  1085. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/meta.js +1 -1
  1086. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/rule.js +1 -1
  1087. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/generated-meta.js +1 -1
  1088. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/index.js +1 -1
  1089. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/meta.js +1 -1
  1090. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/rule.js +1 -1
  1091. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/generated-meta.js +1 -1
  1092. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/index.js +1 -1
  1093. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/meta.js +1 -1
  1094. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/rule.js +1 -1
  1095. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/generated-meta.js +1 -1
  1096. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/index.js +1 -1
  1097. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/meta.js +1 -1
  1098. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/rule.js +1 -1
  1099. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/generated-meta.js +1 -1
  1100. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/index.js +1 -1
  1101. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/meta.js +1 -1
  1102. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/rule.js +1 -1
  1103. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/generated-meta.js +1 -1
  1104. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/index.js +1 -1
  1105. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/meta.js +1 -1
  1106. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/rule.js +1 -1
  1107. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/generated-meta.js +1 -1
  1108. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/index.js +1 -1
  1109. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/meta.js +1 -1
  1110. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/rule.js +1 -1
  1111. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/generated-meta.js +1 -1
  1112. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/index.js +1 -1
  1113. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/meta.js +1 -1
  1114. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/rule.js +1 -1
  1115. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/generated-meta.js +1 -1
  1116. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/index.js +1 -1
  1117. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/meta.js +1 -1
  1118. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/rule.js +1 -1
  1119. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/generated-meta.js +1 -1
  1120. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/index.js +1 -1
  1121. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/meta.js +1 -1
  1122. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/rule.js +1 -1
  1123. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/generated-meta.js +1 -1
  1124. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/index.js +1 -1
  1125. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/meta.js +1 -1
  1126. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/rule.js +1 -1
  1127. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/generated-meta.js +1 -1
  1128. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/index.js +1 -1
  1129. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/meta.js +1 -1
  1130. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/rule.js +1 -1
  1131. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/generated-meta.js +1 -1
  1132. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/index.js +1 -1
  1133. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/meta.js +1 -1
  1134. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/rule.js +1 -1
  1135. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/generated-meta.js +1 -1
  1136. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/index.js +1 -1
  1137. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/meta.js +1 -1
  1138. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/rule.js +1 -1
  1139. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/generated-meta.js +1 -1
  1140. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/index.js +1 -1
  1141. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/meta.js +1 -1
  1142. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/rule.js +1 -1
  1143. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/generated-meta.js +1 -1
  1144. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/index.js +1 -1
  1145. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/meta.js +1 -1
  1146. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/rule.js +1 -1
  1147. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/generated-meta.js +1 -1
  1148. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/index.js +1 -1
  1149. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/meta.js +1 -1
  1150. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/rule.js +1 -1
  1151. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/generated-meta.js +1 -1
  1152. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/index.js +1 -1
  1153. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/meta.js +1 -1
  1154. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/rule.js +1 -1
  1155. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/generated-meta.js +1 -1
  1156. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/index.js +1 -1
  1157. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/meta.js +1 -1
  1158. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/rule.js +1 -1
  1159. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/generated-meta.js +1 -1
  1160. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/index.js +1 -1
  1161. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/meta.js +1 -1
  1162. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/rule.js +1 -1
  1163. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/generated-meta.js +1 -1
  1164. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/index.js +1 -1
  1165. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/meta.js +1 -1
  1166. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/rule.js +1 -1
  1167. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/generated-meta.js +1 -1
  1168. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/index.js +1 -1
  1169. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/meta.js +1 -1
  1170. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/rule.js +1 -1
  1171. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/generated-meta.js +1 -1
  1172. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/index.js +1 -1
  1173. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/meta.js +1 -1
  1174. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/rule.js +1 -1
  1175. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/generated-meta.js +1 -1
  1176. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/index.js +1 -1
  1177. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/meta.js +1 -1
  1178. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/rule.js +1 -1
  1179. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/generated-meta.js +1 -1
  1180. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/index.js +1 -1
  1181. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/meta.js +1 -1
  1182. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/rule.js +1 -1
  1183. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/generated-meta.js +1 -1
  1184. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/index.js +1 -1
  1185. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/meta.js +1 -1
  1186. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/rule.js +1 -1
  1187. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/generated-meta.js +1 -1
  1188. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/index.js +1 -1
  1189. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/meta.js +1 -1
  1190. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/rule.js +1 -1
  1191. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/generated-meta.js +1 -1
  1192. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/index.js +1 -1
  1193. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/meta.js +1 -1
  1194. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/rule.js +1 -1
  1195. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/generated-meta.js +1 -1
  1196. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/index.js +1 -1
  1197. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/meta.js +1 -1
  1198. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/rule.js +1 -1
  1199. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/generated-meta.js +1 -1
  1200. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/index.js +1 -1
  1201. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/meta.js +1 -1
  1202. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/rule.js +1 -1
  1203. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/generated-meta.js +1 -1
  1204. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/index.js +1 -1
  1205. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/meta.js +1 -1
  1206. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/rule.js +2 -2
  1207. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/generated-meta.js +1 -1
  1208. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/index.js +1 -1
  1209. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/meta.js +1 -1
  1210. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/rule.js +1 -1
  1211. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/generated-meta.js +1 -1
  1212. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/index.js +1 -1
  1213. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/meta.js +1 -1
  1214. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/rule.js +1 -1
  1215. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/generated-meta.js +1 -1
  1216. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/index.js +1 -1
  1217. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/meta.js +1 -1
  1218. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/rule.js +1 -1
  1219. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/generated-meta.js +1 -1
  1220. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/index.js +1 -1
  1221. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/meta.js +1 -1
  1222. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/rule.js +1 -1
  1223. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/generated-meta.js +1 -1
  1224. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/index.js +1 -1
  1225. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/meta.js +1 -1
  1226. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/rule.js +1 -1
  1227. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/generated-meta.js +1 -1
  1228. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/index.js +1 -1
  1229. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/meta.js +1 -1
  1230. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/rule.js +1 -1
  1231. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/generated-meta.js +21 -2
  1232. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/index.js +1 -1
  1233. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/meta.js +1 -1
  1234. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/rule.js +2 -21
  1235. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/generated-meta.js +1 -1
  1236. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/index.js +1 -1
  1237. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/meta.js +1 -1
  1238. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/rule.js +1 -1
  1239. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/generated-meta.js +1 -1
  1240. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/index.js +1 -1
  1241. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/meta.js +1 -1
  1242. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/rule.js +1 -1
  1243. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/generated-meta.js +1 -1
  1244. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/index.js +1 -1
  1245. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/meta.js +1 -1
  1246. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/rule.js +1 -1
  1247. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/generated-meta.js +1 -1
  1248. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/index.js +1 -1
  1249. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/meta.js +1 -1
  1250. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/rule.js +1 -1
  1251. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/generated-meta.js +1 -1
  1252. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/index.js +1 -1
  1253. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/meta.js +1 -1
  1254. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/rule.js +1 -1
  1255. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/generated-meta.js +1 -1
  1256. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/index.js +1 -1
  1257. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/meta.js +1 -1
  1258. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/rule.js +1 -1
  1259. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/generated-meta.js +1 -1
  1260. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/index.js +1 -1
  1261. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/meta.js +1 -1
  1262. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/rule.js +1 -1
  1263. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/generated-meta.js +1 -1
  1264. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/index.js +1 -1
  1265. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/meta.js +1 -1
  1266. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/rule.js +1 -1
  1267. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/generated-meta.js +1 -1
  1268. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/index.js +1 -1
  1269. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/meta.js +1 -1
  1270. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/rule.js +1 -1
  1271. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/generated-meta.js +1 -1
  1272. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/index.js +1 -1
  1273. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/meta.js +1 -1
  1274. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/generated-meta.js +1 -1
  1275. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/index.js +1 -1
  1276. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/meta.js +1 -1
  1277. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/rule.js +1 -1
  1278. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/generated-meta.js +1 -1
  1279. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/index.js +1 -1
  1280. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/meta.js +1 -1
  1281. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/rule.js +1 -1
  1282. data/node_modules/eslint-plugin-sonarjs/cjs/S881/generated-meta.js +1 -1
  1283. data/node_modules/eslint-plugin-sonarjs/cjs/S881/index.js +1 -1
  1284. data/node_modules/eslint-plugin-sonarjs/cjs/S881/meta.js +1 -1
  1285. data/node_modules/eslint-plugin-sonarjs/cjs/S881/rule.js +1 -1
  1286. data/node_modules/eslint-plugin-sonarjs/cjs/S888/generated-meta.js +1 -1
  1287. data/node_modules/eslint-plugin-sonarjs/cjs/S888/index.js +1 -1
  1288. data/node_modules/eslint-plugin-sonarjs/cjs/S888/meta.js +1 -1
  1289. data/node_modules/eslint-plugin-sonarjs/cjs/S888/rule.js +1 -1
  1290. data/node_modules/eslint-plugin-sonarjs/cjs/S930/generated-meta.js +1 -1
  1291. data/node_modules/eslint-plugin-sonarjs/cjs/S930/index.js +1 -1
  1292. data/node_modules/eslint-plugin-sonarjs/cjs/S930/meta.js +1 -1
  1293. data/node_modules/eslint-plugin-sonarjs/cjs/S930/rule.js +1 -1
  1294. data/node_modules/eslint-plugin-sonarjs/cjs/external/core.js +1 -1
  1295. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/accessibility.js +1 -1
  1296. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/aws/index.js +1 -1
  1297. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/collection.js +1 -1
  1298. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/index.js +1 -1
  1299. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/interceptor.js +0 -4
  1300. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/files.js +1 -1
  1301. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-files.js +1 -1
  1302. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-up.js +1 -1
  1303. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/globals.js +1 -1
  1304. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/index.js +1 -1
  1305. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/package-json.js +30 -9
  1306. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/Detector.js +1 -1
  1307. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/CamelCaseDetector.js +1 -1
  1308. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/ContainsDetector.js +1 -1
  1309. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/EndWithDetector.js +1 -1
  1310. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/KeywordsDetector.js +1 -1
  1311. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/index.js +1 -1
  1312. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/validate-version.js +1 -1
  1313. data/node_modules/eslint-plugin-sonarjs/cjs/plugin-rules.js +1 -1
  1314. data/node_modules/eslint-plugin-sonarjs/package.json +2 -8
  1315. data/node_modules/eslint-plugin-sonarjs/types/S3723/rule.d.ts +0 -1
  1316. data/node_modules/eslint-plugin-sonarjs/types/S3776/generated-meta.d.ts +8 -2
  1317. data/node_modules/eslint-plugin-sonarjs/types/S6418/generated-meta.d.ts +17 -0
  1318. data/node_modules/eslint-plugin-sonarjs/types/helpers/package-json.d.ts +17 -1
  1319. data/node_modules/eslint-plugin-sonarjs/types/plugin-rules.d.ts +0 -1
  1320. data/node_modules/eslint-plugin-sonarjs/types/plugin.d.ts +4 -9
  1321. data/node_modules/jscodeshift/CHANGELOG.md +63 -29
  1322. data/node_modules/jscodeshift/README.md +1 -0
  1323. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.input.js +1 -0
  1324. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.js +11 -0
  1325. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.output.js +1 -0
  1326. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.input.js +1 -0
  1327. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.js +7 -0
  1328. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.output.js +1 -0
  1329. data/node_modules/jscodeshift/dist/testUtils.js +30 -6
  1330. data/node_modules/jscodeshift/package.json +4 -2
  1331. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.input.js +1 -0
  1332. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.js +11 -0
  1333. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.output.js +1 -0
  1334. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.input.js +1 -0
  1335. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.js +7 -0
  1336. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.output.js +1 -0
  1337. data/node_modules/jscodeshift/src/testUtils.js +30 -6
  1338. data/node_modules/jscodeshift/website/package.json +1 -1
  1339. data/node_modules/prettier/LICENSE +0 -4373
  1340. data/node_modules/prettier/README.md +7 -8
  1341. data/node_modules/prettier/THIRD-PARTY-NOTICES.md +4416 -0
  1342. data/node_modules/prettier/doc.js +237 -213
  1343. data/node_modules/prettier/doc.mjs +237 -213
  1344. data/node_modules/prettier/index.cjs +9 -1
  1345. data/node_modules/prettier/index.d.ts +13 -3
  1346. data/node_modules/prettier/index.mjs +619 -439
  1347. data/node_modules/prettier/internal/cli.mjs +1923 -945
  1348. data/node_modules/prettier/package.json +2 -1
  1349. data/node_modules/prettier/plugins/acorn.js +1 -1
  1350. data/node_modules/prettier/plugins/acorn.mjs +1 -1
  1351. data/node_modules/prettier/plugins/angular.js +2 -2
  1352. data/node_modules/prettier/plugins/angular.mjs +2 -2
  1353. data/node_modules/prettier/plugins/babel.js +8 -8
  1354. data/node_modules/prettier/plugins/babel.mjs +8 -8
  1355. data/node_modules/prettier/plugins/estree.js +27 -27
  1356. data/node_modules/prettier/plugins/estree.mjs +27 -27
  1357. data/node_modules/prettier/plugins/flow.js +15 -15
  1358. data/node_modules/prettier/plugins/flow.mjs +15 -15
  1359. data/node_modules/prettier/plugins/glimmer.js +21 -21
  1360. data/node_modules/prettier/plugins/glimmer.mjs +22 -22
  1361. data/node_modules/prettier/plugins/graphql.js +16 -16
  1362. data/node_modules/prettier/plugins/graphql.mjs +16 -16
  1363. data/node_modules/prettier/plugins/html.js +17 -17
  1364. data/node_modules/prettier/plugins/html.mjs +17 -17
  1365. data/node_modules/prettier/plugins/markdown.js +42 -42
  1366. data/node_modules/prettier/plugins/markdown.mjs +42 -42
  1367. data/node_modules/prettier/plugins/meriyah.js +2 -2
  1368. data/node_modules/prettier/plugins/meriyah.mjs +2 -2
  1369. data/node_modules/prettier/plugins/postcss.js +26 -26
  1370. data/node_modules/prettier/plugins/postcss.mjs +26 -26
  1371. data/node_modules/prettier/plugins/typescript.js +10 -10
  1372. data/node_modules/prettier/plugins/typescript.mjs +11 -11
  1373. data/node_modules/prettier/plugins/yaml.js +65 -65
  1374. data/node_modules/prettier/plugins/yaml.mjs +65 -65
  1375. data/node_modules/prettier/standalone.d.ts +1 -1
  1376. data/node_modules/prettier/standalone.js +24 -24
  1377. data/node_modules/prettier/standalone.mjs +24 -24
  1378. data/node_modules/semver/README.md +14 -4
  1379. data/node_modules/semver/bin/semver.js +2 -1
  1380. data/node_modules/semver/classes/semver.js +22 -6
  1381. data/node_modules/semver/functions/diff.js +5 -12
  1382. data/node_modules/semver/internal/re.js +2 -0
  1383. data/node_modules/semver/package.json +8 -7
  1384. data/package.json +8 -9
  1385. metadata +44 -26
  1386. data/node_modules/.bin/ncu +0 -1
  1387. data/node_modules/.bin/npm-check-updates +0 -1
  1388. data/node_modules/npm-check-updates/LICENSE +0 -13
  1389. data/node_modules/npm-check-updates/README.md +0 -839
  1390. data/node_modules/npm-check-updates/build/cli.d.ts +0 -1
  1391. data/node_modules/npm-check-updates/build/cli.js +0 -29
  1392. data/node_modules/npm-check-updates/build/cli.js.map +0 -1
  1393. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js +0 -6
  1394. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js.map +0 -1
  1395. data/node_modules/npm-check-updates/build/index-BnIU43YD.js +0 -2
  1396. data/node_modules/npm-check-updates/build/index-BnIU43YD.js.map +0 -1
  1397. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js +0 -2
  1398. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js.map +0 -1
  1399. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js +0 -58
  1400. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js.map +0 -1
  1401. data/node_modules/npm-check-updates/build/index-_DliZFxU.js +0 -5
  1402. data/node_modules/npm-check-updates/build/index-_DliZFxU.js.map +0 -1
  1403. data/node_modules/npm-check-updates/build/index.d.ts +0 -211
  1404. data/node_modules/npm-check-updates/build/index.js +0 -551
  1405. data/node_modules/npm-check-updates/build/index.js.map +0 -1
  1406. data/node_modules/npm-check-updates/package.json +0 -179
  1407. /data/node_modules/@eslint/plugin-kit/dist/cjs/{types.ts → types.cts} +0 -0
@@ -1,54 +1,54 @@
1
- (function(f){function e(){var i=f();return i.default||i}if(typeof exports=="object"&&typeof module=="object")module.exports=e();else if(typeof define=="function"&&define.amd)define(e);else{var t=typeof globalThis<"u"?globalThis:typeof global<"u"?global:typeof self<"u"?self:this||{};t.prettierPlugins=t.prettierPlugins||{},t.prettierPlugins.postcss=e()}})(function(){"use strict";var pl=Object.create;var Tt=Object.defineProperty;var hl=Object.getOwnPropertyDescriptor;var dl=Object.getOwnPropertyNames;var ml=Object.getPrototypeOf,yl=Object.prototype.hasOwnProperty;var g=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Xs=(t,e)=>{for(var s in e)Tt(t,s,{get:e[s],enumerable:!0})},Zs=(t,e,s,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of dl(e))!yl.call(t,n)&&n!==s&&Tt(t,n,{get:()=>e[n],enumerable:!(r=hl(e,n))||r.enumerable});return t};var xe=(t,e,s)=>(s=t!=null?pl(ml(t)):{},Zs(e||!t||!t.__esModule?Tt(s,"default",{value:t,enumerable:!0}):s,t)),gl=t=>Zs(Tt({},"__esModule",{value:!0}),t);var xi=g((dv,rs)=>{var _=String,vi=function(){return{isColorSupported:!1,reset:_,bold:_,dim:_,italic:_,underline:_,inverse:_,hidden:_,strikethrough:_,black:_,red:_,green:_,yellow:_,blue:_,magenta:_,cyan:_,white:_,gray:_,bgBlack:_,bgRed:_,bgGreen:_,bgYellow:_,bgBlue:_,bgMagenta:_,bgCyan:_,bgWhite:_,blackBright:_,redBright:_,greenBright:_,yellowBright:_,blueBright:_,magentaBright:_,cyanBright:_,whiteBright:_,bgBlackBright:_,bgRedBright:_,bgGreenBright:_,bgYellowBright:_,bgBlueBright:_,bgMagentaBright:_,bgCyanBright:_,bgWhiteBright:_}};rs.exports=vi();rs.exports.createColors=vi});var ss=g(()=>{});var Yt=g((gv,ki)=>{"use strict";var bi=xi(),_i=ss(),ot=class t extends Error{constructor(e,s,r,n,i,o){super(e),this.name="CssSyntaxError",this.reason=e,i&&(this.file=i),n&&(this.source=n),o&&(this.plugin=o),typeof s<"u"&&typeof r<"u"&&(typeof s=="number"?(this.line=s,this.column=r):(this.line=s.line,this.column=s.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let s=this.source;e==null&&(e=bi.isColorSupported);let r=f=>f,n=f=>f,i=f=>f;if(e){let{bold:f,gray:p,red:l}=bi.createColors(!0);n=y=>f(l(y)),r=y=>p(y),_i&&(i=y=>_i(y))}let o=s.split(/\r?\n/),u=Math.max(this.line-3,0),a=Math.min(this.line+2,o.length),c=String(a).length;return o.slice(u,a).map((f,p)=>{let l=u+1+p,y=" "+(" "+l).slice(-c)+" | ";if(l===this.line){if(f.length>160){let h=20,d=Math.max(0,this.column-h),m=Math.max(this.column+h,this.endColumn+h),b=f.slice(d,m),w=r(y.replace(/\d/g," "))+f.slice(0,Math.min(this.column-1,h-1)).replace(/[^\t]/g," ");return n(">")+r(y)+i(b)+`
1
+ (function(f){function e(){var i=f();return i.default||i}if(typeof exports=="object"&&typeof module=="object")module.exports=e();else if(typeof define=="function"&&define.amd)define(e);else{var t=typeof globalThis<"u"?globalThis:typeof global<"u"?global:typeof self<"u"?self:this||{};t.prettierPlugins=t.prettierPlugins||{},t.prettierPlugins.postcss=e()}})(function(){"use strict";var hl=Object.create;var Tt=Object.defineProperty;var dl=Object.getOwnPropertyDescriptor;var ml=Object.getOwnPropertyNames;var yl=Object.getPrototypeOf,gl=Object.prototype.hasOwnProperty;var g=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Zs=(t,e)=>{for(var s in e)Tt(t,s,{get:e[s],enumerable:!0})},en=(t,e,s,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of ml(e))!gl.call(t,n)&&n!==s&&Tt(t,n,{get:()=>e[n],enumerable:!(r=dl(e,n))||r.enumerable});return t};var xe=(t,e,s)=>(s=t!=null?hl(yl(t)):{},en(e||!t||!t.__esModule?Tt(s,"default",{value:t,enumerable:!0}):s,t)),wl=t=>en(Tt({},"__esModule",{value:!0}),t);var bi=g((bv,ss)=>{var _=String,xi=function(){return{isColorSupported:!1,reset:_,bold:_,dim:_,italic:_,underline:_,inverse:_,hidden:_,strikethrough:_,black:_,red:_,green:_,yellow:_,blue:_,magenta:_,cyan:_,white:_,gray:_,bgBlack:_,bgRed:_,bgGreen:_,bgYellow:_,bgBlue:_,bgMagenta:_,bgCyan:_,bgWhite:_,blackBright:_,redBright:_,greenBright:_,yellowBright:_,blueBright:_,magentaBright:_,cyanBright:_,whiteBright:_,bgBlackBright:_,bgRedBright:_,bgGreenBright:_,bgYellowBright:_,bgBlueBright:_,bgMagentaBright:_,bgCyanBright:_,bgWhiteBright:_}};ss.exports=xi();ss.exports.createColors=xi});var ns=g(()=>{});var Yt=g((kv,ki)=>{"use strict";var _i=bi(),Ei=ns(),ot=class t extends Error{constructor(e,s,r,n,i,o){super(e),this.name="CssSyntaxError",this.reason=e,i&&(this.file=i),n&&(this.source=n),o&&(this.plugin=o),typeof s<"u"&&typeof r<"u"&&(typeof s=="number"?(this.line=s,this.column=r):(this.line=s.line,this.column=s.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let s=this.source;e==null&&(e=_i.isColorSupported);let r=f=>f,n=f=>f,i=f=>f;if(e){let{bold:f,gray:p,red:l}=_i.createColors(!0);n=y=>f(l(y)),r=y=>p(y),Ei&&(i=y=>Ei(y))}let o=s.split(/\r?\n/),u=Math.max(this.line-3,0),a=Math.min(this.line+2,o.length),c=String(a).length;return o.slice(u,a).map((f,p)=>{let l=u+1+p,y=" "+(" "+l).slice(-c)+" | ";if(l===this.line){if(f.length>160){let h=20,d=Math.max(0,this.column-h),m=Math.max(this.column+h,this.endColumn+h),b=f.slice(d,m),w=r(y.replace(/\d/g," "))+f.slice(0,Math.min(this.column-1,h-1)).replace(/[^\t]/g," ");return n(">")+r(y)+i(b)+`
2
2
  `+w+n("^")}let x=r(y.replace(/\d/g," "))+f.slice(0,this.column-1).replace(/[^\t]/g," ");return n(">")+r(y)+i(f)+`
3
3
  `+x+n("^")}return" "+r(y)+i(f)}).join(`
4
4
  `)}toString(){let e=this.showSourceCode();return e&&(e=`
5
5
 
6
6
  `+e+`
7
- `),this.name+": "+this.message+e}};ki.exports=ot;ot.default=ot});var zt=g((wv,Si)=>{"use strict";var Ei={after:`
7
+ `),this.name+": "+this.message+e}};ki.exports=ot;ot.default=ot});var Vt=g((Sv,Ti)=>{"use strict";var Si={after:`
8
8
  `,beforeClose:`
9
9
  `,beforeComment:`
10
10
  `,beforeDecl:`
11
11
  `,beforeOpen:" ",beforeRule:`
12
- `,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function mc(t){return t[0].toUpperCase()+t.slice(1)}var at=class{constructor(e){this.builder=e}atrule(e,s){let r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(typeof e.raws.afterName<"u"?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{let i=(e.raws.between||"")+(s?";":"");this.builder(r+n+i,e)}}beforeAfter(e,s){let r;e.type==="decl"?r=this.raw(e,null,"beforeDecl"):e.type==="comment"?r=this.raw(e,null,"beforeComment"):s==="before"?r=this.raw(e,null,"beforeRule"):r=this.raw(e,null,"beforeClose");let n=e.parent,i=0;for(;n&&n.type!=="root";)i+=1,n=n.parent;if(r.includes(`
13
- `)){let o=this.raw(e,null,"indent");if(o.length)for(let u=0;u<i;u++)r+=o}return r}block(e,s){let r=this.raw(e,"between","beforeOpen");this.builder(s+r+"{",e,"start");let n;e.nodes&&e.nodes.length?(this.body(e),n=this.raw(e,"after")):n=this.raw(e,"after","emptyBody"),n&&this.builder(n),this.builder("}",e,"end")}body(e){let s=e.nodes.length-1;for(;s>0&&e.nodes[s].type==="comment";)s-=1;let r=this.raw(e,"semicolon");for(let n=0;n<e.nodes.length;n++){let i=e.nodes[n],o=this.raw(i,"before");o&&this.builder(o),this.stringify(i,s!==n||r)}}comment(e){let s=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder("/*"+s+e.text+r+"*/",e)}decl(e,s){let r=this.raw(e,"between","colon"),n=e.prop+r+this.rawValue(e,"value");e.important&&(n+=e.raws.important||" !important"),s&&(n+=";"),this.builder(n,e)}document(e){this.body(e)}raw(e,s,r){let n;if(r||(r=s),s&&(n=e.raws[s],typeof n<"u"))return n;let i=e.parent;if(r==="before"&&(!i||i.type==="root"&&i.first===e||i&&i.type==="document"))return"";if(!i)return Ei[r];let o=e.root();if(o.rawCache||(o.rawCache={}),typeof o.rawCache[r]<"u")return o.rawCache[r];if(r==="before"||r==="after")return this.beforeAfter(e,r);{let u="raw"+mc(r);this[u]?n=this[u](o,e):o.walk(a=>{if(n=a.raws[s],typeof n<"u")return!1})}return typeof n>"u"&&(n=Ei[r]),o.rawCache[r]=n,n}rawBeforeClose(e){let s;return e.walk(r=>{if(r.nodes&&r.nodes.length>0&&typeof r.raws.after<"u")return s=r.raws.after,s.includes(`
12
+ `,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function wc(t){return t[0].toUpperCase()+t.slice(1)}var at=class{constructor(e){this.builder=e}atrule(e,s){let r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(typeof e.raws.afterName<"u"?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{let i=(e.raws.between||"")+(s?";":"");this.builder(r+n+i,e)}}beforeAfter(e,s){let r;e.type==="decl"?r=this.raw(e,null,"beforeDecl"):e.type==="comment"?r=this.raw(e,null,"beforeComment"):s==="before"?r=this.raw(e,null,"beforeRule"):r=this.raw(e,null,"beforeClose");let n=e.parent,i=0;for(;n&&n.type!=="root";)i+=1,n=n.parent;if(r.includes(`
13
+ `)){let o=this.raw(e,null,"indent");if(o.length)for(let u=0;u<i;u++)r+=o}return r}block(e,s){let r=this.raw(e,"between","beforeOpen");this.builder(s+r+"{",e,"start");let n;e.nodes&&e.nodes.length?(this.body(e),n=this.raw(e,"after")):n=this.raw(e,"after","emptyBody"),n&&this.builder(n),this.builder("}",e,"end")}body(e){let s=e.nodes.length-1;for(;s>0&&e.nodes[s].type==="comment";)s-=1;let r=this.raw(e,"semicolon");for(let n=0;n<e.nodes.length;n++){let i=e.nodes[n],o=this.raw(i,"before");o&&this.builder(o),this.stringify(i,s!==n||r)}}comment(e){let s=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder("/*"+s+e.text+r+"*/",e)}decl(e,s){let r=this.raw(e,"between","colon"),n=e.prop+r+this.rawValue(e,"value");e.important&&(n+=e.raws.important||" !important"),s&&(n+=";"),this.builder(n,e)}document(e){this.body(e)}raw(e,s,r){let n;if(r||(r=s),s&&(n=e.raws[s],typeof n<"u"))return n;let i=e.parent;if(r==="before"&&(!i||i.type==="root"&&i.first===e||i&&i.type==="document"))return"";if(!i)return Si[r];let o=e.root();if(o.rawCache||(o.rawCache={}),typeof o.rawCache[r]<"u")return o.rawCache[r];if(r==="before"||r==="after")return this.beforeAfter(e,r);{let u="raw"+wc(r);this[u]?n=this[u](o,e):o.walk(a=>{if(n=a.raws[s],typeof n<"u")return!1})}return typeof n>"u"&&(n=Si[r]),o.rawCache[r]=n,n}rawBeforeClose(e){let s;return e.walk(r=>{if(r.nodes&&r.nodes.length>0&&typeof r.raws.after<"u")return s=r.raws.after,s.includes(`
14
14
  `)&&(s=s.replace(/[^\n]+$/,"")),!1}),s&&(s=s.replace(/\S/g,"")),s}rawBeforeComment(e,s){let r;return e.walkComments(n=>{if(typeof n.raws.before<"u")return r=n.raws.before,r.includes(`
15
15
  `)&&(r=r.replace(/[^\n]+$/,"")),!1}),typeof r>"u"?r=this.raw(s,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeDecl(e,s){let r;return e.walkDecls(n=>{if(typeof n.raws.before<"u")return r=n.raws.before,r.includes(`
16
16
  `)&&(r=r.replace(/[^\n]+$/,"")),!1}),typeof r>"u"?r=this.raw(s,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeOpen(e){let s;return e.walk(r=>{if(r.type!=="decl"&&(s=r.raws.between,typeof s<"u"))return!1}),s}rawBeforeRule(e){let s;return e.walk(r=>{if(r.nodes&&(r.parent!==e||e.first!==r)&&typeof r.raws.before<"u")return s=r.raws.before,s.includes(`
17
17
  `)&&(s=s.replace(/[^\n]+$/,"")),!1}),s&&(s=s.replace(/\S/g,"")),s}rawColon(e){let s;return e.walkDecls(r=>{if(typeof r.raws.between<"u")return s=r.raws.between.replace(/[^\s:]/g,""),!1}),s}rawEmptyBody(e){let s;return e.walk(r=>{if(r.nodes&&r.nodes.length===0&&(s=r.raws.after,typeof s<"u"))return!1}),s}rawIndent(e){if(e.raws.indent)return e.raws.indent;let s;return e.walk(r=>{let n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&typeof r.raws.before<"u"){let i=r.raws.before.split(`
18
- `);return s=i[i.length-1],s=s.replace(/\S/g,""),!1}}),s}rawSemicolon(e){let s;return e.walk(r=>{if(r.nodes&&r.nodes.length&&r.last.type==="decl"&&(s=r.raws.semicolon,typeof s<"u"))return!1}),s}rawValue(e,s){let r=e[s],n=e.raws[s];return n&&n.value===r?n.raw:r}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,s){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,s)}};Si.exports=at;at.default=at});var ut=g((vv,Ti)=>{"use strict";var yc=zt();function ns(t,e){new yc(e).stringify(t)}Ti.exports=ns;ns.default=ns});var Vt=g((xv,is)=>{"use strict";is.exports.isClean=Symbol("isClean");is.exports.my=Symbol("my")});var pt=g((bv,Ci)=>{"use strict";var gc=Yt(),wc=zt(),vc=ut(),{isClean:lt,my:xc}=Vt();function os(t,e){let s=new t.constructor;for(let r in t){if(!Object.prototype.hasOwnProperty.call(t,r)||r==="proxyCache")continue;let n=t[r],i=typeof n;r==="parent"&&i==="object"?e&&(s[r]=e):r==="source"?s[r]=n:Array.isArray(n)?s[r]=n.map(o=>os(o,s)):(i==="object"&&n!==null&&(n=os(n)),s[r]=n)}return s}function ct(t,e){if(e&&typeof e.offset<"u")return e.offset;let s=1,r=1,n=0;for(let i=0;i<t.length;i++){if(r===e.line&&s===e.column){n=i;break}t[i]===`
19
- `?(s=1,r+=1):s+=1}return n}var ft=class{constructor(e={}){this.raws={},this[lt]=!1,this[xc]=!0;for(let s in e)if(s==="nodes"){this.nodes=[];for(let r of e[s])typeof r.clone=="function"?this.append(r.clone()):this.append(r)}else this[s]=e[s]}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let s=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${s.input.from}:${s.start.line}:${s.start.column}$&`)}return e}after(e){return this.parent.insertAfter(this,e),this}assign(e={}){for(let s in e)this[s]=e[s];return this}before(e){return this.parent.insertBefore(this,e),this}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}clone(e={}){let s=os(this);for(let r in e)s[r]=e[r];return s}cloneAfter(e={}){let s=this.clone(e);return this.parent.insertAfter(this,s),s}cloneBefore(e={}){let s=this.clone(e);return this.parent.insertBefore(this,s),s}error(e,s={}){if(this.source){let{end:r,start:n}=this.rangeBy(s);return this.source.input.error(e,{column:n.column,line:n.line},{column:r.column,line:r.line},s)}return new gc(e)}getProxyProcessor(){return{get(e,s){return s==="proxyOf"?e:s==="root"?()=>e.root().toProxy():e[s]},set(e,s,r){return e[s]===r||(e[s]=r,(s==="prop"||s==="value"||s==="name"||s==="params"||s==="important"||s==="text")&&e.markDirty()),!0}}}markClean(){this[lt]=!0}markDirty(){if(this[lt]){this[lt]=!1;let e=this;for(;e=e.parent;)e[lt]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e){let s=this.source.start;if(e.index)s=this.positionInside(e.index);else if(e.word){let n=this.source.input.css.slice(ct(this.source.input.css,this.source.start),ct(this.source.input.css,this.source.end)).indexOf(e.word);n!==-1&&(s=this.positionInside(n))}return s}positionInside(e){let s=this.source.start.column,r=this.source.start.line,n=ct(this.source.input.css,this.source.start),i=n+e;for(let o=n;o<i;o++)this.source.input.css[o]===`
20
- `?(s=1,r+=1):s+=1;return{column:s,line:r}}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}rangeBy(e){let s={column:this.source.start.column,line:this.source.start.line},r=this.source.end?{column:this.source.end.column+1,line:this.source.end.line}:{column:s.column+1,line:s.line};if(e.word){let i=this.source.input.css.slice(ct(this.source.input.css,this.source.start),ct(this.source.input.css,this.source.end)).indexOf(e.word);i!==-1&&(s=this.positionInside(i),r=this.positionInside(i+e.word.length))}else e.start?s={column:e.start.column,line:e.start.line}:e.index&&(s=this.positionInside(e.index)),e.end?r={column:e.end.column,line:e.end.line}:typeof e.endIndex=="number"?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<s.line||r.line===s.line&&r.column<=s.column)&&(r={column:s.column+1,line:s.line}),{end:r,start:s}}raw(e,s){return new wc().raw(this,e,s)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...e){if(this.parent){let s=this,r=!1;for(let n of e)n===this?r=!0:r?(this.parent.insertAfter(s,n),s=n):this.parent.insertBefore(s,n);r||this.remove()}return this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}toJSON(e,s){let r={},n=s==null;s=s||new Map;let i=0;for(let o in this){if(!Object.prototype.hasOwnProperty.call(this,o)||o==="parent"||o==="proxyCache")continue;let u=this[o];if(Array.isArray(u))r[o]=u.map(a=>typeof a=="object"&&a.toJSON?a.toJSON(null,s):a);else if(typeof u=="object"&&u.toJSON)r[o]=u.toJSON(null,s);else if(o==="source"){let a=s.get(u.input);a==null&&(a=i,s.set(u.input,i),i++),r[o]={end:u.end,inputId:a,start:u.start}}else r[o]=u}return n&&(r.inputs=[...s.keys()].map(o=>o.toJSON())),r}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=vc){e.stringify&&(e=e.stringify);let s="";return e(this,r=>{s+=r}),s}warn(e,s,r){let n={node:this};for(let i in r)n[i]=r[i];return e.warn(s,n)}get proxyOf(){return this}};Ci.exports=ft;ft.default=ft});var Re=g((_v,Oi)=>{"use strict";var bc=pt(),ht=class extends bc{constructor(e){super(e),this.type="comment"}};Oi.exports=ht;ht.default=ht});var mt=g((kv,Ai)=>{"use strict";var _c=pt(),dt=class extends _c{constructor(e){e&&typeof e.value<"u"&&typeof e.value!="string"&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}};Ai.exports=dt;dt.default=dt});var ue=g((Ev,Mi)=>{"use strict";var Ni=Re(),Pi=mt(),kc=pt(),{isClean:Ri,my:Ii}=Vt(),as,qi,Li,us;function Di(t){return t.map(e=>(e.nodes&&(e.nodes=Di(e.nodes)),delete e.source,e))}function Bi(t){if(t[Ri]=!1,t.proxyOf.nodes)for(let e of t.proxyOf.nodes)Bi(e)}var V=class t extends kc{append(...e){for(let s of e){let r=this.normalize(s,this.last);for(let n of r)this.proxyOf.nodes.push(n)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let s of this.nodes)s.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let s=this.getIterator(),r,n;for(;this.indexes[s]<this.proxyOf.nodes.length&&(r=this.indexes[s],n=e(this.proxyOf.nodes[r],r),n!==!1);)this.indexes[s]+=1;return delete this.indexes[s],n}every(e){return this.nodes.every(e)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}getProxyProcessor(){return{get(e,s){return s==="proxyOf"?e:e[s]?s==="each"||typeof s=="string"&&s.startsWith("walk")?(...r)=>e[s](...r.map(n=>typeof n=="function"?(i,o)=>n(i.toProxy(),o):n)):s==="every"||s==="some"?r=>e[s]((n,...i)=>r(n.toProxy(),...i)):s==="root"?()=>e.root().toProxy():s==="nodes"?e.nodes.map(r=>r.toProxy()):s==="first"||s==="last"?e[s].toProxy():e[s]:e[s]},set(e,s,r){return e[s]===r||(e[s]=r,(s==="name"||s==="params"||s==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,s){let r=this.index(e),n=this.normalize(s,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let o of n)this.proxyOf.nodes.splice(r+1,0,o);let i;for(let o in this.indexes)i=this.indexes[o],r<i&&(this.indexes[o]=i+n.length);return this.markDirty(),this}insertBefore(e,s){let r=this.index(e),n=r===0?"prepend":!1,i=this.normalize(s,this.proxyOf.nodes[r],n).reverse();r=this.index(e);for(let u of i)this.proxyOf.nodes.splice(r,0,u);let o;for(let u in this.indexes)o=this.indexes[u],r<=o&&(this.indexes[u]=o+i.length);return this.markDirty(),this}normalize(e,s){if(typeof e=="string")e=Di(qi(e).nodes);else if(typeof e>"u")e=[];else if(Array.isArray(e)){e=e.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value>"u")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new Pi(e)]}else if(e.selector||e.selectors)e=[new us(e)];else if(e.name)e=[new as(e)];else if(e.text)e=[new Ni(e)];else throw new Error("Unknown node type in node creation");return e.map(n=>(n[Ii]||t.rebuild(n),n=n.proxyOf,n.parent&&n.parent.removeChild(n),n[Ri]&&Bi(n),n.raws||(n.raws={}),typeof n.raws.before>"u"&&s&&typeof s.raws.before<"u"&&(n.raws.before=s.raws.before.replace(/\S/g,"")),n.parent=this.proxyOf,n))}prepend(...e){e=e.reverse();for(let s of e){let r=this.normalize(s,this.first,"prepend").reverse();for(let n of r)this.proxyOf.nodes.unshift(n);for(let n in this.indexes)this.indexes[n]=this.indexes[n]+r.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let s;for(let r in this.indexes)s=this.indexes[r],s>=e&&(this.indexes[r]=s-1);return this.markDirty(),this}replaceValues(e,s,r){return r||(r=s,s={}),this.walkDecls(n=>{s.props&&!s.props.includes(n.prop)||s.fast&&!n.value.includes(s.fast)||(n.value=n.value.replace(e,r))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((s,r)=>{let n;try{n=e(s,r)}catch(i){throw s.addToError(i)}return n!==!1&&s.walk&&(n=s.walk(e)),n})}walkAtRules(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="atrule"&&e.test(r.name))return s(r,n)}):this.walk((r,n)=>{if(r.type==="atrule"&&r.name===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="atrule")return s(r,n)}))}walkComments(e){return this.walk((s,r)=>{if(s.type==="comment")return e(s,r)})}walkDecls(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="decl"&&e.test(r.prop))return s(r,n)}):this.walk((r,n)=>{if(r.type==="decl"&&r.prop===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="decl")return s(r,n)}))}walkRules(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="rule"&&e.test(r.selector))return s(r,n)}):this.walk((r,n)=>{if(r.type==="rule"&&r.selector===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="rule")return s(r,n)}))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}};V.registerParse=t=>{qi=t};V.registerRule=t=>{us=t};V.registerAtRule=t=>{as=t};V.registerRoot=t=>{Li=t};Mi.exports=V;V.default=V;V.rebuild=t=>{t.type==="atrule"?Object.setPrototypeOf(t,as.prototype):t.type==="rule"?Object.setPrototypeOf(t,us.prototype):t.type==="decl"?Object.setPrototypeOf(t,Pi.prototype):t.type==="comment"?Object.setPrototypeOf(t,Ni.prototype):t.type==="root"&&Object.setPrototypeOf(t,Li.prototype),t[Ii]=!0,t.nodes&&t.nodes.forEach(e=>{V.rebuild(e)})}});var Fi=g((Sv,Ui)=>{var Ec="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",Sc=(t,e=21)=>(s=e)=>{let r="",n=s;for(;n--;)r+=t[Math.random()*t.length|0];return r},Tc=(t=21)=>{let e="",s=t;for(;s--;)e+=Ec[Math.random()*64|0];return e};Ui.exports={nanoid:Tc,customAlphabet:Sc}});var $i=g(()=>{});var ls=g((Ov,Wi)=>{Wi.exports=class{}});var qe=g((Nv,Gi)=>{"use strict";var{nanoid:Cc}=Fi(),{isAbsolute:ps,resolve:hs}={},{SourceMapConsumer:Oc,SourceMapGenerator:Ac}=$i(),{fileURLToPath:Yi,pathToFileURL:Gt}={},zi=Yt(),Nc=ls(),cs=ss(),fs=Symbol("fromOffsetCache"),Pc=!!(Oc&&Ac),Vi=!!(hs&&ps),Ie=class{constructor(e,s={}){if(e===null||typeof e>"u"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\uFEFF"||this.css[0]==="\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,s.from&&(!Vi||/^\w+:\/\//.test(s.from)||ps(s.from)?this.file=s.from:this.file=hs(s.from)),Vi&&Pc){let r=new Nc(this.css,s);if(r.text){this.map=r;let n=r.consumer().file;!this.file&&n&&(this.file=this.mapResolve(n))}}this.file||(this.id="<input css "+Cc(6)+">"),this.map&&(this.map.file=this.from)}error(e,s,r,n={}){let i,o,u;if(s&&typeof s=="object"){let c=s,f=r;if(typeof c.offset=="number"){let p=this.fromOffset(c.offset);s=p.line,r=p.col}else s=c.line,r=c.column;if(typeof f.offset=="number"){let p=this.fromOffset(f.offset);o=p.line,i=p.col}else o=f.line,i=f.column}else if(!r){let c=this.fromOffset(s);s=c.line,r=c.col}let a=this.origin(s,r,o,i);return a?u=new zi(e,a.endLine===void 0?a.line:{column:a.column,line:a.line},a.endLine===void 0?a.column:{column:a.endColumn,line:a.endLine},a.source,a.file,n.plugin):u=new zi(e,o===void 0?s:{column:r,line:s},o===void 0?r:{column:i,line:o},this.css,this.file,n.plugin),u.input={column:r,endColumn:i,endLine:o,line:s,source:this.css},this.file&&(Gt&&(u.input.url=Gt(this.file).toString()),u.input.file=this.file),u}fromOffset(e){let s,r;if(this[fs])r=this[fs];else{let i=this.css.split(`
21
- `);r=new Array(i.length);let o=0;for(let u=0,a=i.length;u<a;u++)r[u]=o,o+=i[u].length+1;this[fs]=r}s=r[r.length-1];let n=0;if(e>=s)n=r.length-1;else{let i=r.length-2,o;for(;n<i;)if(o=n+(i-n>>1),e<r[o])i=o-1;else if(e>=r[o+1])n=o+1;else{n=o;break}}return{col:e-r[n]+1,line:n+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:hs(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,s,r,n){if(!this.map)return!1;let i=this.map.consumer(),o=i.originalPositionFor({column:s,line:e});if(!o.source)return!1;let u;typeof r=="number"&&(u=i.originalPositionFor({column:n,line:r}));let a;ps(o.source)?a=Gt(o.source):a=new URL(o.source,this.map.consumer().sourceRoot||Gt(this.map.mapFile));let c={column:o.column,endColumn:u&&u.column,endLine:u&&u.line,line:o.line,url:a.toString()};if(a.protocol==="file:")if(Yi)c.file=Yi(a);else throw new Error("file: protocol is not available in this PostCSS build");let f=i.sourceContentFor(o.source);return f&&(c.source=f),c}toJSON(){let e={};for(let s of["hasBOM","css","file","id"])this[s]!=null&&(e[s]=this[s]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}get from(){return this.file||this.id}};Gi.exports=Ie;Ie.default=Ie;cs&&cs.registerInput&&cs.registerInput(Ie)});var jt=g((Pv,Hi)=>{"use strict";var ji=ue(),Le=class extends ji{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};Hi.exports=Le;Le.default=Le;ji.registerAtRule(Le)});var De=g((Rv,Xi)=>{"use strict";var Ki=ue(),Qi,Ji,le=class extends Ki{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,s,r){let n=super.normalize(e);if(s){if(r==="prepend")this.nodes.length>1?s.raws.before=this.nodes[1].raws.before:delete s.raws.before;else if(this.first!==s)for(let i of n)i.raws.before=s.raws.before}return n}removeChild(e,s){let r=this.index(e);return!s&&r===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}toResult(e={}){return new Qi(new Ji,this,e).stringify()}};le.registerLazyResult=t=>{Qi=t};le.registerProcessor=t=>{Ji=t};Xi.exports=le;le.default=le;Ki.registerRoot(le)});var ds=g((Iv,Zi)=>{"use strict";var yt={comma(t){return yt.split(t,[","],!0)},space(t){let e=[" ",`
22
- `," "];return yt.split(t,e)},split(t,e,s){let r=[],n="",i=!1,o=0,u=!1,a="",c=!1;for(let f of t)c?c=!1:f==="\\"?c=!0:u?f===a&&(u=!1):f==='"'||f==="'"?(u=!0,a=f):f==="("?o+=1:f===")"?o>0&&(o-=1):o===0&&e.includes(f)&&(i=!0),i?(n!==""&&r.push(n.trim()),n="",i=!1):n+=f;return(s||n!=="")&&r.push(n.trim()),r}};Zi.exports=yt;yt.default=yt});var Ht=g((qv,to)=>{"use strict";var eo=ue(),Rc=ds(),Be=class extends eo{constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return Rc.comma(this.selector)}set selectors(e){let s=this.selector?this.selector.match(/,\s*/):null,r=s?s[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}};to.exports=Be;Be.default=Be;eo.registerRule(Be)});var Jt=g((Lv,so)=>{"use strict";var Kt=/[\t\n\f\r "#'()/;[\\\]{}]/g,Qt=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,Ic=/.[\r\n"'(/\\]/,ro=/[\da-f]/i;so.exports=function(e,s={}){let r=e.css.valueOf(),n=s.ignoreErrors,i,o,u,a,c,f,p,l,y,x,h=r.length,d=0,m=[],b=[];function w(){return d}function v(W){throw e.error("Unclosed "+W,d)}function N(){return b.length===0&&d>=h}function F(W){if(b.length)return b.pop();if(d>=h)return;let T=W?W.ignoreUnclosed:!1;switch(i=r.charCodeAt(d),i){case 10:case 32:case 9:case 13:case 12:{a=d;do a+=1,i=r.charCodeAt(a);while(i===32||i===10||i===9||i===13||i===12);f=["space",r.slice(d,a)],d=a-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let C=String.fromCharCode(i);f=[C,C,d];break}case 40:{if(x=m.length?m.pop()[1]:"",y=r.charCodeAt(d+1),x==="url"&&y!==39&&y!==34&&y!==32&&y!==10&&y!==9&&y!==12&&y!==13){a=d;do{if(p=!1,a=r.indexOf(")",a+1),a===-1)if(n||T){a=d;break}else v("bracket");for(l=a;r.charCodeAt(l-1)===92;)l-=1,p=!p}while(p);f=["brackets",r.slice(d,a+1),d,a],d=a}else a=r.indexOf(")",d+1),o=r.slice(d,a+1),a===-1||Ic.test(o)?f=["(","(",d]:(f=["brackets",o,d,a],d=a);break}case 39:case 34:{c=i===39?"'":'"',a=d;do{if(p=!1,a=r.indexOf(c,a+1),a===-1)if(n||T){a=d+1;break}else v("string");for(l=a;r.charCodeAt(l-1)===92;)l-=1,p=!p}while(p);f=["string",r.slice(d,a+1),d,a],d=a;break}case 64:{Kt.lastIndex=d+1,Kt.test(r),Kt.lastIndex===0?a=r.length-1:a=Kt.lastIndex-2,f=["at-word",r.slice(d,a+1),d,a],d=a;break}case 92:{for(a=d,u=!0;r.charCodeAt(a+1)===92;)a+=1,u=!u;if(i=r.charCodeAt(a+1),u&&i!==47&&i!==32&&i!==10&&i!==9&&i!==13&&i!==12&&(a+=1,ro.test(r.charAt(a)))){for(;ro.test(r.charAt(a+1));)a+=1;r.charCodeAt(a+1)===32&&(a+=1)}f=["word",r.slice(d,a+1),d,a],d=a;break}default:{i===47&&r.charCodeAt(d+1)===42?(a=r.indexOf("*/",d+2)+1,a===0&&(n||T?a=r.length:v("comment")),f=["comment",r.slice(d,a+1),d,a],d=a):(Qt.lastIndex=d+1,Qt.test(r),Qt.lastIndex===0?a=r.length-1:a=Qt.lastIndex-2,f=["word",r.slice(d,a+1),d,a],m.push(f),d=a);break}}return d++,f}function H(W){b.push(W)}return{back:H,endOfFile:N,nextToken:F,position:w}}});var Xt=g((Dv,oo)=>{"use strict";var qc=jt(),Lc=Re(),Dc=mt(),Bc=De(),no=Ht(),Mc=Jt(),io={empty:!0,space:!0};function Uc(t){for(let e=t.length-1;e>=0;e--){let s=t[e],r=s[3]||s[2];if(r)return r}}var ms=class{constructor(e){this.input=e,this.root=new Bc,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let s=new qc;s.name=e[1].slice(1),s.name===""&&this.unnamedAtrule(s,e),this.init(s,e[2]);let r,n,i,o=!1,u=!1,a=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),r=e[0],r==="("||r==="["?c.push(r==="("?")":"]"):r==="{"&&c.length>0?c.push("}"):r===c[c.length-1]&&c.pop(),c.length===0)if(r===";"){s.source.end=this.getPosition(e[2]),s.source.end.offset++,this.semicolon=!0;break}else if(r==="{"){u=!0;break}else if(r==="}"){if(a.length>0){for(i=a.length-1,n=a[i];n&&n[0]==="space";)n=a[--i];n&&(s.source.end=this.getPosition(n[3]||n[2]),s.source.end.offset++)}this.end(e);break}else a.push(e);else a.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}s.raws.between=this.spacesAndCommentsFromEnd(a),a.length?(s.raws.afterName=this.spacesAndCommentsFromStart(a),this.raw(s,"params",a),o&&(e=a[a.length-1],s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++,this.spaces=s.raws.between,s.raws.between="")):(s.raws.afterName="",s.params=""),u&&(s.nodes=[],this.current=s)}checkMissedSemicolon(e){let s=this.colon(e);if(s===!1)return;let r=0,n;for(let i=s-1;i>=0&&(n=e[i],!(n[0]!=="space"&&(r+=1,r===2)));i--);throw this.input.error("Missed semicolon",n[0]==="word"?n[3]+1:n[2])}colon(e){let s=0,r,n,i;for(let[o,u]of e.entries()){if(n=u,i=n[0],i==="("&&(s+=1),i===")"&&(s-=1),s===0&&i===":")if(!r)this.doubleColon(n);else{if(r[0]==="word"&&r[1]==="progid")continue;return o}r=n}return!1}comment(e){let s=new Lc;this.init(s,e[2]),s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++;let r=e[1].slice(2,-2);if(/^\s*$/.test(r))s.text="",s.raws.left=r,s.raws.right="";else{let n=r.match(/^(\s*)([^]*\S)(\s*)$/);s.text=n[2],s.raws.left=n[1],s.raws.right=n[3]}}createTokenizer(){this.tokenizer=Mc(this.input)}decl(e,s){let r=new Dc;this.init(r,e[0][2]);let n=e[e.length-1];for(n[0]===";"&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(n[3]||n[2]||Uc(e)),r.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;r.prop+=e.shift()[1]}r.raws.between="";let i;for(;e.length;)if(i=e.shift(),i[0]===":"){r.raws.between+=i[1];break}else i[0]==="word"&&/\w/.test(i[1])&&this.unknownWord([i]),r.raws.between+=i[1];(r.prop[0]==="_"||r.prop[0]==="*")&&(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let o=[],u;for(;e.length&&(u=e[0][0],!(u!=="space"&&u!=="comment"));)o.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(i=e[c],i[1].toLowerCase()==="!important"){r.important=!0;let f=this.stringFrom(e,c);f=this.spacesFromEnd(e)+f,f!==" !important"&&(r.raws.important=f);break}else if(i[1].toLowerCase()==="important"){let f=e.slice(0),p="";for(let l=c;l>0;l--){let y=f[l][0];if(p.trim().startsWith("!")&&y!=="space")break;p=f.pop()[1]+p}p.trim().startsWith("!")&&(r.important=!0,r.raws.important=p,e=f)}if(i[0]!=="space"&&i[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(r.raws.between+=o.map(c=>c[1]).join(""),o=[]),this.raw(r,"value",o.concat(e),s),r.value.includes(":")&&!s&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let s=new no;this.init(s,e[2]),s.selector="",s.raws.between="",this.current=s}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let s=this.current.nodes[this.current.nodes.length-1];s&&s.type==="rule"&&!s.raws.ownSemicolon&&(s.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let s=this.input.fromOffset(e);return{column:s.col,line:s.line,offset:e}}init(e,s){this.current.push(e),e.source={input:this.input,start:this.getPosition(s)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let s=!1,r=null,n=!1,i=null,o=[],u=e[1].startsWith("--"),a=[],c=e;for(;c;){if(r=c[0],a.push(c),r==="("||r==="[")i||(i=c),o.push(r==="("?")":"]");else if(u&&n&&r==="{")i||(i=c),o.push("}");else if(o.length===0)if(r===";")if(n){this.decl(a,u);return}else break;else if(r==="{"){this.rule(a);return}else if(r==="}"){this.tokenizer.back(a.pop()),s=!0;break}else r===":"&&(n=!0);else r===o[o.length-1]&&(o.pop(),o.length===0&&(i=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(s=!0),o.length>0&&this.unclosedBracket(i),s&&n){if(!u)for(;a.length&&(c=a[a.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(a.pop());this.decl(a,u)}else this.unknownWord(a)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,s,r,n){let i,o,u=r.length,a="",c=!0,f,p;for(let l=0;l<u;l+=1)i=r[l],o=i[0],o==="space"&&l===u-1&&!n?c=!1:o==="comment"?(p=r[l-1]?r[l-1][0]:"empty",f=r[l+1]?r[l+1][0]:"empty",!io[p]&&!io[f]?a.slice(-1)===","?c=!1:a+=i[1]:c=!1):a+=i[1];if(!c){let l=r.reduce((y,x)=>y+x[1],"");e.raws[s]={raw:l,value:a}}e[s]=a}rule(e){e.pop();let s=new no;this.init(s,e[0][2]),s.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(s,"selector",e),this.current=s}spacesAndCommentsFromEnd(e){let s,r="";for(;e.length&&(s=e[e.length-1][0],!(s!=="space"&&s!=="comment"));)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let s,r="";for(;e.length&&(s=e[0][0],!(s!=="space"&&s!=="comment"));)r+=e.shift()[1];return r}spacesFromEnd(e){let s,r="";for(;e.length&&(s=e[e.length-1][0],s==="space");)r=e.pop()[1]+r;return r}stringFrom(e,s){let r="";for(let n=s;n<e.length;n++)r+=e[n][1];return e.splice(s,e.length-s),r}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unnamedAtrule(e,s){throw this.input.error("At-rule without name",{offset:s[2]},{offset:s[2]+s[1].length})}};oo.exports=ms});var gt=g((Bv,ao)=>{"use strict";var Fc=ue(),$c=qe(),Wc=Xt();function Zt(t,e){let s=new $c(t,e),r=new Wc(s);try{r.parse()}catch(n){throw n}return r.root}ao.exports=Zt;Zt.default=Zt;Fc.registerParse(Zt)});var uo=g((Mv,ys)=>{var Yc=Jt(),zc=qe();ys.exports={isInlineComment(t){if(t[0]==="word"&&t[1].slice(0,2)==="//"){let e=t,s=[],r,n;for(;t;){if(/\r?\n/.test(t[1])){if(/['"].*\r?\n/.test(t[1])){s.push(t[1].substring(0,t[1].indexOf(`
18
+ `);return s=i[i.length-1],s=s.replace(/\S/g,""),!1}}),s}rawSemicolon(e){let s;return e.walk(r=>{if(r.nodes&&r.nodes.length&&r.last.type==="decl"&&(s=r.raws.semicolon,typeof s<"u"))return!1}),s}rawValue(e,s){let r=e[s],n=e.raws[s];return n&&n.value===r?n.raw:r}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,s){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,s)}};Ti.exports=at;at.default=at});var ut=g((Tv,Ci)=>{"use strict";var vc=Vt();function is(t,e){new vc(e).stringify(t)}Ci.exports=is;is.default=is});var zt=g((Cv,os)=>{"use strict";os.exports.isClean=Symbol("isClean");os.exports.my=Symbol("my")});var pt=g((Ov,Oi)=>{"use strict";var xc=Yt(),bc=Vt(),_c=ut(),{isClean:lt,my:Ec}=zt();function as(t,e){let s=new t.constructor;for(let r in t){if(!Object.prototype.hasOwnProperty.call(t,r)||r==="proxyCache")continue;let n=t[r],i=typeof n;r==="parent"&&i==="object"?e&&(s[r]=e):r==="source"?s[r]=n:Array.isArray(n)?s[r]=n.map(o=>as(o,s)):(i==="object"&&n!==null&&(n=as(n)),s[r]=n)}return s}function ct(t,e){if(e&&typeof e.offset<"u")return e.offset;let s=1,r=1,n=0;for(let i=0;i<t.length;i++){if(r===e.line&&s===e.column){n=i;break}t[i]===`
19
+ `?(s=1,r+=1):s+=1}return n}var ft=class{get proxyOf(){return this}constructor(e={}){this.raws={},this[lt]=!1,this[Ec]=!0;for(let s in e)if(s==="nodes"){this.nodes=[];for(let r of e[s])typeof r.clone=="function"?this.append(r.clone()):this.append(r)}else this[s]=e[s]}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let s=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${s.input.from}:${s.start.line}:${s.start.column}$&`)}return e}after(e){return this.parent.insertAfter(this,e),this}assign(e={}){for(let s in e)this[s]=e[s];return this}before(e){return this.parent.insertBefore(this,e),this}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}clone(e={}){let s=as(this);for(let r in e)s[r]=e[r];return s}cloneAfter(e={}){let s=this.clone(e);return this.parent.insertAfter(this,s),s}cloneBefore(e={}){let s=this.clone(e);return this.parent.insertBefore(this,s),s}error(e,s={}){if(this.source){let{end:r,start:n}=this.rangeBy(s);return this.source.input.error(e,{column:n.column,line:n.line},{column:r.column,line:r.line},s)}return new xc(e)}getProxyProcessor(){return{get(e,s){return s==="proxyOf"?e:s==="root"?()=>e.root().toProxy():e[s]},set(e,s,r){return e[s]===r||(e[s]=r,(s==="prop"||s==="value"||s==="name"||s==="params"||s==="important"||s==="text")&&e.markDirty()),!0}}}markClean(){this[lt]=!0}markDirty(){if(this[lt]){this[lt]=!1;let e=this;for(;e=e.parent;)e[lt]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e){let s=this.source.start;if(e.index)s=this.positionInside(e.index);else if(e.word){let r="document"in this.source.input?this.source.input.document:this.source.input.css,i=r.slice(ct(r,this.source.start),ct(r,this.source.end)).indexOf(e.word);i!==-1&&(s=this.positionInside(i))}return s}positionInside(e){let s=this.source.start.column,r=this.source.start.line,n="document"in this.source.input?this.source.input.document:this.source.input.css,i=ct(n,this.source.start),o=i+e;for(let u=i;u<o;u++)n[u]===`
20
+ `?(s=1,r+=1):s+=1;return{column:s,line:r}}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}rangeBy(e){let s={column:this.source.start.column,line:this.source.start.line},r=this.source.end?{column:this.source.end.column+1,line:this.source.end.line}:{column:s.column+1,line:s.line};if(e.word){let n="document"in this.source.input?this.source.input.document:this.source.input.css,o=n.slice(ct(n,this.source.start),ct(n,this.source.end)).indexOf(e.word);o!==-1&&(s=this.positionInside(o),r=this.positionInside(o+e.word.length))}else e.start?s={column:e.start.column,line:e.start.line}:e.index&&(s=this.positionInside(e.index)),e.end?r={column:e.end.column,line:e.end.line}:typeof e.endIndex=="number"?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<s.line||r.line===s.line&&r.column<=s.column)&&(r={column:s.column+1,line:s.line}),{end:r,start:s}}raw(e,s){return new bc().raw(this,e,s)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...e){if(this.parent){let s=this,r=!1;for(let n of e)n===this?r=!0:r?(this.parent.insertAfter(s,n),s=n):this.parent.insertBefore(s,n);r||this.remove()}return this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}toJSON(e,s){let r={},n=s==null;s=s||new Map;let i=0;for(let o in this){if(!Object.prototype.hasOwnProperty.call(this,o)||o==="parent"||o==="proxyCache")continue;let u=this[o];if(Array.isArray(u))r[o]=u.map(a=>typeof a=="object"&&a.toJSON?a.toJSON(null,s):a);else if(typeof u=="object"&&u.toJSON)r[o]=u.toJSON(null,s);else if(o==="source"){let a=s.get(u.input);a==null&&(a=i,s.set(u.input,i),i++),r[o]={end:u.end,inputId:a,start:u.start}}else r[o]=u}return n&&(r.inputs=[...s.keys()].map(o=>o.toJSON())),r}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=_c){e.stringify&&(e=e.stringify);let s="";return e(this,r=>{s+=r}),s}warn(e,s,r){let n={node:this};for(let i in r)n[i]=r[i];return e.warn(s,n)}};Oi.exports=ft;ft.default=ft});var Re=g((Av,Ai)=>{"use strict";var kc=pt(),ht=class extends kc{constructor(e){super(e),this.type="comment"}};Ai.exports=ht;ht.default=ht});var mt=g((Nv,Ni)=>{"use strict";var Sc=pt(),dt=class extends Sc{get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}constructor(e){e&&typeof e.value<"u"&&typeof e.value!="string"&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}};Ni.exports=dt;dt.default=dt});var le=g((Pv,Ui)=>{"use strict";var Pi=Re(),Ri=mt(),Tc=pt(),{isClean:Ii,my:qi}=zt(),us,Li,Di,ls;function Bi(t){return t.map(e=>(e.nodes&&(e.nodes=Bi(e.nodes)),delete e.source,e))}function Mi(t){if(t[Ii]=!1,t.proxyOf.nodes)for(let e of t.proxyOf.nodes)Mi(e)}var z=class t extends Tc{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...e){for(let s of e){let r=this.normalize(s,this.last);for(let n of r)this.proxyOf.nodes.push(n)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let s of this.nodes)s.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let s=this.getIterator(),r,n;for(;this.indexes[s]<this.proxyOf.nodes.length&&(r=this.indexes[s],n=e(this.proxyOf.nodes[r],r),n!==!1);)this.indexes[s]+=1;return delete this.indexes[s],n}every(e){return this.nodes.every(e)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}getProxyProcessor(){return{get(e,s){return s==="proxyOf"?e:e[s]?s==="each"||typeof s=="string"&&s.startsWith("walk")?(...r)=>e[s](...r.map(n=>typeof n=="function"?(i,o)=>n(i.toProxy(),o):n)):s==="every"||s==="some"?r=>e[s]((n,...i)=>r(n.toProxy(),...i)):s==="root"?()=>e.root().toProxy():s==="nodes"?e.nodes.map(r=>r.toProxy()):s==="first"||s==="last"?e[s].toProxy():e[s]:e[s]},set(e,s,r){return e[s]===r||(e[s]=r,(s==="name"||s==="params"||s==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,s){let r=this.index(e),n=this.normalize(s,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let o of n)this.proxyOf.nodes.splice(r+1,0,o);let i;for(let o in this.indexes)i=this.indexes[o],r<i&&(this.indexes[o]=i+n.length);return this.markDirty(),this}insertBefore(e,s){let r=this.index(e),n=r===0?"prepend":!1,i=this.normalize(s,this.proxyOf.nodes[r],n).reverse();r=this.index(e);for(let u of i)this.proxyOf.nodes.splice(r,0,u);let o;for(let u in this.indexes)o=this.indexes[u],r<=o&&(this.indexes[u]=o+i.length);return this.markDirty(),this}normalize(e,s){if(typeof e=="string")e=Bi(Li(e).nodes);else if(typeof e>"u")e=[];else if(Array.isArray(e)){e=e.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value>"u")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new Ri(e)]}else if(e.selector||e.selectors)e=[new ls(e)];else if(e.name)e=[new us(e)];else if(e.text)e=[new Pi(e)];else throw new Error("Unknown node type in node creation");return e.map(n=>(n[qi]||t.rebuild(n),n=n.proxyOf,n.parent&&n.parent.removeChild(n),n[Ii]&&Mi(n),n.raws||(n.raws={}),typeof n.raws.before>"u"&&s&&typeof s.raws.before<"u"&&(n.raws.before=s.raws.before.replace(/\S/g,"")),n.parent=this.proxyOf,n))}prepend(...e){e=e.reverse();for(let s of e){let r=this.normalize(s,this.first,"prepend").reverse();for(let n of r)this.proxyOf.nodes.unshift(n);for(let n in this.indexes)this.indexes[n]=this.indexes[n]+r.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let s;for(let r in this.indexes)s=this.indexes[r],s>=e&&(this.indexes[r]=s-1);return this.markDirty(),this}replaceValues(e,s,r){return r||(r=s,s={}),this.walkDecls(n=>{s.props&&!s.props.includes(n.prop)||s.fast&&!n.value.includes(s.fast)||(n.value=n.value.replace(e,r))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((s,r)=>{let n;try{n=e(s,r)}catch(i){throw s.addToError(i)}return n!==!1&&s.walk&&(n=s.walk(e)),n})}walkAtRules(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="atrule"&&e.test(r.name))return s(r,n)}):this.walk((r,n)=>{if(r.type==="atrule"&&r.name===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="atrule")return s(r,n)}))}walkComments(e){return this.walk((s,r)=>{if(s.type==="comment")return e(s,r)})}walkDecls(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="decl"&&e.test(r.prop))return s(r,n)}):this.walk((r,n)=>{if(r.type==="decl"&&r.prop===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="decl")return s(r,n)}))}walkRules(e,s){return s?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="rule"&&e.test(r.selector))return s(r,n)}):this.walk((r,n)=>{if(r.type==="rule"&&r.selector===e)return s(r,n)}):(s=e,this.walk((r,n)=>{if(r.type==="rule")return s(r,n)}))}};z.registerParse=t=>{Li=t};z.registerRule=t=>{ls=t};z.registerAtRule=t=>{us=t};z.registerRoot=t=>{Di=t};Ui.exports=z;z.default=z;z.rebuild=t=>{t.type==="atrule"?Object.setPrototypeOf(t,us.prototype):t.type==="rule"?Object.setPrototypeOf(t,ls.prototype):t.type==="decl"?Object.setPrototypeOf(t,Ri.prototype):t.type==="comment"?Object.setPrototypeOf(t,Pi.prototype):t.type==="root"&&Object.setPrototypeOf(t,Di.prototype),t[qi]=!0,t.nodes&&t.nodes.forEach(e=>{z.rebuild(e)})}});var $i=g((Rv,Fi)=>{var Cc="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",Oc=(t,e=21)=>(s=e)=>{let r="",n=s|0;for(;n--;)r+=t[Math.random()*t.length|0];return r},Ac=(t=21)=>{let e="",s=t|0;for(;s--;)e+=Cc[Math.random()*64|0];return e};Fi.exports={nanoid:Ac,customAlphabet:Oc}});var Wi=g(()=>{});var cs=g((Lv,Yi)=>{Yi.exports=class{}});var qe=g((Bv,ji)=>{"use strict";var{nanoid:Nc}=$i(),{isAbsolute:hs,resolve:ds}={},{SourceMapConsumer:Pc,SourceMapGenerator:Rc}=Wi(),{fileURLToPath:Vi,pathToFileURL:Gt}={},zi=Yt(),Ic=cs(),fs=ns(),ps=Symbol("fromOffsetCache"),qc=!!(Pc&&Rc),Gi=!!(ds&&hs),Ie=class{get from(){return this.file||this.id}constructor(e,s={}){if(e===null||typeof e>"u"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\uFEFF"||this.css[0]==="\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,this.document=this.css,s.document&&(this.document=s.document.toString()),s.from&&(!Gi||/^\w+:\/\//.test(s.from)||hs(s.from)?this.file=s.from:this.file=ds(s.from)),Gi&&qc){let r=new Ic(this.css,s);if(r.text){this.map=r;let n=r.consumer().file;!this.file&&n&&(this.file=this.mapResolve(n))}}this.file||(this.id="<input css "+Nc(6)+">"),this.map&&(this.map.file=this.from)}error(e,s,r,n={}){let i,o,u;if(s&&typeof s=="object"){let c=s,f=r;if(typeof c.offset=="number"){let p=this.fromOffset(c.offset);s=p.line,r=p.col}else s=c.line,r=c.column;if(typeof f.offset=="number"){let p=this.fromOffset(f.offset);o=p.line,i=p.col}else o=f.line,i=f.column}else if(!r){let c=this.fromOffset(s);s=c.line,r=c.col}let a=this.origin(s,r,o,i);return a?u=new zi(e,a.endLine===void 0?a.line:{column:a.column,line:a.line},a.endLine===void 0?a.column:{column:a.endColumn,line:a.endLine},a.source,a.file,n.plugin):u=new zi(e,o===void 0?s:{column:r,line:s},o===void 0?r:{column:i,line:o},this.css,this.file,n.plugin),u.input={column:r,endColumn:i,endLine:o,line:s,source:this.css},this.file&&(Gt&&(u.input.url=Gt(this.file).toString()),u.input.file=this.file),u}fromOffset(e){let s,r;if(this[ps])r=this[ps];else{let i=this.css.split(`
21
+ `);r=new Array(i.length);let o=0;for(let u=0,a=i.length;u<a;u++)r[u]=o,o+=i[u].length+1;this[ps]=r}s=r[r.length-1];let n=0;if(e>=s)n=r.length-1;else{let i=r.length-2,o;for(;n<i;)if(o=n+(i-n>>1),e<r[o])i=o-1;else if(e>=r[o+1])n=o+1;else{n=o;break}}return{col:e-r[n]+1,line:n+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:ds(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,s,r,n){if(!this.map)return!1;let i=this.map.consumer(),o=i.originalPositionFor({column:s,line:e});if(!o.source)return!1;let u;typeof r=="number"&&(u=i.originalPositionFor({column:n,line:r}));let a;hs(o.source)?a=Gt(o.source):a=new URL(o.source,this.map.consumer().sourceRoot||Gt(this.map.mapFile));let c={column:o.column,endColumn:u&&u.column,endLine:u&&u.line,line:o.line,url:a.toString()};if(a.protocol==="file:")if(Vi)c.file=Vi(a);else throw new Error("file: protocol is not available in this PostCSS build");let f=i.sourceContentFor(o.source);return f&&(c.source=f),c}toJSON(){let e={};for(let s of["hasBOM","css","file","id"])this[s]!=null&&(e[s]=this[s]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}};ji.exports=Ie;Ie.default=Ie;fs&&fs.registerInput&&fs.registerInput(Ie)});var jt=g((Mv,Ki)=>{"use strict";var Hi=le(),Le=class extends Hi{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};Ki.exports=Le;Le.default=Le;Hi.registerAtRule(Le)});var De=g((Uv,Zi)=>{"use strict";var Qi=le(),Ji,Xi,ce=class extends Qi{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,s,r){let n=super.normalize(e);if(s){if(r==="prepend")this.nodes.length>1?s.raws.before=this.nodes[1].raws.before:delete s.raws.before;else if(this.first!==s)for(let i of n)i.raws.before=s.raws.before}return n}removeChild(e,s){let r=this.index(e);return!s&&r===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}toResult(e={}){return new Ji(new Xi,this,e).stringify()}};ce.registerLazyResult=t=>{Ji=t};ce.registerProcessor=t=>{Xi=t};Zi.exports=ce;ce.default=ce;Qi.registerRoot(ce)});var ms=g((Fv,eo)=>{"use strict";var yt={comma(t){return yt.split(t,[","],!0)},space(t){let e=[" ",`
22
+ `," "];return yt.split(t,e)},split(t,e,s){let r=[],n="",i=!1,o=0,u=!1,a="",c=!1;for(let f of t)c?c=!1:f==="\\"?c=!0:u?f===a&&(u=!1):f==='"'||f==="'"?(u=!0,a=f):f==="("?o+=1:f===")"?o>0&&(o-=1):o===0&&e.includes(f)&&(i=!0),i?(n!==""&&r.push(n.trim()),n="",i=!1):n+=f;return(s||n!=="")&&r.push(n.trim()),r}};eo.exports=yt;yt.default=yt});var Ht=g(($v,ro)=>{"use strict";var to=le(),Lc=ms(),Be=class extends to{get selectors(){return Lc.comma(this.selector)}set selectors(e){let s=this.selector?this.selector.match(/,\s*/):null,r=s?s[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}};ro.exports=Be;Be.default=Be;to.registerRule(Be)});var Jt=g((Wv,no)=>{"use strict";var Kt=/[\t\n\f\r "#'()/;[\\\]{}]/g,Qt=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,Dc=/.[\r\n"'(/\\]/,so=/[\da-f]/i;no.exports=function(e,s={}){let r=e.css.valueOf(),n=s.ignoreErrors,i,o,u,a,c,f,p,l,y,x,h=r.length,d=0,m=[],b=[];function w(){return d}function v(W){throw e.error("Unclosed "+W,d)}function N(){return b.length===0&&d>=h}function F(W){if(b.length)return b.pop();if(d>=h)return;let T=W?W.ignoreUnclosed:!1;switch(i=r.charCodeAt(d),i){case 10:case 32:case 9:case 13:case 12:{a=d;do a+=1,i=r.charCodeAt(a);while(i===32||i===10||i===9||i===13||i===12);f=["space",r.slice(d,a)],d=a-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let C=String.fromCharCode(i);f=[C,C,d];break}case 40:{if(x=m.length?m.pop()[1]:"",y=r.charCodeAt(d+1),x==="url"&&y!==39&&y!==34&&y!==32&&y!==10&&y!==9&&y!==12&&y!==13){a=d;do{if(p=!1,a=r.indexOf(")",a+1),a===-1)if(n||T){a=d;break}else v("bracket");for(l=a;r.charCodeAt(l-1)===92;)l-=1,p=!p}while(p);f=["brackets",r.slice(d,a+1),d,a],d=a}else a=r.indexOf(")",d+1),o=r.slice(d,a+1),a===-1||Dc.test(o)?f=["(","(",d]:(f=["brackets",o,d,a],d=a);break}case 39:case 34:{c=i===39?"'":'"',a=d;do{if(p=!1,a=r.indexOf(c,a+1),a===-1)if(n||T){a=d+1;break}else v("string");for(l=a;r.charCodeAt(l-1)===92;)l-=1,p=!p}while(p);f=["string",r.slice(d,a+1),d,a],d=a;break}case 64:{Kt.lastIndex=d+1,Kt.test(r),Kt.lastIndex===0?a=r.length-1:a=Kt.lastIndex-2,f=["at-word",r.slice(d,a+1),d,a],d=a;break}case 92:{for(a=d,u=!0;r.charCodeAt(a+1)===92;)a+=1,u=!u;if(i=r.charCodeAt(a+1),u&&i!==47&&i!==32&&i!==10&&i!==9&&i!==13&&i!==12&&(a+=1,so.test(r.charAt(a)))){for(;so.test(r.charAt(a+1));)a+=1;r.charCodeAt(a+1)===32&&(a+=1)}f=["word",r.slice(d,a+1),d,a],d=a;break}default:{i===47&&r.charCodeAt(d+1)===42?(a=r.indexOf("*/",d+2)+1,a===0&&(n||T?a=r.length:v("comment")),f=["comment",r.slice(d,a+1),d,a],d=a):(Qt.lastIndex=d+1,Qt.test(r),Qt.lastIndex===0?a=r.length-1:a=Qt.lastIndex-2,f=["word",r.slice(d,a+1),d,a],m.push(f),d=a);break}}return d++,f}function Q(W){b.push(W)}return{back:Q,endOfFile:N,nextToken:F,position:w}}});var Xt=g((Yv,ao)=>{"use strict";var Bc=jt(),Mc=Re(),Uc=mt(),Fc=De(),io=Ht(),$c=Jt(),oo={empty:!0,space:!0};function Wc(t){for(let e=t.length-1;e>=0;e--){let s=t[e],r=s[3]||s[2];if(r)return r}}var ys=class{constructor(e){this.input=e,this.root=new Fc,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let s=new Bc;s.name=e[1].slice(1),s.name===""&&this.unnamedAtrule(s,e),this.init(s,e[2]);let r,n,i,o=!1,u=!1,a=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),r=e[0],r==="("||r==="["?c.push(r==="("?")":"]"):r==="{"&&c.length>0?c.push("}"):r===c[c.length-1]&&c.pop(),c.length===0)if(r===";"){s.source.end=this.getPosition(e[2]),s.source.end.offset++,this.semicolon=!0;break}else if(r==="{"){u=!0;break}else if(r==="}"){if(a.length>0){for(i=a.length-1,n=a[i];n&&n[0]==="space";)n=a[--i];n&&(s.source.end=this.getPosition(n[3]||n[2]),s.source.end.offset++)}this.end(e);break}else a.push(e);else a.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}s.raws.between=this.spacesAndCommentsFromEnd(a),a.length?(s.raws.afterName=this.spacesAndCommentsFromStart(a),this.raw(s,"params",a),o&&(e=a[a.length-1],s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++,this.spaces=s.raws.between,s.raws.between="")):(s.raws.afterName="",s.params=""),u&&(s.nodes=[],this.current=s)}checkMissedSemicolon(e){let s=this.colon(e);if(s===!1)return;let r=0,n;for(let i=s-1;i>=0&&(n=e[i],!(n[0]!=="space"&&(r+=1,r===2)));i--);throw this.input.error("Missed semicolon",n[0]==="word"?n[3]+1:n[2])}colon(e){let s=0,r,n,i;for(let[o,u]of e.entries()){if(n=u,i=n[0],i==="("&&(s+=1),i===")"&&(s-=1),s===0&&i===":")if(!r)this.doubleColon(n);else{if(r[0]==="word"&&r[1]==="progid")continue;return o}r=n}return!1}comment(e){let s=new Mc;this.init(s,e[2]),s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++;let r=e[1].slice(2,-2);if(/^\s*$/.test(r))s.text="",s.raws.left=r,s.raws.right="";else{let n=r.match(/^(\s*)([^]*\S)(\s*)$/);s.text=n[2],s.raws.left=n[1],s.raws.right=n[3]}}createTokenizer(){this.tokenizer=$c(this.input)}decl(e,s){let r=new Uc;this.init(r,e[0][2]);let n=e[e.length-1];for(n[0]===";"&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(n[3]||n[2]||Wc(e)),r.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;r.prop+=e.shift()[1]}r.raws.between="";let i;for(;e.length;)if(i=e.shift(),i[0]===":"){r.raws.between+=i[1];break}else i[0]==="word"&&/\w/.test(i[1])&&this.unknownWord([i]),r.raws.between+=i[1];(r.prop[0]==="_"||r.prop[0]==="*")&&(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let o=[],u;for(;e.length&&(u=e[0][0],!(u!=="space"&&u!=="comment"));)o.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(i=e[c],i[1].toLowerCase()==="!important"){r.important=!0;let f=this.stringFrom(e,c);f=this.spacesFromEnd(e)+f,f!==" !important"&&(r.raws.important=f);break}else if(i[1].toLowerCase()==="important"){let f=e.slice(0),p="";for(let l=c;l>0;l--){let y=f[l][0];if(p.trim().startsWith("!")&&y!=="space")break;p=f.pop()[1]+p}p.trim().startsWith("!")&&(r.important=!0,r.raws.important=p,e=f)}if(i[0]!=="space"&&i[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(r.raws.between+=o.map(c=>c[1]).join(""),o=[]),this.raw(r,"value",o.concat(e),s),r.value.includes(":")&&!s&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let s=new io;this.init(s,e[2]),s.selector="",s.raws.between="",this.current=s}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let s=this.current.nodes[this.current.nodes.length-1];s&&s.type==="rule"&&!s.raws.ownSemicolon&&(s.raws.ownSemicolon=this.spaces,this.spaces="",s.source.end=this.getPosition(e[2]),s.source.end.offset+=s.raws.ownSemicolon.length)}}getPosition(e){let s=this.input.fromOffset(e);return{column:s.col,line:s.line,offset:e}}init(e,s){this.current.push(e),e.source={input:this.input,start:this.getPosition(s)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let s=!1,r=null,n=!1,i=null,o=[],u=e[1].startsWith("--"),a=[],c=e;for(;c;){if(r=c[0],a.push(c),r==="("||r==="[")i||(i=c),o.push(r==="("?")":"]");else if(u&&n&&r==="{")i||(i=c),o.push("}");else if(o.length===0)if(r===";")if(n){this.decl(a,u);return}else break;else if(r==="{"){this.rule(a);return}else if(r==="}"){this.tokenizer.back(a.pop()),s=!0;break}else r===":"&&(n=!0);else r===o[o.length-1]&&(o.pop(),o.length===0&&(i=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(s=!0),o.length>0&&this.unclosedBracket(i),s&&n){if(!u)for(;a.length&&(c=a[a.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(a.pop());this.decl(a,u)}else this.unknownWord(a)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,s,r,n){let i,o,u=r.length,a="",c=!0,f,p;for(let l=0;l<u;l+=1)i=r[l],o=i[0],o==="space"&&l===u-1&&!n?c=!1:o==="comment"?(p=r[l-1]?r[l-1][0]:"empty",f=r[l+1]?r[l+1][0]:"empty",!oo[p]&&!oo[f]?a.slice(-1)===","?c=!1:a+=i[1]:c=!1):a+=i[1];if(!c){let l=r.reduce((y,x)=>y+x[1],"");e.raws[s]={raw:l,value:a}}e[s]=a}rule(e){e.pop();let s=new io;this.init(s,e[0][2]),s.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(s,"selector",e),this.current=s}spacesAndCommentsFromEnd(e){let s,r="";for(;e.length&&(s=e[e.length-1][0],!(s!=="space"&&s!=="comment"));)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let s,r="";for(;e.length&&(s=e[0][0],!(s!=="space"&&s!=="comment"));)r+=e.shift()[1];return r}spacesFromEnd(e){let s,r="";for(;e.length&&(s=e[e.length-1][0],s==="space");)r=e.pop()[1]+r;return r}stringFrom(e,s){let r="";for(let n=s;n<e.length;n++)r+=e[n][1];return e.splice(s,e.length-s),r}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word "+e[0][1],{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unnamedAtrule(e,s){throw this.input.error("At-rule without name",{offset:s[2]},{offset:s[2]+s[1].length})}};ao.exports=ys});var gt=g((Vv,uo)=>{"use strict";var Yc=le(),Vc=qe(),zc=Xt();function Zt(t,e){let s=new Vc(t,e),r=new zc(s);try{r.parse()}catch(n){throw n}return r.root}uo.exports=Zt;Zt.default=Zt;Yc.registerParse(Zt)});var lo=g((zv,gs)=>{var Gc=Jt(),jc=qe();gs.exports={isInlineComment(t){if(t[0]==="word"&&t[1].slice(0,2)==="//"){let e=t,s=[],r,n;for(;t;){if(/\r?\n/.test(t[1])){if(/['"].*\r?\n/.test(t[1])){s.push(t[1].substring(0,t[1].indexOf(`
23
23
  `))),n=t[1].substring(t[1].indexOf(`
24
- `));let o=this.input.css.valueOf().substring(this.tokenizer.position());n+=o,r=t[3]+o.length-n.length}else this.tokenizer.back(t);break}s.push(t[1]),r=t[2],t=this.tokenizer.nextToken({ignoreUnclosed:!0})}let i=["comment",s.join(""),e[2],r];return this.inlineComment(i),n&&(this.input=new zc(n),this.tokenizer=Yc(this.input)),!0}else if(t[1]==="/"){let e=this.tokenizer.nextToken({ignoreUnclosed:!0});if(e[0]==="comment"&&/^\/\*/.test(e[1]))return e[0]="word",e[1]=e[1].slice(1),t[1]="//",this.tokenizer.back(e),ys.exports.isInlineComment.bind(this)(t)}return!1}}});var co=g((Uv,lo)=>{lo.exports={interpolation(t){let e=[t,this.tokenizer.nextToken()],s=["word","}"];if(e[0][1].length>1||e[1][0]!=="{")return this.tokenizer.back(e[1]),!1;for(t=this.tokenizer.nextToken();t&&s.includes(t[0]);)e.push(t),t=this.tokenizer.nextToken();let r=e.map(u=>u[1]),[n]=e,i=e.pop(),o=["word",r.join(""),n[2],i[2]];return this.tokenizer.back(t),this.tokenizer.back(o),!0}}});var po=g((Fv,fo)=>{var Vc=/^#[0-9a-fA-F]{6}$|^#[0-9a-fA-F]{3}$/,Gc=/\.[0-9]/,jc=t=>{let[,e]=t,[s]=e;return(s==="."||s==="#")&&Vc.test(e)===!1&&Gc.test(e)===!1};fo.exports={isMixinToken:jc}});var mo=g(($v,ho)=>{var Hc=Jt(),Kc=/^url\((.+)\)/;ho.exports=t=>{let{name:e,params:s=""}=t;if(e==="import"&&s.length){t.import=!0;let r=Hc({css:s});for(t.filename=s.replace(Kc,"$1");!r.endOfFile();){let[n,i]=r.nextToken();if(n==="word"&&i==="url")return;if(n==="brackets"){t.options=i,t.filename=s.replace(i,"").trim();break}}}}});var vo=g((Wv,wo)=>{var yo=/:$/,go=/^:(\s+)?/;wo.exports=t=>{let{name:e,params:s=""}=t;if(t.name.slice(-1)===":"){if(yo.test(e)){let[r]=e.match(yo);t.name=e.replace(r,""),t.raws.afterName=r+(t.raws.afterName||""),t.variable=!0,t.value=t.params}if(go.test(s)){let[r]=s.match(go);t.value=s.replace(r,""),t.raws.afterName=(t.raws.afterName||"")+r,t.variable=!0}}}});var _o=g((zv,bo)=>{var Qc=Re(),Jc=Xt(),{isInlineComment:Xc}=uo(),{interpolation:xo}=co(),{isMixinToken:Zc}=po(),ef=mo(),tf=vo(),rf=/(!\s*important)$/i;bo.exports=class extends Jc{constructor(...e){super(...e),this.lastNode=null}atrule(e){xo.bind(this)(e)||(super.atrule(e),ef(this.lastNode),tf(this.lastNode))}decl(...e){super.decl(...e),/extend\(.+\)/i.test(this.lastNode.value)&&(this.lastNode.extend=!0)}each(e){e[0][1]=` ${e[0][1]}`;let s=e.findIndex(u=>u[0]==="("),r=e.reverse().find(u=>u[0]===")"),n=e.reverse().indexOf(r),o=e.splice(s,n).map(u=>u[1]).join("");for(let u of e.reverse())this.tokenizer.back(u);this.atrule(this.tokenizer.nextToken()),this.lastNode.function=!0,this.lastNode.params=o}init(e,s,r){super.init(e,s,r),this.lastNode=e}inlineComment(e){let s=new Qc,r=e[1].slice(2);if(this.init(s,e[2]),s.source.end=this.getPosition(e[3]||e[2]),s.inline=!0,s.raws.begin="//",/^\s*$/.test(r))s.text="",s.raws.left=r,s.raws.right="";else{let n=r.match(/^(\s*)([^]*[^\s])(\s*)$/);[,s.raws.left,s.text,s.raws.right]=n}}mixin(e){let[s]=e,r=s[1].slice(0,1),n=e.findIndex(c=>c[0]==="brackets"),i=e.findIndex(c=>c[0]==="("),o="";if((n<0||n>3)&&i>0){let c=e.reduce((w,v,N)=>v[0]===")"?N:w),p=e.slice(i,c+i).map(w=>w[1]).join(""),[l]=e.slice(i),y=[l[2],l[3]],[x]=e.slice(c,c+1),h=[x[2],x[3]],d=["brackets",p].concat(y,h),m=e.slice(0,i),b=e.slice(c+1);e=m,e.push(d),e=e.concat(b)}let u=[];for(let c of e)if((c[1]==="!"||u.length)&&u.push(c),c[1]==="important")break;if(u.length){let[c]=u,f=e.indexOf(c),p=u[u.length-1],l=[c[2],c[3]],y=[p[4],p[5]],h=["word",u.map(d=>d[1]).join("")].concat(l,y);e.splice(f,u.length,h)}let a=e.findIndex(c=>rf.test(c[1]));a>0&&([,o]=e[a],e.splice(a,1));for(let c of e.reverse())this.tokenizer.back(c);this.atrule(this.tokenizer.nextToken()),this.lastNode.mixin=!0,this.lastNode.raws.identifier=r,o&&(this.lastNode.important=!0,this.lastNode.raws.important=o)}other(e){Xc.bind(this)(e)||super.other(e)}rule(e){let s=e[e.length-1],r=e[e.length-2];if(r[0]==="at-word"&&s[0]==="{"&&(this.tokenizer.back(s),xo.bind(this)(r))){let i=this.tokenizer.nextToken();e=e.slice(0,e.length-2).concat([i]);for(let o of e.reverse())this.tokenizer.back(o);return}super.rule(e),/:extend\(.+\)/i.test(this.lastNode.selector)&&(this.lastNode.extend=!0)}unknownWord(e){let[s]=e;if(e[0][1]==="each"&&e[1][0]==="("){this.each(e);return}if(Zc(s)){this.mixin(e);return}super.unknownWord(e)}}});var Eo=g((Gv,ko)=>{var sf=zt();ko.exports=class extends sf{atrule(e,s){if(!e.mixin&&!e.variable&&!e.function){super.atrule(e,s);return}let n=`${e.function?"":e.raws.identifier||"@"}${e.name}`,i=e.params?this.rawValue(e,"params"):"",o=e.raws.important||"";if(e.variable&&(i=e.value),typeof e.raws.afterName<"u"?n+=e.raws.afterName:i&&(n+=" "),e.nodes)this.block(e,n+i+o);else{let u=(e.raws.between||"")+o+(s?";":"");this.builder(n+i+u,e)}}comment(e){if(e.inline){let s=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder(`//${s}${e.text}${r}`,e)}else super.comment(e)}}});var So=g((jv,gs)=>{var nf=qe(),of=_o(),af=Eo();gs.exports={parse(t,e){let s=new nf(t,e),r=new of(s);return r.parse(),r.root.walk(n=>{let i=s.css.lastIndexOf(n.source.input.css);if(i===0)return;if(i+n.source.input.css.length!==s.css.length)throw new Error("Invalid state detected in postcss-less");let o=i+n.source.start.offset,u=s.fromOffset(i+n.source.start.offset);if(n.source.start={offset:o,line:u.line,column:u.col},n.source.end){let a=i+n.source.end.offset,c=s.fromOffset(i+n.source.end.offset);n.source.end={offset:a,line:c.line,column:c.col}}}),r.root},stringify(t,e){new af(e).stringify(t)},nodeToString(t){let e="";return gs.exports.stringify(t,s=>{e+=s}),e}}});var er=g((Hv,Oo)=>{"use strict";var uf=ue(),To,Co,ye=class extends uf{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new To(new Co,this,e).stringify()}};ye.registerLazyResult=t=>{To=t};ye.registerProcessor=t=>{Co=t};Oo.exports=ye;ye.default=ye});var No=g((Kv,Ao)=>{"use strict";var lf=jt(),cf=Re(),ff=mt(),pf=qe(),hf=ls(),df=De(),mf=Ht();function wt(t,e){if(Array.isArray(t))return t.map(n=>wt(n));let{inputs:s,...r}=t;if(s){e=[];for(let n of s){let i={...n,__proto__:pf.prototype};i.map&&(i.map={...i.map,__proto__:hf.prototype}),e.push(i)}}if(r.nodes&&(r.nodes=t.nodes.map(n=>wt(n,e))),r.source){let{inputId:n,...i}=r.source;r.source=i,n!=null&&(r.source.input=e[n])}if(r.type==="root")return new df(r);if(r.type==="decl")return new ff(r);if(r.type==="rule")return new mf(r);if(r.type==="comment")return new cf(r);if(r.type==="atrule")return new lf(r);throw new Error("Unknown node type: "+t.type)}Ao.exports=wt;wt.default=wt});var ws=g((Qv,Po)=>{Po.exports=class{generate(){}}});var vs=g((Xv,Ro)=>{"use strict";var vt=class{constructor(e,s={}){if(this.type="warning",this.text=e,s.node&&s.node.source){let r=s.node.rangeBy(s);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in s)this[r]=s[r]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};Ro.exports=vt;vt.default=vt});var tr=g((Zv,Io)=>{"use strict";var yf=vs(),xt=class{constructor(e,s,r){this.processor=e,this.messages=[],this.root=s,this.opts=r,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,s={}){s.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(s.plugin=this.lastPlugin.postcssPlugin);let r=new yf(e,s);return this.messages.push(r),r}warnings(){return this.messages.filter(e=>e.type==="warning")}get content(){return this.css}};Io.exports=xt;xt.default=xt});var xs=g((ex,Lo)=>{"use strict";var qo={};Lo.exports=function(e){qo[e]||(qo[e]=!0,typeof console<"u"&&console.warn&&console.warn(e))}});var ks=g((rx,Uo)=>{"use strict";var gf=ue(),wf=er(),vf=ws(),xf=gt(),Do=tr(),bf=De(),_f=ut(),{isClean:j,my:kf}=Vt(),tx=xs(),Ef={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},Sf={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},Tf={Once:!0,postcssPlugin:!0,prepare:!0},Me=0;function bt(t){return typeof t=="object"&&typeof t.then=="function"}function Mo(t){let e=!1,s=Ef[t.type];return t.type==="decl"?e=t.prop.toLowerCase():t.type==="atrule"&&(e=t.name.toLowerCase()),e&&t.append?[s,s+"-"+e,Me,s+"Exit",s+"Exit-"+e]:e?[s,s+"-"+e,s+"Exit",s+"Exit-"+e]:t.append?[s,Me,s+"Exit"]:[s,s+"Exit"]}function Bo(t){let e;return t.type==="document"?e=["Document",Me,"DocumentExit"]:t.type==="root"?e=["Root",Me,"RootExit"]:e=Mo(t),{eventIndex:0,events:e,iterator:0,node:t,visitorIndex:0,visitors:[]}}function bs(t){return t[j]=!1,t.nodes&&t.nodes.forEach(e=>bs(e)),t}var _s={},ce=class t{constructor(e,s,r){this.stringified=!1,this.processed=!1;let n;if(typeof s=="object"&&s!==null&&(s.type==="root"||s.type==="document"))n=bs(s);else if(s instanceof t||s instanceof Do)n=bs(s.root),s.map&&(typeof r.map>"u"&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=s.map);else{let i=xf;r.syntax&&(i=r.syntax.parse),r.parser&&(i=r.parser),i.parse&&(i=i.parse);try{n=i(s,r)}catch(o){this.processed=!0,this.error=o}n&&!n[kf]&&gf.rebuild(n)}this.result=new Do(e,n,r),this.helpers={..._s,postcss:_s,result:this.result},this.plugins=this.processor.plugins.map(i=>typeof i=="object"&&i.prepare?{...i,...i.prepare(this.result)}:i)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,s){let r=this.result.lastPlugin;try{s&&s.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=r.postcssPlugin,e.setMessage()):r.postcssVersion}catch(n){console&&console.error&&console.error(n)}return e}prepareVisitors(){this.listeners={};let e=(s,r,n)=>{this.listeners[r]||(this.listeners[r]=[]),this.listeners[r].push([s,n])};for(let s of this.plugins)if(typeof s=="object")for(let r in s){if(!Sf[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${s.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!Tf[r])if(typeof s[r]=="object")for(let n in s[r])n==="*"?e(s,r,s[r][n]):e(s,r+"-"+n.toLowerCase(),s[r][n]);else typeof s[r]=="function"&&e(s,r,s[r])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let s=this.plugins[e],r=this.runOnRoot(s);if(bt(r))try{await r}catch(n){throw this.handleError(n)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[j];){e[j]=!0;let s=[Bo(e)];for(;s.length>0;){let r=this.visitTick(s);if(bt(r))try{await r}catch(n){let i=s[s.length-1].node;throw this.handleError(n,i)}}}if(this.listeners.OnceExit)for(let[s,r]of this.listeners.OnceExit){this.result.lastPlugin=s;try{if(e.type==="document"){let n=e.nodes.map(i=>r(i,this.helpers));await Promise.all(n)}else await r(e,this.helpers)}catch(n){throw this.handleError(n)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let s=this.result.root.nodes.map(r=>e.Once(r,this.helpers));return bt(s[0])?Promise.all(s):s}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(s){throw this.handleError(s)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,s=_f;e.syntax&&(s=e.syntax.stringify),e.stringifier&&(s=e.stringifier),s.stringify&&(s=s.stringify);let n=new vf(s,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let s=this.runOnRoot(e);if(bt(s))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[j];)e[j]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let s of e.nodes)this.visitSync(this.listeners.OnceExit,s);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,s){return this.async().then(e,s)}toString(){return this.css}visitSync(e,s){for(let[r,n]of e){this.result.lastPlugin=r;let i;try{i=n(s,this.helpers)}catch(o){throw this.handleError(o,s.proxyOf)}if(s.type!=="root"&&s.type!=="document"&&!s.parent)return!0;if(bt(i))throw this.getAsyncError()}}visitTick(e){let s=e[e.length-1],{node:r,visitors:n}=s;if(r.type!=="root"&&r.type!=="document"&&!r.parent){e.pop();return}if(n.length>0&&s.visitorIndex<n.length){let[o,u]=n[s.visitorIndex];s.visitorIndex+=1,s.visitorIndex===n.length&&(s.visitors=[],s.visitorIndex=0),this.result.lastPlugin=o;try{return u(r.toProxy(),this.helpers)}catch(a){throw this.handleError(a,r)}}if(s.iterator!==0){let o=s.iterator,u;for(;u=r.nodes[r.indexes[o]];)if(r.indexes[o]+=1,!u[j]){u[j]=!0,e.push(Bo(u));return}s.iterator=0,delete r.indexes[o]}let i=s.events;for(;s.eventIndex<i.length;){let o=i[s.eventIndex];if(s.eventIndex+=1,o===Me){r.nodes&&r.nodes.length&&(r[j]=!0,s.iterator=r.getIterator());return}else if(this.listeners[o]){s.visitors=this.listeners[o];return}}e.pop()}walkSync(e){e[j]=!0;let s=Mo(e);for(let r of s)if(r===Me)e.nodes&&e.each(n=>{n[j]||this.walkSync(n)});else{let n=this.listeners[r];if(n&&this.visitSync(n,e.toProxy()))return}}warnings(){return this.sync().warnings()}get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}};ce.registerPostcss=t=>{_s=t};Uo.exports=ce;ce.default=ce;bf.registerLazyResult(ce);wf.registerLazyResult(ce)});var $o=g((nx,Fo)=>{"use strict";var Cf=ws(),Of=gt(),Af=tr(),Nf=ut(),sx=xs(),_t=class{constructor(e,s,r){s=s.toString(),this.stringified=!1,this._processor=e,this._css=s,this._opts=r,this._map=void 0;let n,i=Nf;this.result=new Af(this._processor,n,this._opts),this.result.css=s;let o=this;Object.defineProperty(this.result,"root",{get(){return o.root}});let u=new Cf(i,n,this._opts,s);if(u.isMap()){let[a,c]=u.generate();a&&(this.result.css=a),c&&(this.result.map=c)}else u.clearAnnotation(),this.result.css=u.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,s){return this.async().then(e,s)}toString(){return this._css}warnings(){return[]}get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,s=Of;try{e=s(this._css,this._opts)}catch(r){this.error=r}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}};Fo.exports=_t;_t.default=_t});var Yo=g((ix,Wo)=>{"use strict";var Pf=er(),Rf=ks(),If=$o(),qf=De(),ge=class{constructor(e=[]){this.version="8.4.49",this.plugins=this.normalize(e)}normalize(e){let s=[];for(let r of e)if(r.postcss===!0?r=r():r.postcss&&(r=r.postcss),typeof r=="object"&&Array.isArray(r.plugins))s=s.concat(r.plugins);else if(typeof r=="object"&&r.postcssPlugin)s.push(r);else if(typeof r=="function")s.push(r);else if(!(typeof r=="object"&&(r.parse||r.stringify)))throw new Error(r+" is not a PostCSS plugin");return s}process(e,s={}){return!this.plugins.length&&!s.parser&&!s.stringifier&&!s.syntax?new If(this,e,s):new Rf(this,e,s)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};Wo.exports=ge;ge.default=ge;qf.registerProcessor(ge);Pf.registerProcessor(ge)});var rr=g((ox,Qo)=>{"use strict";var zo=jt(),Vo=Re(),Lf=ue(),Df=Yt(),Go=mt(),jo=er(),Bf=No(),Mf=qe(),Uf=ks(),Ff=ds(),$f=pt(),Wf=gt(),Es=Yo(),Yf=tr(),Ho=De(),Ko=Ht(),zf=ut(),Vf=vs();function E(...t){return t.length===1&&Array.isArray(t[0])&&(t=t[0]),new Es(t)}E.plugin=function(e,s){let r=!1;function n(...o){console&&console.warn&&!r&&(r=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide:
25
- https://evilmartians.com/chronicles/postcss-8-plugin-migration`));let u=s(...o);return u.postcssPlugin=e,u.postcssVersion=new Es().version,u}let i;return Object.defineProperty(n,"postcss",{get(){return i||(i=n()),i}}),n.process=function(o,u,a){return E([n(a)]).process(o,u)},n};E.stringify=zf;E.parse=Wf;E.fromJSON=Bf;E.list=Ff;E.comment=t=>new Vo(t);E.atRule=t=>new zo(t);E.decl=t=>new Go(t);E.rule=t=>new Ko(t);E.root=t=>new Ho(t);E.document=t=>new jo(t);E.CssSyntaxError=Df;E.Declaration=Go;E.Container=Lf;E.Processor=Es;E.Document=jo;E.Comment=Vo;E.Warning=Vf;E.AtRule=zo;E.Result=Yf;E.Input=Mf;E.Rule=Ko;E.Root=Ho;E.Node=$f;Uf.registerPostcss(E);Qo.exports=E;E.default=E});var Xo=g((ax,Jo)=>{var{Container:Gf}=rr(),Ss=class extends Gf{constructor(e){super(e),this.type="decl",this.isNested=!0,this.nodes||(this.nodes=[])}};Jo.exports=Ss});var ta=g((ux,ea)=>{"use strict";var sr=/[\t\n\f\r "#'()/;[\\\]{}]/g,nr=/[,\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,jf=/.[\r\n"'(/\\]/,Zo=/[\da-f]/i,ir=/[\n\f\r]/g;ea.exports=function(e,s={}){let r=e.css.valueOf(),n=s.ignoreErrors,i,o,u,a,c,f,p,l,y,x=r.length,h=0,d=[],m=[],b;function w(){return h}function v(T){throw e.error("Unclosed "+T,h)}function N(){return m.length===0&&h>=x}function F(){let T=1,C=!1,O=!1;for(;T>0;)o+=1,r.length<=o&&v("interpolation"),i=r.charCodeAt(o),l=r.charCodeAt(o+1),C?!O&&i===C?(C=!1,O=!1):i===92?O=!O:O&&(O=!1):i===39||i===34?C=i:i===125?T-=1:i===35&&l===123&&(T+=1)}function H(T){if(m.length)return m.pop();if(h>=x)return;let C=T?T.ignoreUnclosed:!1;switch(i=r.charCodeAt(h),i){case 10:case 32:case 9:case 13:case 12:{o=h;do o+=1,i=r.charCodeAt(o);while(i===32||i===10||i===9||i===13||i===12);y=["space",r.slice(h,o)],h=o-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let O=String.fromCharCode(i);y=[O,O,h];break}case 44:{y=["word",",",h,h+1];break}case 40:{if(p=d.length?d.pop()[1]:"",l=r.charCodeAt(h+1),p==="url"&&l!==39&&l!==34){for(b=1,f=!1,o=h+1;o<=r.length-1;){if(l=r.charCodeAt(o),l===92)f=!f;else if(l===40)b+=1;else if(l===41&&(b-=1,b===0))break;o+=1}a=r.slice(h,o+1),y=["brackets",a,h,o],h=o}else o=r.indexOf(")",h+1),a=r.slice(h,o+1),o===-1||jf.test(a)?y=["(","(",h]:(y=["brackets",a,h,o],h=o);break}case 39:case 34:{for(u=i,o=h,f=!1;o<x&&(o++,o===x&&v("string"),i=r.charCodeAt(o),l=r.charCodeAt(o+1),!(!f&&i===u));)i===92?f=!f:f?f=!1:i===35&&l===123&&F();y=["string",r.slice(h,o+1),h,o],h=o;break}case 64:{sr.lastIndex=h+1,sr.test(r),sr.lastIndex===0?o=r.length-1:o=sr.lastIndex-2,y=["at-word",r.slice(h,o+1),h,o],h=o;break}case 92:{for(o=h,c=!0;r.charCodeAt(o+1)===92;)o+=1,c=!c;if(i=r.charCodeAt(o+1),c&&i!==47&&i!==32&&i!==10&&i!==9&&i!==13&&i!==12&&(o+=1,Zo.test(r.charAt(o)))){for(;Zo.test(r.charAt(o+1));)o+=1;r.charCodeAt(o+1)===32&&(o+=1)}y=["word",r.slice(h,o+1),h,o],h=o;break}default:l=r.charCodeAt(h+1),i===35&&l===123?(o=h,F(),a=r.slice(h,o+1),y=["word",a,h,o],h=o):i===47&&l===42?(o=r.indexOf("*/",h+2)+1,o===0&&(n||C?o=r.length:v("comment")),y=["comment",r.slice(h,o+1),h,o],h=o):i===47&&l===47?(ir.lastIndex=h+1,ir.test(r),ir.lastIndex===0?o=r.length-1:o=ir.lastIndex-2,a=r.slice(h,o+1),y=["comment",a,h,o,"inline"],h=o):(nr.lastIndex=h+1,nr.test(r),nr.lastIndex===0?o=r.length-1:o=nr.lastIndex-2,y=["word",r.slice(h,o+1),h,o],d.push(y),h=o);break}return h++,y}function W(T){m.push(T)}return{back:W,endOfFile:N,nextToken:H,position:w}}});var sa=g((lx,ra)=>{var{Comment:Hf}=rr(),Kf=Xt(),Qf=Xo(),Jf=ta(),Ts=class extends Kf{atrule(e){let s=e[1],r=e;for(;!this.tokenizer.endOfFile();){let n=this.tokenizer.nextToken();if(n[0]==="word"&&n[2]===r[3]+1)s+=n[1],r=n;else{this.tokenizer.back(n);break}}super.atrule(["at-word",s,e[2],r[3]])}comment(e){if(e[4]==="inline"){let s=new Hf;this.init(s,e[2]),s.raws.inline=!0;let r=this.input.fromOffset(e[3]);s.source.end={column:r.col,line:r.line,offset:e[3]+1};let n=e[1].slice(2);if(/^\s*$/.test(n))s.text="",s.raws.left=n,s.raws.right="";else{let i=n.match(/^(\s*)([^]*\S)(\s*)$/),o=i[2].replace(/(\*\/|\/\*)/g,"*//*");s.text=o,s.raws.left=i[1],s.raws.right=i[3],s.raws.text=i[2]}}else super.comment(e)}createTokenizer(){this.tokenizer=Jf(this.input)}raw(e,s,r,n){if(super.raw(e,s,r,n),e.raws[s]){let i=e.raws[s].raw;e.raws[s].raw=r.reduce((o,u)=>{if(u[0]==="comment"&&u[4]==="inline"){let a=u[1].slice(2).replace(/(\*\/|\/\*)/g,"*//*");return o+"/*"+a+"*/"}else return o+u[1]},""),i!==e.raws[s].raw&&(e.raws[s].scss=i)}}rule(e){let s=!1,r=0,n="";for(let i of e)if(s)i[0]!=="comment"&&i[0]!=="{"&&(n+=i[1]);else{if(i[0]==="space"&&i[1].includes(`
26
- `))break;i[0]==="("?r+=1:i[0]===")"?r-=1:r===0&&i[0]===":"&&(s=!0)}if(!s||n.trim()===""||/^[#:A-Za-z-]/.test(n))super.rule(e);else{e.pop();let i=new Qf;this.init(i,e[0][2]);let o;for(let a=e.length-1;a>=0;a--)if(e[a][0]!=="space"){o=e[a];break}if(o[3]){let a=this.input.fromOffset(o[3]);i.source.end={column:a.col,line:a.line,offset:o[3]+1}}else{let a=this.input.fromOffset(o[2]);i.source.end={column:a.col,line:a.line,offset:o[2]+1}}for(;e[0][0]!=="word";)i.raws.before+=e.shift()[1];if(e[0][2]){let a=this.input.fromOffset(e[0][2]);i.source.start={column:a.col,line:a.line,offset:e[0][2]}}for(i.prop="";e.length;){let a=e[0][0];if(a===":"||a==="space"||a==="comment")break;i.prop+=e.shift()[1]}i.raws.between="";let u;for(;e.length;)if(u=e.shift(),u[0]===":"){i.raws.between+=u[1];break}else i.raws.between+=u[1];(i.prop[0]==="_"||i.prop[0]==="*")&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1)),i.raws.between+=this.spacesAndCommentsFromStart(e),this.precheckMissedSemicolon(e);for(let a=e.length-1;a>0;a--){if(u=e[a],u[1]==="!important"){i.important=!0;let c=this.stringFrom(e,a);c=this.spacesFromEnd(e)+c,c!==" !important"&&(i.raws.important=c);break}else if(u[1]==="important"){let c=e.slice(0),f="";for(let p=a;p>0;p--){let l=c[p][0];if(f.trim().indexOf("!")===0&&l!=="space")break;f=c.pop()[1]+f}f.trim().indexOf("!")===0&&(i.important=!0,i.raws.important=f,e=c)}if(u[0]!=="space"&&u[0]!=="comment")break}this.raw(i,"value",e),i.value.includes(":")&&this.checkMissedSemicolon(e),this.current=i}}};ra.exports=Ts});var ia=g((cx,na)=>{var{Input:Xf}=rr(),Zf=sa();na.exports=function(e,s){let r=new Xf(e,s),n=new Zf(r);return n.parse(),n.root}});var Os=g(Cs=>{"use strict";Object.defineProperty(Cs,"__esModule",{value:!0});function tp(t){this.after=t.after,this.before=t.before,this.type=t.type,this.value=t.value,this.sourceIndex=t.sourceIndex}Cs.default=tp});var Ns=g(As=>{"use strict";Object.defineProperty(As,"__esModule",{value:!0});var rp=Os(),aa=sp(rp);function sp(t){return t&&t.__esModule?t:{default:t}}function kt(t){var e=this;this.constructor(t),this.nodes=t.nodes,this.after===void 0&&(this.after=this.nodes.length>0?this.nodes[this.nodes.length-1].after:""),this.before===void 0&&(this.before=this.nodes.length>0?this.nodes[0].before:""),this.sourceIndex===void 0&&(this.sourceIndex=this.before.length),this.nodes.forEach(function(s){s.parent=e})}kt.prototype=Object.create(aa.default.prototype);kt.constructor=aa.default;kt.prototype.walk=function(e,s){for(var r=typeof e=="string"||e instanceof RegExp,n=r?s:e,i=typeof e=="string"?new RegExp(e):e,o=0;o<this.nodes.length;o++){var u=this.nodes[o],a=r?i.test(u.type):!0;if(a&&n&&n(u,o,this.nodes)===!1||u.nodes&&u.walk(e,s)===!1)return!1}return!0};kt.prototype.each=function(){for(var e=arguments.length<=0||arguments[0]===void 0?function(){}:arguments[0],s=0;s<this.nodes.length;s++){var r=this.nodes[s];if(e(r,s,this.nodes)===!1)return!1}return!0};As.default=kt});var fa=g(Et=>{"use strict";Object.defineProperty(Et,"__esModule",{value:!0});Et.parseMediaFeature=ca;Et.parseMediaQuery=Rs;Et.parseMediaList=op;var np=Os(),ua=la(np),ip=Ns(),Ps=la(ip);function la(t){return t&&t.__esModule?t:{default:t}}function ca(t){var e=arguments.length<=1||arguments[1]===void 0?0:arguments[1],s=[{mode:"normal",character:null}],r=[],n=0,i="",o=null,u=null,a=e,c=t;t[0]==="("&&t[t.length-1]===")"&&(c=t.substring(1,t.length-1),a++);for(var f=0;f<c.length;f++){var p=c[f];if((p==="'"||p==='"')&&(s[n].isCalculationEnabled===!0?(s.push({mode:"string",isCalculationEnabled:!1,character:p}),n++):s[n].mode==="string"&&s[n].character===p&&c[f-1]!=="\\"&&(s.pop(),n--)),p==="{"?(s.push({mode:"interpolation",isCalculationEnabled:!0}),n++):p==="}"&&(s.pop(),n--),s[n].mode==="normal"&&p===":"){var l=c.substring(f+1);u={type:"value",before:/^(\s*)/.exec(l)[1],after:/(\s*)$/.exec(l)[1],value:l.trim()},u.sourceIndex=u.before.length+f+1+a,o={type:"colon",sourceIndex:f+a,after:u.before,value:":"};break}i+=p}return i={type:"media-feature",before:/^(\s*)/.exec(i)[1],after:/(\s*)$/.exec(i)[1],value:i.trim()},i.sourceIndex=i.before.length+a,r.push(i),o!==null&&(o.before=i.after,r.push(o)),u!==null&&r.push(u),r}function Rs(t){var e=arguments.length<=1||arguments[1]===void 0?0:arguments[1],s=[],r=0,n=!1,i=void 0;function o(){return{before:"",after:"",value:""}}i=o();for(var u=0;u<t.length;u++){var a=t[u];n?(i.value+=a,(a==="{"||a==="(")&&r++,(a===")"||a==="}")&&r--):a.search(/\s/)!==-1?i.before+=a:(a==="("&&(i.type="media-feature-expression",r++),i.value=a,i.sourceIndex=e+u,n=!0),n&&r===0&&(a===")"||u===t.length-1||t[u+1].search(/\s/)!==-1)&&(["not","only","and"].indexOf(i.value)!==-1&&(i.type="keyword"),i.type==="media-feature-expression"&&(i.nodes=ca(i.value,i.sourceIndex)),s.push(Array.isArray(i.nodes)?new Ps.default(i):new ua.default(i)),i=o(),n=!1)}for(var c=0;c<s.length;c++)if(i=s[c],c>0&&(s[c-1].after=i.before),i.type===void 0){if(c>0){if(s[c-1].type==="media-feature-expression"){i.type="keyword";continue}if(s[c-1].value==="not"||s[c-1].value==="only"){i.type="media-type";continue}if(s[c-1].value==="and"){i.type="media-feature-expression";continue}s[c-1].type==="media-type"&&(s[c+1]?i.type=s[c+1].type==="media-feature-expression"?"keyword":"media-feature-expression":i.type="media-feature-expression")}if(c===0){if(!s[c+1]){i.type="media-type";continue}if(s[c+1]&&(s[c+1].type==="media-feature-expression"||s[c+1].type==="keyword")){i.type="media-type";continue}if(s[c+2]){if(s[c+2].type==="media-feature-expression"){i.type="media-type",s[c+1].type="keyword";continue}if(s[c+2].type==="keyword"){i.type="keyword",s[c+1].type="media-type";continue}}if(s[c+3]&&s[c+3].type==="media-feature-expression"){i.type="keyword",s[c+1].type="media-type",s[c+2].type="keyword";continue}}}return s}function op(t){var e=[],s=0,r=0,n=/^(\s*)url\s*\(/.exec(t);if(n!==null){for(var i=n[0].length,o=1;o>0;){var u=t[i];u==="("&&o++,u===")"&&o--,i++}e.unshift(new ua.default({type:"url",value:t.substring(0,i).trim(),sourceIndex:n[1].length,before:n[1],after:/^(\s*)/.exec(t.substring(i))[1]})),s=i}for(var a=s;a<t.length;a++){var c=t[a];if(c==="("&&r++,c===")"&&r--,r===0&&c===","){var f=t.substring(s,a),p=/^(\s*)/.exec(f)[1];e.push(new Ps.default({type:"media-query",value:f.trim(),sourceIndex:s+p.length,nodes:Rs(f,s),before:p,after:/(\s*)$/.exec(f)[1]})),s=a+1}}var l=t.substring(s),y=/^(\s*)/.exec(l)[1];return e.push(new Ps.default({type:"media-query",value:l.trim(),sourceIndex:s+y.length,nodes:Rs(l,s),before:y,after:/(\s*)$/.exec(l)[1]})),e}});var pa=g(Is=>{"use strict";Object.defineProperty(Is,"__esModule",{value:!0});Is.default=fp;var ap=Ns(),up=cp(ap),lp=fa();function cp(t){return t&&t.__esModule?t:{default:t}}function fp(t){return new up.default({nodes:(0,lp.parseMediaList)(t),type:"media-query-list",value:t.trim()})}});var Ls=g((vx,ma)=>{ma.exports=function(e,s){if(s=typeof s=="number"?s:1/0,!s)return Array.isArray(e)?e.map(function(n){return n}):e;return r(e,1);function r(n,i){return n.reduce(function(o,u){return Array.isArray(u)&&i<s?o.concat(r(u,i+1)):o.concat(u)},[])}}});var Ds=g((xx,ya)=>{ya.exports=function(t,e){for(var s=-1,r=[];(s=t.indexOf(e,s+1))!==-1;)r.push(s);return r}});var Bs=g((bx,ga)=>{"use strict";function dp(t,e){for(var s=1,r=t.length,n=t[0],i=t[0],o=1;o<r;++o)if(i=n,n=t[o],e(n,i)){if(o===s){s++;continue}t[s++]=n}return t.length=s,t}function mp(t){for(var e=1,s=t.length,r=t[0],n=t[0],i=1;i<s;++i,n=r)if(n=r,r=t[i],r!==n){if(i===e){e++;continue}t[e++]=r}return t.length=e,t}function yp(t,e,s){return t.length===0?t:e?(s||t.sort(e),dp(t,e)):(s||t.sort(),mp(t))}ga.exports=yp});var we=g((or,va)=>{"use strict";or.__esModule=!0;var wa=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};function gp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var wp=function t(e,s){if((typeof e>"u"?"undefined":wa(e))!=="object")return e;var r=new e.constructor;for(var n in e)if(e.hasOwnProperty(n)){var i=e[n],o=typeof i>"u"?"undefined":wa(i);n==="parent"&&o==="object"?s&&(r[n]=s):i instanceof Array?r[n]=i.map(function(u){return t(u,r)}):r[n]=t(i,r)}return r},vp=function(){function t(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};gp(this,t);for(var s in e)this[s]=e[s];var r=e.spaces;r=r===void 0?{}:r;var n=r.before,i=n===void 0?"":n,o=r.after,u=o===void 0?"":o;this.spaces={before:i,after:u}}return t.prototype.remove=function(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this},t.prototype.replaceWith=function(){if(this.parent){for(var s in arguments)this.parent.insertBefore(this,arguments[s]);this.remove()}return this},t.prototype.next=function(){return this.parent.at(this.parent.index(this)+1)},t.prototype.prev=function(){return this.parent.at(this.parent.index(this)-1)},t.prototype.clone=function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=wp(this);for(var n in s)r[n]=s[n];return r},t.prototype.toString=function(){return[this.spaces.before,String(this.value),this.spaces.after].join("")},t}();or.default=vp;va.exports=or.default});var D=g(M=>{"use strict";M.__esModule=!0;var _x=M.TAG="tag",kx=M.STRING="string",Ex=M.SELECTOR="selector",Sx=M.ROOT="root",Tx=M.PSEUDO="pseudo",Cx=M.NESTING="nesting",Ox=M.ID="id",Ax=M.COMMENT="comment",Nx=M.COMBINATOR="combinator",Px=M.CLASS="class",Rx=M.ATTRIBUTE="attribute",Ix=M.UNIVERSAL="universal"});var ur=g((ar,xa)=>{"use strict";ar.__esModule=!0;var xp=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),bp=we(),_p=Sp(bp),kp=D(),Z=Ep(kp);function Ep(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e.default=t,e}function Sp(t){return t&&t.__esModule?t:{default:t}}function Tp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Cp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Op(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Ap=function(t){Op(e,t);function e(s){Tp(this,e);var r=Cp(this,t.call(this,s));return r.nodes||(r.nodes=[]),r}return e.prototype.append=function(r){return r.parent=this,this.nodes.push(r),this},e.prototype.prepend=function(r){return r.parent=this,this.nodes.unshift(r),this},e.prototype.at=function(r){return this.nodes[r]},e.prototype.index=function(r){return typeof r=="number"?r:this.nodes.indexOf(r)},e.prototype.removeChild=function(r){r=this.index(r),this.at(r).parent=void 0,this.nodes.splice(r,1);var n=void 0;for(var i in this.indexes)n=this.indexes[i],n>=r&&(this.indexes[i]=n-1);return this},e.prototype.removeAll=function(){for(var i=this.nodes,r=Array.isArray(i),n=0,i=r?i:i[Symbol.iterator]();;){var o;if(r){if(n>=i.length)break;o=i[n++]}else{if(n=i.next(),n.done)break;o=n.value}var u=o;u.parent=void 0}return this.nodes=[],this},e.prototype.empty=function(){return this.removeAll()},e.prototype.insertAfter=function(r,n){var i=this.index(r);this.nodes.splice(i+1,0,n);var o=void 0;for(var u in this.indexes)o=this.indexes[u],i<=o&&(this.indexes[u]=o+this.nodes.length);return this},e.prototype.insertBefore=function(r,n){var i=this.index(r);this.nodes.splice(i,0,n);var o=void 0;for(var u in this.indexes)o=this.indexes[u],i<=o&&(this.indexes[u]=o+this.nodes.length);return this},e.prototype.each=function(r){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var n=this.lastEach;if(this.indexes[n]=0,!!this.length){for(var i=void 0,o=void 0;this.indexes[n]<this.length&&(i=this.indexes[n],o=r(this.at(i),i),o!==!1);)this.indexes[n]+=1;if(delete this.indexes[n],o===!1)return!1}},e.prototype.walk=function(r){return this.each(function(n,i){var o=r(n,i);if(o!==!1&&n.length&&(o=n.walk(r)),o===!1)return!1})},e.prototype.walkAttributes=function(r){var n=this;return this.walk(function(i){if(i.type===Z.ATTRIBUTE)return r.call(n,i)})},e.prototype.walkClasses=function(r){var n=this;return this.walk(function(i){if(i.type===Z.CLASS)return r.call(n,i)})},e.prototype.walkCombinators=function(r){var n=this;return this.walk(function(i){if(i.type===Z.COMBINATOR)return r.call(n,i)})},e.prototype.walkComments=function(r){var n=this;return this.walk(function(i){if(i.type===Z.COMMENT)return r.call(n,i)})},e.prototype.walkIds=function(r){var n=this;return this.walk(function(i){if(i.type===Z.ID)return r.call(n,i)})},e.prototype.walkNesting=function(r){var n=this;return this.walk(function(i){if(i.type===Z.NESTING)return r.call(n,i)})},e.prototype.walkPseudos=function(r){var n=this;return this.walk(function(i){if(i.type===Z.PSEUDO)return r.call(n,i)})},e.prototype.walkTags=function(r){var n=this;return this.walk(function(i){if(i.type===Z.TAG)return r.call(n,i)})},e.prototype.walkUniversals=function(r){var n=this;return this.walk(function(i){if(i.type===Z.UNIVERSAL)return r.call(n,i)})},e.prototype.split=function(r){var n=this,i=[];return this.reduce(function(o,u,a){var c=r.call(n,u);return i.push(u),c?(o.push(i),i=[]):a===n.length-1&&o.push(i),o},[])},e.prototype.map=function(r){return this.nodes.map(r)},e.prototype.reduce=function(r,n){return this.nodes.reduce(r,n)},e.prototype.every=function(r){return this.nodes.every(r)},e.prototype.some=function(r){return this.nodes.some(r)},e.prototype.filter=function(r){return this.nodes.filter(r)},e.prototype.sort=function(r){return this.nodes.sort(r)},e.prototype.toString=function(){return this.map(String).join("")},xp(e,[{key:"first",get:function(){return this.at(0)}},{key:"last",get:function(){return this.at(this.length-1)}},{key:"length",get:function(){return this.nodes.length}}]),e}(_p.default);ar.default=Ap;xa.exports=ar.default});var _a=g((lr,ba)=>{"use strict";lr.__esModule=!0;var Np=ur(),Pp=Ip(Np),Rp=D();function Ip(t){return t&&t.__esModule?t:{default:t}}function qp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Lp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Dp(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Bp=function(t){Dp(e,t);function e(s){qp(this,e);var r=Lp(this,t.call(this,s));return r.type=Rp.ROOT,r}return e.prototype.toString=function(){var r=this.reduce(function(n,i){var o=String(i);return o?n+o+",":""},"").slice(0,-1);return this.trailingComma?r+",":r},e}(Pp.default);lr.default=Bp;ba.exports=lr.default});var Ea=g((cr,ka)=>{"use strict";cr.__esModule=!0;var Mp=ur(),Up=$p(Mp),Fp=D();function $p(t){return t&&t.__esModule?t:{default:t}}function Wp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Yp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function zp(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Vp=function(t){zp(e,t);function e(s){Wp(this,e);var r=Yp(this,t.call(this,s));return r.type=Fp.SELECTOR,r}return e}(Up.default);cr.default=Vp;ka.exports=cr.default});var Ue=g((fr,Sa)=>{"use strict";fr.__esModule=!0;var Gp=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),jp=we(),Hp=Kp(jp);function Kp(t){return t&&t.__esModule?t:{default:t}}function Qp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Jp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Xp(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Zp=function(t){Xp(e,t);function e(){return Qp(this,e),Jp(this,t.apply(this,arguments))}return e.prototype.toString=function(){return[this.spaces.before,this.ns,String(this.value),this.spaces.after].join("")},Gp(e,[{key:"ns",get:function(){var r=this.namespace;return r?(typeof r=="string"?r:"")+"|":""}}]),e}(Hp.default);fr.default=Zp;Sa.exports=fr.default});var Ca=g((pr,Ta)=>{"use strict";pr.__esModule=!0;var eh=Ue(),th=sh(eh),rh=D();function sh(t){return t&&t.__esModule?t:{default:t}}function nh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ih(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function oh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var ah=function(t){oh(e,t);function e(s){nh(this,e);var r=ih(this,t.call(this,s));return r.type=rh.CLASS,r}return e.prototype.toString=function(){return[this.spaces.before,this.ns,"."+this.value,this.spaces.after].join("")},e}(th.default);pr.default=ah;Ta.exports=pr.default});var Aa=g((hr,Oa)=>{"use strict";hr.__esModule=!0;var uh=we(),lh=fh(uh),ch=D();function fh(t){return t&&t.__esModule?t:{default:t}}function ph(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function hh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function dh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var mh=function(t){dh(e,t);function e(s){ph(this,e);var r=hh(this,t.call(this,s));return r.type=ch.COMMENT,r}return e}(lh.default);hr.default=mh;Oa.exports=hr.default});var Pa=g((dr,Na)=>{"use strict";dr.__esModule=!0;var yh=Ue(),gh=vh(yh),wh=D();function vh(t){return t&&t.__esModule?t:{default:t}}function xh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function bh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function _h(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var kh=function(t){_h(e,t);function e(s){xh(this,e);var r=bh(this,t.call(this,s));return r.type=wh.ID,r}return e.prototype.toString=function(){return[this.spaces.before,this.ns,"#"+this.value,this.spaces.after].join("")},e}(gh.default);dr.default=kh;Na.exports=dr.default});var Ia=g((mr,Ra)=>{"use strict";mr.__esModule=!0;var Eh=Ue(),Sh=Ch(Eh),Th=D();function Ch(t){return t&&t.__esModule?t:{default:t}}function Oh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ah(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Nh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Ph=function(t){Nh(e,t);function e(s){Oh(this,e);var r=Ah(this,t.call(this,s));return r.type=Th.TAG,r}return e}(Sh.default);mr.default=Ph;Ra.exports=mr.default});var La=g((yr,qa)=>{"use strict";yr.__esModule=!0;var Rh=we(),Ih=Lh(Rh),qh=D();function Lh(t){return t&&t.__esModule?t:{default:t}}function Dh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Bh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Mh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Uh=function(t){Mh(e,t);function e(s){Dh(this,e);var r=Bh(this,t.call(this,s));return r.type=qh.STRING,r}return e}(Ih.default);yr.default=Uh;qa.exports=yr.default});var Ba=g((gr,Da)=>{"use strict";gr.__esModule=!0;var Fh=ur(),$h=Yh(Fh),Wh=D();function Yh(t){return t&&t.__esModule?t:{default:t}}function zh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Vh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Gh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var jh=function(t){Gh(e,t);function e(s){zh(this,e);var r=Vh(this,t.call(this,s));return r.type=Wh.PSEUDO,r}return e.prototype.toString=function(){var r=this.length?"("+this.map(String).join(",")+")":"";return[this.spaces.before,String(this.value),r,this.spaces.after].join("")},e}($h.default);gr.default=jh;Da.exports=gr.default});var Ua=g((wr,Ma)=>{"use strict";wr.__esModule=!0;var Hh=Ue(),Kh=Jh(Hh),Qh=D();function Jh(t){return t&&t.__esModule?t:{default:t}}function Xh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Zh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function ed(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var td=function(t){ed(e,t);function e(s){Xh(this,e);var r=Zh(this,t.call(this,s));return r.type=Qh.ATTRIBUTE,r.raws={},r}return e.prototype.toString=function(){var r=[this.spaces.before,"[",this.ns,this.attribute];return this.operator&&r.push(this.operator),this.value&&r.push(this.value),this.raws.insensitive?r.push(this.raws.insensitive):this.insensitive&&r.push(" i"),r.push("]"),r.concat(this.spaces.after).join("")},e}(Kh.default);wr.default=td;Ma.exports=wr.default});var $a=g((vr,Fa)=>{"use strict";vr.__esModule=!0;var rd=Ue(),sd=id(rd),nd=D();function id(t){return t&&t.__esModule?t:{default:t}}function od(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ad(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function ud(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var ld=function(t){ud(e,t);function e(s){od(this,e);var r=ad(this,t.call(this,s));return r.type=nd.UNIVERSAL,r.value="*",r}return e}(sd.default);vr.default=ld;Fa.exports=vr.default});var Ya=g((xr,Wa)=>{"use strict";xr.__esModule=!0;var cd=we(),fd=hd(cd),pd=D();function hd(t){return t&&t.__esModule?t:{default:t}}function dd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function md(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function yd(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var gd=function(t){yd(e,t);function e(s){dd(this,e);var r=md(this,t.call(this,s));return r.type=pd.COMBINATOR,r}return e}(fd.default);xr.default=gd;Wa.exports=xr.default});var Va=g((br,za)=>{"use strict";br.__esModule=!0;var wd=we(),vd=bd(wd),xd=D();function bd(t){return t&&t.__esModule?t:{default:t}}function _d(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function kd(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Ed(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Sd=function(t){Ed(e,t);function e(s){_d(this,e);var r=kd(this,t.call(this,s));return r.type=xd.NESTING,r.value="&",r}return e}(vd.default);br.default=Sd;za.exports=br.default});var ja=g((_r,Ga)=>{"use strict";_r.__esModule=!0;_r.default=Td;function Td(t){return t.sort(function(e,s){return e-s})}Ga.exports=_r.default});var ru=g((Sr,tu)=>{"use strict";Sr.__esModule=!0;Sr.default=Bd;var Ha=39,Cd=34,Ms=92,Ka=47,St=10,Us=32,Fs=12,$s=9,Ws=13,Qa=43,Ja=62,Xa=126,Za=124,Od=44,Ad=40,Nd=41,Pd=91,Rd=93,Id=59,eu=42,qd=58,Ld=38,Dd=64,kr=/[ \n\t\r\{\(\)'"\\;/]/g,Er=/[ \n\t\r\(\)\*:;@!&'"\+\|~>,\[\]\\]|\/(?=\*)/g;function Bd(t){for(var e=[],s=t.css.valueOf(),r=void 0,n=void 0,i=void 0,o=void 0,u=void 0,a=void 0,c=void 0,f=void 0,p=void 0,l=void 0,y=void 0,x=s.length,h=-1,d=1,m=0,b=function(v,N){if(t.safe)s+=N,n=s.length-1;else throw t.error("Unclosed "+v,d,m-h,m)};m<x;){switch(r=s.charCodeAt(m),r===St&&(h=m,d+=1),r){case St:case Us:case $s:case Ws:case Fs:n=m;do n+=1,r=s.charCodeAt(n),r===St&&(h=n,d+=1);while(r===Us||r===St||r===$s||r===Ws||r===Fs);e.push(["space",s.slice(m,n),d,m-h,m]),m=n-1;break;case Qa:case Ja:case Xa:case Za:n=m;do n+=1,r=s.charCodeAt(n);while(r===Qa||r===Ja||r===Xa||r===Za);e.push(["combinator",s.slice(m,n),d,m-h,m]),m=n-1;break;case eu:e.push(["*","*",d,m-h,m]);break;case Ld:e.push(["&","&",d,m-h,m]);break;case Od:e.push([",",",",d,m-h,m]);break;case Pd:e.push(["[","[",d,m-h,m]);break;case Rd:e.push(["]","]",d,m-h,m]);break;case qd:e.push([":",":",d,m-h,m]);break;case Id:e.push([";",";",d,m-h,m]);break;case Ad:e.push(["(","(",d,m-h,m]);break;case Nd:e.push([")",")",d,m-h,m]);break;case Ha:case Cd:i=r===Ha?"'":'"',n=m;do for(l=!1,n=s.indexOf(i,n+1),n===-1&&b("quote",i),y=n;s.charCodeAt(y-1)===Ms;)y-=1,l=!l;while(l);e.push(["string",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;case Dd:kr.lastIndex=m+1,kr.test(s),kr.lastIndex===0?n=s.length-1:n=kr.lastIndex-2,e.push(["at-word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;case Ms:for(n=m,c=!0;s.charCodeAt(n+1)===Ms;)n+=1,c=!c;r=s.charCodeAt(n+1),c&&r!==Ka&&r!==Us&&r!==St&&r!==$s&&r!==Ws&&r!==Fs&&(n+=1),e.push(["word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;default:r===Ka&&s.charCodeAt(m+1)===eu?(n=s.indexOf("*/",m+2)+1,n===0&&b("comment","*/"),a=s.slice(m,n+1),o=a.split(`
27
- `),u=o.length-1,u>0?(f=d+u,p=n-o[u].length):(f=d,p=h),e.push(["comment",a,d,m-h,f,n-p,m]),h=p,d=f,m=n):(Er.lastIndex=m+1,Er.test(s),Er.lastIndex===0?n=s.length-1:n=Er.lastIndex-2,e.push(["word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n);break}m++}return e}tu.exports=Sr.default});var iu=g((Tr,nu)=>{"use strict";Tr.__esModule=!0;var Md=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),Ud=Ls(),Fd=I(Ud),$d=Ds(),Ys=I($d),Wd=Bs(),Yd=I(Wd),zd=_a(),Vd=I(zd),Gd=Ea(),zs=I(Gd),jd=Ca(),Hd=I(jd),Kd=Aa(),Qd=I(Kd),Jd=Pa(),Xd=I(Jd),Zd=Ia(),em=I(Zd),tm=La(),rm=I(tm),sm=Ba(),nm=I(sm),im=Ua(),om=I(im),am=$a(),um=I(am),lm=Ya(),cm=I(lm),fm=Va(),pm=I(fm),hm=ja(),dm=I(hm),mm=ru(),su=I(mm),ym=D(),gm=wm(ym);function wm(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e.default=t,e}function I(t){return t&&t.__esModule?t:{default:t}}function vm(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var xm=function(){function t(e){vm(this,t),this.input=e,this.lossy=e.options.lossless===!1,this.position=0,this.root=new Vd.default;var s=new zs.default;return this.root.append(s),this.current=s,this.lossy?this.tokens=(0,su.default)({safe:e.safe,css:e.css.trim()}):this.tokens=(0,su.default)(e),this.loop()}return t.prototype.attribute=function(){var s="",r=void 0,n=this.currToken;for(this.position++;this.position<this.tokens.length&&this.currToken[0]!=="]";)s+=this.tokens[this.position][1],this.position++;this.position===this.tokens.length&&!~s.indexOf("]")&&this.error("Expected a closing square bracket.");var i=s.split(/((?:[*~^$|]?=))([^]*)/),o=i[0].split(/(\|)/g),u={operator:i[1],value:i[2],source:{start:{line:n[2],column:n[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:n[4]};if(o.length>1?(o[0]===""&&(o[0]=!0),u.attribute=this.parseValue(o[2]),u.namespace=this.parseNamespace(o[0])):u.attribute=this.parseValue(i[0]),r=new om.default(u),i[2]){var a=i[2].split(/(\s+i\s*?)$/),c=a[0].trim();r.value=this.lossy?c:a[0],a[1]&&(r.insensitive=!0,this.lossy||(r.raws.insensitive=a[1])),r.quoted=c[0]==="'"||c[0]==='"',r.raws.unquoted=r.quoted?c.slice(1,-1):c}this.newNode(r),this.position++},t.prototype.combinator=function(){if(this.currToken[1]==="|")return this.namespace();for(var s=new cm.default({value:"",source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]});this.position<this.tokens.length&&this.currToken&&(this.currToken[0]==="space"||this.currToken[0]==="combinator");)this.nextToken&&this.nextToken[0]==="combinator"?(s.spaces.before=this.parseSpace(this.currToken[1]),s.source.start.line=this.nextToken[2],s.source.start.column=this.nextToken[3],s.source.end.column=this.nextToken[3],s.source.end.line=this.nextToken[2],s.sourceIndex=this.nextToken[4]):this.prevToken&&this.prevToken[0]==="combinator"?s.spaces.after=this.parseSpace(this.currToken[1]):this.currToken[0]==="combinator"?s.value=this.currToken[1]:this.currToken[0]==="space"&&(s.value=this.parseSpace(this.currToken[1]," ")),this.position++;return this.newNode(s)},t.prototype.comma=function(){if(this.position===this.tokens.length-1){this.root.trailingComma=!0,this.position++;return}var s=new zs.default;this.current.parent.append(s),this.current=s,this.position++},t.prototype.comment=function(){var s=new Qd.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]});this.newNode(s),this.position++},t.prototype.error=function(s){throw new this.input.error(s)},t.prototype.missingBackslash=function(){return this.error("Expected a backslash preceding the semicolon.")},t.prototype.missingParenthesis=function(){return this.error("Expected opening parenthesis.")},t.prototype.missingSquareBracket=function(){return this.error("Expected opening square bracket.")},t.prototype.namespace=function(){var s=this.prevToken&&this.prevToken[1]||!0;if(this.nextToken[0]==="word")return this.position++,this.word(s);if(this.nextToken[0]==="*")return this.position++,this.universal(s)},t.prototype.nesting=function(){this.newNode(new pm.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]})),this.position++},t.prototype.parentheses=function(){var s=this.current.last;if(s&&s.type===gm.PSEUDO){var r=new zs.default,n=this.current;s.append(r),this.current=r;var i=1;for(this.position++;this.position<this.tokens.length&&i;)this.currToken[0]==="("&&i++,this.currToken[0]===")"&&i--,i?this.parse():(r.parent.source.end.line=this.currToken[2],r.parent.source.end.column=this.currToken[3],this.position++);i&&this.error("Expected closing parenthesis."),this.current=n}else{var o=1;for(this.position++,s.value+="(";this.position<this.tokens.length&&o;)this.currToken[0]==="("&&o++,this.currToken[0]===")"&&o--,s.value+=this.parseParenthesisToken(this.currToken),this.position++;o&&this.error("Expected closing parenthesis.")}},t.prototype.pseudo=function(){for(var s=this,r="",n=this.currToken;this.currToken&&this.currToken[0]===":";)r+=this.currToken[1],this.position++;if(!this.currToken)return this.error("Expected pseudo-class or pseudo-element");if(this.currToken[0]==="word"){var i=void 0;this.splitWord(!1,function(o,u){r+=o,i=new nm.default({value:r,source:{start:{line:n[2],column:n[3]},end:{line:s.currToken[4],column:s.currToken[5]}},sourceIndex:n[4]}),s.newNode(i),u>1&&s.nextToken&&s.nextToken[0]==="("&&s.error("Misplaced parenthesis.")})}else this.error('Unexpected "'+this.currToken[0]+'" found.')},t.prototype.space=function(){var s=this.currToken;this.position===0||this.prevToken[0]===","||this.prevToken[0]==="("?(this.spaces=this.parseSpace(s[1]),this.position++):this.position===this.tokens.length-1||this.nextToken[0]===","||this.nextToken[0]===")"?(this.current.last.spaces.after=this.parseSpace(s[1]),this.position++):this.combinator()},t.prototype.string=function(){var s=this.currToken;this.newNode(new rm.default({value:this.currToken[1],source:{start:{line:s[2],column:s[3]},end:{line:s[4],column:s[5]}},sourceIndex:s[6]})),this.position++},t.prototype.universal=function(s){var r=this.nextToken;if(r&&r[1]==="|")return this.position++,this.namespace();this.newNode(new um.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]}),s),this.position++},t.prototype.splitWord=function(s,r){for(var n=this,i=this.nextToken,o=this.currToken[1];i&&i[0]==="word";){this.position++;var u=this.currToken[1];if(o+=u,u.lastIndexOf("\\")===u.length-1){var a=this.nextToken;a&&a[0]==="space"&&(o+=this.parseSpace(a[1]," "),this.position++)}i=this.nextToken}var c=(0,Ys.default)(o,"."),f=(0,Ys.default)(o,"#"),p=(0,Ys.default)(o,"#{");p.length&&(f=f.filter(function(y){return!~p.indexOf(y)}));var l=(0,dm.default)((0,Yd.default)((0,Fd.default)([[0],c,f])));l.forEach(function(y,x){var h=l[x+1]||o.length,d=o.slice(y,h);if(x===0&&r)return r.call(n,d,l.length);var m=void 0;~c.indexOf(y)?m=new Hd.default({value:d.slice(1),source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}):~f.indexOf(y)?m=new Xd.default({value:d.slice(1),source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}):m=new em.default({value:d,source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}),n.newNode(m,s)}),this.position++},t.prototype.word=function(s){var r=this.nextToken;return r&&r[1]==="|"?(this.position++,this.namespace()):this.splitWord(s)},t.prototype.loop=function(){for(;this.position<this.tokens.length;)this.parse(!0);return this.root},t.prototype.parse=function(s){switch(this.currToken[0]){case"space":this.space();break;case"comment":this.comment();break;case"(":this.parentheses();break;case")":s&&this.missingParenthesis();break;case"[":this.attribute();break;case"]":this.missingSquareBracket();break;case"at-word":case"word":this.word();break;case":":this.pseudo();break;case";":this.missingBackslash();break;case",":this.comma();break;case"*":this.universal();break;case"&":this.nesting();break;case"combinator":this.combinator();break;case"string":this.string();break}},t.prototype.parseNamespace=function(s){if(this.lossy&&typeof s=="string"){var r=s.trim();return r.length?r:!0}return s},t.prototype.parseSpace=function(s,r){return this.lossy?r||"":s},t.prototype.parseValue=function(s){return this.lossy&&s&&typeof s=="string"?s.trim():s},t.prototype.parseParenthesisToken=function(s){return this.lossy?s[0]==="space"?this.parseSpace(s[1]," "):this.parseValue(s[1]):s[1]},t.prototype.newNode=function(s,r){return r&&(s.namespace=this.parseNamespace(r)),this.spaces&&(s.spaces.before=this.spaces,this.spaces=""),this.current.append(s)},Md(t,[{key:"currToken",get:function(){return this.tokens[this.position]}},{key:"nextToken",get:function(){return this.tokens[this.position+1]}},{key:"prevToken",get:function(){return this.tokens[this.position-1]}}]),t}();Tr.default=xm;nu.exports=Tr.default});var au=g((Cr,ou)=>{"use strict";Cr.__esModule=!0;var bm=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),_m=iu(),km=Em(_m);function Em(t){return t&&t.__esModule?t:{default:t}}function Sm(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Tm=function(){function t(e){return Sm(this,t),this.func=e||function(){},this}return t.prototype.process=function(s){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new km.default({css:s,error:function(o){throw new Error(o)},options:r});return this.res=n,this.func(n),this},bm(t,[{key:"result",get:function(){return String(this.res)}}]),t}();Cr.default=Tm;ou.exports=Cr.default});var G=g((Mx,lu)=>{"use strict";var Vs=function(t,e){let s=new t.constructor;for(let r in t){if(!t.hasOwnProperty(r))continue;let n=t[r],i=typeof n;r==="parent"&&i==="object"?e&&(s[r]=e):r==="source"?s[r]=n:n instanceof Array?s[r]=n.map(o=>Vs(o,s)):r!=="before"&&r!=="after"&&r!=="between"&&r!=="semicolon"&&(i==="object"&&n!==null&&(n=Vs(n)),s[r]=n)}return s};lu.exports=class{constructor(e){e=e||{},this.raws={before:"",after:""};for(let s in e)this[s]=e[s]}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(){return[this.raws.before,String(this.value),this.raws.after].join("")}clone(e){e=e||{};let s=Vs(this);for(let r in e)s[r]=e[r];return s}cloneBefore(e){e=e||{};let s=this.clone(e);return this.parent.insertBefore(this,s),s}cloneAfter(e){e=e||{};let s=this.clone(e);return this.parent.insertAfter(this,s),s}replaceWith(){let e=Array.prototype.slice.call(arguments);if(this.parent){for(let s of e)this.parent.insertBefore(this,s);this.remove()}return this}moveTo(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.append(this),this}moveBefore(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertBefore(e,this),this}moveAfter(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertAfter(e,this),this}next(){let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){let e=this.parent.index(this);return this.parent.nodes[e-1]}toJSON(){let e={};for(let s in this){if(!this.hasOwnProperty(s)||s==="parent")continue;let r=this[s];r instanceof Array?e[s]=r.map(n=>typeof n=="object"&&n.toJSON?n.toJSON():n):typeof r=="object"&&r.toJSON?e[s]=r.toJSON():e[s]=r}return e}root(){let e=this;for(;e.parent;)e=e.parent;return e}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}positionInside(e){let s=this.toString(),r=this.source.start.column,n=this.source.start.line;for(let i=0;i<e;i++)s[i]===`
28
- `?(r=1,n+=1):r+=1;return{line:n,column:r}}positionBy(e){let s=this.source.start;if(Object(e).index)s=this.positionInside(e.index);else if(Object(e).word){let r=this.toString().indexOf(e.word);r!==-1&&(s=this.positionInside(r))}return s}}});var U=g((Ux,cu)=>{"use strict";var Om=G(),Fe=class extends Om{constructor(e){super(e),this.nodes||(this.nodes=[])}push(e){return e.parent=this,this.nodes.push(e),this}each(e){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let s=this.lastEach,r,n;if(this.indexes[s]=0,!!this.nodes){for(;this.indexes[s]<this.nodes.length&&(r=this.indexes[s],n=e(this.nodes[r],r),n!==!1);)this.indexes[s]+=1;return delete this.indexes[s],n}}walk(e){return this.each((s,r)=>{let n=e(s,r);return n!==!1&&s.walk&&(n=s.walk(e)),n})}walkType(e,s){if(!e||!s)throw new Error("Parameters {type} and {callback} are required.");let r=typeof e=="function";return this.walk((n,i)=>{if(r&&n instanceof e||!r&&n.type===e)return s.call(this,n,i)})}append(e){return e.parent=this,this.nodes.push(e),this}prepend(e){return e.parent=this,this.nodes.unshift(e),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let s of this.nodes)s.cleanRaws(e)}insertAfter(e,s){let r=this.index(e),n;this.nodes.splice(r+1,0,s);for(let i in this.indexes)n=this.indexes[i],r<=n&&(this.indexes[i]=n+this.nodes.length);return this}insertBefore(e,s){let r=this.index(e),n;this.nodes.splice(r,0,s);for(let i in this.indexes)n=this.indexes[i],r<=n&&(this.indexes[i]=n+this.nodes.length);return this}removeChild(e){e=this.index(e),this.nodes[e].parent=void 0,this.nodes.splice(e,1);let s;for(let r in this.indexes)s=this.indexes[r],s>=e&&(this.indexes[r]=s-1);return this}removeAll(){for(let e of this.nodes)e.parent=void 0;return this.nodes=[],this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return typeof e=="number"?e:this.nodes.indexOf(e)}get first(){if(this.nodes)return this.nodes[0]}get last(){if(this.nodes)return this.nodes[this.nodes.length-1]}toString(){let e=this.nodes.map(String).join("");return this.value&&(e=this.value+e),this.raws.before&&(e=this.raws.before+e),this.raws.after&&(e+=this.raws.after),e}};Fe.registerWalker=t=>{let e="walk"+t.name;e.lastIndexOf("s")!==e.length-1&&(e+="s"),!Fe.prototype[e]&&(Fe.prototype[e]=function(s){return this.walkType(t,s)})};cu.exports=Fe});var pu=g(($x,fu)=>{"use strict";var Am=U();fu.exports=class extends Am{constructor(e){super(e),this.type="root"}}});var du=g((Yx,hu)=>{"use strict";var Nm=U();hu.exports=class extends Nm{constructor(e){super(e),this.type="value",this.unbalanced=0}}});var gu=g((zx,yu)=>{"use strict";var mu=U(),Or=class extends mu{constructor(e){super(e),this.type="atword"}toString(){let e=this.quoted?this.raws.quote:"";return[this.raws.before,"@",String.prototype.toString.call(this.value),this.raws.after].join("")}};mu.registerWalker(Or);yu.exports=Or});var vu=g((Vx,wu)=>{"use strict";var Pm=U(),Rm=G(),Ar=class extends Rm{constructor(e){super(e),this.type="colon"}};Pm.registerWalker(Ar);wu.exports=Ar});var bu=g((Gx,xu)=>{"use strict";var Im=U(),qm=G(),Nr=class extends qm{constructor(e){super(e),this.type="comma"}};Im.registerWalker(Nr);xu.exports=Nr});var ku=g((jx,_u)=>{"use strict";var Lm=U(),Dm=G(),Pr=class extends Dm{constructor(e){super(e),this.type="comment",this.inline=Object(e).inline||!1}toString(){return[this.raws.before,this.inline?"//":"/*",String(this.value),this.inline?"":"*/",this.raws.after].join("")}};Lm.registerWalker(Pr);_u.exports=Pr});var Tu=g((Hx,Su)=>{"use strict";var Eu=U(),Rr=class extends Eu{constructor(e){super(e),this.type="func",this.unbalanced=-1}};Eu.registerWalker(Rr);Su.exports=Rr});var Ou=g((Kx,Cu)=>{"use strict";var Bm=U(),Mm=G(),Ir=class extends Mm{constructor(e){super(e),this.type="number",this.unit=Object(e).unit||""}toString(){return[this.raws.before,String(this.value),this.unit,this.raws.after].join("")}};Bm.registerWalker(Ir);Cu.exports=Ir});var Nu=g((Qx,Au)=>{"use strict";var Um=U(),Fm=G(),qr=class extends Fm{constructor(e){super(e),this.type="operator"}};Um.registerWalker(qr);Au.exports=qr});var Ru=g((Jx,Pu)=>{"use strict";var $m=U(),Wm=G(),Lr=class extends Wm{constructor(e){super(e),this.type="paren",this.parenType=""}};$m.registerWalker(Lr);Pu.exports=Lr});var qu=g((Xx,Iu)=>{"use strict";var Ym=U(),zm=G(),Dr=class extends zm{constructor(e){super(e),this.type="string"}toString(){let e=this.quoted?this.raws.quote:"";return[this.raws.before,e,this.value+"",e,this.raws.after].join("")}};Ym.registerWalker(Dr);Iu.exports=Dr});var Du=g((Zx,Lu)=>{"use strict";var Vm=U(),Gm=G(),Br=class extends Gm{constructor(e){super(e),this.type="word"}};Vm.registerWalker(Br);Lu.exports=Br});var Mu=g((eb,Bu)=>{"use strict";var jm=U(),Hm=G(),Mr=class extends Hm{constructor(e){super(e),this.type="unicode-range"}};jm.registerWalker(Mr);Bu.exports=Mr});var Fu=g((tb,Uu)=>{"use strict";var Gs=class extends Error{constructor(e){super(e),this.name=this.constructor.name,this.message=e||"An error ocurred while tokzenizing.",typeof Error.captureStackTrace=="function"?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack}};Uu.exports=Gs});var Yu=g((rb,Wu)=>{"use strict";var Ur=/[ \n\t\r\{\(\)'"\\;,/]/g,Km=/[ \n\t\r\(\)\{\}\*:;@!&'"\+\|~>,\[\]\\]|\/(?=\*)/g,$e=/[ \n\t\r\(\)\{\}\*:;@!&'"\-\+\|~>,\[\]\\]|\//g,Qm=/^[a-z0-9]/i,Jm=/^[a-f0-9?\-]/i,$u=Fu();Wu.exports=function(e,s){s=s||{};let r=[],n=e.valueOf(),i=n.length,o=-1,u=1,a=0,c=0,f=null,p,l,y,x,h,d,m,b,w,v,N,F;function H(T){let C=`Unclosed ${T} at line: ${u}, column: ${a-o}, token: ${a}`;throw new $u(C)}function W(){let T=`Syntax error at line: ${u}, column: ${a-o}, token: ${a}`;throw new $u(T)}for(;a<i;){switch(p=n.charCodeAt(a),p===10&&(o=a,u+=1),p){case 10:case 32:case 9:case 13:case 12:l=a;do l+=1,p=n.charCodeAt(l),p===10&&(o=l,u+=1);while(p===32||p===10||p===9||p===13||p===12);r.push(["space",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 58:l=a+1,r.push(["colon",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 44:l=a+1,r.push(["comma",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 123:r.push(["{","{",u,a-o,u,l-o,a]);break;case 125:r.push(["}","}",u,a-o,u,l-o,a]);break;case 40:c++,f=!f&&c===1&&r.length>0&&r[r.length-1][0]==="word"&&r[r.length-1][1]==="url",r.push(["(","(",u,a-o,u,l-o,a]);break;case 41:c--,f=f&&c>0,r.push([")",")",u,a-o,u,l-o,a]);break;case 39:case 34:y=p===39?"'":'"',l=a;do for(v=!1,l=n.indexOf(y,l+1),l===-1&&H("quote",y),N=l;n.charCodeAt(N-1)===92;)N-=1,v=!v;while(v);r.push(["string",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 64:Ur.lastIndex=a+1,Ur.test(n),Ur.lastIndex===0?l=n.length-1:l=Ur.lastIndex-2,r.push(["atword",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 92:l=a,p=n.charCodeAt(l+1),m&&p!==47&&p!==32&&p!==10&&p!==9&&p!==13&&p!==12&&(l+=1),r.push(["word",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 43:case 45:case 42:l=a+1,F=n.slice(a+1,l+1);let T=n.slice(a-1,a);if(p===45&&F.charCodeAt(0)===45){l++,r.push(["word",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break}r.push(["operator",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;default:if(p===47&&(n.charCodeAt(a+1)===42||s.loose&&!f&&n.charCodeAt(a+1)===47)){if(n.charCodeAt(a+1)===42)l=n.indexOf("*/",a+2)+1,l===0&&H("comment","*/");else{let O=n.indexOf(`
24
+ `));let o=this.input.css.valueOf().substring(this.tokenizer.position());n+=o,r=t[3]+o.length-n.length}else this.tokenizer.back(t);break}s.push(t[1]),r=t[2],t=this.tokenizer.nextToken({ignoreUnclosed:!0})}let i=["comment",s.join(""),e[2],r];return this.inlineComment(i),n&&(this.input=new jc(n),this.tokenizer=Gc(this.input)),!0}else if(t[1]==="/"){let e=this.tokenizer.nextToken({ignoreUnclosed:!0});if(e[0]==="comment"&&/^\/\*/.test(e[1]))return e[0]="word",e[1]=e[1].slice(1),t[1]="//",this.tokenizer.back(e),gs.exports.isInlineComment.bind(this)(t)}return!1}}});var fo=g((Gv,co)=>{co.exports={interpolation(t){let e=[t,this.tokenizer.nextToken()],s=["word","}"];if(e[0][1].length>1||e[1][0]!=="{")return this.tokenizer.back(e[1]),!1;for(t=this.tokenizer.nextToken();t&&s.includes(t[0]);)e.push(t),t=this.tokenizer.nextToken();let r=e.map(u=>u[1]),[n]=e,i=e.pop(),o=["word",r.join(""),n[2],i[2]];return this.tokenizer.back(t),this.tokenizer.back(o),!0}}});var ho=g((jv,po)=>{var Hc=/^#[0-9a-fA-F]{6}$|^#[0-9a-fA-F]{3}$/,Kc=/\.[0-9]/,Qc=t=>{let[,e]=t,[s]=e;return(s==="."||s==="#")&&Hc.test(e)===!1&&Kc.test(e)===!1};po.exports={isMixinToken:Qc}});var yo=g((Hv,mo)=>{var Jc=Jt(),Xc=/^url\((.+)\)/;mo.exports=t=>{let{name:e,params:s=""}=t;if(e==="import"&&s.length){t.import=!0;let r=Jc({css:s});for(t.filename=s.replace(Xc,"$1");!r.endOfFile();){let[n,i]=r.nextToken();if(n==="word"&&i==="url")return;if(n==="brackets"){t.options=i,t.filename=s.replace(i,"").trim();break}}}}});var xo=g((Kv,vo)=>{var go=/:$/,wo=/^:(\s+)?/;vo.exports=t=>{let{name:e,params:s=""}=t;if(t.name.slice(-1)===":"){if(go.test(e)){let[r]=e.match(go);t.name=e.replace(r,""),t.raws.afterName=r+(t.raws.afterName||""),t.variable=!0,t.value=t.params}if(wo.test(s)){let[r]=s.match(wo);t.value=s.replace(r,""),t.raws.afterName=(t.raws.afterName||"")+r,t.variable=!0}}}});var Eo=g((Jv,_o)=>{var Zc=Re(),ef=Xt(),{isInlineComment:tf}=lo(),{interpolation:bo}=fo(),{isMixinToken:rf}=ho(),sf=yo(),nf=xo(),of=/(!\s*important)$/i;_o.exports=class extends ef{constructor(...e){super(...e),this.lastNode=null}atrule(e){bo.bind(this)(e)||(super.atrule(e),sf(this.lastNode),nf(this.lastNode))}decl(...e){super.decl(...e),/extend\(.+\)/i.test(this.lastNode.value)&&(this.lastNode.extend=!0)}each(e){e[0][1]=` ${e[0][1]}`;let s=e.findIndex(u=>u[0]==="("),r=e.reverse().find(u=>u[0]===")"),n=e.reverse().indexOf(r),o=e.splice(s,n).map(u=>u[1]).join("");for(let u of e.reverse())this.tokenizer.back(u);this.atrule(this.tokenizer.nextToken()),this.lastNode.function=!0,this.lastNode.params=o}init(e,s,r){super.init(e,s,r),this.lastNode=e}inlineComment(e){let s=new Zc,r=e[1].slice(2);if(this.init(s,e[2]),s.source.end=this.getPosition(e[3]||e[2]),s.inline=!0,s.raws.begin="//",/^\s*$/.test(r))s.text="",s.raws.left=r,s.raws.right="";else{let n=r.match(/^(\s*)([^]*[^\s])(\s*)$/);[,s.raws.left,s.text,s.raws.right]=n}}mixin(e){let[s]=e,r=s[1].slice(0,1),n=e.findIndex(c=>c[0]==="brackets"),i=e.findIndex(c=>c[0]==="("),o="";if((n<0||n>3)&&i>0){let c=e.reduce((w,v,N)=>v[0]===")"?N:w),p=e.slice(i,c+i).map(w=>w[1]).join(""),[l]=e.slice(i),y=[l[2],l[3]],[x]=e.slice(c,c+1),h=[x[2],x[3]],d=["brackets",p].concat(y,h),m=e.slice(0,i),b=e.slice(c+1);e=m,e.push(d),e=e.concat(b)}let u=[];for(let c of e)if((c[1]==="!"||u.length)&&u.push(c),c[1]==="important")break;if(u.length){let[c]=u,f=e.indexOf(c),p=u[u.length-1],l=[c[2],c[3]],y=[p[4],p[5]],h=["word",u.map(d=>d[1]).join("")].concat(l,y);e.splice(f,u.length,h)}let a=e.findIndex(c=>of.test(c[1]));a>0&&([,o]=e[a],e.splice(a,1));for(let c of e.reverse())this.tokenizer.back(c);this.atrule(this.tokenizer.nextToken()),this.lastNode.mixin=!0,this.lastNode.raws.identifier=r,o&&(this.lastNode.important=!0,this.lastNode.raws.important=o)}other(e){tf.bind(this)(e)||super.other(e)}rule(e){let s=e[e.length-1],r=e[e.length-2];if(r[0]==="at-word"&&s[0]==="{"&&(this.tokenizer.back(s),bo.bind(this)(r))){let i=this.tokenizer.nextToken();e=e.slice(0,e.length-2).concat([i]);for(let o of e.reverse())this.tokenizer.back(o);return}super.rule(e),/:extend\(.+\)/i.test(this.lastNode.selector)&&(this.lastNode.extend=!0)}unknownWord(e){let[s]=e;if(e[0][1]==="each"&&e[1][0]==="("){this.each(e);return}if(rf(s)){this.mixin(e);return}super.unknownWord(e)}}});var So=g((Zv,ko)=>{var af=Vt();ko.exports=class extends af{atrule(e,s){if(!e.mixin&&!e.variable&&!e.function){super.atrule(e,s);return}let n=`${e.function?"":e.raws.identifier||"@"}${e.name}`,i=e.params?this.rawValue(e,"params"):"",o=e.raws.important||"";if(e.variable&&(i=e.value),typeof e.raws.afterName<"u"?n+=e.raws.afterName:i&&(n+=" "),e.nodes)this.block(e,n+i+o);else{let u=(e.raws.between||"")+o+(s?";":"");this.builder(n+i+u,e)}}comment(e){if(e.inline){let s=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder(`//${s}${e.text}${r}`,e)}else super.comment(e)}}});var To=g((ex,ws)=>{var uf=qe(),lf=Eo(),cf=So();ws.exports={parse(t,e){let s=new uf(t,e),r=new lf(s);return r.parse(),r.root.walk(n=>{let i=s.css.lastIndexOf(n.source.input.css);if(i===0)return;if(i+n.source.input.css.length!==s.css.length)throw new Error("Invalid state detected in postcss-less");let o=i+n.source.start.offset,u=s.fromOffset(i+n.source.start.offset);if(n.source.start={offset:o,line:u.line,column:u.col},n.source.end){let a=i+n.source.end.offset,c=s.fromOffset(i+n.source.end.offset);n.source.end={offset:a,line:c.line,column:c.col}}}),r.root},stringify(t,e){new cf(e).stringify(t)},nodeToString(t){let e="";return ws.exports.stringify(t,s=>{e+=s}),e}}});var er=g((tx,Ao)=>{"use strict";var ff=le(),Co,Oo,ye=class extends ff{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new Co(new Oo,this,e).stringify()}};ye.registerLazyResult=t=>{Co=t};ye.registerProcessor=t=>{Oo=t};Ao.exports=ye;ye.default=ye});var Po=g((rx,No)=>{"use strict";var pf=jt(),hf=Re(),df=mt(),mf=qe(),yf=cs(),gf=De(),wf=Ht();function wt(t,e){if(Array.isArray(t))return t.map(n=>wt(n));let{inputs:s,...r}=t;if(s){e=[];for(let n of s){let i={...n,__proto__:mf.prototype};i.map&&(i.map={...i.map,__proto__:yf.prototype}),e.push(i)}}if(r.nodes&&(r.nodes=t.nodes.map(n=>wt(n,e))),r.source){let{inputId:n,...i}=r.source;r.source=i,n!=null&&(r.source.input=e[n])}if(r.type==="root")return new gf(r);if(r.type==="decl")return new df(r);if(r.type==="rule")return new wf(r);if(r.type==="comment")return new hf(r);if(r.type==="atrule")return new pf(r);throw new Error("Unknown node type: "+t.type)}No.exports=wt;wt.default=wt});var vs=g((sx,Ro)=>{Ro.exports=class{generate(){}}});var xs=g((ix,Io)=>{"use strict";var vt=class{constructor(e,s={}){if(this.type="warning",this.text=e,s.node&&s.node.source){let r=s.node.rangeBy(s);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in s)this[r]=s[r]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};Io.exports=vt;vt.default=vt});var tr=g((ox,qo)=>{"use strict";var vf=xs(),xt=class{get content(){return this.css}constructor(e,s,r){this.processor=e,this.messages=[],this.root=s,this.opts=r,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,s={}){s.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(s.plugin=this.lastPlugin.postcssPlugin);let r=new vf(e,s);return this.messages.push(r),r}warnings(){return this.messages.filter(e=>e.type==="warning")}};qo.exports=xt;xt.default=xt});var bs=g((ax,Do)=>{"use strict";var Lo={};Do.exports=function(e){Lo[e]||(Lo[e]=!0,typeof console<"u"&&console.warn&&console.warn(e))}});var ks=g((lx,Fo)=>{"use strict";var xf=le(),bf=er(),_f=vs(),Ef=gt(),Bo=tr(),kf=De(),Sf=ut(),{isClean:K,my:Tf}=zt(),ux=bs(),Cf={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},Of={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},Af={Once:!0,postcssPlugin:!0,prepare:!0},Me=0;function bt(t){return typeof t=="object"&&typeof t.then=="function"}function Uo(t){let e=!1,s=Cf[t.type];return t.type==="decl"?e=t.prop.toLowerCase():t.type==="atrule"&&(e=t.name.toLowerCase()),e&&t.append?[s,s+"-"+e,Me,s+"Exit",s+"Exit-"+e]:e?[s,s+"-"+e,s+"Exit",s+"Exit-"+e]:t.append?[s,Me,s+"Exit"]:[s,s+"Exit"]}function Mo(t){let e;return t.type==="document"?e=["Document",Me,"DocumentExit"]:t.type==="root"?e=["Root",Me,"RootExit"]:e=Uo(t),{eventIndex:0,events:e,iterator:0,node:t,visitorIndex:0,visitors:[]}}function _s(t){return t[K]=!1,t.nodes&&t.nodes.forEach(e=>_s(e)),t}var Es={},fe=class t{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(e,s,r){this.stringified=!1,this.processed=!1;let n;if(typeof s=="object"&&s!==null&&(s.type==="root"||s.type==="document"))n=_s(s);else if(s instanceof t||s instanceof Bo)n=_s(s.root),s.map&&(typeof r.map>"u"&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=s.map);else{let i=Ef;r.syntax&&(i=r.syntax.parse),r.parser&&(i=r.parser),i.parse&&(i=i.parse);try{n=i(s,r)}catch(o){this.processed=!0,this.error=o}n&&!n[Tf]&&xf.rebuild(n)}this.result=new Bo(e,n,r),this.helpers={...Es,postcss:Es,result:this.result},this.plugins=this.processor.plugins.map(i=>typeof i=="object"&&i.prepare?{...i,...i.prepare(this.result)}:i)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,s){let r=this.result.lastPlugin;try{s&&s.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=r.postcssPlugin,e.setMessage()):r.postcssVersion}catch(n){console&&console.error&&console.error(n)}return e}prepareVisitors(){this.listeners={};let e=(s,r,n)=>{this.listeners[r]||(this.listeners[r]=[]),this.listeners[r].push([s,n])};for(let s of this.plugins)if(typeof s=="object")for(let r in s){if(!Of[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${s.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!Af[r])if(typeof s[r]=="object")for(let n in s[r])n==="*"?e(s,r,s[r][n]):e(s,r+"-"+n.toLowerCase(),s[r][n]);else typeof s[r]=="function"&&e(s,r,s[r])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let s=this.plugins[e],r=this.runOnRoot(s);if(bt(r))try{await r}catch(n){throw this.handleError(n)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[K];){e[K]=!0;let s=[Mo(e)];for(;s.length>0;){let r=this.visitTick(s);if(bt(r))try{await r}catch(n){let i=s[s.length-1].node;throw this.handleError(n,i)}}}if(this.listeners.OnceExit)for(let[s,r]of this.listeners.OnceExit){this.result.lastPlugin=s;try{if(e.type==="document"){let n=e.nodes.map(i=>r(i,this.helpers));await Promise.all(n)}else await r(e,this.helpers)}catch(n){throw this.handleError(n)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let s=this.result.root.nodes.map(r=>e.Once(r,this.helpers));return bt(s[0])?Promise.all(s):s}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(s){throw this.handleError(s)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,s=Sf;e.syntax&&(s=e.syntax.stringify),e.stringifier&&(s=e.stringifier),s.stringify&&(s=s.stringify);let n=new _f(s,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let s=this.runOnRoot(e);if(bt(s))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[K];)e[K]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let s of e.nodes)this.visitSync(this.listeners.OnceExit,s);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,s){return this.async().then(e,s)}toString(){return this.css}visitSync(e,s){for(let[r,n]of e){this.result.lastPlugin=r;let i;try{i=n(s,this.helpers)}catch(o){throw this.handleError(o,s.proxyOf)}if(s.type!=="root"&&s.type!=="document"&&!s.parent)return!0;if(bt(i))throw this.getAsyncError()}}visitTick(e){let s=e[e.length-1],{node:r,visitors:n}=s;if(r.type!=="root"&&r.type!=="document"&&!r.parent){e.pop();return}if(n.length>0&&s.visitorIndex<n.length){let[o,u]=n[s.visitorIndex];s.visitorIndex+=1,s.visitorIndex===n.length&&(s.visitors=[],s.visitorIndex=0),this.result.lastPlugin=o;try{return u(r.toProxy(),this.helpers)}catch(a){throw this.handleError(a,r)}}if(s.iterator!==0){let o=s.iterator,u;for(;u=r.nodes[r.indexes[o]];)if(r.indexes[o]+=1,!u[K]){u[K]=!0,e.push(Mo(u));return}s.iterator=0,delete r.indexes[o]}let i=s.events;for(;s.eventIndex<i.length;){let o=i[s.eventIndex];if(s.eventIndex+=1,o===Me){r.nodes&&r.nodes.length&&(r[K]=!0,s.iterator=r.getIterator());return}else if(this.listeners[o]){s.visitors=this.listeners[o];return}}e.pop()}walkSync(e){e[K]=!0;let s=Uo(e);for(let r of s)if(r===Me)e.nodes&&e.each(n=>{n[K]||this.walkSync(n)});else{let n=this.listeners[r];if(n&&this.visitSync(n,e.toProxy()))return}}warnings(){return this.sync().warnings()}};fe.registerPostcss=t=>{Es=t};Fo.exports=fe;fe.default=fe;kf.registerLazyResult(fe);bf.registerLazyResult(fe)});var Wo=g((fx,$o)=>{"use strict";var Nf=vs(),Pf=gt(),Rf=tr(),If=ut(),cx=bs(),_t=class{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,s=Pf;try{e=s(this._css,this._opts)}catch(r){this.error=r}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(e,s,r){s=s.toString(),this.stringified=!1,this._processor=e,this._css=s,this._opts=r,this._map=void 0;let n,i=If;this.result=new Rf(this._processor,n,this._opts),this.result.css=s;let o=this;Object.defineProperty(this.result,"root",{get(){return o.root}});let u=new Nf(i,n,this._opts,s);if(u.isMap()){let[a,c]=u.generate();a&&(this.result.css=a),c&&(this.result.map=c)}else u.clearAnnotation(),this.result.css=u.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,s){return this.async().then(e,s)}toString(){return this._css}warnings(){return[]}};$o.exports=_t;_t.default=_t});var Vo=g((px,Yo)=>{"use strict";var qf=er(),Lf=ks(),Df=Wo(),Bf=De(),ge=class{constructor(e=[]){this.version="8.5.3",this.plugins=this.normalize(e)}normalize(e){let s=[];for(let r of e)if(r.postcss===!0?r=r():r.postcss&&(r=r.postcss),typeof r=="object"&&Array.isArray(r.plugins))s=s.concat(r.plugins);else if(typeof r=="object"&&r.postcssPlugin)s.push(r);else if(typeof r=="function")s.push(r);else if(!(typeof r=="object"&&(r.parse||r.stringify)))throw new Error(r+" is not a PostCSS plugin");return s}process(e,s={}){return!this.plugins.length&&!s.parser&&!s.stringifier&&!s.syntax?new Df(this,e,s):new Lf(this,e,s)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};Yo.exports=ge;ge.default=ge;Bf.registerProcessor(ge);qf.registerProcessor(ge)});var rr=g((hx,Jo)=>{"use strict";var zo=jt(),Go=Re(),Mf=le(),Uf=Yt(),jo=mt(),Ho=er(),Ff=Po(),$f=qe(),Wf=ks(),Yf=ms(),Vf=pt(),zf=gt(),Ss=Vo(),Gf=tr(),Ko=De(),Qo=Ht(),jf=ut(),Hf=xs();function k(...t){return t.length===1&&Array.isArray(t[0])&&(t=t[0]),new Ss(t)}k.plugin=function(e,s){let r=!1;function n(...o){console&&console.warn&&!r&&(r=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide:
25
+ https://evilmartians.com/chronicles/postcss-8-plugin-migration`));let u=s(...o);return u.postcssPlugin=e,u.postcssVersion=new Ss().version,u}let i;return Object.defineProperty(n,"postcss",{get(){return i||(i=n()),i}}),n.process=function(o,u,a){return k([n(a)]).process(o,u)},n};k.stringify=jf;k.parse=zf;k.fromJSON=Ff;k.list=Yf;k.comment=t=>new Go(t);k.atRule=t=>new zo(t);k.decl=t=>new jo(t);k.rule=t=>new Qo(t);k.root=t=>new Ko(t);k.document=t=>new Ho(t);k.CssSyntaxError=Uf;k.Declaration=jo;k.Container=Mf;k.Processor=Ss;k.Document=Ho;k.Comment=Go;k.Warning=Hf;k.AtRule=zo;k.Result=Gf;k.Input=$f;k.Rule=Qo;k.Root=Ko;k.Node=Vf;Wf.registerPostcss(k);Jo.exports=k;k.default=k});var Zo=g((dx,Xo)=>{var{Container:Kf}=rr(),Ts=class extends Kf{constructor(e){super(e),this.type="decl",this.isNested=!0,this.nodes||(this.nodes=[])}};Xo.exports=Ts});var ra=g((mx,ta)=>{"use strict";var sr=/[\t\n\f\r "#'()/;[\\\]{}]/g,nr=/[,\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,Qf=/.[\r\n"'(/\\]/,ea=/[\da-f]/i,ir=/[\n\f\r]/g;ta.exports=function(e,s={}){let r=e.css.valueOf(),n=s.ignoreErrors,i,o,u,a,c,f,p,l,y,x=r.length,h=0,d=[],m=[],b;function w(){return h}function v(T){throw e.error("Unclosed "+T,h)}function N(){return m.length===0&&h>=x}function F(){let T=1,C=!1,O=!1;for(;T>0;)o+=1,r.length<=o&&v("interpolation"),i=r.charCodeAt(o),l=r.charCodeAt(o+1),C?!O&&i===C?(C=!1,O=!1):i===92?O=!O:O&&(O=!1):i===39||i===34?C=i:i===125?T-=1:i===35&&l===123&&(T+=1)}function Q(T){if(m.length)return m.pop();if(h>=x)return;let C=T?T.ignoreUnclosed:!1;switch(i=r.charCodeAt(h),i){case 10:case 32:case 9:case 13:case 12:{o=h;do o+=1,i=r.charCodeAt(o);while(i===32||i===10||i===9||i===13||i===12);y=["space",r.slice(h,o)],h=o-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let O=String.fromCharCode(i);y=[O,O,h];break}case 44:{y=["word",",",h,h+1];break}case 40:{if(p=d.length?d.pop()[1]:"",l=r.charCodeAt(h+1),p==="url"&&l!==39&&l!==34){for(b=1,f=!1,o=h+1;o<=r.length-1;){if(l=r.charCodeAt(o),l===92)f=!f;else if(l===40)b+=1;else if(l===41&&(b-=1,b===0))break;o+=1}a=r.slice(h,o+1),y=["brackets",a,h,o],h=o}else o=r.indexOf(")",h+1),a=r.slice(h,o+1),o===-1||Qf.test(a)?y=["(","(",h]:(y=["brackets",a,h,o],h=o);break}case 39:case 34:{for(u=i,o=h,f=!1;o<x&&(o++,o===x&&v("string"),i=r.charCodeAt(o),l=r.charCodeAt(o+1),!(!f&&i===u));)i===92?f=!f:f?f=!1:i===35&&l===123&&F();y=["string",r.slice(h,o+1),h,o],h=o;break}case 64:{sr.lastIndex=h+1,sr.test(r),sr.lastIndex===0?o=r.length-1:o=sr.lastIndex-2,y=["at-word",r.slice(h,o+1),h,o],h=o;break}case 92:{for(o=h,c=!0;r.charCodeAt(o+1)===92;)o+=1,c=!c;if(i=r.charCodeAt(o+1),c&&i!==47&&i!==32&&i!==10&&i!==9&&i!==13&&i!==12&&(o+=1,ea.test(r.charAt(o)))){for(;ea.test(r.charAt(o+1));)o+=1;r.charCodeAt(o+1)===32&&(o+=1)}y=["word",r.slice(h,o+1),h,o],h=o;break}default:l=r.charCodeAt(h+1),i===35&&l===123?(o=h,F(),a=r.slice(h,o+1),y=["word",a,h,o],h=o):i===47&&l===42?(o=r.indexOf("*/",h+2)+1,o===0&&(n||C?o=r.length:v("comment")),y=["comment",r.slice(h,o+1),h,o],h=o):i===47&&l===47?(ir.lastIndex=h+1,ir.test(r),ir.lastIndex===0?o=r.length-1:o=ir.lastIndex-2,a=r.slice(h,o+1),y=["comment",a,h,o,"inline"],h=o):(nr.lastIndex=h+1,nr.test(r),nr.lastIndex===0?o=r.length-1:o=nr.lastIndex-2,y=["word",r.slice(h,o+1),h,o],d.push(y),h=o);break}return h++,y}function W(T){m.push(T)}return{back:W,endOfFile:N,nextToken:Q,position:w}}});var na=g((yx,sa)=>{var{Comment:Jf}=rr(),Xf=Xt(),Zf=Zo(),ep=ra(),Cs=class extends Xf{atrule(e){let s=e[1],r=e;for(;!this.tokenizer.endOfFile();){let n=this.tokenizer.nextToken();if(n[0]==="word"&&n[2]===r[3]+1)s+=n[1],r=n;else{this.tokenizer.back(n);break}}super.atrule(["at-word",s,e[2],r[3]])}comment(e){if(e[4]==="inline"){let s=new Jf;this.init(s,e[2]),s.raws.inline=!0;let r=this.input.fromOffset(e[3]);s.source.end={column:r.col,line:r.line,offset:e[3]+1};let n=e[1].slice(2);if(/^\s*$/.test(n))s.text="",s.raws.left=n,s.raws.right="";else{let i=n.match(/^(\s*)([^]*\S)(\s*)$/),o=i[2].replace(/(\*\/|\/\*)/g,"*//*");s.text=o,s.raws.left=i[1],s.raws.right=i[3],s.raws.text=i[2]}}else super.comment(e)}createTokenizer(){this.tokenizer=ep(this.input)}raw(e,s,r,n){if(super.raw(e,s,r,n),e.raws[s]){let i=e.raws[s].raw;e.raws[s].raw=r.reduce((o,u)=>{if(u[0]==="comment"&&u[4]==="inline"){let a=u[1].slice(2).replace(/(\*\/|\/\*)/g,"*//*");return o+"/*"+a+"*/"}else return o+u[1]},""),i!==e.raws[s].raw&&(e.raws[s].scss=i)}}rule(e){let s=!1,r=0,n="";for(let i of e)if(s)i[0]!=="comment"&&i[0]!=="{"&&(n+=i[1]);else{if(i[0]==="space"&&i[1].includes(`
26
+ `))break;i[0]==="("?r+=1:i[0]===")"?r-=1:r===0&&i[0]===":"&&(s=!0)}if(!s||n.trim()===""||/^[#:A-Za-z-]/.test(n))super.rule(e);else{e.pop();let i=new Zf;this.init(i,e[0][2]);let o;for(let a=e.length-1;a>=0;a--)if(e[a][0]!=="space"){o=e[a];break}if(o[3]){let a=this.input.fromOffset(o[3]);i.source.end={column:a.col,line:a.line,offset:o[3]+1}}else{let a=this.input.fromOffset(o[2]);i.source.end={column:a.col,line:a.line,offset:o[2]+1}}for(;e[0][0]!=="word";)i.raws.before+=e.shift()[1];if(e[0][2]){let a=this.input.fromOffset(e[0][2]);i.source.start={column:a.col,line:a.line,offset:e[0][2]}}for(i.prop="";e.length;){let a=e[0][0];if(a===":"||a==="space"||a==="comment")break;i.prop+=e.shift()[1]}i.raws.between="";let u;for(;e.length;)if(u=e.shift(),u[0]===":"){i.raws.between+=u[1];break}else i.raws.between+=u[1];(i.prop[0]==="_"||i.prop[0]==="*")&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1)),i.raws.between+=this.spacesAndCommentsFromStart(e),this.precheckMissedSemicolon(e);for(let a=e.length-1;a>0;a--){if(u=e[a],u[1]==="!important"){i.important=!0;let c=this.stringFrom(e,a);c=this.spacesFromEnd(e)+c,c!==" !important"&&(i.raws.important=c);break}else if(u[1]==="important"){let c=e.slice(0),f="";for(let p=a;p>0;p--){let l=c[p][0];if(f.trim().indexOf("!")===0&&l!=="space")break;f=c.pop()[1]+f}f.trim().indexOf("!")===0&&(i.important=!0,i.raws.important=f,e=c)}if(u[0]!=="space"&&u[0]!=="comment")break}this.raw(i,"value",e),i.value.includes(":")&&this.checkMissedSemicolon(e),this.current=i}}};sa.exports=Cs});var oa=g((gx,ia)=>{var{Input:tp}=rr(),rp=na();ia.exports=function(e,s){let r=new tp(e,s),n=new rp(r);return n.parse(),n.root}});var As=g(Os=>{"use strict";Object.defineProperty(Os,"__esModule",{value:!0});function np(t){this.after=t.after,this.before=t.before,this.type=t.type,this.value=t.value,this.sourceIndex=t.sourceIndex}Os.default=np});var Ps=g(Ns=>{"use strict";Object.defineProperty(Ns,"__esModule",{value:!0});var ip=As(),ua=op(ip);function op(t){return t&&t.__esModule?t:{default:t}}function Et(t){var e=this;this.constructor(t),this.nodes=t.nodes,this.after===void 0&&(this.after=this.nodes.length>0?this.nodes[this.nodes.length-1].after:""),this.before===void 0&&(this.before=this.nodes.length>0?this.nodes[0].before:""),this.sourceIndex===void 0&&(this.sourceIndex=this.before.length),this.nodes.forEach(function(s){s.parent=e})}Et.prototype=Object.create(ua.default.prototype);Et.constructor=ua.default;Et.prototype.walk=function(e,s){for(var r=typeof e=="string"||e instanceof RegExp,n=r?s:e,i=typeof e=="string"?new RegExp(e):e,o=0;o<this.nodes.length;o++){var u=this.nodes[o],a=r?i.test(u.type):!0;if(a&&n&&n(u,o,this.nodes)===!1||u.nodes&&u.walk(e,s)===!1)return!1}return!0};Et.prototype.each=function(){for(var e=arguments.length<=0||arguments[0]===void 0?function(){}:arguments[0],s=0;s<this.nodes.length;s++){var r=this.nodes[s];if(e(r,s,this.nodes)===!1)return!1}return!0};Ns.default=Et});var pa=g(kt=>{"use strict";Object.defineProperty(kt,"__esModule",{value:!0});kt.parseMediaFeature=fa;kt.parseMediaQuery=Is;kt.parseMediaList=lp;var ap=As(),la=ca(ap),up=Ps(),Rs=ca(up);function ca(t){return t&&t.__esModule?t:{default:t}}function fa(t){var e=arguments.length<=1||arguments[1]===void 0?0:arguments[1],s=[{mode:"normal",character:null}],r=[],n=0,i="",o=null,u=null,a=e,c=t;t[0]==="("&&t[t.length-1]===")"&&(c=t.substring(1,t.length-1),a++);for(var f=0;f<c.length;f++){var p=c[f];if((p==="'"||p==='"')&&(s[n].isCalculationEnabled===!0?(s.push({mode:"string",isCalculationEnabled:!1,character:p}),n++):s[n].mode==="string"&&s[n].character===p&&c[f-1]!=="\\"&&(s.pop(),n--)),p==="{"?(s.push({mode:"interpolation",isCalculationEnabled:!0}),n++):p==="}"&&(s.pop(),n--),s[n].mode==="normal"&&p===":"){var l=c.substring(f+1);u={type:"value",before:/^(\s*)/.exec(l)[1],after:/(\s*)$/.exec(l)[1],value:l.trim()},u.sourceIndex=u.before.length+f+1+a,o={type:"colon",sourceIndex:f+a,after:u.before,value:":"};break}i+=p}return i={type:"media-feature",before:/^(\s*)/.exec(i)[1],after:/(\s*)$/.exec(i)[1],value:i.trim()},i.sourceIndex=i.before.length+a,r.push(i),o!==null&&(o.before=i.after,r.push(o)),u!==null&&r.push(u),r}function Is(t){var e=arguments.length<=1||arguments[1]===void 0?0:arguments[1],s=[],r=0,n=!1,i=void 0;function o(){return{before:"",after:"",value:""}}i=o();for(var u=0;u<t.length;u++){var a=t[u];n?(i.value+=a,(a==="{"||a==="(")&&r++,(a===")"||a==="}")&&r--):a.search(/\s/)!==-1?i.before+=a:(a==="("&&(i.type="media-feature-expression",r++),i.value=a,i.sourceIndex=e+u,n=!0),n&&r===0&&(a===")"||u===t.length-1||t[u+1].search(/\s/)!==-1)&&(["not","only","and"].indexOf(i.value)!==-1&&(i.type="keyword"),i.type==="media-feature-expression"&&(i.nodes=fa(i.value,i.sourceIndex)),s.push(Array.isArray(i.nodes)?new Rs.default(i):new la.default(i)),i=o(),n=!1)}for(var c=0;c<s.length;c++)if(i=s[c],c>0&&(s[c-1].after=i.before),i.type===void 0){if(c>0){if(s[c-1].type==="media-feature-expression"){i.type="keyword";continue}if(s[c-1].value==="not"||s[c-1].value==="only"){i.type="media-type";continue}if(s[c-1].value==="and"){i.type="media-feature-expression";continue}s[c-1].type==="media-type"&&(s[c+1]?i.type=s[c+1].type==="media-feature-expression"?"keyword":"media-feature-expression":i.type="media-feature-expression")}if(c===0){if(!s[c+1]){i.type="media-type";continue}if(s[c+1]&&(s[c+1].type==="media-feature-expression"||s[c+1].type==="keyword")){i.type="media-type";continue}if(s[c+2]){if(s[c+2].type==="media-feature-expression"){i.type="media-type",s[c+1].type="keyword";continue}if(s[c+2].type==="keyword"){i.type="keyword",s[c+1].type="media-type";continue}}if(s[c+3]&&s[c+3].type==="media-feature-expression"){i.type="keyword",s[c+1].type="media-type",s[c+2].type="keyword";continue}}}return s}function lp(t){var e=[],s=0,r=0,n=/^(\s*)url\s*\(/.exec(t);if(n!==null){for(var i=n[0].length,o=1;o>0;){var u=t[i];u==="("&&o++,u===")"&&o--,i++}e.unshift(new la.default({type:"url",value:t.substring(0,i).trim(),sourceIndex:n[1].length,before:n[1],after:/^(\s*)/.exec(t.substring(i))[1]})),s=i}for(var a=s;a<t.length;a++){var c=t[a];if(c==="("&&r++,c===")"&&r--,r===0&&c===","){var f=t.substring(s,a),p=/^(\s*)/.exec(f)[1];e.push(new Rs.default({type:"media-query",value:f.trim(),sourceIndex:s+p.length,nodes:Is(f,s),before:p,after:/(\s*)$/.exec(f)[1]})),s=a+1}}var l=t.substring(s),y=/^(\s*)/.exec(l)[1];return e.push(new Rs.default({type:"media-query",value:l.trim(),sourceIndex:s+y.length,nodes:Is(l,s),before:y,after:/(\s*)$/.exec(l)[1]})),e}});var ha=g(qs=>{"use strict";Object.defineProperty(qs,"__esModule",{value:!0});qs.default=dp;var cp=Ps(),fp=hp(cp),pp=pa();function hp(t){return t&&t.__esModule?t:{default:t}}function dp(t){return new fp.default({nodes:(0,pp.parseMediaList)(t),type:"media-query-list",value:t.trim()})}});var Ds=g((Tx,ya)=>{ya.exports=function(e,s){if(s=typeof s=="number"?s:1/0,!s)return Array.isArray(e)?e.map(function(n){return n}):e;return r(e,1);function r(n,i){return n.reduce(function(o,u){return Array.isArray(u)&&i<s?o.concat(r(u,i+1)):o.concat(u)},[])}}});var Bs=g((Cx,ga)=>{ga.exports=function(t,e){for(var s=-1,r=[];(s=t.indexOf(e,s+1))!==-1;)r.push(s);return r}});var Ms=g((Ox,wa)=>{"use strict";function gp(t,e){for(var s=1,r=t.length,n=t[0],i=t[0],o=1;o<r;++o)if(i=n,n=t[o],e(n,i)){if(o===s){s++;continue}t[s++]=n}return t.length=s,t}function wp(t){for(var e=1,s=t.length,r=t[0],n=t[0],i=1;i<s;++i,n=r)if(n=r,r=t[i],r!==n){if(i===e){e++;continue}t[e++]=r}return t.length=e,t}function vp(t,e,s){return t.length===0?t:e?(s||t.sort(e),gp(t,e)):(s||t.sort(),wp(t))}wa.exports=vp});var we=g((or,xa)=>{"use strict";or.__esModule=!0;var va=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};function xp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var bp=function t(e,s){if((typeof e>"u"?"undefined":va(e))!=="object")return e;var r=new e.constructor;for(var n in e)if(e.hasOwnProperty(n)){var i=e[n],o=typeof i>"u"?"undefined":va(i);n==="parent"&&o==="object"?s&&(r[n]=s):i instanceof Array?r[n]=i.map(function(u){return t(u,r)}):r[n]=t(i,r)}return r},_p=function(){function t(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};xp(this,t);for(var s in e)this[s]=e[s];var r=e.spaces;r=r===void 0?{}:r;var n=r.before,i=n===void 0?"":n,o=r.after,u=o===void 0?"":o;this.spaces={before:i,after:u}}return t.prototype.remove=function(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this},t.prototype.replaceWith=function(){if(this.parent){for(var s in arguments)this.parent.insertBefore(this,arguments[s]);this.remove()}return this},t.prototype.next=function(){return this.parent.at(this.parent.index(this)+1)},t.prototype.prev=function(){return this.parent.at(this.parent.index(this)-1)},t.prototype.clone=function(){var s=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=bp(this);for(var n in s)r[n]=s[n];return r},t.prototype.toString=function(){return[this.spaces.before,String(this.value),this.spaces.after].join("")},t}();or.default=_p;xa.exports=or.default});var B=g(M=>{"use strict";M.__esModule=!0;var Ax=M.TAG="tag",Nx=M.STRING="string",Px=M.SELECTOR="selector",Rx=M.ROOT="root",Ix=M.PSEUDO="pseudo",qx=M.NESTING="nesting",Lx=M.ID="id",Dx=M.COMMENT="comment",Bx=M.COMBINATOR="combinator",Mx=M.CLASS="class",Ux=M.ATTRIBUTE="attribute",Fx=M.UNIVERSAL="universal"});var ur=g((ar,ba)=>{"use strict";ar.__esModule=!0;var Ep=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),kp=we(),Sp=Op(kp),Tp=B(),Z=Cp(Tp);function Cp(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e.default=t,e}function Op(t){return t&&t.__esModule?t:{default:t}}function Ap(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Np(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Pp(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Rp=function(t){Pp(e,t);function e(s){Ap(this,e);var r=Np(this,t.call(this,s));return r.nodes||(r.nodes=[]),r}return e.prototype.append=function(r){return r.parent=this,this.nodes.push(r),this},e.prototype.prepend=function(r){return r.parent=this,this.nodes.unshift(r),this},e.prototype.at=function(r){return this.nodes[r]},e.prototype.index=function(r){return typeof r=="number"?r:this.nodes.indexOf(r)},e.prototype.removeChild=function(r){r=this.index(r),this.at(r).parent=void 0,this.nodes.splice(r,1);var n=void 0;for(var i in this.indexes)n=this.indexes[i],n>=r&&(this.indexes[i]=n-1);return this},e.prototype.removeAll=function(){for(var i=this.nodes,r=Array.isArray(i),n=0,i=r?i:i[Symbol.iterator]();;){var o;if(r){if(n>=i.length)break;o=i[n++]}else{if(n=i.next(),n.done)break;o=n.value}var u=o;u.parent=void 0}return this.nodes=[],this},e.prototype.empty=function(){return this.removeAll()},e.prototype.insertAfter=function(r,n){var i=this.index(r);this.nodes.splice(i+1,0,n);var o=void 0;for(var u in this.indexes)o=this.indexes[u],i<=o&&(this.indexes[u]=o+this.nodes.length);return this},e.prototype.insertBefore=function(r,n){var i=this.index(r);this.nodes.splice(i,0,n);var o=void 0;for(var u in this.indexes)o=this.indexes[u],i<=o&&(this.indexes[u]=o+this.nodes.length);return this},e.prototype.each=function(r){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var n=this.lastEach;if(this.indexes[n]=0,!!this.length){for(var i=void 0,o=void 0;this.indexes[n]<this.length&&(i=this.indexes[n],o=r(this.at(i),i),o!==!1);)this.indexes[n]+=1;if(delete this.indexes[n],o===!1)return!1}},e.prototype.walk=function(r){return this.each(function(n,i){var o=r(n,i);if(o!==!1&&n.length&&(o=n.walk(r)),o===!1)return!1})},e.prototype.walkAttributes=function(r){var n=this;return this.walk(function(i){if(i.type===Z.ATTRIBUTE)return r.call(n,i)})},e.prototype.walkClasses=function(r){var n=this;return this.walk(function(i){if(i.type===Z.CLASS)return r.call(n,i)})},e.prototype.walkCombinators=function(r){var n=this;return this.walk(function(i){if(i.type===Z.COMBINATOR)return r.call(n,i)})},e.prototype.walkComments=function(r){var n=this;return this.walk(function(i){if(i.type===Z.COMMENT)return r.call(n,i)})},e.prototype.walkIds=function(r){var n=this;return this.walk(function(i){if(i.type===Z.ID)return r.call(n,i)})},e.prototype.walkNesting=function(r){var n=this;return this.walk(function(i){if(i.type===Z.NESTING)return r.call(n,i)})},e.prototype.walkPseudos=function(r){var n=this;return this.walk(function(i){if(i.type===Z.PSEUDO)return r.call(n,i)})},e.prototype.walkTags=function(r){var n=this;return this.walk(function(i){if(i.type===Z.TAG)return r.call(n,i)})},e.prototype.walkUniversals=function(r){var n=this;return this.walk(function(i){if(i.type===Z.UNIVERSAL)return r.call(n,i)})},e.prototype.split=function(r){var n=this,i=[];return this.reduce(function(o,u,a){var c=r.call(n,u);return i.push(u),c?(o.push(i),i=[]):a===n.length-1&&o.push(i),o},[])},e.prototype.map=function(r){return this.nodes.map(r)},e.prototype.reduce=function(r,n){return this.nodes.reduce(r,n)},e.prototype.every=function(r){return this.nodes.every(r)},e.prototype.some=function(r){return this.nodes.some(r)},e.prototype.filter=function(r){return this.nodes.filter(r)},e.prototype.sort=function(r){return this.nodes.sort(r)},e.prototype.toString=function(){return this.map(String).join("")},Ep(e,[{key:"first",get:function(){return this.at(0)}},{key:"last",get:function(){return this.at(this.length-1)}},{key:"length",get:function(){return this.nodes.length}}]),e}(Sp.default);ar.default=Rp;ba.exports=ar.default});var Ea=g((lr,_a)=>{"use strict";lr.__esModule=!0;var Ip=ur(),qp=Dp(Ip),Lp=B();function Dp(t){return t&&t.__esModule?t:{default:t}}function Bp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Mp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Up(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Fp=function(t){Up(e,t);function e(s){Bp(this,e);var r=Mp(this,t.call(this,s));return r.type=Lp.ROOT,r}return e.prototype.toString=function(){var r=this.reduce(function(n,i){var o=String(i);return o?n+o+",":""},"").slice(0,-1);return this.trailingComma?r+",":r},e}(qp.default);lr.default=Fp;_a.exports=lr.default});var Sa=g((cr,ka)=>{"use strict";cr.__esModule=!0;var $p=ur(),Wp=Vp($p),Yp=B();function Vp(t){return t&&t.__esModule?t:{default:t}}function zp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Gp(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function jp(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Hp=function(t){jp(e,t);function e(s){zp(this,e);var r=Gp(this,t.call(this,s));return r.type=Yp.SELECTOR,r}return e}(Wp.default);cr.default=Hp;ka.exports=cr.default});var Ue=g((fr,Ta)=>{"use strict";fr.__esModule=!0;var Kp=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),Qp=we(),Jp=Xp(Qp);function Xp(t){return t&&t.__esModule?t:{default:t}}function Zp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function eh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function th(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var rh=function(t){th(e,t);function e(){return Zp(this,e),eh(this,t.apply(this,arguments))}return e.prototype.toString=function(){return[this.spaces.before,this.ns,String(this.value),this.spaces.after].join("")},Kp(e,[{key:"ns",get:function(){var r=this.namespace;return r?(typeof r=="string"?r:"")+"|":""}}]),e}(Jp.default);fr.default=rh;Ta.exports=fr.default});var Oa=g((pr,Ca)=>{"use strict";pr.__esModule=!0;var sh=Ue(),nh=oh(sh),ih=B();function oh(t){return t&&t.__esModule?t:{default:t}}function ah(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function uh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function lh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var ch=function(t){lh(e,t);function e(s){ah(this,e);var r=uh(this,t.call(this,s));return r.type=ih.CLASS,r}return e.prototype.toString=function(){return[this.spaces.before,this.ns,"."+this.value,this.spaces.after].join("")},e}(nh.default);pr.default=ch;Ca.exports=pr.default});var Na=g((hr,Aa)=>{"use strict";hr.__esModule=!0;var fh=we(),ph=dh(fh),hh=B();function dh(t){return t&&t.__esModule?t:{default:t}}function mh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function gh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var wh=function(t){gh(e,t);function e(s){mh(this,e);var r=yh(this,t.call(this,s));return r.type=hh.COMMENT,r}return e}(ph.default);hr.default=wh;Aa.exports=hr.default});var Ra=g((dr,Pa)=>{"use strict";dr.__esModule=!0;var vh=Ue(),xh=_h(vh),bh=B();function _h(t){return t&&t.__esModule?t:{default:t}}function Eh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function kh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Sh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Th=function(t){Sh(e,t);function e(s){Eh(this,e);var r=kh(this,t.call(this,s));return r.type=bh.ID,r}return e.prototype.toString=function(){return[this.spaces.before,this.ns,"#"+this.value,this.spaces.after].join("")},e}(xh.default);dr.default=Th;Pa.exports=dr.default});var qa=g((mr,Ia)=>{"use strict";mr.__esModule=!0;var Ch=Ue(),Oh=Nh(Ch),Ah=B();function Nh(t){return t&&t.__esModule?t:{default:t}}function Ph(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Rh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Ih(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var qh=function(t){Ih(e,t);function e(s){Ph(this,e);var r=Rh(this,t.call(this,s));return r.type=Ah.TAG,r}return e}(Oh.default);mr.default=qh;Ia.exports=mr.default});var Da=g((yr,La)=>{"use strict";yr.__esModule=!0;var Lh=we(),Dh=Mh(Lh),Bh=B();function Mh(t){return t&&t.__esModule?t:{default:t}}function Uh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Fh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function $h(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Wh=function(t){$h(e,t);function e(s){Uh(this,e);var r=Fh(this,t.call(this,s));return r.type=Bh.STRING,r}return e}(Dh.default);yr.default=Wh;La.exports=yr.default});var Ma=g((gr,Ba)=>{"use strict";gr.__esModule=!0;var Yh=ur(),Vh=Gh(Yh),zh=B();function Gh(t){return t&&t.__esModule?t:{default:t}}function jh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Hh(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Kh(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Qh=function(t){Kh(e,t);function e(s){jh(this,e);var r=Hh(this,t.call(this,s));return r.type=zh.PSEUDO,r}return e.prototype.toString=function(){var r=this.length?"("+this.map(String).join(",")+")":"";return[this.spaces.before,String(this.value),r,this.spaces.after].join("")},e}(Vh.default);gr.default=Qh;Ba.exports=gr.default});var Fa=g((wr,Ua)=>{"use strict";wr.__esModule=!0;var Jh=Ue(),Xh=ed(Jh),Zh=B();function ed(t){return t&&t.__esModule?t:{default:t}}function td(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function rd(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function sd(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var nd=function(t){sd(e,t);function e(s){td(this,e);var r=rd(this,t.call(this,s));return r.type=Zh.ATTRIBUTE,r.raws={},r}return e.prototype.toString=function(){var r=[this.spaces.before,"[",this.ns,this.attribute];return this.operator&&r.push(this.operator),this.value&&r.push(this.value),this.raws.insensitive?r.push(this.raws.insensitive):this.insensitive&&r.push(" i"),r.push("]"),r.concat(this.spaces.after).join("")},e}(Xh.default);wr.default=nd;Ua.exports=wr.default});var Wa=g((vr,$a)=>{"use strict";vr.__esModule=!0;var id=Ue(),od=ud(id),ad=B();function ud(t){return t&&t.__esModule?t:{default:t}}function ld(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function cd(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function fd(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var pd=function(t){fd(e,t);function e(s){ld(this,e);var r=cd(this,t.call(this,s));return r.type=ad.UNIVERSAL,r.value="*",r}return e}(od.default);vr.default=pd;$a.exports=vr.default});var Va=g((xr,Ya)=>{"use strict";xr.__esModule=!0;var hd=we(),dd=yd(hd),md=B();function yd(t){return t&&t.__esModule?t:{default:t}}function gd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function wd(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function vd(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var xd=function(t){vd(e,t);function e(s){gd(this,e);var r=wd(this,t.call(this,s));return r.type=md.COMBINATOR,r}return e}(dd.default);xr.default=xd;Ya.exports=xr.default});var Ga=g((br,za)=>{"use strict";br.__esModule=!0;var bd=we(),_d=kd(bd),Ed=B();function kd(t){return t&&t.__esModule?t:{default:t}}function Sd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Td(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e&&(typeof e=="object"||typeof e=="function")?e:t}function Cd(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var Od=function(t){Cd(e,t);function e(s){Sd(this,e);var r=Td(this,t.call(this,s));return r.type=Ed.NESTING,r.value="&",r}return e}(_d.default);br.default=Od;za.exports=br.default});var Ha=g((_r,ja)=>{"use strict";_r.__esModule=!0;_r.default=Ad;function Ad(t){return t.sort(function(e,s){return e-s})}ja.exports=_r.default});var su=g((Sr,ru)=>{"use strict";Sr.__esModule=!0;Sr.default=Fd;var Ka=39,Nd=34,Us=92,Qa=47,St=10,Fs=32,$s=12,Ws=9,Ys=13,Ja=43,Xa=62,Za=126,eu=124,Pd=44,Rd=40,Id=41,qd=91,Ld=93,Dd=59,tu=42,Bd=58,Md=38,Ud=64,Er=/[ \n\t\r\{\(\)'"\\;/]/g,kr=/[ \n\t\r\(\)\*:;@!&'"\+\|~>,\[\]\\]|\/(?=\*)/g;function Fd(t){for(var e=[],s=t.css.valueOf(),r=void 0,n=void 0,i=void 0,o=void 0,u=void 0,a=void 0,c=void 0,f=void 0,p=void 0,l=void 0,y=void 0,x=s.length,h=-1,d=1,m=0,b=function(v,N){if(t.safe)s+=N,n=s.length-1;else throw t.error("Unclosed "+v,d,m-h,m)};m<x;){switch(r=s.charCodeAt(m),r===St&&(h=m,d+=1),r){case St:case Fs:case Ws:case Ys:case $s:n=m;do n+=1,r=s.charCodeAt(n),r===St&&(h=n,d+=1);while(r===Fs||r===St||r===Ws||r===Ys||r===$s);e.push(["space",s.slice(m,n),d,m-h,m]),m=n-1;break;case Ja:case Xa:case Za:case eu:n=m;do n+=1,r=s.charCodeAt(n);while(r===Ja||r===Xa||r===Za||r===eu);e.push(["combinator",s.slice(m,n),d,m-h,m]),m=n-1;break;case tu:e.push(["*","*",d,m-h,m]);break;case Md:e.push(["&","&",d,m-h,m]);break;case Pd:e.push([",",",",d,m-h,m]);break;case qd:e.push(["[","[",d,m-h,m]);break;case Ld:e.push(["]","]",d,m-h,m]);break;case Bd:e.push([":",":",d,m-h,m]);break;case Dd:e.push([";",";",d,m-h,m]);break;case Rd:e.push(["(","(",d,m-h,m]);break;case Id:e.push([")",")",d,m-h,m]);break;case Ka:case Nd:i=r===Ka?"'":'"',n=m;do for(l=!1,n=s.indexOf(i,n+1),n===-1&&b("quote",i),y=n;s.charCodeAt(y-1)===Us;)y-=1,l=!l;while(l);e.push(["string",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;case Ud:Er.lastIndex=m+1,Er.test(s),Er.lastIndex===0?n=s.length-1:n=Er.lastIndex-2,e.push(["at-word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;case Us:for(n=m,c=!0;s.charCodeAt(n+1)===Us;)n+=1,c=!c;r=s.charCodeAt(n+1),c&&r!==Qa&&r!==Fs&&r!==St&&r!==Ws&&r!==Ys&&r!==$s&&(n+=1),e.push(["word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n;break;default:r===Qa&&s.charCodeAt(m+1)===tu?(n=s.indexOf("*/",m+2)+1,n===0&&b("comment","*/"),a=s.slice(m,n+1),o=a.split(`
27
+ `),u=o.length-1,u>0?(f=d+u,p=n-o[u].length):(f=d,p=h),e.push(["comment",a,d,m-h,f,n-p,m]),h=p,d=f,m=n):(kr.lastIndex=m+1,kr.test(s),kr.lastIndex===0?n=s.length-1:n=kr.lastIndex-2,e.push(["word",s.slice(m,n+1),d,m-h,d,n-h,m]),m=n);break}m++}return e}ru.exports=Sr.default});var ou=g((Tr,iu)=>{"use strict";Tr.__esModule=!0;var $d=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),Wd=Ds(),Yd=I(Wd),Vd=Bs(),Vs=I(Vd),zd=Ms(),Gd=I(zd),jd=Ea(),Hd=I(jd),Kd=Sa(),zs=I(Kd),Qd=Oa(),Jd=I(Qd),Xd=Na(),Zd=I(Xd),em=Ra(),tm=I(em),rm=qa(),sm=I(rm),nm=Da(),im=I(nm),om=Ma(),am=I(om),um=Fa(),lm=I(um),cm=Wa(),fm=I(cm),pm=Va(),hm=I(pm),dm=Ga(),mm=I(dm),ym=Ha(),gm=I(ym),wm=su(),nu=I(wm),vm=B(),xm=bm(vm);function bm(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e.default=t,e}function I(t){return t&&t.__esModule?t:{default:t}}function _m(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Em=function(){function t(e){_m(this,t),this.input=e,this.lossy=e.options.lossless===!1,this.position=0,this.root=new Hd.default;var s=new zs.default;return this.root.append(s),this.current=s,this.lossy?this.tokens=(0,nu.default)({safe:e.safe,css:e.css.trim()}):this.tokens=(0,nu.default)(e),this.loop()}return t.prototype.attribute=function(){var s="",r=void 0,n=this.currToken;for(this.position++;this.position<this.tokens.length&&this.currToken[0]!=="]";)s+=this.tokens[this.position][1],this.position++;this.position===this.tokens.length&&!~s.indexOf("]")&&this.error("Expected a closing square bracket.");var i=s.split(/((?:[*~^$|]?=))([^]*)/),o=i[0].split(/(\|)/g),u={operator:i[1],value:i[2],source:{start:{line:n[2],column:n[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:n[4]};if(o.length>1?(o[0]===""&&(o[0]=!0),u.attribute=this.parseValue(o[2]),u.namespace=this.parseNamespace(o[0])):u.attribute=this.parseValue(i[0]),r=new lm.default(u),i[2]){var a=i[2].split(/(\s+i\s*?)$/),c=a[0].trim();r.value=this.lossy?c:a[0],a[1]&&(r.insensitive=!0,this.lossy||(r.raws.insensitive=a[1])),r.quoted=c[0]==="'"||c[0]==='"',r.raws.unquoted=r.quoted?c.slice(1,-1):c}this.newNode(r),this.position++},t.prototype.combinator=function(){if(this.currToken[1]==="|")return this.namespace();for(var s=new hm.default({value:"",source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]});this.position<this.tokens.length&&this.currToken&&(this.currToken[0]==="space"||this.currToken[0]==="combinator");)this.nextToken&&this.nextToken[0]==="combinator"?(s.spaces.before=this.parseSpace(this.currToken[1]),s.source.start.line=this.nextToken[2],s.source.start.column=this.nextToken[3],s.source.end.column=this.nextToken[3],s.source.end.line=this.nextToken[2],s.sourceIndex=this.nextToken[4]):this.prevToken&&this.prevToken[0]==="combinator"?s.spaces.after=this.parseSpace(this.currToken[1]):this.currToken[0]==="combinator"?s.value=this.currToken[1]:this.currToken[0]==="space"&&(s.value=this.parseSpace(this.currToken[1]," ")),this.position++;return this.newNode(s)},t.prototype.comma=function(){if(this.position===this.tokens.length-1){this.root.trailingComma=!0,this.position++;return}var s=new zs.default;this.current.parent.append(s),this.current=s,this.position++},t.prototype.comment=function(){var s=new Zd.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]});this.newNode(s),this.position++},t.prototype.error=function(s){throw new this.input.error(s)},t.prototype.missingBackslash=function(){return this.error("Expected a backslash preceding the semicolon.")},t.prototype.missingParenthesis=function(){return this.error("Expected opening parenthesis.")},t.prototype.missingSquareBracket=function(){return this.error("Expected opening square bracket.")},t.prototype.namespace=function(){var s=this.prevToken&&this.prevToken[1]||!0;if(this.nextToken[0]==="word")return this.position++,this.word(s);if(this.nextToken[0]==="*")return this.position++,this.universal(s)},t.prototype.nesting=function(){this.newNode(new mm.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]})),this.position++},t.prototype.parentheses=function(){var s=this.current.last;if(s&&s.type===xm.PSEUDO){var r=new zs.default,n=this.current;s.append(r),this.current=r;var i=1;for(this.position++;this.position<this.tokens.length&&i;)this.currToken[0]==="("&&i++,this.currToken[0]===")"&&i--,i?this.parse():(r.parent.source.end.line=this.currToken[2],r.parent.source.end.column=this.currToken[3],this.position++);i&&this.error("Expected closing parenthesis."),this.current=n}else{var o=1;for(this.position++,s.value+="(";this.position<this.tokens.length&&o;)this.currToken[0]==="("&&o++,this.currToken[0]===")"&&o--,s.value+=this.parseParenthesisToken(this.currToken),this.position++;o&&this.error("Expected closing parenthesis.")}},t.prototype.pseudo=function(){for(var s=this,r="",n=this.currToken;this.currToken&&this.currToken[0]===":";)r+=this.currToken[1],this.position++;if(!this.currToken)return this.error("Expected pseudo-class or pseudo-element");if(this.currToken[0]==="word"){var i=void 0;this.splitWord(!1,function(o,u){r+=o,i=new am.default({value:r,source:{start:{line:n[2],column:n[3]},end:{line:s.currToken[4],column:s.currToken[5]}},sourceIndex:n[4]}),s.newNode(i),u>1&&s.nextToken&&s.nextToken[0]==="("&&s.error("Misplaced parenthesis.")})}else this.error('Unexpected "'+this.currToken[0]+'" found.')},t.prototype.space=function(){var s=this.currToken;this.position===0||this.prevToken[0]===","||this.prevToken[0]==="("?(this.spaces=this.parseSpace(s[1]),this.position++):this.position===this.tokens.length-1||this.nextToken[0]===","||this.nextToken[0]===")"?(this.current.last.spaces.after=this.parseSpace(s[1]),this.position++):this.combinator()},t.prototype.string=function(){var s=this.currToken;this.newNode(new im.default({value:this.currToken[1],source:{start:{line:s[2],column:s[3]},end:{line:s[4],column:s[5]}},sourceIndex:s[6]})),this.position++},t.prototype.universal=function(s){var r=this.nextToken;if(r&&r[1]==="|")return this.position++,this.namespace();this.newNode(new fm.default({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]}),s),this.position++},t.prototype.splitWord=function(s,r){for(var n=this,i=this.nextToken,o=this.currToken[1];i&&i[0]==="word";){this.position++;var u=this.currToken[1];if(o+=u,u.lastIndexOf("\\")===u.length-1){var a=this.nextToken;a&&a[0]==="space"&&(o+=this.parseSpace(a[1]," "),this.position++)}i=this.nextToken}var c=(0,Vs.default)(o,"."),f=(0,Vs.default)(o,"#"),p=(0,Vs.default)(o,"#{");p.length&&(f=f.filter(function(y){return!~p.indexOf(y)}));var l=(0,gm.default)((0,Gd.default)((0,Yd.default)([[0],c,f])));l.forEach(function(y,x){var h=l[x+1]||o.length,d=o.slice(y,h);if(x===0&&r)return r.call(n,d,l.length);var m=void 0;~c.indexOf(y)?m=new Jd.default({value:d.slice(1),source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}):~f.indexOf(y)?m=new tm.default({value:d.slice(1),source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}):m=new sm.default({value:d,source:{start:{line:n.currToken[2],column:n.currToken[3]+y},end:{line:n.currToken[4],column:n.currToken[3]+(h-1)}},sourceIndex:n.currToken[6]+l[x]}),n.newNode(m,s)}),this.position++},t.prototype.word=function(s){var r=this.nextToken;return r&&r[1]==="|"?(this.position++,this.namespace()):this.splitWord(s)},t.prototype.loop=function(){for(;this.position<this.tokens.length;)this.parse(!0);return this.root},t.prototype.parse=function(s){switch(this.currToken[0]){case"space":this.space();break;case"comment":this.comment();break;case"(":this.parentheses();break;case")":s&&this.missingParenthesis();break;case"[":this.attribute();break;case"]":this.missingSquareBracket();break;case"at-word":case"word":this.word();break;case":":this.pseudo();break;case";":this.missingBackslash();break;case",":this.comma();break;case"*":this.universal();break;case"&":this.nesting();break;case"combinator":this.combinator();break;case"string":this.string();break}},t.prototype.parseNamespace=function(s){if(this.lossy&&typeof s=="string"){var r=s.trim();return r.length?r:!0}return s},t.prototype.parseSpace=function(s,r){return this.lossy?r||"":s},t.prototype.parseValue=function(s){return this.lossy&&s&&typeof s=="string"?s.trim():s},t.prototype.parseParenthesisToken=function(s){return this.lossy?s[0]==="space"?this.parseSpace(s[1]," "):this.parseValue(s[1]):s[1]},t.prototype.newNode=function(s,r){return r&&(s.namespace=this.parseNamespace(r)),this.spaces&&(s.spaces.before=this.spaces,this.spaces=""),this.current.append(s)},$d(t,[{key:"currToken",get:function(){return this.tokens[this.position]}},{key:"nextToken",get:function(){return this.tokens[this.position+1]}},{key:"prevToken",get:function(){return this.tokens[this.position-1]}}]),t}();Tr.default=Em;iu.exports=Tr.default});var uu=g((Cr,au)=>{"use strict";Cr.__esModule=!0;var km=function(){function t(e,s){for(var r=0;r<s.length;r++){var n=s[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(e,s,r){return s&&t(e.prototype,s),r&&t(e,r),e}}(),Sm=ou(),Tm=Cm(Sm);function Cm(t){return t&&t.__esModule?t:{default:t}}function Om(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Am=function(){function t(e){return Om(this,t),this.func=e||function(){},this}return t.prototype.process=function(s){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new Tm.default({css:s,error:function(o){throw new Error(o)},options:r});return this.res=n,this.func(n),this},km(t,[{key:"result",get:function(){return String(this.res)}}]),t}();Cr.default=Am;au.exports=Cr.default});var G=g((zx,cu)=>{"use strict";var Gs=function(t,e){let s=new t.constructor;for(let r in t){if(!t.hasOwnProperty(r))continue;let n=t[r],i=typeof n;r==="parent"&&i==="object"?e&&(s[r]=e):r==="source"?s[r]=n:n instanceof Array?s[r]=n.map(o=>Gs(o,s)):r!=="before"&&r!=="after"&&r!=="between"&&r!=="semicolon"&&(i==="object"&&n!==null&&(n=Gs(n)),s[r]=n)}return s};cu.exports=class{constructor(e){e=e||{},this.raws={before:"",after:""};for(let s in e)this[s]=e[s]}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(){return[this.raws.before,String(this.value),this.raws.after].join("")}clone(e){e=e||{};let s=Gs(this);for(let r in e)s[r]=e[r];return s}cloneBefore(e){e=e||{};let s=this.clone(e);return this.parent.insertBefore(this,s),s}cloneAfter(e){e=e||{};let s=this.clone(e);return this.parent.insertAfter(this,s),s}replaceWith(){let e=Array.prototype.slice.call(arguments);if(this.parent){for(let s of e)this.parent.insertBefore(this,s);this.remove()}return this}moveTo(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.append(this),this}moveBefore(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertBefore(e,this),this}moveAfter(e){return this.cleanRaws(this.root()===e.root()),this.remove(),e.parent.insertAfter(e,this),this}next(){let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){let e=this.parent.index(this);return this.parent.nodes[e-1]}toJSON(){let e={};for(let s in this){if(!this.hasOwnProperty(s)||s==="parent")continue;let r=this[s];r instanceof Array?e[s]=r.map(n=>typeof n=="object"&&n.toJSON?n.toJSON():n):typeof r=="object"&&r.toJSON?e[s]=r.toJSON():e[s]=r}return e}root(){let e=this;for(;e.parent;)e=e.parent;return e}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}positionInside(e){let s=this.toString(),r=this.source.start.column,n=this.source.start.line;for(let i=0;i<e;i++)s[i]===`
28
+ `?(r=1,n+=1):r+=1;return{line:n,column:r}}positionBy(e){let s=this.source.start;if(Object(e).index)s=this.positionInside(e.index);else if(Object(e).word){let r=this.toString().indexOf(e.word);r!==-1&&(s=this.positionInside(r))}return s}}});var U=g((Gx,fu)=>{"use strict";var Pm=G(),Fe=class extends Pm{constructor(e){super(e),this.nodes||(this.nodes=[])}push(e){return e.parent=this,this.nodes.push(e),this}each(e){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let s=this.lastEach,r,n;if(this.indexes[s]=0,!!this.nodes){for(;this.indexes[s]<this.nodes.length&&(r=this.indexes[s],n=e(this.nodes[r],r),n!==!1);)this.indexes[s]+=1;return delete this.indexes[s],n}}walk(e){return this.each((s,r)=>{let n=e(s,r);return n!==!1&&s.walk&&(n=s.walk(e)),n})}walkType(e,s){if(!e||!s)throw new Error("Parameters {type} and {callback} are required.");let r=typeof e=="function";return this.walk((n,i)=>{if(r&&n instanceof e||!r&&n.type===e)return s.call(this,n,i)})}append(e){return e.parent=this,this.nodes.push(e),this}prepend(e){return e.parent=this,this.nodes.unshift(e),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let s of this.nodes)s.cleanRaws(e)}insertAfter(e,s){let r=this.index(e),n;this.nodes.splice(r+1,0,s);for(let i in this.indexes)n=this.indexes[i],r<=n&&(this.indexes[i]=n+this.nodes.length);return this}insertBefore(e,s){let r=this.index(e),n;this.nodes.splice(r,0,s);for(let i in this.indexes)n=this.indexes[i],r<=n&&(this.indexes[i]=n+this.nodes.length);return this}removeChild(e){e=this.index(e),this.nodes[e].parent=void 0,this.nodes.splice(e,1);let s;for(let r in this.indexes)s=this.indexes[r],s>=e&&(this.indexes[r]=s-1);return this}removeAll(){for(let e of this.nodes)e.parent=void 0;return this.nodes=[],this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return typeof e=="number"?e:this.nodes.indexOf(e)}get first(){if(this.nodes)return this.nodes[0]}get last(){if(this.nodes)return this.nodes[this.nodes.length-1]}toString(){let e=this.nodes.map(String).join("");return this.value&&(e=this.value+e),this.raws.before&&(e=this.raws.before+e),this.raws.after&&(e+=this.raws.after),e}};Fe.registerWalker=t=>{let e="walk"+t.name;e.lastIndexOf("s")!==e.length-1&&(e+="s"),!Fe.prototype[e]&&(Fe.prototype[e]=function(s){return this.walkType(t,s)})};fu.exports=Fe});var hu=g((Hx,pu)=>{"use strict";var Rm=U();pu.exports=class extends Rm{constructor(e){super(e),this.type="root"}}});var mu=g((Qx,du)=>{"use strict";var Im=U();du.exports=class extends Im{constructor(e){super(e),this.type="value",this.unbalanced=0}}});var wu=g((Jx,gu)=>{"use strict";var yu=U(),Or=class extends yu{constructor(e){super(e),this.type="atword"}toString(){let e=this.quoted?this.raws.quote:"";return[this.raws.before,"@",String.prototype.toString.call(this.value),this.raws.after].join("")}};yu.registerWalker(Or);gu.exports=Or});var xu=g((Xx,vu)=>{"use strict";var qm=U(),Lm=G(),Ar=class extends Lm{constructor(e){super(e),this.type="colon"}};qm.registerWalker(Ar);vu.exports=Ar});var _u=g((Zx,bu)=>{"use strict";var Dm=U(),Bm=G(),Nr=class extends Bm{constructor(e){super(e),this.type="comma"}};Dm.registerWalker(Nr);bu.exports=Nr});var ku=g((eb,Eu)=>{"use strict";var Mm=U(),Um=G(),Pr=class extends Um{constructor(e){super(e),this.type="comment",this.inline=Object(e).inline||!1}toString(){return[this.raws.before,this.inline?"//":"/*",String(this.value),this.inline?"":"*/",this.raws.after].join("")}};Mm.registerWalker(Pr);Eu.exports=Pr});var Cu=g((tb,Tu)=>{"use strict";var Su=U(),Rr=class extends Su{constructor(e){super(e),this.type="func",this.unbalanced=-1}};Su.registerWalker(Rr);Tu.exports=Rr});var Au=g((rb,Ou)=>{"use strict";var Fm=U(),$m=G(),Ir=class extends $m{constructor(e){super(e),this.type="number",this.unit=Object(e).unit||""}toString(){return[this.raws.before,String(this.value),this.unit,this.raws.after].join("")}};Fm.registerWalker(Ir);Ou.exports=Ir});var Pu=g((sb,Nu)=>{"use strict";var Wm=U(),Ym=G(),qr=class extends Ym{constructor(e){super(e),this.type="operator"}};Wm.registerWalker(qr);Nu.exports=qr});var Iu=g((nb,Ru)=>{"use strict";var Vm=U(),zm=G(),Lr=class extends zm{constructor(e){super(e),this.type="paren",this.parenType=""}};Vm.registerWalker(Lr);Ru.exports=Lr});var Lu=g((ib,qu)=>{"use strict";var Gm=U(),jm=G(),Dr=class extends jm{constructor(e){super(e),this.type="string"}toString(){let e=this.quoted?this.raws.quote:"";return[this.raws.before,e,this.value+"",e,this.raws.after].join("")}};Gm.registerWalker(Dr);qu.exports=Dr});var Bu=g((ob,Du)=>{"use strict";var Hm=U(),Km=G(),Br=class extends Km{constructor(e){super(e),this.type="word"}};Hm.registerWalker(Br);Du.exports=Br});var Uu=g((ab,Mu)=>{"use strict";var Qm=U(),Jm=G(),Mr=class extends Jm{constructor(e){super(e),this.type="unicode-range"}};Qm.registerWalker(Mr);Mu.exports=Mr});var $u=g((ub,Fu)=>{"use strict";var js=class extends Error{constructor(e){super(e),this.name=this.constructor.name,this.message=e||"An error ocurred while tokzenizing.",typeof Error.captureStackTrace=="function"?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack}};Fu.exports=js});var Vu=g((lb,Yu)=>{"use strict";var Ur=/[ \n\t\r\{\(\)'"\\;,/]/g,Xm=/[ \n\t\r\(\)\{\}\*:;@!&'"\+\|~>,\[\]\\]|\/(?=\*)/g,$e=/[ \n\t\r\(\)\{\}\*:;@!&'"\-\+\|~>,\[\]\\]|\//g,Zm=/^[a-z0-9]/i,ey=/^[a-f0-9?\-]/i,Wu=$u();Yu.exports=function(e,s){s=s||{};let r=[],n=e.valueOf(),i=n.length,o=-1,u=1,a=0,c=0,f=null,p,l,y,x,h,d,m,b,w,v,N,F;function Q(T){let C=`Unclosed ${T} at line: ${u}, column: ${a-o}, token: ${a}`;throw new Wu(C)}function W(){let T=`Syntax error at line: ${u}, column: ${a-o}, token: ${a}`;throw new Wu(T)}for(;a<i;){switch(p=n.charCodeAt(a),p===10&&(o=a,u+=1),p){case 10:case 32:case 9:case 13:case 12:l=a;do l+=1,p=n.charCodeAt(l),p===10&&(o=l,u+=1);while(p===32||p===10||p===9||p===13||p===12);r.push(["space",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 58:l=a+1,r.push(["colon",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 44:l=a+1,r.push(["comma",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;case 123:r.push(["{","{",u,a-o,u,l-o,a]);break;case 125:r.push(["}","}",u,a-o,u,l-o,a]);break;case 40:c++,f=!f&&c===1&&r.length>0&&r[r.length-1][0]==="word"&&r[r.length-1][1]==="url",r.push(["(","(",u,a-o,u,l-o,a]);break;case 41:c--,f=f&&c>0,r.push([")",")",u,a-o,u,l-o,a]);break;case 39:case 34:y=p===39?"'":'"',l=a;do for(v=!1,l=n.indexOf(y,l+1),l===-1&&Q("quote",y),N=l;n.charCodeAt(N-1)===92;)N-=1,v=!v;while(v);r.push(["string",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 64:Ur.lastIndex=a+1,Ur.test(n),Ur.lastIndex===0?l=n.length-1:l=Ur.lastIndex-2,r.push(["atword",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 92:l=a,p=n.charCodeAt(l+1),m&&p!==47&&p!==32&&p!==10&&p!==9&&p!==13&&p!==12&&(l+=1),r.push(["word",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l;break;case 43:case 45:case 42:l=a+1,F=n.slice(a+1,l+1);let T=n.slice(a-1,a);if(p===45&&F.charCodeAt(0)===45){l++,r.push(["word",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break}r.push(["operator",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;break;default:if(p===47&&(n.charCodeAt(a+1)===42||s.loose&&!f&&n.charCodeAt(a+1)===47)){if(n.charCodeAt(a+1)===42)l=n.indexOf("*/",a+2)+1,l===0&&Q("comment","*/");else{let O=n.indexOf(`
29
29
  `,a+2);l=O!==-1?O-1:i}d=n.slice(a,l+1),x=d.split(`
30
- `),h=x.length-1,h>0?(b=u+h,w=l-x[h].length):(b=u,w=o),r.push(["comment",d,u,a-o,b,l-w,a]),o=w,u=b,a=l}else if(p===35&&!Qm.test(n.slice(a+1,a+2)))l=a+1,r.push(["#",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;else if((p===117||p===85)&&n.charCodeAt(a+1)===43){l=a+2;do l+=1,p=n.charCodeAt(l);while(l<i&&Jm.test(n.slice(l,l+1)));r.push(["unicoderange",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1}else if(p===47)l=a+1,r.push(["operator",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;else{let C=Km;if(p>=48&&p<=57&&(C=$e),C.lastIndex=a+1,C.test(n),C.lastIndex===0?l=n.length-1:l=C.lastIndex-2,C===$e||p===46){let O=n.charCodeAt(l),ve=n.charCodeAt(l+1),Js=n.charCodeAt(l+2);(O===101||O===69)&&(ve===45||ve===43)&&Js>=48&&Js<=57&&($e.lastIndex=l+2,$e.test(n),$e.lastIndex===0?l=n.length-1:l=$e.lastIndex-2)}r.push(["word",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l}break}a++}return r}});var Vu=g((sb,zu)=>{"use strict";var js=class extends Error{constructor(e){super(e),this.name=this.constructor.name,this.message=e||"An error ocurred while parsing.",typeof Error.captureStackTrace=="function"?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack}};zu.exports=js});var Ku=g((ib,Hu)=>{"use strict";var Xm=pu(),Zm=du(),ey=gu(),ty=vu(),ry=bu(),sy=ku(),ny=Tu(),iy=Ou(),oy=Nu(),Gu=Ru(),ay=qu(),ju=Du(),uy=Mu(),ly=Yu(),cy=Ls(),fy=Ds(),py=Bs(),hy=Vu();function dy(t){return t.sort((e,s)=>e-s)}Hu.exports=class{constructor(e,s){let r={loose:!1};this.cache=[],this.input=e,this.options=Object.assign({},r,s),this.position=0,this.unbalanced=0,this.root=new Xm;let n=new Zm;this.root.append(n),this.current=n,this.tokens=ly(e,this.options)}parse(){return this.loop()}colon(){let e=this.currToken;this.newNode(new ty({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}comma(){let e=this.currToken;this.newNode(new ry({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}comment(){let e=!1,s=this.currToken[1].replace(/\/\*|\*\//g,""),r;this.options.loose&&s.startsWith("//")&&(s=s.substring(2),e=!0),r=new sy({value:s,inline:e,source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]}),this.newNode(r),this.position++}error(e,s){throw new hy(e+` at line: ${s[2]}, column ${s[3]}`)}loop(){for(;this.position<this.tokens.length;)this.parseTokens();return!this.current.last&&this.spaces?this.current.raws.before+=this.spaces:this.spaces&&(this.current.last.raws.after+=this.spaces),this.spaces="",this.root}operator(){let e=this.currToken[1],s;if(e==="+"||e==="-"){if(this.options.loose||this.position>0&&(this.current.type==="func"&&this.current.value==="calc"?this.prevToken[0]!=="space"&&this.prevToken[0]!=="("?this.error("Syntax Error",this.currToken):this.nextToken[0]!=="space"&&this.nextToken[0]!=="word"?this.error("Syntax Error",this.currToken):this.nextToken[0]==="word"&&this.current.last.type!=="operator"&&this.current.last.value!=="("&&this.error("Syntax Error",this.currToken):(this.nextToken[0]==="space"||this.nextToken[0]==="operator"||this.prevToken[0]==="operator")&&this.error("Syntax Error",this.currToken)),this.options.loose){if((!this.current.nodes.length||this.current.last&&this.current.last.type==="operator")&&this.nextToken[0]==="word")return this.word()}else if(this.nextToken[0]==="word")return this.word()}return s=new oy({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]}),this.position++,this.newNode(s)}parseTokens(){switch(this.currToken[0]){case"space":this.space();break;case"colon":this.colon();break;case"comma":this.comma();break;case"comment":this.comment();break;case"(":this.parenOpen();break;case")":this.parenClose();break;case"atword":case"word":this.word();break;case"operator":this.operator();break;case"string":this.string();break;case"unicoderange":this.unicodeRange();break;default:this.word();break}}parenOpen(){let e=1,s=this.position+1,r=this.currToken,n;for(;s<this.tokens.length&&e;){let i=this.tokens[s];i[0]==="("&&e++,i[0]===")"&&e--,s++}if(e&&this.error("Expected closing parenthesis",r),n=this.current.last,n&&n.type==="func"&&n.unbalanced<0&&(n.unbalanced=0,this.current=n),this.current.unbalanced++,this.newNode(new Gu({value:r[1],source:{start:{line:r[2],column:r[3]},end:{line:r[4],column:r[5]}},sourceIndex:r[6]})),this.position++,this.current.type==="func"&&this.current.unbalanced&&this.current.value==="url"&&this.currToken[0]!=="string"&&this.currToken[0]!==")"&&!this.options.loose){let i=this.nextToken,o=this.currToken[1],u={line:this.currToken[2],column:this.currToken[3]};for(;i&&i[0]!==")"&&this.current.unbalanced;)this.position++,o+=this.currToken[1],i=this.nextToken;this.position!==this.tokens.length-1&&(this.position++,this.newNode(new ju({value:o,source:{start:u,end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]})))}}parenClose(){let e=this.currToken;this.newNode(new Gu({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++,!(this.position>=this.tokens.length-1&&!this.current.unbalanced)&&(this.current.unbalanced--,this.current.unbalanced<0&&this.error("Expected opening parenthesis",e),!this.current.unbalanced&&this.cache.length&&(this.current=this.cache.pop()))}space(){let e=this.currToken;this.position===this.tokens.length-1||this.nextToken[0]===","||this.nextToken[0]===")"?(this.current.last.raws.after+=e[1],this.position++):(this.spaces=e[1],this.position++)}unicodeRange(){let e=this.currToken;this.newNode(new uy({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}splitWord(){let e=this.nextToken,s=this.currToken[1],r=/^[\+\-]?((\d+(\.\d*)?)|(\.\d+))([eE][\+\-]?\d+)?/,n=/^(?!\#([a-z0-9]+))[\#\{\}]/gi,i,o;if(!n.test(s))for(;e&&e[0]==="word";){this.position++;let u=this.currToken[1];s+=u,e=this.nextToken}i=fy(s,"@"),o=dy(py(cy([[0],i]))),o.forEach((u,a)=>{let c=o[a+1]||s.length,f=s.slice(u,c),p;if(~i.indexOf(u))p=new ey({value:f.slice(1),source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a]});else if(r.test(this.currToken[1])){let l=f.replace(r,"");p=new iy({value:f.replace(l,""),source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a],unit:l})}else p=new(e&&e[0]==="("?ny:ju)({value:f,source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a]}),p.type==="word"?(p.isHex=/^#(.+)/.test(f),p.isColor=/^#([0-9a-f]{3}|[0-9a-f]{4}|[0-9a-f]{6}|[0-9a-f]{8})$/i.test(f)):this.cache.push(this.current);this.newNode(p)}),this.position++}string(){let e=this.currToken,s=this.currToken[1],r=/^(\"|\')/,n=r.test(s),i="",o;n&&(i=s.match(r)[0],s=s.slice(1,s.length-1)),o=new ay({value:s,source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6],quoted:n}),o.raws.quote=i,this.newNode(o),this.position++}word(){return this.splitWord()}newNode(e){return this.spaces&&(e.raws.before+=this.spaces,this.spaces=""),this.current.append(e)}get currToken(){return this.tokens[this.position]}get nextToken(){return this.tokens[this.position+1]}get prevToken(){return this.tokens[this.position-1]}}});var Py={};Xs(Py,{languages:()=>yi,options:()=>wi,parsers:()=>Qs,printers:()=>Ny});var wl=(t,e,s,r)=>{if(!(t&&e==null))return e.replaceAll?e.replaceAll(s,r):s.global?e.replace(s,r):e.split(s).join(r)},k=wl;var We="string",Ye="array",ze="cursor",te="indent",be="align",Ve="trim",re="group",se="fill",pe="if-break",Ge="indent-if-break",_e="line-suffix",je="line-suffix-boundary",K="line",He="label",ke="break-parent",Ct=new Set([ze,te,be,Ve,re,se,pe,Ge,_e,je,K,He,ke]);function vl(t){if(typeof t=="string")return We;if(Array.isArray(t))return Ye;if(!t)return;let{type:e}=t;if(Ct.has(e))return e}var Q=vl;var xl=t=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(t);function bl(t){let e=t===null?"null":typeof t;if(e!=="string"&&e!=="object")return`Unexpected doc '${e}',
31
- Expected it to be 'string' or 'object'.`;if(Q(t))throw new Error("doc is valid.");let s=Object.prototype.toString.call(t);if(s!=="[object Object]")return`Unexpected doc '${s}'.`;let r=xl([...Ct].map(n=>`'${n}'`));return`Unexpected doc.type '${t.type}'.
32
- Expected it to be ${r}.`}var Wr=class extends Error{name="InvalidDocError";constructor(e){super(bl(e)),this.doc=e}},Yr=Wr;var en=()=>{},ne=en,Ee=en;function q(t){return ne(t),{type:te,contents:t}}function tn(t,e){return ne(e),{type:be,contents:e,n:t}}function L(t,e={}){return ne(t),Ee(e.expandedStates,!0),{type:re,id:e.id,contents:t,break:!!e.shouldBreak,expandedStates:e.expandedStates}}function rn(t){return tn({type:"root"},t)}function ie(t){return tn(-1,t)}function Se(t){return Ee(t),{type:se,parts:t}}function Ot(t,e="",s={}){return ne(t),e!==""&&ne(e),{type:pe,breakContents:t,flatContents:e,groupId:s.groupId}}function sn(t){return ne(t),{type:_e,contents:t}}var Ke={type:ke};var _l={type:K,hard:!0};var A={type:K},B={type:K,soft:!0},S=[_l,Ke];function Y(t,e){ne(t),Ee(e);let s=[];for(let r=0;r<e.length;r++)r!==0&&s.push(t),s.push(e[r]);return s}var kl=(t,e,s)=>{if(!(t&&e==null))return Array.isArray(e)||typeof e=="string"?e[s<0?e.length+s:s]:e.at(s)},$=kl;function El(t,e){if(typeof t=="string")return e(t);let s=new Map;return r(t);function r(i){if(s.has(i))return s.get(i);let o=n(i);return s.set(i,o),o}function n(i){switch(Q(i)){case Ye:return e(i.map(r));case se:return e({...i,parts:i.parts.map(r)});case pe:return e({...i,breakContents:r(i.breakContents),flatContents:r(i.flatContents)});case re:{let{expandedStates:o,contents:u}=i;return o?(o=o.map(r),u=o[0]):u=r(u),e({...i,contents:u,expandedStates:o})}case be:case te:case Ge:case He:case _e:return e({...i,contents:r(i.contents)});case We:case ze:case Ve:case je:case K:case ke:return e(i);default:throw new Yr(i)}}}function Sl(t){return t.type===K&&!t.hard?t.soft?"":" ":t.type===pe?t.flatContents:t}function nn(t){return El(t,Sl)}function Tl(t){return Array.isArray(t)&&t.length>0}var oe=Tl;var on=new Proxy(()=>{},{get:()=>on}),an=on;var At="'",un='"';function Cl(t,e){let s=e===!0||e===At?At:un,r=s===At?un:At,n=0,i=0;for(let o of t)o===s?n++:o===r&&i++;return n>i?r:s}var ln=Cl;function Ol(t,e,s){let r=e==='"'?"'":'"',i=k(!1,t,/\\(.)|(["'])/gsu,(o,u,a)=>u===r?u:a===e?"\\"+a:a||(s&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(u)?u:"\\"+u));return e+i+e}var cn=Ol;function Al(t,e){an(/^(?<quote>["']).*\k<quote>$/su.test(t));let s=t.slice(1,-1),r=e.parser==="json"||e.parser==="jsonc"||e.parser==="json5"&&e.quoteProps==="preserve"&&!e.singleQuote?'"':e.__isInHtmlAttribute?"'":ln(s,e.singleQuote);return t.charAt(0)===r?t:cn(s,r,!1)}var Nt=Al;var zr=class extends Error{name="UnexpectedNodeError";constructor(e,s,r="type"){super(`Unexpected ${s} node ${r}: ${JSON.stringify(e[r])}.`),this.node=e}},fn=zr;function Nl(t){return(t==null?void 0:t.type)==="front-matter"}var Te=Nl;var Pl=new Set(["raw","raws","sourceIndex","source","before","after","trailingComma","spaces"]);function pn(t,e,s){if(Te(t)&&t.language==="yaml"&&delete e.value,t.type==="css-comment"&&s.type==="css-root"&&s.nodes.length>0&&((s.nodes[0]===t||Te(s.nodes[0])&&s.nodes[1]===t)&&(delete e.text,/^\*\s*@(?:format|prettier)\s*$/u.test(t.text))||s.type==="css-root"&&$(!1,s.nodes,-1)===t))return null;if(t.type==="value-root"&&delete e.text,(t.type==="media-query"||t.type==="media-query-list"||t.type==="media-feature-expression")&&delete e.value,t.type==="css-rule"&&delete e.params,(t.type==="media-feature"||t.type==="media-keyword"||t.type==="media-type"||t.type==="media-unknown"||t.type==="media-url"||t.type==="media-value"||t.type==="selector-attribute"||t.type==="selector-string"||t.type==="selector-class"||t.type==="selector-combinator"||t.type==="value-string")&&t.value&&(e.value=Rl(t.value)),t.type==="selector-combinator"&&(e.value=k(!1,e.value,/\s+/gu," ")),t.type==="media-feature"&&(e.value=k(!1,e.value," ","")),(t.type==="value-word"&&(t.isColor&&t.isHex||["initial","inherit","unset","revert"].includes(t.value.toLowerCase()))||t.type==="media-feature"||t.type==="selector-root-invalid"||t.type==="selector-pseudo")&&(e.value=e.value.toLowerCase()),t.type==="css-decl"&&(e.prop=t.prop.toLowerCase()),(t.type==="css-atrule"||t.type==="css-import")&&(e.name=t.name.toLowerCase()),t.type==="value-number"&&(e.unit=t.unit.toLowerCase()),t.type==="value-unknown"&&(e.value=k(!1,e.value,/;$/gu,"")),t.type==="selector-attribute"&&(e.attribute=t.attribute.trim(),t.namespace&&typeof t.namespace=="string"&&(e.namespace=t.namespace.trim()||!0),t.value&&(e.value=k(!1,e.value.trim(),/^["']|["']$/gu,""),delete e.quoted)),(t.type==="media-value"||t.type==="media-type"||t.type==="value-number"||t.type==="selector-root-invalid"||t.type==="selector-class"||t.type==="selector-combinator"||t.type==="selector-tag")&&t.value&&(e.value=k(!1,e.value,/([\d+.e-]+)([a-z]*)/giu,(r,n,i)=>{let o=Number(n);return Number.isNaN(o)?r:o+i.toLowerCase()})),t.type==="selector-tag"){let r=e.value.toLowerCase();["from","to"].includes(r)&&(e.value=r)}if(t.type==="css-atrule"&&t.name.toLowerCase()==="supports"&&delete e.value,t.type==="selector-unknown"&&delete e.value,t.type==="value-comma_group"){let r=t.groups.findIndex(n=>n.type==="value-number"&&n.unit==="...");r!==-1&&(e.groups[r].unit="",e.groups.splice(r+1,0,{type:"value-word",value:"...",isColor:!1,isHex:!1}))}if(t.type==="value-comma_group"&&t.groups.some(r=>r.type==="value-atword"&&r.value.endsWith("[")||r.type==="value-word"&&r.value.startsWith("]")))return{type:"value-atword",value:t.groups.map(r=>r.value).join(""),group:{open:null,close:null,groups:[],type:"value-paren_group"}}}pn.ignoredProperties=Pl;function Rl(t){return k(!1,k(!1,t,"'",'"'),/\\([^\da-f])/giu,"$1")}var hn=pn;async function Il(t,e){if(t.language==="yaml"){let s=t.value.trim(),r=s?await e(s,{parser:"yaml"}):"";return rn([t.startDelimiter,t.explicitLanguage,S,r,r?S:"",t.endDelimiter])}}var dn=Il;function mn(t){let{node:e}=t;if(e.type==="front-matter")return async s=>{let r=await dn(e,s);return r?[r,S]:void 0}}mn.getVisitorKeys=t=>t.type==="css-root"?["frontMatter"]:[];var yn=mn;var Qe=null;function Je(t){if(Qe!==null&&typeof Qe.property){let e=Qe;return Qe=Je.prototype=null,e}return Qe=Je.prototype=t??Object.create(null),new Je}var ql=10;for(let t=0;t<=ql;t++)Je();function Vr(t){return Je(t)}function Ll(t,e="type"){Vr(t);function s(r){let n=r[e],i=t[n];if(!Array.isArray(i))throw Object.assign(new Error(`Missing visitor keys for '${n}'.`),{node:r});return i}return s}var gn=Ll;var Dl={"front-matter":[],"css-root":["frontMatter","nodes"],"css-comment":[],"css-rule":["selector","nodes"],"css-decl":["value","selector","nodes"],"css-atrule":["selector","params","value","nodes"],"media-query-list":["nodes"],"media-query":["nodes"],"media-type":[],"media-feature-expression":["nodes"],"media-feature":[],"media-colon":[],"media-value":[],"media-keyword":[],"media-url":[],"media-unknown":[],"selector-root":["nodes"],"selector-selector":["nodes"],"selector-comment":[],"selector-string":[],"selector-tag":[],"selector-id":[],"selector-class":[],"selector-attribute":[],"selector-combinator":["nodes"],"selector-universal":[],"selector-pseudo":["nodes"],"selector-nesting":[],"selector-unknown":[],"value-value":["group"],"value-root":["group"],"value-comment":[],"value-comma_group":["groups"],"value-paren_group":["open","groups","close"],"value-func":["group"],"value-paren":[],"value-number":[],"value-operator":[],"value-word":[],"value-colon":[],"value-comma":[],"value-string":[],"value-atword":[],"value-unicode-range":[],"value-unknown":[]},wn=Dl;var Bl=gn(wn),vn=Bl;function Ml(t,e){let s=0;for(let r=0;r<t.line-1;++r)s=e.indexOf(`
33
- `,s)+1;return s+t.column}var Gr=Ml;function Pt(t){return(e,s,r)=>{let n=!!(r!=null&&r.backwards);if(s===!1)return!1;let{length:i}=e,o=s;for(;o>=0&&o<i;){let u=e.charAt(o);if(t instanceof RegExp){if(!t.test(u))return o}else if(!t.includes(u))return o;n?o--:o++}return o===-1||o===i?o:!1}}var qg=Pt(/\s/u),Rt=Pt(" "),xn=Pt(",; "),It=Pt(/[^\n\r]/u);function bn(t,e){var s,r,n;if(typeof((r=(s=t.source)==null?void 0:s.start)==null?void 0:r.offset)=="number")return t.source.start.offset;if(typeof t.sourceIndex=="number")return t.sourceIndex;if((n=t.source)!=null&&n.start)return Gr(t.source.start,e);throw Object.assign(new Error("Can not locate node."),{node:t})}function jr(t,e){var s,r;if(t.type==="css-comment"&&t.inline)return It(e,t.source.startOffset);if(typeof((r=(s=t.source)==null?void 0:s.end)==null?void 0:r.offset)=="number")return t.source.end.offset;if(t.source){if(t.source.end)return Gr(t.source.end,e);if(oe(t.nodes))return jr($(!1,t.nodes,-1),e)}return null}function Hr(t,e){t.source&&(t.source.startOffset=bn(t,e),t.source.endOffset=jr(t,e));for(let s in t){let r=t[s];s==="source"||!r||typeof r!="object"||(r.type==="value-root"||r.type==="value-unknown"?_n(r,Ul(t),r.text||r.value):Hr(r,e))}}function _n(t,e,s){t.source&&(t.source.startOffset=bn(t,s)+e,t.source.endOffset=jr(t,s)+e);for(let r in t){let n=t[r];r==="source"||!n||typeof n!="object"||_n(n,e,s)}}function Ul(t){var s;let e=t.source.startOffset;return typeof t.prop=="string"&&(e+=t.prop.length),t.type==="css-atrule"&&typeof t.name=="string"&&(e+=1+t.name.length+t.raws.afterName.match(/^\s*:?\s*/u)[0].length),t.type!=="css-atrule"&&typeof((s=t.raws)==null?void 0:s.between)=="string"&&(e+=t.raws.between.length),e}function kn(t){let e="initial",s="initial",r,n=!1,i=[];for(let o=0;o<t.length;o++){let u=t[o];switch(e){case"initial":if(u==="'"){e="single-quotes";continue}if(u==='"'){e="double-quotes";continue}if((u==="u"||u==="U")&&t.slice(o,o+4).toLowerCase()==="url("){e="url",o+=3;continue}if(u==="*"&&t[o-1]==="/"){e="comment-block";continue}if(u==="/"&&t[o-1]==="/"){e="comment-inline",r=o-1;continue}continue;case"single-quotes":if(u==="'"&&t[o-1]!=="\\"&&(e=s,s="initial"),u===`
30
+ `),h=x.length-1,h>0?(b=u+h,w=l-x[h].length):(b=u,w=o),r.push(["comment",d,u,a-o,b,l-w,a]),o=w,u=b,a=l}else if(p===35&&!Zm.test(n.slice(a+1,a+2)))l=a+1,r.push(["#",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;else if((p===117||p===85)&&n.charCodeAt(a+1)===43){l=a+2;do l+=1,p=n.charCodeAt(l);while(l<i&&ey.test(n.slice(l,l+1)));r.push(["unicoderange",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1}else if(p===47)l=a+1,r.push(["operator",n.slice(a,l),u,a-o,u,l-o,a]),a=l-1;else{let C=Xm;if(p>=48&&p<=57&&(C=$e),C.lastIndex=a+1,C.test(n),C.lastIndex===0?l=n.length-1:l=C.lastIndex-2,C===$e||p===46){let O=n.charCodeAt(l),ve=n.charCodeAt(l+1),Xs=n.charCodeAt(l+2);(O===101||O===69)&&(ve===45||ve===43)&&Xs>=48&&Xs<=57&&($e.lastIndex=l+2,$e.test(n),$e.lastIndex===0?l=n.length-1:l=$e.lastIndex-2)}r.push(["word",n.slice(a,l+1),u,a-o,u,l-o,a]),a=l}break}a++}return r}});var Gu=g((cb,zu)=>{"use strict";var Hs=class extends Error{constructor(e){super(e),this.name=this.constructor.name,this.message=e||"An error ocurred while parsing.",typeof Error.captureStackTrace=="function"?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack}};zu.exports=Hs});var Qu=g((pb,Ku)=>{"use strict";var ty=hu(),ry=mu(),sy=wu(),ny=xu(),iy=_u(),oy=ku(),ay=Cu(),uy=Au(),ly=Pu(),ju=Iu(),cy=Lu(),Hu=Bu(),fy=Uu(),py=Vu(),hy=Ds(),dy=Bs(),my=Ms(),yy=Gu();function gy(t){return t.sort((e,s)=>e-s)}Ku.exports=class{constructor(e,s){let r={loose:!1};this.cache=[],this.input=e,this.options=Object.assign({},r,s),this.position=0,this.unbalanced=0,this.root=new ty;let n=new ry;this.root.append(n),this.current=n,this.tokens=py(e,this.options)}parse(){return this.loop()}colon(){let e=this.currToken;this.newNode(new ny({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}comma(){let e=this.currToken;this.newNode(new iy({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}comment(){let e=!1,s=this.currToken[1].replace(/\/\*|\*\//g,""),r;this.options.loose&&s.startsWith("//")&&(s=s.substring(2),e=!0),r=new oy({value:s,inline:e,source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]}),this.newNode(r),this.position++}error(e,s){throw new yy(e+` at line: ${s[2]}, column ${s[3]}`)}loop(){for(;this.position<this.tokens.length;)this.parseTokens();return!this.current.last&&this.spaces?this.current.raws.before+=this.spaces:this.spaces&&(this.current.last.raws.after+=this.spaces),this.spaces="",this.root}operator(){let e=this.currToken[1],s;if(e==="+"||e==="-"){if(this.options.loose||this.position>0&&(this.current.type==="func"&&this.current.value==="calc"?this.prevToken[0]!=="space"&&this.prevToken[0]!=="("?this.error("Syntax Error",this.currToken):this.nextToken[0]!=="space"&&this.nextToken[0]!=="word"?this.error("Syntax Error",this.currToken):this.nextToken[0]==="word"&&this.current.last.type!=="operator"&&this.current.last.value!=="("&&this.error("Syntax Error",this.currToken):(this.nextToken[0]==="space"||this.nextToken[0]==="operator"||this.prevToken[0]==="operator")&&this.error("Syntax Error",this.currToken)),this.options.loose){if((!this.current.nodes.length||this.current.last&&this.current.last.type==="operator")&&this.nextToken[0]==="word")return this.word()}else if(this.nextToken[0]==="word")return this.word()}return s=new ly({value:this.currToken[1],source:{start:{line:this.currToken[2],column:this.currToken[3]},end:{line:this.currToken[2],column:this.currToken[3]}},sourceIndex:this.currToken[4]}),this.position++,this.newNode(s)}parseTokens(){switch(this.currToken[0]){case"space":this.space();break;case"colon":this.colon();break;case"comma":this.comma();break;case"comment":this.comment();break;case"(":this.parenOpen();break;case")":this.parenClose();break;case"atword":case"word":this.word();break;case"operator":this.operator();break;case"string":this.string();break;case"unicoderange":this.unicodeRange();break;default:this.word();break}}parenOpen(){let e=1,s=this.position+1,r=this.currToken,n;for(;s<this.tokens.length&&e;){let i=this.tokens[s];i[0]==="("&&e++,i[0]===")"&&e--,s++}if(e&&this.error("Expected closing parenthesis",r),n=this.current.last,n&&n.type==="func"&&n.unbalanced<0&&(n.unbalanced=0,this.current=n),this.current.unbalanced++,this.newNode(new ju({value:r[1],source:{start:{line:r[2],column:r[3]},end:{line:r[4],column:r[5]}},sourceIndex:r[6]})),this.position++,this.current.type==="func"&&this.current.unbalanced&&this.current.value==="url"&&this.currToken[0]!=="string"&&this.currToken[0]!==")"&&!this.options.loose){let i=this.nextToken,o=this.currToken[1],u={line:this.currToken[2],column:this.currToken[3]};for(;i&&i[0]!==")"&&this.current.unbalanced;)this.position++,o+=this.currToken[1],i=this.nextToken;this.position!==this.tokens.length-1&&(this.position++,this.newNode(new Hu({value:o,source:{start:u,end:{line:this.currToken[4],column:this.currToken[5]}},sourceIndex:this.currToken[6]})))}}parenClose(){let e=this.currToken;this.newNode(new ju({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++,!(this.position>=this.tokens.length-1&&!this.current.unbalanced)&&(this.current.unbalanced--,this.current.unbalanced<0&&this.error("Expected opening parenthesis",e),!this.current.unbalanced&&this.cache.length&&(this.current=this.cache.pop()))}space(){let e=this.currToken;this.position===this.tokens.length-1||this.nextToken[0]===","||this.nextToken[0]===")"?(this.current.last.raws.after+=e[1],this.position++):(this.spaces=e[1],this.position++)}unicodeRange(){let e=this.currToken;this.newNode(new fy({value:e[1],source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6]})),this.position++}splitWord(){let e=this.nextToken,s=this.currToken[1],r=/^[\+\-]?((\d+(\.\d*)?)|(\.\d+))([eE][\+\-]?\d+)?/,n=/^(?!\#([a-z0-9]+))[\#\{\}]/gi,i,o;if(!n.test(s))for(;e&&e[0]==="word";){this.position++;let u=this.currToken[1];s+=u,e=this.nextToken}i=dy(s,"@"),o=gy(my(hy([[0],i]))),o.forEach((u,a)=>{let c=o[a+1]||s.length,f=s.slice(u,c),p;if(~i.indexOf(u))p=new sy({value:f.slice(1),source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a]});else if(r.test(this.currToken[1])){let l=f.replace(r,"");p=new uy({value:f.replace(l,""),source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a],unit:l})}else p=new(e&&e[0]==="("?ay:Hu)({value:f,source:{start:{line:this.currToken[2],column:this.currToken[3]+u},end:{line:this.currToken[4],column:this.currToken[3]+(c-1)}},sourceIndex:this.currToken[6]+o[a]}),p.type==="word"?(p.isHex=/^#(.+)/.test(f),p.isColor=/^#([0-9a-f]{3}|[0-9a-f]{4}|[0-9a-f]{6}|[0-9a-f]{8})$/i.test(f)):this.cache.push(this.current);this.newNode(p)}),this.position++}string(){let e=this.currToken,s=this.currToken[1],r=/^(\"|\')/,n=r.test(s),i="",o;n&&(i=s.match(r)[0],s=s.slice(1,s.length-1)),o=new cy({value:s,source:{start:{line:e[2],column:e[3]},end:{line:e[4],column:e[5]}},sourceIndex:e[6],quoted:n}),o.raws.quote=i,this.newNode(o),this.position++}word(){return this.splitWord()}newNode(e){return this.spaces&&(e.raws.before+=this.spaces,this.spaces=""),this.current.append(e)}get currToken(){return this.tokens[this.position]}get nextToken(){return this.tokens[this.position+1]}get prevToken(){return this.tokens[this.position-1]}}});var qy={};Zs(qy,{languages:()=>gi,options:()=>vi,parsers:()=>Js,printers:()=>Iy});var vl=(t,e,s,r)=>{if(!(t&&e==null))return e.replaceAll?e.replaceAll(s,r):s.global?e.replace(s,r):e.split(s).join(r)},E=vl;var be="string",We="array",Ye="cursor",te="indent",_e="align",Ve="trim",re="group",se="fill",ne="if-break",ze="indent-if-break",Ee="line-suffix",Ge="line-suffix-boundary",j="line",je="label",ke="break-parent",Ct=new Set([Ye,te,_e,Ve,re,se,ne,ze,Ee,Ge,j,je,ke]);var xl=(t,e,s)=>{if(!(t&&e==null))return Array.isArray(e)||typeof e=="string"?e[s<0?e.length+s:s]:e.at(s)},$=xl;function bl(t){if(typeof t=="string")return be;if(Array.isArray(t))return We;if(!t)return;let{type:e}=t;if(Ct.has(e))return e}var H=bl;var _l=t=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(t);function El(t){let e=t===null?"null":typeof t;if(e!=="string"&&e!=="object")return`Unexpected doc '${e}',
31
+ Expected it to be 'string' or 'object'.`;if(H(t))throw new Error("doc is valid.");let s=Object.prototype.toString.call(t);if(s!=="[object Object]")return`Unexpected doc '${s}'.`;let r=_l([...Ct].map(n=>`'${n}'`));return`Unexpected doc.type '${t.type}'.
32
+ Expected it to be ${r}.`}var Wr=class extends Error{name="InvalidDocError";constructor(e){super(El(e)),this.doc=e}},Yr=Wr;function Sl(t,e){if(typeof t=="string")return e(t);let s=new Map;return r(t);function r(i){if(s.has(i))return s.get(i);let o=n(i);return s.set(i,o),o}function n(i){switch(H(i)){case We:return e(i.map(r));case se:return e({...i,parts:i.parts.map(r)});case ne:return e({...i,breakContents:r(i.breakContents),flatContents:r(i.flatContents)});case re:{let{expandedStates:o,contents:u}=i;return o?(o=o.map(r),u=o[0]):u=r(u),e({...i,contents:u,expandedStates:o})}case _e:case te:case ze:case je:case Ee:return e({...i,contents:r(i.contents)});case be:case Ye:case Ve:case Ge:case j:case ke:return e(i);default:throw new Yr(i)}}}function Tl(t){return t.type===j&&!t.hard?t.soft?"":" ":t.type===ne?t.flatContents:t}function tn(t){return Sl(t,Tl)}var Vr=()=>{},ie=Vr,He=Vr,rn=Vr;function q(t){return ie(t),{type:te,contents:t}}function sn(t,e){return ie(e),{type:_e,contents:e,n:t}}function L(t,e={}){return ie(t),He(e.expandedStates,!0),{type:re,id:e.id,contents:t,break:!!e.shouldBreak,expandedStates:e.expandedStates}}function nn(t){return sn({type:"root"},t)}function oe(t){return sn(-1,t)}function Se(t){return rn(t),{type:se,parts:t}}function Ot(t,e="",s={}){return ie(t),e!==""&&ie(e),{type:ne,breakContents:t,flatContents:e,groupId:s.groupId}}function on(t){return ie(t),{type:Ee,contents:t}}var Ke={type:ke};var Cl={type:j,hard:!0};var A={type:j},D={type:j,soft:!0},S=[Cl,Ke];function Y(t,e){ie(t),He(e);let s=[];for(let r=0;r<e.length;r++)r!==0&&s.push(t),s.push(e[r]);return s}function Ol(t){return Array.isArray(t)&&t.length>0}var ae=Ol;var an=new Proxy(()=>{},{get:()=>an}),un=an;var At="'",ln='"';function Al(t,e){let s=e===!0||e===At?At:ln,r=s===At?ln:At,n=0,i=0;for(let o of t)o===s?n++:o===r&&i++;return n>i?r:s}var cn=Al;function Nl(t,e,s){let r=e==='"'?"'":'"',i=E(!1,t,/\\(.)|(["'])/gsu,(o,u,a)=>u===r?u:a===e?"\\"+a:a||(s&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(u)?u:"\\"+u));return e+i+e}var fn=Nl;function Pl(t,e){un.ok(/^(?<quote>["']).*\k<quote>$/su.test(t));let s=t.slice(1,-1),r=e.parser==="json"||e.parser==="jsonc"||e.parser==="json5"&&e.quoteProps==="preserve"&&!e.singleQuote?'"':e.__isInHtmlAttribute?"'":cn(s,e.singleQuote);return t.charAt(0)===r?t:fn(s,r,!1)}var Nt=Pl;var zr=class extends Error{name="UnexpectedNodeError";constructor(e,s,r="type"){super(`Unexpected ${s} node ${r}: ${JSON.stringify(e[r])}.`),this.node=e}},pn=zr;function Rl(t){return(t==null?void 0:t.type)==="front-matter"}var Te=Rl;var Il=new Set(["raw","raws","sourceIndex","source","before","after","trailingComma","spaces"]);function hn(t,e,s){if(Te(t)&&t.language==="yaml"&&delete e.value,t.type==="css-comment"&&s.type==="css-root"&&s.nodes.length>0&&((s.nodes[0]===t||Te(s.nodes[0])&&s.nodes[1]===t)&&(delete e.text,/^\*\s*@(?:format|prettier)\s*$/u.test(t.text))||s.type==="css-root"&&$(!1,s.nodes,-1)===t))return null;if(t.type==="value-root"&&delete e.text,(t.type==="media-query"||t.type==="media-query-list"||t.type==="media-feature-expression")&&delete e.value,t.type==="css-rule"&&delete e.params,(t.type==="media-feature"||t.type==="media-keyword"||t.type==="media-type"||t.type==="media-unknown"||t.type==="media-url"||t.type==="media-value"||t.type==="selector-attribute"||t.type==="selector-string"||t.type==="selector-class"||t.type==="selector-combinator"||t.type==="value-string")&&t.value&&(e.value=ql(t.value)),t.type==="selector-combinator"&&(e.value=E(!1,e.value,/\s+/gu," ")),t.type==="media-feature"&&(e.value=E(!1,e.value," ","")),(t.type==="value-word"&&(t.isColor&&t.isHex||["initial","inherit","unset","revert"].includes(t.value.toLowerCase()))||t.type==="media-feature"||t.type==="selector-root-invalid"||t.type==="selector-pseudo")&&(e.value=e.value.toLowerCase()),t.type==="css-decl"&&(e.prop=t.prop.toLowerCase()),(t.type==="css-atrule"||t.type==="css-import")&&(e.name=t.name.toLowerCase()),t.type==="value-number"&&(e.unit=t.unit.toLowerCase()),t.type==="value-unknown"&&(e.value=E(!1,e.value,/;$/gu,"")),t.type==="selector-attribute"&&(e.attribute=t.attribute.trim(),t.namespace&&typeof t.namespace=="string"&&(e.namespace=t.namespace.trim()||!0),t.value&&(e.value=E(!1,e.value.trim(),/^["']|["']$/gu,""),delete e.quoted)),(t.type==="media-value"||t.type==="media-type"||t.type==="value-number"||t.type==="selector-root-invalid"||t.type==="selector-class"||t.type==="selector-combinator"||t.type==="selector-tag")&&t.value&&(e.value=E(!1,e.value,/([\d+.e-]+)([a-z]*)/giu,(r,n,i)=>{let o=Number(n);return Number.isNaN(o)?r:o+i.toLowerCase()})),t.type==="selector-tag"){let r=e.value.toLowerCase();["from","to"].includes(r)&&(e.value=r)}if(t.type==="css-atrule"&&t.name.toLowerCase()==="supports"&&delete e.value,t.type==="selector-unknown"&&delete e.value,t.type==="value-comma_group"){let r=t.groups.findIndex(n=>n.type==="value-number"&&n.unit==="...");r!==-1&&(e.groups[r].unit="",e.groups.splice(r+1,0,{type:"value-word",value:"...",isColor:!1,isHex:!1}))}if(t.type==="value-comma_group"&&t.groups.some(r=>r.type==="value-atword"&&r.value.endsWith("[")||r.type==="value-word"&&r.value.startsWith("]")))return{type:"value-atword",value:t.groups.map(r=>r.value).join(""),group:{open:null,close:null,groups:[],type:"value-paren_group"}}}hn.ignoredProperties=Il;function ql(t){return E(!1,E(!1,t,"'",'"'),/\\([^\da-f])/giu,"$1")}var dn=hn;async function Ll(t,e){if(t.language==="yaml"){let s=t.value.trim(),r=s?await e(s,{parser:"yaml"}):"";return nn([t.startDelimiter,t.explicitLanguage,S,r,r?S:"",t.endDelimiter])}}var mn=Ll;function yn(t){let{node:e}=t;if(e.type==="front-matter")return async s=>{let r=await mn(e,s);return r?[r,S]:void 0}}yn.getVisitorKeys=t=>t.type==="css-root"?["frontMatter"]:[];var gn=yn;var Qe=null;function Je(t){if(Qe!==null&&typeof Qe.property){let e=Qe;return Qe=Je.prototype=null,e}return Qe=Je.prototype=t??Object.create(null),new Je}var Dl=10;for(let t=0;t<=Dl;t++)Je();function Gr(t){return Je(t)}function Bl(t,e="type"){Gr(t);function s(r){let n=r[e],i=t[n];if(!Array.isArray(i))throw Object.assign(new Error(`Missing visitor keys for '${n}'.`),{node:r});return i}return s}var wn=Bl;var Ml={"front-matter":[],"css-root":["frontMatter","nodes"],"css-comment":[],"css-rule":["selector","nodes"],"css-decl":["value","selector","nodes"],"css-atrule":["selector","params","value","nodes"],"media-query-list":["nodes"],"media-query":["nodes"],"media-type":[],"media-feature-expression":["nodes"],"media-feature":[],"media-colon":[],"media-value":[],"media-keyword":[],"media-url":[],"media-unknown":[],"selector-root":["nodes"],"selector-selector":["nodes"],"selector-comment":[],"selector-string":[],"selector-tag":[],"selector-id":[],"selector-class":[],"selector-attribute":[],"selector-combinator":["nodes"],"selector-universal":[],"selector-pseudo":["nodes"],"selector-nesting":[],"selector-unknown":[],"value-value":["group"],"value-root":["group"],"value-comment":[],"value-comma_group":["groups"],"value-paren_group":["open","groups","close"],"value-func":["group"],"value-paren":[],"value-number":[],"value-operator":[],"value-word":[],"value-colon":[],"value-comma":[],"value-string":[],"value-atword":[],"value-unicode-range":[],"value-unknown":[]},vn=Ml;var Ul=wn(vn),xn=Ul;function Fl(t,e){let s=0;for(let r=0;r<t.line-1;++r)s=e.indexOf(`
33
+ `,s)+1;return s+t.column}var jr=Fl;function Pt(t){return(e,s,r)=>{let n=!!(r!=null&&r.backwards);if(s===!1)return!1;let{length:i}=e,o=s;for(;o>=0&&o<i;){let u=e.charAt(o);if(t instanceof RegExp){if(!t.test(u))return o}else if(!t.includes(u))return o;n?o--:o++}return o===-1||o===i?o:!1}}var $g=Pt(/\s/u),Rt=Pt(" "),bn=Pt(",; "),It=Pt(/[^\n\r]/u);function _n(t,e){var s,r,n;if(typeof((r=(s=t.source)==null?void 0:s.start)==null?void 0:r.offset)=="number")return t.source.start.offset;if(typeof t.sourceIndex=="number")return t.sourceIndex;if((n=t.source)!=null&&n.start)return jr(t.source.start,e);throw Object.assign(new Error("Can not locate node."),{node:t})}function Hr(t,e){var s,r;if(t.type==="css-comment"&&t.inline)return It(e,t.source.startOffset);if(typeof((r=(s=t.source)==null?void 0:s.end)==null?void 0:r.offset)=="number")return t.source.end.offset;if(t.source){if(t.source.end)return jr(t.source.end,e);if(ae(t.nodes))return Hr($(!1,t.nodes,-1),e)}return null}function Kr(t,e){t.source&&(t.source.startOffset=_n(t,e),t.source.endOffset=Hr(t,e));for(let s in t){let r=t[s];s==="source"||!r||typeof r!="object"||(r.type==="value-root"||r.type==="value-unknown"?En(r,$l(t),r.text||r.value):Kr(r,e))}}function En(t,e,s){t.source&&(t.source.startOffset=_n(t,s)+e,t.source.endOffset=Hr(t,s)+e);for(let r in t){let n=t[r];r==="source"||!n||typeof n!="object"||En(n,e,s)}}function $l(t){var s;let e=t.source.startOffset;return typeof t.prop=="string"&&(e+=t.prop.length),t.type==="css-atrule"&&typeof t.name=="string"&&(e+=1+t.name.length+t.raws.afterName.match(/^\s*:?\s*/u)[0].length),t.type!=="css-atrule"&&typeof((s=t.raws)==null?void 0:s.between)=="string"&&(e+=t.raws.between.length),e}function kn(t){let e="initial",s="initial",r,n=!1,i=[];for(let o=0;o<t.length;o++){let u=t[o];switch(e){case"initial":if(u==="'"){e="single-quotes";continue}if(u==='"'){e="double-quotes";continue}if((u==="u"||u==="U")&&t.slice(o,o+4).toLowerCase()==="url("){e="url",o+=3;continue}if(u==="*"&&t[o-1]==="/"){e="comment-block";continue}if(u==="/"&&t[o-1]==="/"){e="comment-inline",r=o-1;continue}continue;case"single-quotes":if(u==="'"&&t[o-1]!=="\\"&&(e=s,s="initial"),u===`
34
34
  `||u==="\r")return t;continue;case"double-quotes":if(u==='"'&&t[o-1]!=="\\"&&(e=s,s="initial"),u===`
35
35
  `||u==="\r")return t;continue;case"url":if(u===")"&&(e="initial"),u===`
36
36
  `||u==="\r")return t;if(u==="'"){e="single-quotes",s="url";continue}if(u==='"'){e="double-quotes",s="url";continue}continue;case"comment-block":u==="/"&&t[o-1]==="*"&&(e="initial");continue;case"comment-inline":(u==='"'||u==="'"||u==="*")&&(n=!0),(u===`
37
- `||u==="\r")&&(n&&i.push([r,o]),e="initial",n=!1);continue}}for(let[o,u]of i)t=t.slice(0,o)+k(!1,t.slice(o,u),/["'*]/gu," ")+t.slice(u);return t}function P(t){var e;return(e=t.source)==null?void 0:e.startOffset}function R(t){var e;return(e=t.source)==null?void 0:e.endOffset}var Fl=/\*\/$/,$l=/^\/\*\*?/,Cn=/^\s*(\/\*\*?(.|\r?\n)*?\*\/)/,Wl=/(^|\s+)\/\/([^\n\r]*)/g,En=/^(\r?\n)+/,Yl=/(?:^|\r?\n) *(@[^\n\r]*?) *\r?\n *(?![^\n\r@]*\/\/[^]*)([^\s@][^\n\r@]+?) *\r?\n/g,Sn=/(?:^|\r?\n) *@(\S+) *([^\n\r]*)/g,zl=/(\r?\n|^) *\* ?/g,On=[];function An(t){let e=t.match(Cn);return e?e[0].trimStart():""}function Nn(t){let e=t.match(Cn),s=e==null?void 0:e[0];return s==null?t:t.slice(s.length)}function Pn(t){let e=`
38
- `;t=k(!1,t.replace($l,"").replace(Fl,""),zl,"$1");let s="";for(;s!==t;)s=t,t=k(!1,t,Yl,`${e}$1 $2${e}`);t=t.replace(En,"").trimEnd();let r=Object.create(null),n=k(!1,t,Sn,"").replace(En,"").trimEnd(),i;for(;i=Sn.exec(t);){let o=k(!1,i[2],Wl,"");if(typeof r[i[1]]=="string"||Array.isArray(r[i[1]])){let u=r[i[1]];r[i[1]]=[...On,...Array.isArray(u)?u:[u],o]}else r[i[1]]=o}return{comments:n,pragmas:r}}function Rn({comments:t="",pragmas:e={}}){let s=`
39
- `,r="/**",n=" *",i=" */",o=Object.keys(e),u=o.flatMap(c=>Tn(c,e[c])).map(c=>`${n} ${c}${s}`).join("");if(!t){if(o.length===0)return"";if(o.length===1&&!Array.isArray(e[o[0]])){let c=e[o[0]];return`${r} ${Tn(o[0],c)[0]}${i}`}}let a=t.split(s).map(c=>`${n} ${c}`).join(s)+s;return r+s+(t?a:"")+(t&&o.length>0?n+s:"")+u+i}function Tn(t,e){return[...On,...Array.isArray(e)?e:[e]].map(s=>`@${t} ${s}`.trim())}function Vl(t){if(!t.startsWith("#!"))return"";let e=t.indexOf(`
40
- `);return e===-1?t:t.slice(0,e)}var In=Vl;function qn(t){let e=In(t);e&&(t=t.slice(e.length+1));let s=An(t),{pragmas:r,comments:n}=Pn(s);return{shebang:e,text:t,pragmas:r,comments:n}}function Ln(t){let{pragmas:e}=qn(t);return Object.prototype.hasOwnProperty.call(e,"prettier")||Object.prototype.hasOwnProperty.call(e,"format")}function Dn(t){let{shebang:e,text:s,pragmas:r,comments:n}=qn(t),i=Nn(s),o=Rn({pragmas:{format:"",...r},comments:n.trimStart()});return(e?`${e}
37
+ `||u==="\r")&&(n&&i.push([r,o]),e="initial",n=!1);continue}}for(let[o,u]of i)t=t.slice(0,o)+E(!1,t.slice(o,u),/["'*]/gu," ")+t.slice(u);return t}function P(t){var e;return(e=t.source)==null?void 0:e.startOffset}function R(t){var e;return(e=t.source)==null?void 0:e.endOffset}var Wl=/\*\/$/,Yl=/^\/\*\*?/,On=/^\s*(\/\*\*?(.|\r?\n)*?\*\/)/,Vl=/(^|\s+)\/\/([^\n\r]*)/g,Sn=/^(\r?\n)+/,zl=/(?:^|\r?\n) *(@[^\n\r]*?) *\r?\n *(?![^\n\r@]*\/\/[^]*)([^\s@][^\n\r@]+?) *\r?\n/g,Tn=/(?:^|\r?\n) *@(\S+) *([^\n\r]*)/g,Gl=/(\r?\n|^) *\* ?/g,An=[];function Nn(t){let e=t.match(On);return e?e[0].trimStart():""}function Pn(t){let e=t.match(On),s=e==null?void 0:e[0];return s==null?t:t.slice(s.length)}function Rn(t){let e=`
38
+ `;t=E(!1,t.replace(Yl,"").replace(Wl,""),Gl,"$1");let s="";for(;s!==t;)s=t,t=E(!1,t,zl,`${e}$1 $2${e}`);t=t.replace(Sn,"").trimEnd();let r=Object.create(null),n=E(!1,t,Tn,"").replace(Sn,"").trimEnd(),i;for(;i=Tn.exec(t);){let o=E(!1,i[2],Vl,"");if(typeof r[i[1]]=="string"||Array.isArray(r[i[1]])){let u=r[i[1]];r[i[1]]=[...An,...Array.isArray(u)?u:[u],o]}else r[i[1]]=o}return{comments:n,pragmas:r}}function In({comments:t="",pragmas:e={}}){let s=`
39
+ `,r="/**",n=" *",i=" */",o=Object.keys(e),u=o.flatMap(c=>Cn(c,e[c])).map(c=>`${n} ${c}${s}`).join("");if(!t){if(o.length===0)return"";if(o.length===1&&!Array.isArray(e[o[0]])){let c=e[o[0]];return`${r} ${Cn(o[0],c)[0]}${i}`}}let a=t.split(s).map(c=>`${n} ${c}`).join(s)+s;return r+s+(t?a:"")+(t&&o.length>0?n+s:"")+u+i}function Cn(t,e){return[...An,...Array.isArray(e)?e:[e]].map(s=>`@${t} ${s}`.trim())}function jl(t){if(!t.startsWith("#!"))return"";let e=t.indexOf(`
40
+ `);return e===-1?t:t.slice(0,e)}var qn=jl;function Ln(t){let e=qn(t);e&&(t=t.slice(e.length+1));let s=Nn(t),{pragmas:r,comments:n}=Rn(s);return{shebang:e,text:t,pragmas:r,comments:n}}function Dn(t){let{pragmas:e}=Ln(t);return Object.prototype.hasOwnProperty.call(e,"prettier")||Object.prototype.hasOwnProperty.call(e,"format")}function Bn(t){let{shebang:e,text:s,pragmas:r,comments:n}=Ln(t),i=Pn(s),o=In({pragmas:{format:"",...r},comments:n.trimStart()});return(e?`${e}
41
41
  `:"")+o+(i.startsWith(`
42
42
  `)?`
43
43
  `:`
44
44
 
45
- `)+i}var Xe=3;function Gl(t){let e=t.slice(0,Xe);if(e!=="---"&&e!=="+++")return;let s=t.indexOf(`
45
+ `)+i}var Xe=3;function Hl(t){let e=t.slice(0,Xe);if(e!=="---"&&e!=="+++")return;let s=t.indexOf(`
46
46
  `,Xe);if(s===-1)return;let r=t.slice(Xe,s).trim(),n=t.indexOf(`
47
47
  ${e}`,s),i=r;if(i||(i=e==="+++"?"toml":"yaml"),n===-1&&e==="---"&&i==="yaml"&&(n=t.indexOf(`
48
- ...`,s)),n===-1)return;let o=n+1+Xe,u=t.charAt(o+1);if(!/\s?/u.test(u))return;let a=t.slice(0,o);return{type:"front-matter",language:i,explicitLanguage:r,value:t.slice(s+1,n),startDelimiter:e,endDelimiter:a.slice(-Xe),raw:a}}function jl(t){let e=Gl(t);if(!e)return{content:t};let{raw:s}=e;return{frontMatter:e,content:k(!1,s,/[^\n]/gu," ")+t.slice(s.length)}}var Ze=jl;function Bn(t){return Ln(Ze(t).content)}function Mn(t){let{frontMatter:e,content:s}=Ze(t);return(e?e.raw+`
48
+ ...`,s)),n===-1)return;let o=n+1+Xe,u=t.charAt(o+1);if(!/\s?/u.test(u))return;let a=t.slice(0,o);return{type:"front-matter",language:i,explicitLanguage:r,value:t.slice(s+1,n),startDelimiter:e,endDelimiter:a.slice(-Xe),raw:a}}function Kl(t){let e=Hl(t);if(!e)return{content:t};let{raw:s}=e;return{frontMatter:e,content:E(!1,s,/[^\n]/gu," ")+t.slice(s.length)}}var Ze=Kl;function Mn(t){return Dn(Ze(t).content)}function Un(t){let{frontMatter:e,content:s}=Ze(t);return(e?e.raw+`
49
49
 
50
- `:"")+Dn(s)}var Hl=new Set(["red","green","blue","alpha","a","rgb","hue","h","saturation","s","lightness","l","whiteness","w","blackness","b","tint","shade","blend","blenda","contrast","hsl","hsla","hwb","hwba"]);function Un(t){var e,s;return(s=(e=t.findAncestor(r=>r.type==="css-decl"))==null?void 0:e.prop)==null?void 0:s.toLowerCase()}var Kl=new Set(["initial","inherit","unset","revert"]);function Fn(t){return Kl.has(t.toLowerCase())}function $n(t,e){var r;let s=t.findAncestor(n=>n.type==="css-atrule");return((r=s==null?void 0:s.name)==null?void 0:r.toLowerCase().endsWith("keyframes"))&&["from","to"].includes(e.toLowerCase())}function ae(t){return t.includes("$")||t.includes("@")||t.includes("#")||t.startsWith("%")||t.startsWith("--")||t.startsWith(":--")||t.includes("(")&&t.includes(")")?t:t.toLowerCase()}function Ce(t,e){var r;let s=t.findAncestor(n=>n.type==="value-func");return((r=s==null?void 0:s.value)==null?void 0:r.toLowerCase())===e}function Wn(t){var r;let e=t.findAncestor(n=>n.type==="css-rule"),s=(r=e==null?void 0:e.raws)==null?void 0:r.selector;return s&&(s.startsWith(":import")||s.startsWith(":export"))}function Oe(t,e){let s=Array.isArray(e)?e:[e],r=t.findAncestor(n=>n.type==="css-atrule");return r&&s.includes(r.name.toLowerCase())}function Yn(t){var s;let{node:e}=t;return e.groups[0].value==="url"&&e.groups.length===2&&((s=t.findAncestor(r=>r.type==="css-atrule"))==null?void 0:s.name)==="import"}function zn(t){return t.type==="value-func"&&t.value.toLowerCase()==="url"}function Vn(t){return t.type==="value-func"&&t.value.toLowerCase()==="var"}function Gn(t){let{selector:e}=t;return e?typeof e=="string"&&/^@.+:.*$/u.test(e)||e.value&&/^@.+:.*$/u.test(e.value):!1}function jn(t){return t.type==="value-word"&&["from","through","end"].includes(t.value)}function Hn(t){return t.type==="value-word"&&["and","or","not"].includes(t.value)}function Kn(t){return t.type==="value-word"&&t.value==="in"}function qt(t){return t.type==="value-operator"&&t.value==="*"}function et(t){return t.type==="value-operator"&&t.value==="/"}function J(t){return t.type==="value-operator"&&t.value==="+"}function he(t){return t.type==="value-operator"&&t.value==="-"}function Ql(t){return t.type==="value-operator"&&t.value==="%"}function Lt(t){return qt(t)||et(t)||J(t)||he(t)||Ql(t)}function Qn(t){return t.type==="value-word"&&["==","!="].includes(t.value)}function Jn(t){return t.type==="value-word"&&["<",">","<=",">="].includes(t.value)}function tt(t,e){return e.parser==="scss"&&t.type==="css-atrule"&&["if","else","for","each","while"].includes(t.name)}function Qr(t){var e;return((e=t.raws)==null?void 0:e.params)&&/^\(\s*\)$/u.test(t.raws.params)}function Dt(t){return t.name.startsWith("prettier-placeholder")}function Xn(t){return t.prop.startsWith("@prettier-placeholder")}function Zn(t,e){return t.value==="$$"&&t.type==="value-func"&&(e==null?void 0:e.type)==="value-word"&&!e.raws.before}function ei(t){var e,s;return((e=t.value)==null?void 0:e.type)==="value-root"&&((s=t.value.group)==null?void 0:s.type)==="value-value"&&t.prop.toLowerCase()==="composes"}function ti(t){var e,s,r;return((r=(s=(e=t.value)==null?void 0:e.group)==null?void 0:s.group)==null?void 0:r.type)==="value-paren_group"&&t.value.group.group.open!==null&&t.value.group.group.close!==null}function de(t){var e;return((e=t.raws)==null?void 0:e.before)===""}function Bt(t){var e,s;return t.type==="value-comma_group"&&((s=(e=t.groups)==null?void 0:e[1])==null?void 0:s.type)==="value-colon"}function Kr(t){var e;return t.type==="value-paren_group"&&((e=t.groups)==null?void 0:e[0])&&Bt(t.groups[0])}function Jr(t,e){var i;if(e.parser!=="scss")return!1;let{node:s}=t;if(s.groups.length===0)return!1;let r=t.grandparent;if(!Kr(s)&&!(r&&Kr(r)))return!1;let n=t.findAncestor(o=>o.type==="css-decl");return!!((i=n==null?void 0:n.prop)!=null&&i.startsWith("$")||Kr(r)||r.type==="value-func")}function Ae(t){return t.type==="value-comment"&&t.inline}function Mt(t){return t.type==="value-word"&&t.value==="#"}function Xr(t){return t.type==="value-word"&&t.value==="{"}function Ut(t){return t.type==="value-word"&&t.value==="}"}function rt(t){return["value-word","value-atword"].includes(t.type)}function st(t){return(t==null?void 0:t.type)==="value-colon"}function ri(t,e){if(!Bt(e))return!1;let{groups:s}=e,r=s.indexOf(t);return r===-1?!1:st(s[r+1])}function si(t){return t.value&&["not","and","or"].includes(t.value.toLowerCase())}function ni(t){return t.type!=="value-func"?!1:Hl.has(t.value.toLowerCase())}function Ne(t){return/\/\//u.test(t.split(/[\n\r]/u).pop())}function nt(t){return(t==null?void 0:t.type)==="value-atword"&&t.value.startsWith("prettier-placeholder-")}function ii(t,e){var s,r;if(((s=t.open)==null?void 0:s.value)!=="("||((r=t.close)==null?void 0:r.value)!==")"||t.groups.some(n=>n.type!=="value-comma_group"))return!1;if(e.type==="value-comma_group"){let n=e.groups.indexOf(t)-1,i=e.groups[n];if((i==null?void 0:i.type)==="value-word"&&i.value==="with")return!0}return!1}function it(t){var e,s;return t.type==="value-paren_group"&&((e=t.open)==null?void 0:e.value)==="("&&((s=t.close)==null?void 0:s.value)===")"}function Jl(t,e,s){var d;let{node:r}=t,n=t.parent,i=t.grandparent,o=Un(t),u=o&&n.type==="value-value"&&(o==="grid"||o.startsWith("grid-template")),a=t.findAncestor(m=>m.type==="css-atrule"),c=a&&tt(a,e),f=r.groups.some(m=>Ae(m)),p=t.map(s,"groups"),l=[""],y=Ce(t,"url"),x=!1,h=!1;for(let m=0;m<r.groups.length;++m){let b=r.groups[m-1],w=r.groups[m],v=r.groups[m+1],N=r.groups[m+2];if(Ae(w)&&!v){l.push([l.pop(),sn([" ",p[m]])]);continue}if(l.push([l.pop(),p[m]]),y){(v&&J(v)||J(w))&&l.push([l.pop()," "]);continue}if(st(v)&&w.type==="value-word"&&l.length>2&&r.groups.slice(0,m).every(O=>O.type==="value-comment")&&!Ae(b)&&(l[l.length-2]=ie($(!1,l,-2))),Oe(t,"forward")&&w.type==="value-word"&&w.value&&b!==void 0&&b.type==="value-word"&&b.value==="as"&&v.type==="value-operator"&&v.value==="*"||!v||w.type==="value-word"&&w.value.endsWith("-")&&nt(v))continue;if(w.type==="value-string"&&w.quoted){let O=w.value.lastIndexOf("#{"),ve=w.value.lastIndexOf("}");O!==-1&&ve!==-1?x=O>ve:O!==-1?x=!0:ve!==-1&&(x=!1)}if(x||st(w)||st(v)||w.type==="value-atword"&&(w.value===""||w.value.endsWith("["))||v.type==="value-word"&&v.value.startsWith("]")||w.value==="~"||w.type!=="value-string"&&w.value&&w.value.includes("\\")&&v&&v.type!=="value-comment"||b!=null&&b.value&&b.value.indexOf("\\")===b.value.length-1&&w.type==="value-operator"&&w.value==="/"||w.value==="\\"||Zn(w,v)||Mt(w)||Xr(w)||Ut(v)||Xr(v)&&de(v)||Ut(w)&&de(v)||w.value==="--"&&Mt(v))continue;let F=Lt(w),H=Lt(v);if((F&&Mt(v)||H&&Ut(w))&&de(v)||!b&&et(w)||Ce(t,"calc")&&(J(w)||J(v)||he(w)||he(v))&&de(v))continue;let W=(J(w)||he(w))&&m===0&&(v.type==="value-number"||v.isHex)&&i&&ni(i)&&!de(v),T=(N==null?void 0:N.type)==="value-func"||N&&rt(N)||w.type==="value-func"||rt(w),C=v.type==="value-func"||rt(v)||(b==null?void 0:b.type)==="value-func"||b&&rt(b);if(e.parser==="scss"&&F&&w.value==="-"&&v.type==="value-func"&&R(w)!==P(v)){l.push([l.pop()," "]);continue}if(!(!(qt(v)||qt(w))&&!Ce(t,"calc")&&!W&&(et(v)&&!T||et(w)&&!C||J(v)&&!T||J(w)&&!C||he(v)||he(w))&&(de(v)||F&&(!b||b&&Lt(b))))&&!((e.parser==="scss"||e.parser==="less")&&F&&w.value==="-"&&it(v)&&R(w)===P(v.open)&&v.open.value==="(")){if(Ae(w)){if(n.type==="value-paren_group"){l.push(ie(S),"");continue}l.push(S,"");continue}if(c&&(Qn(v)||Jn(v)||Hn(v)||Kn(w)||jn(w))){l.push([l.pop()," "]);continue}if(a&&a.name.toLowerCase()==="namespace"){l.push([l.pop()," "]);continue}if(u){w.source&&v.source&&w.source.start.line!==v.source.start.line?(l.push(S,""),h=!0):l.push([l.pop()," "]);continue}if(H){l.push([l.pop()," "]);continue}if((v==null?void 0:v.value)!=="..."&&!(nt(w)&&nt(v)&&R(w)===P(v))){if(nt(w)&&it(v)&&R(w)===P(v.open)){l.push(B,"");continue}if(w.value==="with"&&it(v)){l=[[Se(l)," "]];continue}(d=w.value)!=null&&d.endsWith("#")&&v.value==="{"&&it(v.group)||Ae(v)&&!N||l.push(A,"")}}}return f&&l.push([l.pop(),Ke]),h&&l.unshift("",S),c?L(q(l)):Yn(t)?L(Se(l)):L(q(Se(l)))}var oi=Jl;function Xl(t){return t.length===1?t:t.toLowerCase().replace(/^([+-]?[\d.]+e)(?:\+|(-))?0*(?=\d)/u,"$1$2").replace(/^([+-]?[\d.]+)e[+-]?0+$/u,"$1").replace(/^([+-])?\./u,"$10.").replace(/(\.\d+?)0+(?=e|$)/u,"$1").replace(/\.(?=e|$)/u,"")}var ai=Xl;var Zr=new Map([["em","em"],["rem","rem"],["ex","ex"],["rex","rex"],["cap","cap"],["rcap","rcap"],["ch","ch"],["rch","rch"],["ic","ic"],["ric","ric"],["lh","lh"],["rlh","rlh"],["vw","vw"],["svw","svw"],["lvw","lvw"],["dvw","dvw"],["vh","vh"],["svh","svh"],["lvh","lvh"],["dvh","dvh"],["vi","vi"],["svi","svi"],["lvi","lvi"],["dvi","dvi"],["vb","vb"],["svb","svb"],["lvb","lvb"],["dvb","dvb"],["vmin","vmin"],["svmin","svmin"],["lvmin","lvmin"],["dvmin","dvmin"],["vmax","vmax"],["svmax","svmax"],["lvmax","lvmax"],["dvmax","dvmax"],["cm","cm"],["mm","mm"],["q","Q"],["in","in"],["pt","pt"],["pc","pc"],["px","px"],["deg","deg"],["grad","grad"],["rad","rad"],["turn","turn"],["s","s"],["ms","ms"],["hz","Hz"],["khz","kHz"],["dpi","dpi"],["dpcm","dpcm"],["dppx","dppx"],["x","x"],["cqw","cqw"],["cqh","cqh"],["cqi","cqi"],["cqb","cqb"],["cqmin","cqmin"],["cqmax","cqmax"],["fr","fr"]]);function ui(t){let e=t.toLowerCase();return Zr.has(e)?Zr.get(e):t}var li=/(["'])(?:(?!\1)[^\\]|\\.)*\1/gsu,Zl=/(?:\d*\.\d+|\d+\.?)(?:e[+-]?\d+)?/giu,ec=/[a-z]+/giu,tc=/[$@]?[_a-z\u0080-\uFFFF][\w\u0080-\uFFFF-]*/giu,rc=new RegExp(li.source+`|(${tc.source})?(${Zl.source})(${ec.source})?`,"giu");function z(t,e){return k(!1,t,li,s=>Nt(s,e))}function ci(t,e){let s=e.singleQuote?"'":'"';return t.includes('"')||t.includes("'")?t:s+t+s}function me(t){return k(!1,t,rc,(e,s,r,n,i)=>!r&&n?es(n)+ae(i||""):e)}function es(t){return ai(t).replace(/\.0(?=$|e)/u,"")}function fi(t){return t.trailingComma==="es5"||t.trailingComma==="all"}function sc(t,e,s){let r=!!(s!=null&&s.backwards);if(e===!1)return!1;let n=t.charAt(e);if(r){if(t.charAt(e-1)==="\r"&&n===`
50
+ `:"")+Bn(s)}var Ql=new Set(["red","green","blue","alpha","a","rgb","hue","h","saturation","s","lightness","l","whiteness","w","blackness","b","tint","shade","blend","blenda","contrast","hsl","hsla","hwb","hwba"]);function Fn(t){var e,s;return(s=(e=t.findAncestor(r=>r.type==="css-decl"))==null?void 0:e.prop)==null?void 0:s.toLowerCase()}var Jl=new Set(["initial","inherit","unset","revert"]);function $n(t){return Jl.has(t.toLowerCase())}function Wn(t,e){var r;let s=t.findAncestor(n=>n.type==="css-atrule");return((r=s==null?void 0:s.name)==null?void 0:r.toLowerCase().endsWith("keyframes"))&&["from","to"].includes(e.toLowerCase())}function ue(t){return t.includes("$")||t.includes("@")||t.includes("#")||t.startsWith("%")||t.startsWith("--")||t.startsWith(":--")||t.includes("(")&&t.includes(")")?t:t.toLowerCase()}function Ce(t,e){var r;let s=t.findAncestor(n=>n.type==="value-func");return((r=s==null?void 0:s.value)==null?void 0:r.toLowerCase())===e}function Yn(t){var r;let e=t.findAncestor(n=>n.type==="css-rule"),s=(r=e==null?void 0:e.raws)==null?void 0:r.selector;return s&&(s.startsWith(":import")||s.startsWith(":export"))}function Oe(t,e){let s=Array.isArray(e)?e:[e],r=t.findAncestor(n=>n.type==="css-atrule");return r&&s.includes(r.name.toLowerCase())}function Vn(t){var s;let{node:e}=t;return e.groups[0].value==="url"&&e.groups.length===2&&((s=t.findAncestor(r=>r.type==="css-atrule"))==null?void 0:s.name)==="import"}function zn(t){return t.type==="value-func"&&t.value.toLowerCase()==="url"}function Gn(t){return t.type==="value-func"&&t.value.toLowerCase()==="var"}function jn(t){let{selector:e}=t;return e?typeof e=="string"&&/^@.+:.*$/u.test(e)||e.value&&/^@.+:.*$/u.test(e.value):!1}function Hn(t){return t.type==="value-word"&&["from","through","end"].includes(t.value)}function Kn(t){return t.type==="value-word"&&["and","or","not"].includes(t.value)}function Qn(t){return t.type==="value-word"&&t.value==="in"}function qt(t){return t.type==="value-operator"&&t.value==="*"}function et(t){return t.type==="value-operator"&&t.value==="/"}function J(t){return t.type==="value-operator"&&t.value==="+"}function he(t){return t.type==="value-operator"&&t.value==="-"}function Xl(t){return t.type==="value-operator"&&t.value==="%"}function Lt(t){return qt(t)||et(t)||J(t)||he(t)||Xl(t)}function Jn(t){return t.type==="value-word"&&["==","!="].includes(t.value)}function Xn(t){return t.type==="value-word"&&["<",">","<=",">="].includes(t.value)}function tt(t,e){return e.parser==="scss"&&t.type==="css-atrule"&&["if","else","for","each","while"].includes(t.name)}function Jr(t){var e;return((e=t.raws)==null?void 0:e.params)&&/^\(\s*\)$/u.test(t.raws.params)}function Dt(t){return t.name.startsWith("prettier-placeholder")}function Zn(t){return t.prop.startsWith("@prettier-placeholder")}function ei(t,e){return t.value==="$$"&&t.type==="value-func"&&(e==null?void 0:e.type)==="value-word"&&!e.raws.before}function ti(t){var e,s;return((e=t.value)==null?void 0:e.type)==="value-root"&&((s=t.value.group)==null?void 0:s.type)==="value-value"&&t.prop.toLowerCase()==="composes"}function ri(t){var e,s,r;return((r=(s=(e=t.value)==null?void 0:e.group)==null?void 0:s.group)==null?void 0:r.type)==="value-paren_group"&&t.value.group.group.open!==null&&t.value.group.group.close!==null}function de(t){var e;return((e=t.raws)==null?void 0:e.before)===""}function Bt(t){var e,s;return t.type==="value-comma_group"&&((s=(e=t.groups)==null?void 0:e[1])==null?void 0:s.type)==="value-colon"}function Qr(t){var e;return t.type==="value-paren_group"&&((e=t.groups)==null?void 0:e[0])&&Bt(t.groups[0])}function Xr(t,e){var i;if(e.parser!=="scss")return!1;let{node:s}=t;if(s.groups.length===0)return!1;let r=t.grandparent;if(!Qr(s)&&!(r&&Qr(r)))return!1;let n=t.findAncestor(o=>o.type==="css-decl");return!!((i=n==null?void 0:n.prop)!=null&&i.startsWith("$")||Qr(r)||r.type==="value-func")}function Ae(t){return t.type==="value-comment"&&t.inline}function Mt(t){return t.type==="value-word"&&t.value==="#"}function Zr(t){return t.type==="value-word"&&t.value==="{"}function Ut(t){return t.type==="value-word"&&t.value==="}"}function rt(t){return["value-word","value-atword"].includes(t.type)}function st(t){return(t==null?void 0:t.type)==="value-colon"}function si(t,e){if(!Bt(e))return!1;let{groups:s}=e,r=s.indexOf(t);return r===-1?!1:st(s[r+1])}function ni(t){return t.value&&["not","and","or"].includes(t.value.toLowerCase())}function ii(t){return t.type!=="value-func"?!1:Ql.has(t.value.toLowerCase())}function Ne(t){return/\/\//u.test(t.split(/[\n\r]/u).pop())}function nt(t){return(t==null?void 0:t.type)==="value-atword"&&t.value.startsWith("prettier-placeholder-")}function oi(t,e){var s,r;if(((s=t.open)==null?void 0:s.value)!=="("||((r=t.close)==null?void 0:r.value)!==")"||t.groups.some(n=>n.type!=="value-comma_group"))return!1;if(e.type==="value-comma_group"){let n=e.groups.indexOf(t)-1,i=e.groups[n];if((i==null?void 0:i.type)==="value-word"&&i.value==="with")return!0}return!1}function it(t){var e,s;return t.type==="value-paren_group"&&((e=t.open)==null?void 0:e.value)==="("&&((s=t.close)==null?void 0:s.value)===")"}function Zl(t,e,s){var d;let{node:r}=t,n=t.parent,i=t.grandparent,o=Fn(t),u=o&&n.type==="value-value"&&(o==="grid"||o.startsWith("grid-template")),a=t.findAncestor(m=>m.type==="css-atrule"),c=a&&tt(a,e),f=r.groups.some(m=>Ae(m)),p=t.map(s,"groups"),l=[""],y=Ce(t,"url"),x=!1,h=!1;for(let m=0;m<r.groups.length;++m){let b=r.groups[m-1],w=r.groups[m],v=r.groups[m+1],N=r.groups[m+2];if(Ae(w)&&!v){l.push([l.pop(),on([" ",p[m]])]);continue}if(l.push([l.pop(),p[m]]),y){(v&&J(v)||J(w))&&l.push([l.pop()," "]);continue}if(st(v)&&w.type==="value-word"&&l.length>2&&r.groups.slice(0,m).every(O=>O.type==="value-comment")&&!Ae(b)&&(l[l.length-2]=oe($(!1,l,-2))),Oe(t,"forward")&&w.type==="value-word"&&w.value&&b!==void 0&&b.type==="value-word"&&b.value==="as"&&v.type==="value-operator"&&v.value==="*"||!v||w.type==="value-word"&&w.value.endsWith("-")&&nt(v))continue;if(w.type==="value-string"&&w.quoted){let O=w.value.lastIndexOf("#{"),ve=w.value.lastIndexOf("}");O!==-1&&ve!==-1?x=O>ve:O!==-1?x=!0:ve!==-1&&(x=!1)}if(x||st(w)||st(v)||w.type==="value-atword"&&(w.value===""||w.value.endsWith("["))||v.type==="value-word"&&v.value.startsWith("]")||w.value==="~"||w.type!=="value-string"&&w.value&&w.value.includes("\\")&&v&&v.type!=="value-comment"||b!=null&&b.value&&b.value.indexOf("\\")===b.value.length-1&&w.type==="value-operator"&&w.value==="/"||w.value==="\\"||ei(w,v)||Mt(w)||Zr(w)||Ut(v)||Zr(v)&&de(v)||Ut(w)&&de(v)||w.value==="--"&&Mt(v))continue;let F=Lt(w),Q=Lt(v);if((F&&Mt(v)||Q&&Ut(w))&&de(v)||!b&&et(w)||Ce(t,"calc")&&(J(w)||J(v)||he(w)||he(v))&&de(v))continue;let W=(J(w)||he(w))&&m===0&&(v.type==="value-number"||v.isHex)&&i&&ii(i)&&!de(v),T=(N==null?void 0:N.type)==="value-func"||N&&rt(N)||w.type==="value-func"||rt(w),C=v.type==="value-func"||rt(v)||(b==null?void 0:b.type)==="value-func"||b&&rt(b);if(e.parser==="scss"&&F&&w.value==="-"&&v.type==="value-func"&&R(w)!==P(v)){l.push([l.pop()," "]);continue}if(!(!(qt(v)||qt(w))&&!Ce(t,"calc")&&!W&&(et(v)&&!T||et(w)&&!C||J(v)&&!T||J(w)&&!C||he(v)||he(w))&&(de(v)||F&&(!b||b&&Lt(b))))&&!((e.parser==="scss"||e.parser==="less")&&F&&w.value==="-"&&it(v)&&R(w)===P(v.open)&&v.open.value==="(")){if(Ae(w)){if(n.type==="value-paren_group"){l.push(oe(S),"");continue}l.push(S,"");continue}if(c&&(Jn(v)||Xn(v)||Kn(v)||Qn(w)||Hn(w))){l.push([l.pop()," "]);continue}if(a&&a.name.toLowerCase()==="namespace"){l.push([l.pop()," "]);continue}if(u){w.source&&v.source&&w.source.start.line!==v.source.start.line?(l.push(S,""),h=!0):l.push([l.pop()," "]);continue}if(Q){l.push([l.pop()," "]);continue}if((v==null?void 0:v.value)!=="..."&&!(nt(w)&&nt(v)&&R(w)===P(v))){if(nt(w)&&it(v)&&R(w)===P(v.open)){l.push(D,"");continue}if(w.value==="with"&&it(v)){l=[[Se(l)," "]];continue}(d=w.value)!=null&&d.endsWith("#")&&v.value==="{"&&it(v.group)||Ae(v)&&!N||l.push(A,"")}}}return f&&l.push([l.pop(),Ke]),h&&l.unshift("",S),c?L(q(l)):Vn(t)?L(Se(l)):L(q(Se(l)))}var ai=Zl;function ec(t){return t.length===1?t:t.toLowerCase().replace(/^([+-]?[\d.]+e)(?:\+|(-))?0*(?=\d)/u,"$1$2").replace(/^([+-]?[\d.]+)e[+-]?0+$/u,"$1").replace(/^([+-])?\./u,"$10.").replace(/(\.\d+?)0+(?=e|$)/u,"$1").replace(/\.(?=e|$)/u,"")}var ui=ec;var es=new Map([["em","em"],["rem","rem"],["ex","ex"],["rex","rex"],["cap","cap"],["rcap","rcap"],["ch","ch"],["rch","rch"],["ic","ic"],["ric","ric"],["lh","lh"],["rlh","rlh"],["vw","vw"],["svw","svw"],["lvw","lvw"],["dvw","dvw"],["vh","vh"],["svh","svh"],["lvh","lvh"],["dvh","dvh"],["vi","vi"],["svi","svi"],["lvi","lvi"],["dvi","dvi"],["vb","vb"],["svb","svb"],["lvb","lvb"],["dvb","dvb"],["vmin","vmin"],["svmin","svmin"],["lvmin","lvmin"],["dvmin","dvmin"],["vmax","vmax"],["svmax","svmax"],["lvmax","lvmax"],["dvmax","dvmax"],["cm","cm"],["mm","mm"],["q","Q"],["in","in"],["pt","pt"],["pc","pc"],["px","px"],["deg","deg"],["grad","grad"],["rad","rad"],["turn","turn"],["s","s"],["ms","ms"],["hz","Hz"],["khz","kHz"],["dpi","dpi"],["dpcm","dpcm"],["dppx","dppx"],["x","x"],["cqw","cqw"],["cqh","cqh"],["cqi","cqi"],["cqb","cqb"],["cqmin","cqmin"],["cqmax","cqmax"],["fr","fr"]]);function li(t){let e=t.toLowerCase();return es.has(e)?es.get(e):t}var ci=/(["'])(?:(?!\1)[^\\]|\\.)*\1/gsu,tc=/(?:\d*\.\d+|\d+\.?)(?:e[+-]?\d+)?/giu,rc=/[a-z]+/giu,sc=/[$@]?[_a-z\u0080-\uFFFF][\w\u0080-\uFFFF-]*/giu,nc=new RegExp(ci.source+`|(${sc.source})?(${tc.source})(${rc.source})?`,"giu");function V(t,e){return E(!1,t,ci,s=>Nt(s,e))}function fi(t,e){let s=e.singleQuote?"'":'"';return t.includes('"')||t.includes("'")?t:s+t+s}function me(t){return E(!1,t,nc,(e,s,r,n,i)=>!r&&n?ts(n)+ue(i||""):e)}function ts(t){return ui(t).replace(/\.0(?=$|e)/u,"")}function pi(t){return t.trailingComma==="es5"||t.trailingComma==="all"}function ic(t,e,s){let r=!!(s!=null&&s.backwards);if(e===!1)return!1;let n=t.charAt(e);if(r){if(t.charAt(e-1)==="\r"&&n===`
51
51
  `)return e-2;if(n===`
52
52
  `||n==="\r"||n==="\u2028"||n==="\u2029")return e-1}else{if(n==="\r"&&t.charAt(e+1)===`
53
53
  `)return e+2;if(n===`
54
- `||n==="\r"||n==="\u2028"||n==="\u2029")return e+1}return e}var Ft=sc;function nc(t,e,s={}){let r=Rt(t,s.backwards?e-1:e,s),n=Ft(t,r,s);return r!==n}var $t=nc;function ic(t,e){if(e===!1)return!1;if(t.charAt(e)==="/"&&t.charAt(e+1)==="*"){for(let s=e+2;s<t.length;++s)if(t.charAt(s)==="*"&&t.charAt(s+1)==="/")return s+2}return e}var pi=ic;function oc(t,e){return e===!1?!1:t.charAt(e)==="/"&&t.charAt(e+1)==="/"?It(t,e):e}var hi=oc;function ac(t,e){let s=null,r=e;for(;r!==s;)s=r,r=xn(t,r),r=pi(t,r),r=Rt(t,r);return r=hi(t,r),r=Ft(t,r),r!==!1&&$t(t,r)}var Wt=ac;function uc({node:t,parent:e},s){return!!(t.source&&s.originalText.slice(P(t),P(e.close)).trimEnd().endsWith(","))}function lc(t,e){return Vn(t.grandparent)&&uc(t,e)?",":t.node.type!=="value-comment"&&!(t.node.type==="value-comma_group"&&t.node.groups.every(s=>s.type==="value-comment"))&&fi(e)&&t.callParent(()=>Jr(t,e))?Ot(","):""}function di(t,e,s){let{node:r,parent:n}=t,i=t.map(({node:y})=>typeof y=="string"?y:s(),"groups");if(n&&zn(n)&&(r.groups.length===1||r.groups.length>0&&r.groups[0].type==="value-comma_group"&&r.groups[0].groups.length>0&&r.groups[0].groups[0].type==="value-word"&&r.groups[0].groups[0].value.startsWith("data:")))return[r.open?s("open"):"",Y(",",i),r.close?s("close"):""];if(!r.open){let y=ts(t);Ee(i);let x=cc(Y(",",i),2),h=Y(y?S:A,x);return q(y?[S,h]:L(Se(h)))}let o=t.map(({node:y,isLast:x,index:h})=>{var b;let d=i[h];Bt(y)&&y.type==="value-comma_group"&&y.groups&&y.groups[0].type!=="value-paren_group"&&((b=y.groups[2])==null?void 0:b.type)==="value-paren_group"&&Q(d)===re&&Q(d.contents)===te&&Q(d.contents.contents)===se&&(d=L(ie(d)));let m=[d,x?lc(t,e):","];if(!x&&y.type==="value-comma_group"&&oe(y.groups)){let w=$(!1,y.groups,-1);!w.source&&w.close&&(w=w.close),w.source&&Wt(e.originalText,R(w))&&m.push(S)}return m},"groups"),u=ri(r,n),a=ii(r,n),c=Jr(t,e),f=a||c&&!u,p=a||u,l=L([r.open?s("open"):"",q([B,Y(A,o)]),B,r.close?s("close"):""],{shouldBreak:f});return p?ie(l):l}function ts(t){return t.match(e=>e.type==="value-paren_group"&&!e.open&&e.groups.some(s=>s.type==="value-comma_group"),(e,s)=>s==="group"&&e.type==="value-value",(e,s)=>s==="group"&&e.type==="value-root",(e,s)=>s==="value"&&(e.type==="css-decl"&&!e.prop.startsWith("--")||e.type==="css-atrule"&&e.variable))}function cc(t,e){let s=[];for(let r=0;r<t.length;r+=e)s.push(t.slice(r,r+e));return s}function fc(t,e,s){let r=[];return t.each(()=>{let{node:n,previous:i}=t;if((i==null?void 0:i.type)==="css-comment"&&i.text.trim()==="prettier-ignore"?r.push(e.originalText.slice(P(n),R(n))):r.push(s()),t.isLast)return;let{next:o}=t;o.type==="css-comment"&&!$t(e.originalText,P(o),{backwards:!0})&&!Te(n)||o.type==="css-atrule"&&o.name==="else"&&n.type!=="css-comment"?r.push(" "):(r.push(e.__isHTMLStyleAttribute?A:S),Wt(e.originalText,R(n))&&!Te(n)&&r.push(S))},"nodes"),r}var Pe=fc;function pc(t,e,s){var n,i,o,u,a,c;let{node:r}=t;switch(r.type){case"front-matter":return[r.raw,S];case"css-root":{let f=Pe(t,e,s),p=r.raws.after.trim();return p.startsWith(";")&&(p=p.slice(1).trim()),[r.frontMatter?[s("frontMatter"),S]:"",f,p?` ${p}`:"",r.nodes.length>0?S:""]}case"css-comment":{let f=r.inline||r.raws.inline,p=e.originalText.slice(P(r),R(r));return f?p.trimEnd():p}case"css-rule":return[s("selector"),r.important?" !important":"",r.nodes?[((n=r.selector)==null?void 0:n.type)==="selector-unknown"&&Ne(r.selector.value)?A:r.selector?" ":"","{",r.nodes.length>0?q([S,Pe(t,e,s)]):"",S,"}",Gn(r)?";":""]:";"];case"css-decl":{let f=t.parent,{between:p}=r.raws,l=p.trim(),y=l===":",x=typeof r.value=="string"&&/^ *$/u.test(r.value),h=typeof r.value=="string"?r.value:s("value");return h=ei(r)?nn(h):h,!y&&Ne(l)&&!((o=(i=r.value)==null?void 0:i.group)!=null&&o.group&&t.call(()=>ts(t),"value","group","group"))&&(h=q([S,ie(h)])),[k(!1,r.raws.before,/[\s;]/gu,""),f.type==="css-atrule"&&f.variable||Wn(t)?r.prop:ae(r.prop),l.startsWith("//")?" ":"",l,r.extend||x?"":" ",e.parser==="less"&&r.extend&&r.selector?["extend(",s("selector"),")"]:"",h,r.raws.important?r.raws.important.replace(/\s*!\s*important/iu," !important"):r.important?" !important":"",r.raws.scssDefault?r.raws.scssDefault.replace(/\s*!default/iu," !default"):r.scssDefault?" !default":"",r.raws.scssGlobal?r.raws.scssGlobal.replace(/\s*!global/iu," !global"):r.scssGlobal?" !global":"",r.nodes?[" {",q([B,Pe(t,e,s)]),B,"}"]:Xn(r)&&!f.raws.semicolon&&e.originalText[R(r)-1]!==";"?"":e.__isHTMLStyleAttribute&&t.isLast?Ot(";"):";"]}case"css-atrule":{let f=t.parent,p=Dt(r)&&!f.raws.semicolon&&e.originalText[R(r)-1]!==";";if(e.parser==="less"){if(r.mixin)return[s("selector"),r.important?" !important":"",p?"":";"];if(r.function)return[r.name,typeof r.params=="string"?r.params:s("params"),p?"":";"];if(r.variable)return["@",r.name,": ",r.value?s("value"):"",r.raws.between.trim()?r.raws.between.trim()+" ":"",r.nodes?["{",q([r.nodes.length>0?B:"",Pe(t,e,s)]),B,"}"]:"",p?"":";"]}let l=r.name==="import"&&((u=r.params)==null?void 0:u.type)==="value-unknown"&&r.params.value.endsWith(";");return["@",Qr(r)||r.name.endsWith(":")||Dt(r)?r.name:ae(r.name),r.params?[Qr(r)?"":Dt(r)?r.raws.afterName===""?"":r.name.endsWith(":")?" ":/^\s*\n\s*\n/u.test(r.raws.afterName)?[S,S]:/^\s*\n/u.test(r.raws.afterName)?S:" ":" ",typeof r.params=="string"?r.params:s("params")]:"",r.selector?q([" ",s("selector")]):"",r.value?L([" ",s("value"),tt(r,e)?ti(r)?" ":A:""]):r.name==="else"?" ":"",r.nodes?[tt(r,e)?"":r.selector&&!r.selector.nodes&&typeof r.selector.value=="string"&&Ne(r.selector.value)||!r.selector&&typeof r.params=="string"&&Ne(r.params)?A:" ","{",q([r.nodes.length>0?B:"",Pe(t,e,s)]),B,"}"]:p||l?"":";"]}case"media-query-list":{let f=[];return t.each(({node:p})=>{p.type==="media-query"&&p.value===""||f.push(s())},"nodes"),L(q(Y(A,f)))}case"media-query":return[Y(" ",t.map(s,"nodes")),t.isLast?"":","];case"media-type":return me(z(r.value,e));case"media-feature-expression":return r.nodes?["(",...t.map(s,"nodes"),")"]:r.value;case"media-feature":return ae(z(k(!1,r.value,/ +/gu," "),e));case"media-colon":return[r.value," "];case"media-value":return me(z(r.value,e));case"media-keyword":return z(r.value,e);case"media-url":return z(k(!1,k(!1,r.value,/^url\(\s+/giu,"url("),/\s+\)$/gu,")"),e);case"media-unknown":return r.value;case"selector-root":return L([Oe(t,"custom-selector")?[t.findAncestor(f=>f.type==="css-atrule").customSelector,A]:"",Y([",",Oe(t,["extend","custom-selector","nest"])?A:S],t.map(s,"nodes"))]);case"selector-selector":{let f=r.nodes.length>1;return L((f?q:p=>p)(t.map(s,"nodes")))}case"selector-comment":return r.value;case"selector-string":return z(r.value,e);case"selector-tag":return[r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",((a=t.previous)==null?void 0:a.type)==="selector-nesting"?r.value:me($n(t,r.value)?r.value.toLowerCase():r.value)];case"selector-id":return["#",r.value];case"selector-class":return[".",me(z(r.value,e))];case"selector-attribute":return["[",r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",r.attribute.trim(),r.operator??"",r.value?ci(z(r.value.trim(),e),e):"",r.insensitive?" i":"","]"];case"selector-combinator":{if(r.value==="+"||r.value===">"||r.value==="~"||r.value===">>>"){let l=t.parent;return[l.type==="selector-selector"&&l.nodes[0]===r?"":A,r.value,t.isLast?"":" "]}let f=r.value.trim().startsWith("(")?A:"",p=me(z(r.value.trim(),e))||A;return[f,p]}case"selector-universal":return[r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",r.value];case"selector-pseudo":return[ae(r.value),oe(r.nodes)?L(["(",q([B,Y([",",A],t.map(s,"nodes"))]),B,")"]):""];case"selector-nesting":return r.value;case"selector-unknown":{let f=t.findAncestor(y=>y.type==="css-rule");if(f!=null&&f.isSCSSNesterProperty)return me(z(ae(r.value),e));let p=t.parent;if((c=p.raws)!=null&&c.selector){let y=P(p),x=y+p.raws.selector.length;return e.originalText.slice(y,x).trim()}let l=t.grandparent;if(p.type==="value-paren_group"&&(l==null?void 0:l.type)==="value-func"&&l.value==="selector"){let y=R(p.open)+1,x=P(p.close),h=e.originalText.slice(y,x).trim();return Ne(h)?[Ke,h]:h}return r.value}case"value-value":case"value-root":return s("group");case"value-comment":return e.originalText.slice(P(r),R(r));case"value-comma_group":return oi(t,e,s);case"value-paren_group":return di(t,e,s);case"value-func":return[r.value,Oe(t,"supports")&&si(r)?" ":"",s("group")];case"value-paren":return r.value;case"value-number":return[es(r.value),ui(r.unit)];case"value-operator":return r.value;case"value-word":return r.isColor&&r.isHex||Fn(r.value)?r.value.toLowerCase():r.value;case"value-colon":{let{previous:f}=t;return L([r.value,typeof(f==null?void 0:f.value)=="string"&&f.value.endsWith("\\")||Ce(t,"url")?"":A])}case"value-string":return Nt(r.raws.quote+r.value+r.raws.quote,e);case"value-atword":return["@",r.value];case"value-unicode-range":return r.value;case"value-unknown":return r.value;case"value-comma":default:throw new fn(r,"PostCSS")}}var hc={print:pc,embed:yn,insertPragma:Mn,massageAstNode:hn,getVisitorKeys:vn},mi=hc;var yi=[{linguistLanguageId:50,name:"CSS",type:"markup",tmScope:"source.css",aceMode:"css",codemirrorMode:"css",codemirrorMimeType:"text/css",color:"#563d7c",extensions:[".css",".wxss"],parsers:["css"],vscodeLanguageIds:["css"]},{linguistLanguageId:262764437,name:"PostCSS",type:"markup",color:"#dc3a0c",tmScope:"source.postcss",group:"CSS",extensions:[".pcss",".postcss"],aceMode:"text",parsers:["css"],vscodeLanguageIds:["postcss"]},{linguistLanguageId:198,name:"Less",type:"markup",color:"#1d365d",aliases:["less-css"],extensions:[".less"],tmScope:"source.css.less",aceMode:"less",codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["less"],vscodeLanguageIds:["less"]},{linguistLanguageId:329,name:"SCSS",type:"markup",color:"#c6538c",tmScope:"source.css.scss",aceMode:"scss",codemirrorMode:"css",codemirrorMimeType:"text/x-scss",extensions:[".scss"],parsers:["scss"],vscodeLanguageIds:["scss"]}];var gi={bracketSpacing:{category:"Common",type:"boolean",default:!0,description:"Print spaces between brackets.",oppositeDescription:"Do not print spaces between brackets."},singleQuote:{category:"Common",type:"boolean",default:!1,description:"Use single quotes instead of double quotes."},proseWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap prose.",choices:[{value:"always",description:"Wrap prose if it exceeds the print width."},{value:"never",description:"Do not wrap prose."},{value:"preserve",description:"Wrap prose as-is."}]},bracketSameLine:{category:"Common",type:"boolean",default:!1,description:"Put > of opening tags on the last line instead of on a new line."},singleAttributePerLine:{category:"Common",type:"boolean",default:!1,description:"Enforce single attribute per line in HTML, Vue and JSX."}};var dc={singleQuote:gi.singleQuote},wi=dc;var Qs={};Xs(Qs,{css:()=>Cy,less:()=>Oy,scss:()=>Ay});var il=xe(gt(),1),ol=xe(So(),1),al=xe(ia(),1);function ep(t,e){let s=new SyntaxError(t+" ("+e.loc.start.line+":"+e.loc.start.column+")");return Object.assign(s,e)}var oa=ep;var ha=xe(pa(),1);function X(t,e,s){if(t&&typeof t=="object"){delete t.parent;for(let r in t)X(t[r],e,s),r==="type"&&typeof t[r]=="string"&&!t[r].startsWith(e)&&(!s||!s.test(t[r]))&&(t[r]=e+t[r])}return t}function qs(t){if(t&&typeof t=="object"){delete t.parent;for(let e in t)qs(t[e]);!Array.isArray(t)&&t.value&&!t.type&&(t.type="unknown")}return t}var pp=ha.default.default;function hp(t){let e;try{e=pp(t)}catch{return{type:"selector-unknown",value:t}}return X(qs(e),"media-")}var da=hp;var uu=xe(au(),1);function Cm(t){if(/\/\/|\/\*/u.test(t))return{type:"selector-unknown",value:t.trim()};let e;try{new uu.default(s=>{e=s}).process(t)}catch{return{type:"selector-unknown",value:t}}return X(e,"selector-")}var ee=Cm;var tl=xe(Ku(),1);var my=t=>{for(;t.parent;)t=t.parent;return t},Fr=my;function yy(t){return Fr(t).text.slice(t.group.open.sourceIndex+1,t.group.close.sourceIndex).trim()}var Qu=yy;function gy(t){if(oe(t)){for(let e=t.length-1;e>0;e--)if(t[e].type==="word"&&t[e].value==="{"&&t[e-1].type==="word"&&t[e-1].value.endsWith("#"))return!0}return!1}var Ju=gy;function wy(t){return t.some(e=>e.type==="string"||e.type==="func"&&!e.value.endsWith("\\"))}var Xu=wy;function vy(t,e){return!!(e.parser==="scss"&&(t==null?void 0:t.type)==="word"&&t.value.startsWith("$"))}var Zu=vy;var el=t=>t.type==="paren"&&t.value===")";function xy(t,e){var a;let{nodes:s}=t,r={open:null,close:null,groups:[],type:"paren_group"},n=[r],i=r,o={groups:[],type:"comma_group"},u=[o];for(let c=0;c<s.length;++c){let f=s[c];if(e.parser==="scss"&&f.type==="number"&&f.unit===".."&&f.value.endsWith(".")&&(f.value=f.value.slice(0,-1),f.unit="..."),f.type==="func"&&f.value==="selector"&&(f.group.groups=[ee(Fr(t).text.slice(f.group.open.sourceIndex+1,f.group.close.sourceIndex))]),f.type==="func"&&f.value==="url"){let p=((a=f.group)==null?void 0:a.groups)??[],l=[];for(let y=0;y<p.length;y++){let x=p[y];x.type==="comma_group"?l=[...l,...x.groups]:l.push(x)}(Ju(l)||!Xu(l)&&!Zu(l[0],e))&&(f.group.groups=[Qu(f)])}if(f.type==="paren"&&f.value==="(")r={open:f,close:null,groups:[],type:"paren_group"},n.push(r),o={groups:[],type:"comma_group"},u.push(o);else if(el(f)){if(o.groups.length>0&&r.groups.push(o),r.close=f,u.length===1)throw new Error("Unbalanced parenthesis");u.pop(),o=$(!1,u,-1),o.groups.push(r),n.pop(),r=$(!1,n,-1)}else if(f.type==="comma"){if(c===s.length-3&&s[c+1].type==="comment"&&el(s[c+2]))continue;r.groups.push(o),o={groups:[],type:"comma_group"},u[u.length-1]=o}else o.groups.push(f)}return o.groups.length>0&&r.groups.push(o),i}function $r(t){return t.type==="paren_group"&&!t.open&&!t.close&&t.groups.length===1||t.type==="comma_group"&&t.groups.length===1?$r(t.groups[0]):t.type==="paren_group"||t.type==="comma_group"?{...t,groups:t.groups.map($r)}:t}function rl(t,e){if(t&&typeof t=="object")for(let s in t)s!=="parent"&&(rl(t[s],e),s==="nodes"&&(t.group=$r(xy(t,e)),delete t[s]));return t}function by(t,e){if(e.parser==="less"&&t.startsWith("~`"))return{type:"value-unknown",value:t};let s=null;try{s=new tl.default(t,{loose:!0}).parse()}catch{return{type:"value-unknown",value:t}}s.text=t;let r=rl(s,e);return X(r,"value-",/^selector-/u)}var fe=by;var _y=new Set(["import","use","forward"]);function ky(t){return _y.has(t)}var sl=ky;function Ey(t,e){return e.parser!=="scss"||!t.selector?!1:t.selector.replace(/\/\*.*?\*\//u,"").replace(/\/\/.*\n/u,"").trim().endsWith(":")}var nl=Ey;var Sy=/(\s*)(!default).*$/u,Ty=/(\s*)(!global).*$/u;function ul(t,e){var s,r;if(t&&typeof t=="object"){delete t.parent;for(let u in t)ul(t[u],e);if(!t.type)return t;if(t.raws??(t.raws={}),t.type==="css-decl"&&typeof t.prop=="string"&&t.prop.startsWith("--")&&typeof t.value=="string"&&t.value.startsWith("{")){let u;if(t.value.trimEnd().endsWith("}")){let a=e.originalText.slice(0,t.source.start.offset),c="a".repeat(t.prop.length)+e.originalText.slice(t.source.start.offset+t.prop.length,t.source.end.offset),f=k(!1,a,/[^\n]/gu," ")+c,p;e.parser==="scss"?p=fl:e.parser==="less"?p=cl:p=ll;let l;try{l=p(f,{...e})}catch{}((s=l==null?void 0:l.nodes)==null?void 0:s.length)===1&&l.nodes[0].type==="css-rule"&&(u=l.nodes[0].nodes)}return u?t.value={type:"css-rule",nodes:u}:t.value={type:"value-unknown",value:t.raws.value.raw},t}let n="";typeof t.selector=="string"&&(n=t.raws.selector?t.raws.selector.scss??t.raws.selector.raw:t.selector,t.raws.between&&t.raws.between.trim().length>0&&(n+=t.raws.between),t.raws.selector=n);let i="";typeof t.value=="string"&&(i=t.raws.value?t.raws.value.scss??t.raws.value.raw:t.value,t.raws.value=i.trim());let o="";if(typeof t.params=="string"&&(o=t.raws.params?t.raws.params.scss??t.raws.params.raw:t.params,t.raws.afterName&&t.raws.afterName.trim().length>0&&(o=t.raws.afterName+o),t.raws.between&&t.raws.between.trim().length>0&&(o=o+t.raws.between),o=o.trim(),t.raws.params=o),n.trim().length>0)return n.startsWith("@")&&n.endsWith(":")?t:t.mixin?(t.selector=fe(n,e),t):(nl(t,e)&&(t.isSCSSNesterProperty=!0),t.selector=ee(n),t);if(i.trim().length>0){let u=i.match(Sy);u&&(i=i.slice(0,u.index),t.scssDefault=!0,u[0].trim()!=="!default"&&(t.raws.scssDefault=u[0]));let a=i.match(Ty);if(a&&(i=i.slice(0,a.index),t.scssGlobal=!0,a[0].trim()!=="!global"&&(t.raws.scssGlobal=a[0])),i.startsWith("progid:"))return{type:"value-unknown",value:i};t.value=fe(i,e)}if(e.parser==="less"&&t.type==="css-decl"&&i.startsWith("extend(")&&(t.extend||(t.extend=t.raws.between===":"),t.extend&&!t.selector&&(delete t.value,t.selector=ee(i.slice(7,-1)))),t.type==="css-atrule"){if(e.parser==="less"){if(t.mixin){let u=t.raws.identifier+t.name+t.raws.afterName+t.raws.params;return t.selector=ee(u),delete t.params,t}if(t.function)return t}if(e.parser==="css"&&t.name==="custom-selector"){let u=t.params.match(/:--\S+\s+/u)[0].trim();return t.customSelector=u,t.selector=ee(t.params.slice(u.length).trim()),delete t.params,t}if(e.parser==="less"){if(t.name.includes(":")&&!t.params){t.variable=!0;let u=t.name.split(":");t.name=u[0],t.value=fe(u.slice(1).join(":"),e)}if(!["page","nest","keyframes"].includes(t.name)&&((r=t.params)==null?void 0:r[0])===":"){t.variable=!0;let u=t.params.slice(1);u&&(t.value=fe(u,e)),t.raws.afterName+=":"}if(t.variable)return delete t.params,t.value||delete t.value,t}}if(t.type==="css-atrule"&&o.length>0){let{name:u}=t,a=t.name.toLowerCase();return u==="warn"||u==="error"?(t.params={type:"media-unknown",value:o},t):u==="extend"||u==="nest"?(t.selector=ee(o),delete t.params,t):u==="at-root"?(/^\(\s*(?:without|with)\s*:.+\)$/su.test(o)?t.params=fe(o,e):(t.selector=ee(o),delete t.params),t):sl(a)?(t.import=!0,delete t.filename,t.params=fe(o,e),t):["namespace","supports","if","else","for","each","while","debug","mixin","include","function","return","define-mixin","add-mixin"].includes(u)?(o=o.replace(/(\$\S+?)(\s+)?\.{3}/u,"$1...$2"),o=o.replace(/^(?!if)(\S+)(\s+)\(/u,"$1($2"),t.value=fe(o,e),delete t.params,t):["media","custom-media"].includes(a)?o.includes("#{")?{type:"media-unknown",value:o}:(t.params=da(o),t):(t.params=o,t)}}return t}function Hs(t,e,s){let r=Ze(e),{frontMatter:n}=r;e=r.content;let i;try{i=t(e,{map:!1})}catch(o){let{name:u,reason:a,line:c,column:f}=o;throw typeof c!="number"?o:oa(`${u}: ${a}`,{loc:{start:{line:c,column:f}},cause:o})}return s.originalText=e,i=ul(X(i,"css-"),s),Hr(i,e),n&&(n.source={startOffset:0,endOffset:n.raw.length},i.frontMatter=n),i}function ll(t,e={}){return Hs(il.default.default,t,e)}function cl(t,e={}){return Hs(s=>ol.default.parse(kn(s)),t,e)}function fl(t,e={}){return Hs(al.default,t,e)}var Ks={astFormat:"postcss",hasPragma:Bn,locStart:P,locEnd:R},Cy={...Ks,parse:ll},Oy={...Ks,parse:cl},Ay={...Ks,parse:fl};var Ny={postcss:mi};return gl(Py);});
54
+ `||n==="\r"||n==="\u2028"||n==="\u2029")return e+1}return e}var Ft=ic;function oc(t,e,s={}){let r=Rt(t,s.backwards?e-1:e,s),n=Ft(t,r,s);return r!==n}var $t=oc;function ac(t,e){if(e===!1)return!1;if(t.charAt(e)==="/"&&t.charAt(e+1)==="*"){for(let s=e+2;s<t.length;++s)if(t.charAt(s)==="*"&&t.charAt(s+1)==="/")return s+2}return e}var hi=ac;function uc(t,e){return e===!1?!1:t.charAt(e)==="/"&&t.charAt(e+1)==="/"?It(t,e):e}var di=uc;function lc(t,e){let s=null,r=e;for(;r!==s;)s=r,r=bn(t,r),r=hi(t,r),r=Rt(t,r);return r=di(t,r),r=Ft(t,r),r!==!1&&$t(t,r)}var Wt=lc;function cc({node:t,parent:e},s){return!!(t.source&&s.originalText.slice(P(t),P(e.close)).trimEnd().endsWith(","))}function fc(t,e){return Gn(t.grandparent)&&cc(t,e)?",":t.node.type!=="value-comment"&&!(t.node.type==="value-comma_group"&&t.node.groups.every(s=>s.type==="value-comment"))&&pi(e)&&t.callParent(()=>Xr(t,e))?Ot(","):""}function mi(t,e,s){let{node:r,parent:n}=t,i=t.map(({node:y})=>typeof y=="string"?y:s(),"groups");if(n&&zn(n)&&(r.groups.length===1||r.groups.length>0&&r.groups[0].type==="value-comma_group"&&r.groups[0].groups.length>0&&r.groups[0].groups[0].type==="value-word"&&r.groups[0].groups[0].value.startsWith("data:")))return[r.open?s("open"):"",Y(",",i),r.close?s("close"):""];if(!r.open){let y=rs(t);He(i);let x=hc(Y(",",i),2),h=Y(y?S:A,x);return q(y?[S,h]:L([pc(t)?D:"",Se(h)]))}let o=t.map(({node:y,isLast:x,index:h})=>{var b;let d=i[h];Bt(y)&&y.type==="value-comma_group"&&y.groups&&y.groups[0].type!=="value-paren_group"&&((b=y.groups[2])==null?void 0:b.type)==="value-paren_group"&&H(d)===re&&H(d.contents)===te&&H(d.contents.contents)===se&&(d=L(oe(d)));let m=[d,x?fc(t,e):","];if(!x&&y.type==="value-comma_group"&&ae(y.groups)){let w=$(!1,y.groups,-1);!w.source&&w.close&&(w=w.close),w.source&&Wt(e.originalText,R(w))&&m.push(S)}return m},"groups"),u=si(r,n),a=oi(r,n),c=Xr(t,e),f=a||c&&!u,p=a||u,l=L([r.open?s("open"):"",q([D,Y(A,o)]),D,r.close?s("close"):""],{shouldBreak:f});return p?oe(l):l}function rs(t){return t.match(e=>e.type==="value-paren_group"&&!e.open&&e.groups.some(s=>s.type==="value-comma_group"),(e,s)=>s==="group"&&e.type==="value-value",(e,s)=>s==="group"&&e.type==="value-root",(e,s)=>s==="value"&&(e.type==="css-decl"&&!e.prop.startsWith("--")||e.type==="css-atrule"&&e.variable))}function pc(t){return t.match(e=>e.type==="value-paren_group"&&!e.open,(e,s)=>s==="group"&&e.type==="value-value",(e,s)=>s==="group"&&e.type==="value-root",(e,s)=>s==="value"&&e.type==="css-decl")}function hc(t,e){let s=[];for(let r=0;r<t.length;r+=e)s.push(t.slice(r,r+e));return s}function dc(t,e,s){let r=[];return t.each(()=>{let{node:n,previous:i}=t;if((i==null?void 0:i.type)==="css-comment"&&i.text.trim()==="prettier-ignore"?r.push(e.originalText.slice(P(n),R(n))):r.push(s()),t.isLast)return;let{next:o}=t;o.type==="css-comment"&&!$t(e.originalText,P(o),{backwards:!0})&&!Te(n)||o.type==="css-atrule"&&o.name==="else"&&n.type!=="css-comment"?r.push(" "):(r.push(e.__isHTMLStyleAttribute?A:S),Wt(e.originalText,R(n))&&!Te(n)&&r.push(S))},"nodes"),r}var Pe=dc;function mc(t,e,s){var n,i,o,u,a,c;let{node:r}=t;switch(r.type){case"front-matter":return[r.raw,S];case"css-root":{let f=Pe(t,e,s),p=r.raws.after.trim();return p.startsWith(";")&&(p=p.slice(1).trim()),[r.frontMatter?[s("frontMatter"),S]:"",f,p?` ${p}`:"",r.nodes.length>0?S:""]}case"css-comment":{let f=r.inline||r.raws.inline,p=e.originalText.slice(P(r),R(r));return f?p.trimEnd():p}case"css-rule":return[s("selector"),r.important?" !important":"",r.nodes?[((n=r.selector)==null?void 0:n.type)==="selector-unknown"&&Ne(r.selector.value)?A:r.selector?" ":"","{",r.nodes.length>0?q([S,Pe(t,e,s)]):"",S,"}",jn(r)?";":""]:";"];case"css-decl":{let f=t.parent,{between:p}=r.raws,l=p.trim(),y=l===":",x=typeof r.value=="string"&&/^ *$/u.test(r.value),h=typeof r.value=="string"?r.value:s("value");return h=ti(r)?tn(h):h,!y&&Ne(l)&&!((o=(i=r.value)==null?void 0:i.group)!=null&&o.group&&t.call(()=>rs(t),"value","group","group"))&&(h=q([S,oe(h)])),[E(!1,r.raws.before,/[\s;]/gu,""),f.type==="css-atrule"&&f.variable||Yn(t)?r.prop:ue(r.prop),l.startsWith("//")?" ":"",l,r.extend||x?"":" ",e.parser==="less"&&r.extend&&r.selector?["extend(",s("selector"),")"]:"",h,r.raws.important?r.raws.important.replace(/\s*!\s*important/iu," !important"):r.important?" !important":"",r.raws.scssDefault?r.raws.scssDefault.replace(/\s*!default/iu," !default"):r.scssDefault?" !default":"",r.raws.scssGlobal?r.raws.scssGlobal.replace(/\s*!global/iu," !global"):r.scssGlobal?" !global":"",r.nodes?[" {",q([D,Pe(t,e,s)]),D,"}"]:Zn(r)&&!f.raws.semicolon&&e.originalText[R(r)-1]!==";"?"":e.__isHTMLStyleAttribute&&t.isLast?Ot(";"):";"]}case"css-atrule":{let f=t.parent,p=Dt(r)&&!f.raws.semicolon&&e.originalText[R(r)-1]!==";";if(e.parser==="less"){if(r.mixin)return[s("selector"),r.important?" !important":"",p?"":";"];if(r.function)return[r.name,typeof r.params=="string"?r.params:s("params"),p?"":";"];if(r.variable)return["@",r.name,": ",r.value?s("value"):"",r.raws.between.trim()?r.raws.between.trim()+" ":"",r.nodes?["{",q([r.nodes.length>0?D:"",Pe(t,e,s)]),D,"}"]:"",p?"":";"]}let l=r.name==="import"&&((u=r.params)==null?void 0:u.type)==="value-unknown"&&r.params.value.endsWith(";");return["@",Jr(r)||r.name.endsWith(":")||Dt(r)?r.name:ue(r.name),r.params?[Jr(r)?"":Dt(r)?r.raws.afterName===""?"":r.name.endsWith(":")?" ":/^\s*\n\s*\n/u.test(r.raws.afterName)?[S,S]:/^\s*\n/u.test(r.raws.afterName)?S:" ":" ",typeof r.params=="string"?r.params:s("params")]:"",r.selector?q([" ",s("selector")]):"",r.value?L([" ",s("value"),tt(r,e)?ri(r)?" ":A:""]):r.name==="else"?" ":"",r.nodes?[tt(r,e)?"":r.selector&&!r.selector.nodes&&typeof r.selector.value=="string"&&Ne(r.selector.value)||!r.selector&&typeof r.params=="string"&&Ne(r.params)?A:" ","{",q([r.nodes.length>0?D:"",Pe(t,e,s)]),D,"}"]:p||l?"":";"]}case"media-query-list":{let f=[];return t.each(({node:p})=>{p.type==="media-query"&&p.value===""||f.push(s())},"nodes"),L(q(Y(A,f)))}case"media-query":return[Y(" ",t.map(s,"nodes")),t.isLast?"":","];case"media-type":return me(V(r.value,e));case"media-feature-expression":return r.nodes?["(",...t.map(s,"nodes"),")"]:r.value;case"media-feature":return ue(V(E(!1,r.value,/ +/gu," "),e));case"media-colon":return[r.value," "];case"media-value":return me(V(r.value,e));case"media-keyword":return V(r.value,e);case"media-url":return V(E(!1,E(!1,r.value,/^url\(\s+/giu,"url("),/\s+\)$/gu,")"),e);case"media-unknown":return r.value;case"selector-root":return L([Oe(t,"custom-selector")?[t.findAncestor(f=>f.type==="css-atrule").customSelector,A]:"",Y([",",Oe(t,["extend","custom-selector","nest"])?A:S],t.map(s,"nodes"))]);case"selector-selector":{let f=r.nodes.length>1;return L((f?q:p=>p)(t.map(s,"nodes")))}case"selector-comment":return r.value;case"selector-string":return V(r.value,e);case"selector-tag":return[r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",((a=t.previous)==null?void 0:a.type)==="selector-nesting"?r.value:me(Wn(t,r.value)?r.value.toLowerCase():r.value)];case"selector-id":return["#",r.value];case"selector-class":return[".",me(V(r.value,e))];case"selector-attribute":return["[",r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",r.attribute.trim(),r.operator??"",r.value?fi(V(r.value.trim(),e),e):"",r.insensitive?" i":"","]"];case"selector-combinator":{if(r.value==="+"||r.value===">"||r.value==="~"||r.value===">>>"){let l=t.parent;return[l.type==="selector-selector"&&l.nodes[0]===r?"":A,r.value,t.isLast?"":" "]}let f=r.value.trim().startsWith("(")?A:"",p=me(V(r.value.trim(),e))||A;return[f,p]}case"selector-universal":return[r.namespace?[r.namespace===!0?"":r.namespace.trim(),"|"]:"",r.value];case"selector-pseudo":return[ue(r.value),ae(r.nodes)?L(["(",q([D,Y([",",A],t.map(s,"nodes"))]),D,")"]):""];case"selector-nesting":return r.value;case"selector-unknown":{let f=t.findAncestor(y=>y.type==="css-rule");if(f!=null&&f.isSCSSNesterProperty)return me(V(ue(r.value),e));let p=t.parent;if((c=p.raws)!=null&&c.selector){let y=P(p),x=y+p.raws.selector.length;return e.originalText.slice(y,x).trim()}let l=t.grandparent;if(p.type==="value-paren_group"&&(l==null?void 0:l.type)==="value-func"&&l.value==="selector"){let y=R(p.open)+1,x=P(p.close),h=e.originalText.slice(y,x).trim();return Ne(h)?[Ke,h]:h}return r.value}case"value-value":case"value-root":return s("group");case"value-comment":return e.originalText.slice(P(r),R(r));case"value-comma_group":return ai(t,e,s);case"value-paren_group":return mi(t,e,s);case"value-func":return[r.value,Oe(t,"supports")&&ni(r)?" ":"",s("group")];case"value-paren":return r.value;case"value-number":return[ts(r.value),li(r.unit)];case"value-operator":return r.value;case"value-word":return r.isColor&&r.isHex||$n(r.value)?r.value.toLowerCase():r.value;case"value-colon":{let{previous:f}=t;return L([r.value,typeof(f==null?void 0:f.value)=="string"&&f.value.endsWith("\\")||Ce(t,"url")?"":A])}case"value-string":return Nt(r.raws.quote+r.value+r.raws.quote,e);case"value-atword":return["@",r.value];case"value-unicode-range":return r.value;case"value-unknown":return r.value;case"value-comma":default:throw new pn(r,"PostCSS")}}var yc={print:mc,embed:gn,insertPragma:Un,massageAstNode:dn,getVisitorKeys:xn},yi=yc;var gi=[{linguistLanguageId:50,name:"CSS",type:"markup",tmScope:"source.css",aceMode:"css",codemirrorMode:"css",codemirrorMimeType:"text/css",color:"#563d7c",extensions:[".css",".wxss"],parsers:["css"],vscodeLanguageIds:["css"]},{linguistLanguageId:262764437,name:"PostCSS",type:"markup",color:"#dc3a0c",tmScope:"source.postcss",group:"CSS",extensions:[".pcss",".postcss"],aceMode:"text",parsers:["css"],vscodeLanguageIds:["postcss"]},{linguistLanguageId:198,name:"Less",type:"markup",color:"#1d365d",aliases:["less-css"],extensions:[".less"],tmScope:"source.css.less",aceMode:"less",codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["less"],vscodeLanguageIds:["less"]},{linguistLanguageId:329,name:"SCSS",type:"markup",color:"#c6538c",tmScope:"source.css.scss",aceMode:"scss",codemirrorMode:"css",codemirrorMimeType:"text/x-scss",extensions:[".scss"],parsers:["scss"],vscodeLanguageIds:["scss"]}];var wi={bracketSpacing:{category:"Common",type:"boolean",default:!0,description:"Print spaces between brackets.",oppositeDescription:"Do not print spaces between brackets."},objectWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap object literals.",choices:[{value:"preserve",description:"Keep as multi-line, if there is a newline between the opening brace and first property."},{value:"collapse",description:"Fit to a single line when possible."}]},singleQuote:{category:"Common",type:"boolean",default:!1,description:"Use single quotes instead of double quotes."},proseWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap prose.",choices:[{value:"always",description:"Wrap prose if it exceeds the print width."},{value:"never",description:"Do not wrap prose."},{value:"preserve",description:"Wrap prose as-is."}]},bracketSameLine:{category:"Common",type:"boolean",default:!1,description:"Put > of opening tags on the last line instead of on a new line."},singleAttributePerLine:{category:"Common",type:"boolean",default:!1,description:"Enforce single attribute per line in HTML, Vue and JSX."}};var gc={singleQuote:wi.singleQuote},vi=gc;var Js={};Zs(Js,{css:()=>Ny,less:()=>Py,scss:()=>Ry});var ol=xe(gt(),1),al=xe(To(),1),ul=xe(oa(),1);function sp(t,e){let s=new SyntaxError(t+" ("+e.loc.start.line+":"+e.loc.start.column+")");return Object.assign(s,e)}var aa=sp;var da=xe(ha(),1);function X(t,e,s){if(t&&typeof t=="object"){delete t.parent;for(let r in t)X(t[r],e,s),r==="type"&&typeof t[r]=="string"&&!t[r].startsWith(e)&&(!s||!s.test(t[r]))&&(t[r]=e+t[r])}return t}function Ls(t){if(t&&typeof t=="object"){delete t.parent;for(let e in t)Ls(t[e]);!Array.isArray(t)&&t.value&&!t.type&&(t.type="unknown")}return t}var mp=da.default.default;function yp(t){let e;try{e=mp(t)}catch{return{type:"selector-unknown",value:t}}return X(Ls(e),"media-")}var ma=yp;var lu=xe(uu(),1);function Nm(t){if(/\/\/|\/\*/u.test(t))return{type:"selector-unknown",value:t.trim()};let e;try{new lu.default(s=>{e=s}).process(t)}catch{return{type:"selector-unknown",value:t}}return X(e,"selector-")}var ee=Nm;var rl=xe(Qu(),1);var wy=t=>{for(;t.parent;)t=t.parent;return t},Fr=wy;function vy(t){return Fr(t).text.slice(t.group.open.sourceIndex+1,t.group.close.sourceIndex).trim()}var Ju=vy;function xy(t){if(ae(t)){for(let e=t.length-1;e>0;e--)if(t[e].type==="word"&&t[e].value==="{"&&t[e-1].type==="word"&&t[e-1].value.endsWith("#"))return!0}return!1}var Xu=xy;function by(t){return t.some(e=>e.type==="string"||e.type==="func"&&!e.value.endsWith("\\"))}var Zu=by;function _y(t,e){return!!(e.parser==="scss"&&(t==null?void 0:t.type)==="word"&&t.value.startsWith("$"))}var el=_y;var tl=t=>t.type==="paren"&&t.value===")";function Ey(t,e){var a;let{nodes:s}=t,r={open:null,close:null,groups:[],type:"paren_group"},n=[r],i=r,o={groups:[],type:"comma_group"},u=[o];for(let c=0;c<s.length;++c){let f=s[c];if(e.parser==="scss"&&f.type==="number"&&f.unit===".."&&f.value.endsWith(".")&&(f.value=f.value.slice(0,-1),f.unit="..."),f.type==="func"&&f.value==="selector"&&(f.group.groups=[ee(Fr(t).text.slice(f.group.open.sourceIndex+1,f.group.close.sourceIndex))]),f.type==="func"&&f.value==="url"){let p=((a=f.group)==null?void 0:a.groups)??[],l=[];for(let y=0;y<p.length;y++){let x=p[y];x.type==="comma_group"?l=[...l,...x.groups]:l.push(x)}(Xu(l)||!Zu(l)&&!el(l[0],e))&&(f.group.groups=[Ju(f)])}if(f.type==="paren"&&f.value==="(")r={open:f,close:null,groups:[],type:"paren_group"},n.push(r),o={groups:[],type:"comma_group"},u.push(o);else if(tl(f)){if(o.groups.length>0&&r.groups.push(o),r.close=f,u.length===1)throw new Error("Unbalanced parenthesis");u.pop(),o=$(!1,u,-1),o.groups.push(r),n.pop(),r=$(!1,n,-1)}else if(f.type==="comma"){if(c===s.length-3&&s[c+1].type==="comment"&&tl(s[c+2]))continue;r.groups.push(o),o={groups:[],type:"comma_group"},u[u.length-1]=o}else o.groups.push(f)}return o.groups.length>0&&r.groups.push(o),i}function $r(t){return t.type==="paren_group"&&!t.open&&!t.close&&t.groups.length===1||t.type==="comma_group"&&t.groups.length===1?$r(t.groups[0]):t.type==="paren_group"||t.type==="comma_group"?{...t,groups:t.groups.map($r)}:t}function sl(t,e){if(t&&typeof t=="object")for(let s in t)s!=="parent"&&(sl(t[s],e),s==="nodes"&&(t.group=$r(Ey(t,e)),delete t[s]));return t}function ky(t,e){if(e.parser==="less"&&t.startsWith("~`"))return{type:"value-unknown",value:t};let s=null;try{s=new rl.default(t,{loose:!0}).parse()}catch{return{type:"value-unknown",value:t}}s.text=t;let r=sl(s,e);return X(r,"value-",/^selector-/u)}var pe=ky;var Sy=new Set(["import","use","forward"]);function Ty(t){return Sy.has(t)}var nl=Ty;function Cy(t,e){return e.parser!=="scss"||!t.selector?!1:t.selector.replace(/\/\*.*?\*\//u,"").replace(/\/\/.*\n/u,"").trim().endsWith(":")}var il=Cy;var Oy=/(\s*)(!default).*$/u,Ay=/(\s*)(!global).*$/u;function ll(t,e){var s,r;if(t&&typeof t=="object"){delete t.parent;for(let u in t)ll(t[u],e);if(!t.type)return t;if(t.raws??(t.raws={}),t.type==="css-decl"&&typeof t.prop=="string"&&t.prop.startsWith("--")&&typeof t.value=="string"&&t.value.startsWith("{")){let u;if(t.value.trimEnd().endsWith("}")){let a=e.originalText.slice(0,t.source.start.offset),c="a".repeat(t.prop.length)+e.originalText.slice(t.source.start.offset+t.prop.length,t.source.end.offset),f=E(!1,a,/[^\n]/gu," ")+c,p;e.parser==="scss"?p=pl:e.parser==="less"?p=fl:p=cl;let l;try{l=p(f,{...e})}catch{}((s=l==null?void 0:l.nodes)==null?void 0:s.length)===1&&l.nodes[0].type==="css-rule"&&(u=l.nodes[0].nodes)}return u?t.value={type:"css-rule",nodes:u}:t.value={type:"value-unknown",value:t.raws.value.raw},t}let n="";typeof t.selector=="string"&&(n=t.raws.selector?t.raws.selector.scss??t.raws.selector.raw:t.selector,t.raws.between&&t.raws.between.trim().length>0&&(n+=t.raws.between),t.raws.selector=n);let i="";typeof t.value=="string"&&(i=t.raws.value?t.raws.value.scss??t.raws.value.raw:t.value,t.raws.value=i.trim());let o="";if(typeof t.params=="string"&&(o=t.raws.params?t.raws.params.scss??t.raws.params.raw:t.params,t.raws.afterName&&t.raws.afterName.trim().length>0&&(o=t.raws.afterName+o),t.raws.between&&t.raws.between.trim().length>0&&(o=o+t.raws.between),o=o.trim(),t.raws.params=o),n.trim().length>0)return n.startsWith("@")&&n.endsWith(":")?t:t.mixin?(t.selector=pe(n,e),t):(il(t,e)&&(t.isSCSSNesterProperty=!0),t.selector=ee(n),t);if(i.trim().length>0){let u=i.match(Oy);u&&(i=i.slice(0,u.index),t.scssDefault=!0,u[0].trim()!=="!default"&&(t.raws.scssDefault=u[0]));let a=i.match(Ay);if(a&&(i=i.slice(0,a.index),t.scssGlobal=!0,a[0].trim()!=="!global"&&(t.raws.scssGlobal=a[0])),i.startsWith("progid:"))return{type:"value-unknown",value:i};t.value=pe(i,e)}if(e.parser==="less"&&t.type==="css-decl"&&i.startsWith("extend(")&&(t.extend||(t.extend=t.raws.between===":"),t.extend&&!t.selector&&(delete t.value,t.selector=ee(i.slice(7,-1)))),t.type==="css-atrule"){if(e.parser==="less"){if(t.mixin){let u=t.raws.identifier+t.name+t.raws.afterName+t.raws.params;return t.selector=ee(u),delete t.params,t}if(t.function)return t}if(e.parser==="css"&&t.name==="custom-selector"){let u=t.params.match(/:--\S+\s+/u)[0].trim();return t.customSelector=u,t.selector=ee(t.params.slice(u.length).trim()),delete t.params,t}if(e.parser==="less"){if(t.name.includes(":")&&!t.params){t.variable=!0;let u=t.name.split(":");t.name=u[0],t.value=pe(u.slice(1).join(":"),e)}if(!["page","nest","keyframes"].includes(t.name)&&((r=t.params)==null?void 0:r[0])===":"){t.variable=!0;let u=t.params.slice(1);u&&(t.value=pe(u,e)),t.raws.afterName+=":"}if(t.variable)return delete t.params,t.value||delete t.value,t}}if(t.type==="css-atrule"&&o.length>0){let{name:u}=t,a=t.name.toLowerCase();return u==="warn"||u==="error"?(t.params={type:"media-unknown",value:o},t):u==="extend"||u==="nest"?(t.selector=ee(o),delete t.params,t):u==="at-root"?(/^\(\s*(?:without|with)\s*:.+\)$/su.test(o)?t.params=pe(o,e):(t.selector=ee(o),delete t.params),t):nl(a)?(t.import=!0,delete t.filename,t.params=pe(o,e),t):["namespace","supports","if","else","for","each","while","debug","mixin","include","function","return","define-mixin","add-mixin"].includes(u)?(o=o.replace(/(\$\S+?)(\s+)?\.{3}/u,"$1...$2"),o=o.replace(/^(?!if)(\S+)(\s+)\(/u,"$1($2"),t.value=pe(o,e),delete t.params,t):["media","custom-media"].includes(a)?o.includes("#{")?{type:"media-unknown",value:o}:(t.params=ma(o),t):(t.params=o,t)}}return t}function Ks(t,e,s){let r=Ze(e),{frontMatter:n}=r;e=r.content;let i;try{i=t(e,{map:!1})}catch(o){let{name:u,reason:a,line:c,column:f}=o;throw typeof c!="number"?o:aa(`${u}: ${a}`,{loc:{start:{line:c,column:f}},cause:o})}return s.originalText=e,i=ll(X(i,"css-"),s),Kr(i,e),n&&(n.source={startOffset:0,endOffset:n.raw.length},i.frontMatter=n),i}function cl(t,e={}){return Ks(ol.default.default,t,e)}function fl(t,e={}){return Ks(s=>al.default.parse(kn(s)),t,e)}function pl(t,e={}){return Ks(ul.default,t,e)}var Qs={astFormat:"postcss",hasPragma:Mn,locStart:P,locEnd:R},Ny={...Qs,parse:cl},Py={...Qs,parse:fl},Ry={...Qs,parse:pl};var Iy={postcss:yi};return wl(qy);});